What steps will reproduce the problem?
1. No assertion; Class SafeFileTest.java; Method testEscapeCharactersInFilename
2. No assertion; Class SafeFileTest.java; Method
testEscapeCharacterInDirectoryInjection
What is the expected output? What do you see instead?
1. Expect to see output of unit test assertion
What version of the product are you using? On what operating system?
1. ESAPI_2.0 subversion trunk
Does this issue affect only a specified browser or set of browsers?
1. n/a
updated tests with assertions :
public void testEscapeCharactersInFilename() {
System.out.println("testEscapeCharactersInFilenameInjection");
File tf = testFile;
if (tf.exists()) {
System.out.println("File is there: " + tf);
}
File sf = new File(testDir, "test^.file");
assertFalse("Injection didn't work " + sf.getAbsolutePath(),
sf.exists());
assertTrue(" Injection allowed " + sf.getAbsolutePath(), sf.exists());
}
public void testEscapeCharacterInDirectoryInjection() {
System.out.println("testEscapeCharacterInDirectoryInjection");
File sf = new File(testDir, "test\\^.^.\\file");
assertFalse(" Injection didn't work " + sf.getAbsolutePath(),
sf.exists());
assertTrue(" Injection allowed " + sf.getAbsolutePath(), sf.exists());
}
Please provide any additional information below.
Original issue reported on code.google.com by alan.cha...@gmail.com on 11 Jul 2012 at 5:55
Original issue reported on code.google.com by
alan.cha...@gmail.com
on 11 Jul 2012 at 5:55