1 package junit.sourceforge.phpeclipse;
2 /**********************************************************************
3 Copyright (c) 2002 Klaus Hartlage - www.eclipseproject.de
4 All rights reserved. This program and the accompanying materials
5 are made available under the terms of the Common Public License v1.0
6 which accompanies this distribution, and is available at
7 http://www.eclipse.org/legal/cpl-v10.html
8 **********************************************************************/
10 import org.eclipse.core.runtime.CoreException;
12 import junit.framework.TestCase;
14 import net.sourceforge.phpeclipse.phpeditor.PHPParser;
17 * Tests the php parser
19 public class PHPParserTestCase extends TestCase {
23 public PHPParserTestCase(String name) {
28 * Test the PHP Parser with different PHP snippets
30 public void testPHPParser() {
31 checkHTML("<?php phpinfo(); ?>");
32 checkHTML("<?php phpinfo()?>");
33 checkHTML("<?php phpinfo(); ?> foo <?php phpinfo(); ?>");
34 checkHTML(" <?php //this is a line comment ?>");
36 checkPHP("if(!$result = mysql_query($sql)) return(array());");
37 checkPHP("class test { function &fetchRow($result, $fetchmode = DB_FETCHMODE_DEFAULT, $rownum=null) \n{ \n } \n }");
38 checkPHP("call_user_method_array($function_name[1], ${$objectname}, $arguments);");
39 checkPHP("@$connect_function($dbhost, $user, $pw);");
40 checkPHP("$conn = @$connect_function($dbhost, $user, $pw);");
41 checkPHP("global ${$objectname}; ");
42 checkPHP("class DB_mssql extends DB_common { var $connection; var $phptype, $dbsyntax; } ");
43 checkPHP("unset($this->blockvariables[$block][$varname]);");
44 checkPHP("new IT_Error(\"The block '$block' was not found in the template.\", __FILE__, __LINE__);");
45 checkPHP("for ($i=156, $j=0; $i<512; $i++, $j++) $v_checksum += ord(substr($v_binary_data_last,$j,1));");
46 checkPHP("define('MAIL_MIME_CRLF', $crlf, true);");
47 checkPHP("static $last_run = 0;");
48 checkPHP("unset($headers['Subject']);");
49 checkPHP("switch($func) {\n case \"f0\":\n case \"f1\":\n f1();\n break; \n case \"tt\": \n default: \n f0(); \n break;\n }");
50 checkPHP("function validateAndParseResponse($code, &$arguments) { }");
51 checkPHP("$options = Console_Getopt::getopt($argv, \"h?v:e:p:d:\");");
52 checkPHP("$this->container = new $container_class($container_options);");
53 checkPHP("class Cmd extends PEAR { var $arrSetting = array(); }");
54 checkPHP("class Cmd extends PEAR { var $arrSetting = array(), $i=10; }");
55 checkPHP("if (isset($test)) { } elseif (isset($lang)) { }");
56 checkPHP("require_once(\"mainfile.php\"); ");
57 checkPHP("if (eregi(\"footer.php\",$PHP_SELF)) {\n" + "Header(\"Location: index.php\");\n" + "die();\n" + "}\n");
58 checkPHP("while (eregi(\"footer.php\",$PHP_SELF)) {\n" + "Header(\"Location: index.php\");\n" + "die();\n" + "}\n");
59 checkPHP("while (eregi(\"footer.php\",$PHP_SELF)) :\n" + "Header(\"Location: index.php\");\n" + "die();\n" + "endwhile;\n");
60 checkPHP("$tipath = \"images/topics/\";");
61 checkPHP("$reasons = array(\"1\", \"2\",\"test\");");
62 checkPHP("if ($home == 1) { message_box(); blocks(Center);}");
63 checkPHP("$bresult = sql_query(\"select * from \".$prefix.\"_banner WHERE type='0' AND active='1'\", $dbi);");
64 checkPHP("switch($func) {\n case \"f1\":\n f1();\n break; \n default: \n f0(); \n break;\n }");
65 checkPHP("list ($catid) = sql_fetch_row($result, $dbi);");
66 checkPHP("if (!$name) { \n }");
67 checkPHP("mt_srand((double)microtime()*1000000);");
68 checkPHP("\"\\\"\";");
69 checkPHP("$v->read();");
70 checkPHP("$alttext = ereg_replace(\"\\\"\", \"\", $alttext);");
71 checkPHP("$message .= \"\"._THISISAUTOMATED.\"\\n\\n\";");
72 checkPHP("if (!empty($pass) AND $pass==$passwd) { }");
73 checkPHP("$AllowableHTML = array(\"b\"=>1,\n \"i\"=>1);");
74 checkPHP("if ($term{0}!=$firstChar) {}");
76 "echo \"<center><b>\"._NOADMINYET.\"</b></center><br><br>\"\n"
77 + ".\"<form action=\\\"admin.php\\\" method=\\\"post\\\">\"\n"
78 + ".\"<tr><td><b>\"._NICKNAME.\":</b></td><td><input type=\\\"text\\\" name=\\\"name\\\" size=\\\"30\\\" maxlength=\\\"25\\\"></td></tr>\"\n"
80 checkPHP("/* \n overLib is from Eric Bosrup (http://www.bosrup.com/web/overlib/) \n */");
81 checkPHP("if ($arrAtchCookie[1]==0 && $IdAtchPostId!=null){ } ");
82 checkPHP("$arrAtchCookie[1] -= filesize(realpath($AtchTempDir).\"/\".$xattachlist)/ 1024; ");
84 "if (!isset($message)){ \n"
85 + "$message = $myrow[post_text];\n"
86 + "$message = eregi_replace(\"\\[addsig]\", \"\\n-----------------\\n\" . $myrow[user_sig], $message); \n"
87 + "$message = str_replace(\"<BR>\", \"\\n\", $message); \n"
88 + "$message = str_replace(\"<br>\", \"\\n\", $message); \n } ");
89 checkPHP("do {$array[] = array(\"$myrow[uid]\" => \"$myrow[uname]\"); } while($myrow = mysql_fetch_array($result));");
90 checkPHP("$ol = new Overlib();");
91 checkPHP("$risultato = mysql_query($sql) or\n die(mysql_error());");
94 private void checkPHP(String strEval) {
96 parser.phpParse(strEval, 1);
97 } catch (CoreException e) {
101 private void checkHTML(String strEval) {
102 parser.htmlParse(strEval);
106 * The JUnit setup method
108 protected void setUp() {
109 parser = new PHPParser(null);