]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - tests/unit/test.php
new tables, better options handling
[SourceForge/phpwiki.git] / tests / unit / test.php
1 <?php // #!/usr/local/bin/php -Cq
2 /* Copyright (C) 2004 Dan Frankowski <dfrankow@cs.umn.edu>
3  * Copyright (C) 2004 Reini Urban <rurban@x-ray.at>
4  *
5  * This file is part of PhpWiki.
6  * 
7  * PhpWiki is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  * 
12  * PhpWiki is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License
18  * along with PhpWiki; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20  */
21
22 /**
23  * Unit tests for PhpWiki. 
24  *
25  * You must have PEAR's PHPUnit package <http://pear.php.net/package/PHPUnit>. 
26  * These tests are unrelated to test/maketest.pl, which do not use PHPUnit.
27  * These tests run from the command-line as well as from the browser.
28  * Use the argv (from cli) or tests (from browser) params to run only certain tests.
29  *
30  * $ tests.php test=<testname1> test=<testname2> ... db=dba debug=9 level=10
31  */
32 /****************************************************************
33    User definable options
34 *****************************************************************/
35 // common cfg options are taken from config/config.ini
36
37 //TODO: let the user decide which constants to use: define="x=y"
38 //define('USE_DB_SESSION', false);
39 //define('ENABLE_USER_NEW', false);
40
41 // memory usage: (8MB limit on certain servers)
42 // setupwiki
43 // cli:  Mem16712 => Mem16928
44 // web:  Mem21216 => Mem26332 (5MB)
45
46 // dumphtml:
47 // cli: Mem20696 => Mem31240  (with USECACHE)    (10MB)
48 // cli: Mem20240 => Mem30212  (without USECACHE) (10MB)
49 // web: Mem29424 => Mem35400  (without USECACHE) (6MB)
50 //define('USECACHE', false);
51
52 ####################################################################
53 #
54 # Preamble needed to get the tests to run.
55 #
56 ####################################################################
57
58 $cur_dir = getcwd();
59 # Add root dir to the path
60 if (substr(PHP_OS,0,3) == 'WIN')
61     $cur_dir = str_replace("\\","/", $cur_dir);
62 $rootdir = $cur_dir . '/../../';
63 $ini_sep = substr(PHP_OS,0,3) == 'WIN' ? ';' : ':';
64 $include_path = ini_get('include_path') . $ini_sep . $rootdir . $ini_sep . $rootdir . "lib/pear";
65 ini_set('include_path', $include_path);
66
67 if ($HTTP_SERVER_VARS["SERVER_NAME"] == 'phpwiki.sourceforge.net') {
68     ini_set('include_path', ini_get('include_path') . ":/usr/share/pear");
69     //define('ENABLE_PAGEPERM',false); // costs nothing
70     define('USECACHE',false); // really?
71     //define('WIKIDB_NOCACHE_MARKUP',1);
72 }
73
74 // available database backends to test:
75 $database_backends = array(
76                            'file',
77                            'dba',
78                            'SQL',
79                            'ADODB',
80                            );
81 //TODO: read some database values from config.ini, just use the "test_" prefix
82 // "flatfile" testing occurs in "tests/unit/.testbox/"
83 // "dba" needs the DATABASE_DBA_HANDLER, also in the .textbox directory
84 //$database_dba_handler = (substr(PHP_OS,0,3) == 'WIN') ? "db3" : "gdbm";
85 // "SQL" and "ADODB" need delete permissions to the test db
86 //  You have to create that database beforehand with our schema
87 //$database_dsn = "mysql://wikiuser:@localhost/phpwiki";
88 $database_prefix = "test_";
89 // For "cvs" see the seperate tests/unit_test_backend_cvs.php
90
91 # Quiet warnings in IniConfig.php
92 $HTTP_SERVER_VARS['REMOTE_ADDR'] = '127.0.0.1';
93 $HTTP_SERVER_VARS['HTTP_USER_AGENT'] = "PHPUnit";
94
95 function printMemoryUsage($msg = '') {
96     static $mem = 0;
97     static $initmem = 0;
98     if ($msg) echo $msg,"\n";
99     if ((defined('DEBUG') and (DEBUG & 8)) or !defined('DEBUG')) {
100         echo "-- MEMORY USAGE: ";
101         $oldmem = $mem;
102         if (function_exists('memory_get_usage') and memory_get_usage()) {
103             $mem = memory_get_usage();
104             //        } elseif (function_exists('getrusage') and ($u = getrusage()) and !empty($u['ru_maxrss'])) {
105             //            $mem = $u['ru_maxrss'];
106         } elseif (substr(PHP_OS,0,3)=='WIN') { // requires a newer cygwin
107             // what we want is the process memory only: apache or php
108             $pid = getmypid();
109             // This works only if it's a cygwin process (apache or php)
110             //$mem = (integer) trim(system("cat /proc/$pid/statm |cut -f1"));
111             // if it's native windows use something like this: 
112             //   (requires pslist from sysinternals.com)
113             $memstr = system("pslist $pid|grep -A1 Mem|sed 1d|perl -ane\"print \$"."F[5]\"");
114             $mem = (integer) trim($memstr);
115         } else {
116             $pid = getmypid();
117             //%MEM: Percentage of total memory in use by this process
118             //VSZ: Total virtual memory size, in 1K blocks.
119             //RSS: Real Set Size, the actual amount of physical memory allocated to this process.
120             //CPU time used by process since it started.
121             //echo "%",`ps -o%mem,vsz,rss,time -p $pid|sed 1d`,"\n";
122             $memstr = system("ps -orss -p $pid|sed 1d");
123             $mem = (integer) trim($memstr);
124         }
125         if (!$initmem) $initmem = $mem;
126         // old libc on sf.net server doesn't understand "%+4d"
127         echo sprintf("%8d\t[%s%4d]\t[+%4d]\n", $mem, $mem > $oldmem ? "+" : ($mem == $oldmem ? " " : ""), $mem - $oldmem, $mem - $initmem);
128         // TODO: print time
129         flush();
130     }
131 }
132 /* // now in stdlib.php
133 function printSimpleTrace($bt) {
134     //print_r($bt);
135     echo "Traceback:\n";
136     foreach ($bt as $i => $elem) {
137         if (!array_key_exists('file', $elem)) {
138             continue;
139         }
140         print "  " . $elem['file'] . ':' . $elem['line'] . "\n";
141     }
142 }
143 */
144 # Show lots of detail when an assert() in the code fails
145 function assert_callback( $script, $line, $message ) {
146    echo "assert failed: script ", $script," line ", $line," :";
147    echo "$message";
148    if (function_exists('debug_backtrace')) { // >= 4.3.0
149        echo "Traceback:\n";
150        printSimpleTrace(debug_backtrace());
151    }
152    exit;
153 }
154 $foo = assert_options( ASSERT_CALLBACK, 'assert_callback');
155
156 #
157 # Get error reporting to call back, too
158 #
159 // set the error reporting level for this script
160 if (defined('E_STRICT') and (E_ALL & E_STRICT)) // strict php5?
161     error_reporting(E_ALL & ~E_STRICT);         // exclude E_STRICT
162 else
163     error_reporting(E_ALL); // php4
164
165 // This is too strict, fails on every notice and warning. 
166 /*
167 function myErrorHandler$errno, $errstr, $errfile, $errline) {
168    echo "$errfile: $errline: error# $errno: $errstr\n";
169    echo "Traceback:\n";
170    printSimpleTrace(debug_backtrace());
171 }
172 // The ErrorManager version
173 function _ErrorHandler_CB(&$error) {
174    echo "Traceback:\n";
175    printSimpleTrace(debug_backtrace());
176    if ($error->isFatal()) {
177         $error->errno = E_USER_WARNING;
178         return true; // ignore error
179    }
180    return true;
181 }
182 // set to the user defined error handler
183 // $old_error_handler = set_error_handler("myErrorHandler");
184 // This is already done via _DEBUG_TRACE
185 //$ErrorManager->pushErrorHandler(new WikiFunctionCb('_ErrorHandler_CB'));
186 */
187
188 function purge_dir($dir) {
189     static $finder;
190     if (!isset($finder)) {
191         $finder = new FileFinder;
192     }
193     $fileSet = new fileSet($dir);
194     assert(!empty($dir));
195     foreach ($fileSet->getFiles() as $f) {
196         unlink("$dir/$f");
197     }
198 }
199
200 function purge_testbox() {
201     global $DBParams;   
202     if (isset($GLOBALS['request'])) {
203         $dbi = $GLOBALS['request']->getDbh();
204     }
205     $dir = $DBParams['directory'];
206     switch ($DBParams['dbtype']) {
207     case 'file':
208         assert(!empty($dir));
209         foreach (array('latest_ver','links','page_data','ver_data') as $d) {
210             purge_dir("$dir/$d");
211         }
212         break;
213     case 'SQL':
214     case 'ADODB':
215         foreach ($dbi->_backend->_table_names as $table) {
216             $dbi->genericSqlQuery("DELETE FROM $table");
217         }
218         break;
219     case 'dba':
220         purge_dir($dir);
221         break;
222     }
223     if (isset($dbi)) {
224         $dbi->_cache->close();
225         $dbi->_backend->_latest_versions = array();
226     }
227 }
228
229 function printConstant($v) {
230     echo "$v=";
231     if (defined($v)) {
232         if (constant($v) or constant($v)===0 or constant($v)==='0') echo constant($v);
233         else echo "false";
234     } else echo "undefined";
235     echo "\n";
236 }
237 /**
238  * via the HTML sapi interface print a form to easily change the current cmdline settings.
239  */
240 function html_option_form() {
241     global $debug_level,$user_level,$start_debug;
242
243     $form = HTML::tr(array('valign'=>'top'));
244     $option = HTML::div(array('class' => 'option'), 'test: ', HTML::br());
245     foreach ($GLOBALS['alltests'] as $s) {
246         $input = array('type' => 'checkbox', 'name' => 'test['.$s.']', 'value' => '1');
247         if (in_array($s,$GLOBALS['runtests'])) $input['checked'] = 'checked';
248         $option->pushContent(HTML::input($input), $s, HTML::br());
249     }
250     $form->pushContent(HTML::td($option));
251     $option = HTML::div(array('class' => 'option'), 'db: ', HTML::br());
252     foreach ($GLOBALS['database_backends'] as $s) {
253         $input = array('type' => 'checkbox', 'name' => 'db['.$s.']', 'value' => '1');
254         if (in_array($s,$GLOBALS['run_database_backends'])) $input['checked'] = 'checked';
255         $option->pushContent(HTML::input($input), $s, HTML::br());
256     }
257     $form->pushContent(HTML::td($option));
258     $form->pushContent(HTML::td(array('class' => 'option'), 'debug: ', 
259                                 HTML::input(array('name'=>'debug','value'=>$debug_level)),
260                                 HTML::br(),
261                                 'level: ', 
262                                 HTML::input(array('name'=>'level','value'=>$user_level)),
263                                 HTML::br()));
264     unset($input);
265     $option = HTML::div(array('class' => 'option'), 'defines: ', HTML::br());
266     foreach ($GLOBALS['define'] as $s) {
267         if (defined($s)) {
268             $input = array('type' => 'edit', 'name' => $s, 'value' => constant($s));
269             $option->pushContent(HTML::input($input), $s, HTML::br());
270         }
271     }
272     if (!empty($input))
273         $form->pushContent(HTML::td($option));
274     $table = HTML::form(array('action' => $_SERVER['PHP_SELF'],
275                                           'method' => 'GET',
276                               'accept-charset' => $GLOBALS['charset']),
277                         HiddenInputs(array('start_debug' => $start_debug)),
278                         HTML::table($form),
279                         HTML::input(array('type' => 'submit')),
280                         HTML::input(array('type' => 'reset')));
281     return $table->printXml();
282 }
283
284 ####################################################################
285 #
286 # End of preamble, run the test suite ..
287 #
288 ####################################################################
289
290 ob_start();
291
292 if (isset($HTTP_SERVER_VARS['REQUEST_METHOD']))
293     echo "<pre>\n";
294 elseif (!empty($HTTP_SERVER_VARS['argv']))
295     $argv = $HTTP_SERVER_VARS['argv'];
296 elseif (!ini_get("register_argc_argv"))
297     echo "Could not read cmd args (register_argc_argv=Off?)\n";
298 // purge the testbox
299     
300 $debug_level = 1; //was 9, _DEBUG_VERBOSE | _DEBUG_TRACE
301 $user_level  = 1; // BOGO (conflicts with RateIt)
302 // use argv (from cli) or tests (from browser) params to run only certain tests
303 // avoid pear: Console::Getopt
304 $alltests = array('InlineParserTest','HtmlParserTest',
305                   'PageListTest','ListPagesTest',
306                   'SetupWiki',
307                   'AllPagesTest','AllUsersTest','OrphanedPagesTest',
308                   'DumpHtml');
309 // support db=file db=dba test=SetupWiki test=DumpHtml debug=num -dconstant=value
310 // or  db=file,dba test=SetupWiki,DumpHtml debug=num -dconstant=value
311 if (isset($HTTP_SERVER_VARS['REQUEST_METHOD'])) {
312     $argv = array();
313     foreach ($HTTP_GET_VARS as $key => $val) {
314         if (is_array($val))
315             foreach ($val as $k => $v) $argv[] = $key."=".$k;
316         elseif (strstr($val,",") and in_array($key,array("test","db")))
317             foreach (explode(",",$val) as $v) $argv[] = $key."=".$v;
318         else
319             $argv[] = $key."=".$val;
320     }
321 } elseif (!empty($argv) and preg_match("/test\.php$/", $argv[0]))
322     array_shift($argv);
323 if (!empty($argv)) {
324     $runtests = array();
325     $define = array();
326     $run_database_backends = array();
327     foreach ($argv as $arg) {
328         if (preg_match("/^test=(.+)$/",$arg,$m) and in_array($m[1], $alltests))
329             $runtests[] = $m[1];
330         elseif (preg_match("/^db=(.+)$/",$arg,$m) and in_array($m[1], $database_backends))
331             $run_database_backends[] = $m[1];
332         elseif (preg_match("/^debug=(\d+)$/",$arg,$m))
333             $debug_level = $m[1];
334         elseif (preg_match("/^level=(\d+)$/",$arg,$m))
335             $user_level = $m[1];
336         elseif (preg_match("/^\-d(\w+)=(.+)$/",$arg,$m)) {
337             $define[$m[1]] = $m[2];
338             if ($m[2] == 'true') $m[2] = true;
339             elseif ($m[2] == 'false') $m[2] = false;
340             if (!defined($m[1])) define($m[1], $m[2]);
341         } elseif (in_array($arg, $alltests))
342             $runtests[] = $arg;
343         elseif ($debug_level & 1)
344             echo "ignored arg: ", $arg, "\n";
345     }
346     if (empty($run_database_backends))
347         $run_database_backends = $database_backends;
348     if (empty($runtests))
349         $runtests = $alltests;
350     if ($debug_level & 1) {
351         //echo "\n";
352         echo "PHP_SAPI=",php_sapi_name(), "\n";
353         echo "PHP_OS=",PHP_OS, "\n";
354         echo "PHP_VERSION=",PHP_VERSION, "\n";
355         echo "test=", join(",",$runtests),"\n";
356         echo "db=", join(",",$run_database_backends),"\n";
357         echo "debug=", $debug_level,"\n";
358         echo "level=", $user_level,"\n";
359         if (!empty($define)) {
360             foreach ($define as $k => $v) printConstant($k);
361         }
362         if ($debug_level & 8) {
363             echo "pid=",getmypid(),"\n";
364         }
365         echo "\n";
366     }
367     flush();
368 }
369 if (!defined('DEBUG'))
370     define('DEBUG', $debug_level);
371 // override defaults:
372 if (!defined('RATING_STORAGE')) 
373    define('RATING_STORAGE', 'WIKIPAGE');
374 if (!defined('GROUP_METHOD'))
375     define('GROUP_METHOD', 'NONE');
376
377 if (DEBUG & 8)
378     printMemoryUsage("beforePEAR");
379
380 if (DEBUG & 8)
381     printMemoryUsage("beforePhpWiki");
382
383 define('PHPWIKI_NOMAIN', true);
384 # Other needed files
385 require_once $rootdir.'index.php';
386 require_once $rootdir.'lib/main.php';
387
388 // init filefinder for pear path fixup.
389 FindFile ('PHPUnit.php', 'missing_okay');
390 // PEAR library (requires version ??)
391 require_once 'PHPUnit.php';
392
393 ob_end_flush();
394
395 if ($debug_level & 1) {
396     //echo "\n";
397     echo "PHPWIKI_VERSION=",PHPWIKI_VERSION, strstr(PHPWIKI_VERSION,"pre") ? strftime("-%Y%m%d") : "","\n";
398     if ($debug_level & 9) {
399         // which constants affect memory?
400         foreach (explode(",","USECACHE,WIKIDB_NOCACHE_MARKUP,ENABLE_USER_NEW,ENABLE_PAGEPERM") as $v) {
401             printConstant($v);
402         }
403     }
404     echo "\n";
405 }
406
407 global $ErrorManager;
408 $ErrorManager->setPostponedErrorMask(EM_FATAL_ERRORS|EM_WARNING_ERRORS|EM_NOTICE_ERRORS);
409 //FIXME: ignore cached requests (if-modified-since) from cli
410 class MockRequest extends WikiRequest {
411     function MockRequest(&$dbparams) {
412         $this->_dbi = WikiDB::open($dbparams);
413         $this->_user = new MockUser("a_user", $GLOBALS['user_level']);
414         $this->_group = new GroupNone();
415         $this->_args = array('pagename' => 'HomePage', 'action' => 'browse');
416         $this->Request();
417     }
418     function getGroup() {
419         if (is_object($this->_group))
420             return $this->_group;
421         else // FIXME: this is set to "/f:" somewhere.
422             return new GroupNone();
423     }
424 }
425
426 if (ENABLE_USER_NEW) {
427     class MockUser extends _WikiUser {
428         function MockUser($name, $level) {
429             $this->_userid = $name;
430             $this->_isSignedIn = $level > 1;
431             $this->_level = $level;
432         }
433         function isSignedIn() {
434             return $this->_isSignedIn;
435         }
436     }
437 } else {
438     class MockUser extends WikiUser {
439         function MockUser($name, $level) {
440             $this->_userid = $name;
441             $this->_isSignedIn = $level > 1;
442             $this->_level = $level;
443         }
444         function isSignedIn() {
445             return $this->_isSignedIn;
446         }
447     }
448 }
449
450 /*
451 if (ENABLE_USER_NEW)
452     $request->_user = WikiUser('AnonUser');
453 else {
454     $request->_user = new WikiUser($request, 'AnonUser');
455     $request->_prefs = $request->_user->getPreferences();
456 }
457 */
458 include_once("themes/" . THEME . "/themeinfo.php");
459 if (DEBUG & _DEBUG_TRACE)
460     printMemoryUsage("PhpWikiLoaded");
461
462 // provide a nice input form for all options
463 if (isset($HTTP_SERVER_VARS['REQUEST_METHOD'])) {
464     echo html_option_form();
465 }
466
467 // save and restore all args for each test.
468 class phpwiki_TestCase extends PHPUnit_TestCase {
469     function setUp() { 
470         global $request;
471         $this->_savedargs = $request->_args;
472         $request->_args = array();
473         if (DEBUG & 1) {
474             echo $this->_name,"\n";
475             flush();
476         }
477     }
478     function tearDown() {
479         global $request;
480         $request->_args = $this->_savedargs;
481         if (DEBUG & _DEBUG_TRACE)
482             printMemoryUsage();
483     }
484 }
485
486 # Test all db backends.
487 foreach ($database_backends as $dbtype) {
488
489     //    if (DEBUG & _DEBUG_TRACE)
490     //        printMemoryUsage("PHPUnitInitialized");
491
492     $DBParams['dbtype']               = $dbtype;
493     $DBParams['directory']            = $cur_dir . '/.testbox';
494     $DBParams['prefix']               = $database_prefix;
495     // from config.ini
496     //$DBParams['dsn']                  = $database_dsn;
497     //$DBParams['dba_handler']          = $database_dba_handler;
498
499     echo "Testing DB Backend \"$dbtype\" ...\n";
500     $request = new MockRequest($DBParams);
501     if ( ! ENABLE_USER_NEW ) {
502         $request->_user->_request =& $request;
503         $request->_user->_dbi =& $request->_dbi;
504     }
505     if (DEBUG & _DEBUG_TRACE)
506         printMemoryUsage("PhpWikiInitialized");
507
508     foreach ($runtests as $test) {
509         if (!@ob_get_level()) ob_start();
510         $suite  = new PHPUnit_TestSuite("phpwiki");
511         if (file_exists(dirname(__FILE__).'/lib/'.$test.'.php'))
512             require_once dirname(__FILE__).'/lib/'.$test.'.php';
513         else    
514             require_once dirname(__FILE__).'/lib/plugin/'.$test.'.php';
515         $suite->addTest( new PHPUnit_TestSuite($test) );
516
517         @set_time_limit(240); 
518         $result = PHPUnit::run($suite); 
519         echo "ran " . $result->runCount() . " tests, " . $result->failureCount() . " failures.\n";
520         ob_end_flush();
521         if ($result->failureCount() > 0) {
522             echo "More detail:\n";
523             echo $result->toString();
524         }
525     }
526
527     $request->chunkOutput();
528     $request->_dbi->close();
529     unset($request->_user);
530     unset($request->_dbi);
531     unset($request);
532     unset($suite);
533     unset($result);
534 }
535
536 if (isset($HTTP_SERVER_VARS['REQUEST_METHOD']))
537     echo "</pre>\n";
538
539 // (c-file-style: "gnu")
540 // Local Variables:
541 // mode: php
542 // tab-width: 8
543 // c-basic-offset: 4
544 // c-hanging-comment-ender-p: nil
545 // indent-tabs-mode: nil
546 // End:   
547 ?>