PHPParser parser;
- public PHPParserTestCase2(String name) {
+ public PHPParserTestCase2(final String name) {
super(name);
}
+ public void testPHPParserWithFiles() {
+ final String folderName = "phpfiles";
+ final File dirName = new File(folderName);
+ Assert.isTrue(dirName.isDirectory() || dirName.exists());
+ testDirectory(dirName);
+ }
+
+
/**
* Test the PHP Parser with different PHP snippets
*/
public void testPHPParser() {
+ checkPHP("for($i;$i;){}", true);
+ checkPHP("echo $this->$a;", true);
+ checkPHP("for ($this->i = 0;$this->i<2;$this->i++) {}", true);
+ checkPHP("for ($i = 2;$i<3;$i+= 3) {}", true);
+ checkPHP("function c($a,$b) {}", true);
checkPHP("$a = $$tata;", true);
checkPHP("$$tata=2;", true);
checkPHP("$tata;", true);
//checkHTML(new File("class.adm_gestuser.php"));
checkHTML("<?php $szOpenImg = \"/$location[Treeview]/images/Open.gif\"; ?>", true);
checkHTML("<?php function f($a,$b) {" +
- "echo $a; } ?>", true);
+ "echo $a; } ?>", true);
checkHTML("<?php ec ho 'coucou'; ?>" +
- "\n dfgdfgfdfg" +
- "\n" +
- "\n" +
- "<?php" +
- "\necho ' caca';" +
- "\n?>" +
- "dfgdfg" +
- "\ndsfgdf", false);
+ "\n dfgdfgfdfg" +
+ "\n" +
+ "\n" +
+ "<?php" +
+ "\necho ' caca';" +
+ "\n?>" +
+ "dfgdfg" +
+ "\ndsfgdf", false);
checkHTML("<?php echo 'coucou'; ?>" +
- "\n dfgdfgfdfg" +
- "\n" +
- "\n" +
- "<?php" +
- "\necho ' caca';" +
- "\n?>", true);
+ "\n dfgdfgfdfg" +
+ "\n" +
+ "\n" +
+ "<?php" +
+ "\necho ' caca';" +
+ "\n?>", true);
checkHTML("<html>sdfsdf <?php phpinfo(); ?>", true);
checkHTML("\n\n\n\n <?php print \"Hello world\"?> ", true);
checkHTML("<?php phpinfo()?>", true);
checkHTML("<?php phpinfo(); ?> foo <?php phpinfo(); ?>", true);
- checkHTML(" <?php //this is a line comment ?>",true);
+ checkHTML(" <?php //this is a line comment ?>", true);
//todo : fix this checkHTML("<?php mysql_query(\"CREATE DATABASE $DB_TABLE\" ) or print 'Error creating database<br>'; ?>",true);
checkHTML("<?php function func($a) {$v1 = $v23;}; ?>", true);
checkHTML("<?php $a = !$b; ?>", true);
// checkPHP("$a == 0 ? print \"true\" : print \"false\";");
checkPHP("if(!$result = mysql_query($sql)) return(array());", true);
checkPHP("class test { " +
- " var $t;" +
- " var $tutu,$toto;" +
- " var $a = 2;" +
- "function &fetchRow($result, $fetchmode = DB_FETCHMODE_DEFAULT, $rownum=null) { }" +
- "}", true);
+ " var $t;" +
+ " var $tutu,$toto;" +
+ " var $a = 2;" +
+ "function &fetchRow($result, $fetchmode = DB_FETCHMODE_DEFAULT, $rownum=null) { }" +
+ "}", true);
checkPHP("call_user_method_array($function_name[1], ${$objectname}, $arguments);", true);
checkPHP("@$connect_function($dbhost, $user, $pw);", true);
checkPHP("$conn = @$connect_function($dbhost, $user, $pw);", true);
checkPHP("$AllowableHTML = array(\"b\"=>1,\n \"i\"=>1);", true);
checkPHP("if ($term{0}!=$firstChar) {}", true);
checkPHP(
- "echo \"<center><b>\"._NOADMINYET.\"</b></center><br><br>\"\n"
- + ".\"<form action=\\\"admin.php\\\" method=\\\"post\\\">\"\n"
- + ".\"<tr><td><b>\"._NICKNAME.\":</b></td><td><input type=\\\"text\\\" name=\\\"name\\\" size=\\\"30\\\" maxlength=\\\"25\\\"></td></tr>\"\n"
- + ";", true);
+ "echo \"<center><b>\"._NOADMINYET.\"</b></center><br><br>\"\n"
+ + ".\"<form action=\\\"admin.php\\\" method=\\\"post\\\">\"\n"
+ + ".\"<tr><td><b>\"._NICKNAME.\":</b></td><td><input type=\\\"text\\\" name=\\\"name\\\" size=\\\"30\\\" maxlength=\\\"25\\\"></td></tr>\"\n"
+ + ";", true);
checkPHP("/* \n overLib is from Eric Bosrup (http://www.bosrup.com/web/overlib/) \n */;", true);
checkPHP("if ($arrAtchCookie[1]==0 && $IdAtchPostId!=null){ } ", true);
checkPHP("$arrAtchCookie[1] -= filesize(realpath($AtchTempDir).\"/\".$xattachlist)/ 1024; ", true);
checkPHP(
- "if (!isset($message)){ \n"
- + "$message = $myrow[post_text];\n"
- + "$message = eregi_replace(\"\\[addsig]\", \"\\n-----------------\\n\" . $myrow[user_sig], $message); \n"
- + "$message = str_replace(\"<BR>\", \"\\n\", $message); \n"
- + "$message = str_replace(\"<br>\", \"\\n\", $message); \n } ", true);
+ "if (!isset($message)){ \n"
+ + "$message = $myrow[post_text];\n"
+ + "$message = eregi_replace(\"\\[addsig]\", \"\\n-----------------\\n\" . $myrow[user_sig], $message); \n"
+ + "$message = str_replace(\"<BR>\", \"\\n\", $message); \n"
+ + "$message = str_replace(\"<br>\", \"\\n\", $message); \n } ", true);
checkPHP("do {$array[] = array(\"$myrow[uid]\" => \"$myrow[uname]\"); } while($myrow = mysql_fetch_array($result));", true);
checkPHP("$ol = new Overlib();", true);
checkPHP("$risultato = mysql_query($sql) or\n die(mysql_error());", true);
}
- private void checkPHP(String strEval, boolean good) {
+ private void checkPHP(final String strEval, final boolean good) {
ParseException ex = null;
try {
System.out.println("strEval = " + strEval);
}
}
- private void checkHTML(String strEval, boolean good) {
+ private void checkHTML(final String strEval, final boolean good) {
ParseException ex = null;
try {
System.out.println("strEval = " + strEval);
}
}
- private void checkHTML(File strEval, boolean good) {
+ private void checkHTML(final File strEval, final boolean good) {
ParseException ex = null;
try {
System.out.println("strEval = " + strEval.toString());
}
}
+ private void testDirectory(final File file) {
+ if (file.isDirectory()) {
+ final File[] files = file.listFiles();
+ for (int i = 0; i < files.length; i++) {
+ testDirectory(files[i]);
+ }
+ } else {
+ if (file.getName().toUpperCase().endsWith(".PHP")) {
+ checkHTML(file, true);
+ }
+ }
+ }
+
/**
* The JUnit setup method
*/