]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - tests/unit/test.php
minor test optimizations
[SourceForge/phpwiki.git] / tests / unit / test.php
1 #!/usr/local/bin/php -Cq
2 <?php  
3 /* Copyright (C) 2004 Dan Frankowski <dfrankow@cs.umn.edu>
4  * Copyright (C) 2004 Reini Urban <rurban@x-ray.at>
5  *
6  * This file is part of PhpWiki.
7  * 
8  * PhpWiki is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  * 
13  * PhpWiki is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  * 
18  * You should have received a copy of the GNU General Public License
19  * along with PhpWiki; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
22
23 /**
24  * Unit tests for PhpWiki. 
25  *
26  * You must have PEAR's PHPUnit package <http://pear.php.net/package/PHPUnit>. 
27  * These tests are unrelated to test/maketest.pl, which do not use PHPUnit.
28  * These tests run from the command-line as well as from the browser.
29  * Use the argv (from cli) or tests (from browser) params to run only certain tests.
30  */
31
32 ####################################################################
33 #
34 # Preamble needed to get the tests to run.
35 #
36 ####################################################################
37
38
39 $cur_dir = getcwd();
40 # Add root dir to the path
41 if (substr(PHP_OS,0,3) == 'WIN')
42     $cur_dir = str_replace("\\","/",$cur_dir);
43 $rootdir = $cur_dir . '/../../';
44 $ini_sep = substr(PHP_OS,0,3) == 'WIN' ? ';' : ':';
45 ini_set('include_path', ini_get('include_path') . $ini_sep . $rootdir);
46
47 # This quiets a warning in config.php
48 $HTTP_SERVER_VARS['REMOTE_ADDR'] = '127.0.0.1';
49 $HTTP_SERVER_VARS['HTTP_USER_AGENT'] = "PHPUnit";
50 define('GROUP_METHOD', 'NONE');
51 define('RATING_STORAGE','WIKIPAGE');
52 define('PHPWIKI_NOMAIN',true);
53
54 # Other needed files
55 require_once $rootdir.'index.php';
56 require_once $rootdir.'lib/main.php';
57
58 define('DEBUG', _DEBUG_TRACE);
59
60 function printSimpleTrace($bt) {
61     //print_r($bt);
62     echo "Traceback:\n";
63     foreach ($bt as $i => $elem) {
64         if (!array_key_exists('file', $elem)) {
65             continue;
66         }
67         print "  " . $elem['file'] . ':' . $elem['line'] . "\n";
68     }
69 }
70
71 # Show lots of detail when an assert() in the code fails
72 function assert_callback( $script, $line, $message ) {
73    echo "assert failed: script ", $script," line ", $line," :";
74    echo "$message";
75    echo "Traceback:\n";
76    printSimpleTrace(debug_backtrace());
77    exit;
78 }
79 $foo = assert_options( ASSERT_CALLBACK, 'assert_callback');
80
81 #
82 # Get error reporting to call back, too
83 #
84 // set the error reporting level for this script
85 error_reporting(E_ALL);
86 /*
87 // This is too strict, fails on every notice and warning. 
88 // TODO: push an errorhandler with printSimpleTrace
89 function myErrorHandler($errno, $errstr, $errfile, $errline)
90 {
91    echo "$errfile: $errline: error# $errno: $errstr\n";
92    // Back trace
93    echo "Traceback:\n";
94    printSimpleTrace(debug_backtrace());
95    exit;
96 }
97 // set to the user defined error handler
98 $old_error_handler = set_error_handler("myErrorHandler");
99 */
100
101 # This is the test DB backend
102 $db_params                         = array();
103 $db_params['directory']            = $cur_dir . '/.testbox';
104 $db_params['dbtype']               = 'file';
105
106 if (ENABLE_USER_NEW) {
107     class MockUser extends _WikiUser {
108         function MockUser($name, $isSignedIn) {
109             $this->_userid = $name;
110             $this->_isSignedIn = $isSignedIn;
111         }
112         function isSignedIn() {
113             return $this->_isSignedIn;
114         }
115     }
116 } else {
117     class MockUser extends WikiUser {
118         function MockUser($name, $isSignedIn) {
119             $this->_userid = $name;
120             $this->_isSignedIn = $isSignedIn;
121         }
122         function isSignedIn() {
123             return $this->_isSignedIn;
124         }
125     }
126 }
127
128 //FIXME: ignore cached requests (if-modified-since) from cli
129 class MockRequest extends WikiRequest {
130     function MockRequest(&$dbparams) {
131         $this->_dbi = WikiDB::open($dbparams);
132         $this->_user = new MockUser("a_user", true);
133         $this->_group = WikiGroup::getGroup();
134         $this->_args = array('pagename' => 'HomePage', 'action' => 'browse');
135         $this->Request();
136     }
137     function getGroup() {
138         if (is_object($this->_group))
139             return $this->_group;
140         else // FIXME: this is set to "/f:" somewhere.
141             return WikiGroup::getGroup();
142     }
143 }
144
145 function purge_dir($dir) {
146     static $finder;
147     if (!isset($finder)) {
148         $finder = new FileFinder;
149     }
150         $fileSet = new fileSet($dir);
151         assert($dir);
152     foreach ($fileSet->getFiles() as $f) {
153         unlink("$dir/$f");
154     }
155 }
156
157 function purge_testbox() {
158     global $db_params;  
159     $dir = $db_params['directory'];
160     assert($dir);
161     foreach (array('latest_ver','links','page_data','ver_data') as $d) {
162         purge_dir("$dir/$d");
163     }
164     if (isset($GLOBALS['request'])) {
165         $dbi = $GLOBALS['request']->getDbh();
166         $dbi->_cache->close();
167         $dbi->_backend->_latest_versions = array();
168     }
169 }
170
171 global $ErrorManager;
172 $ErrorManager->setPostponedErrorMask(E_NOTICE|E_USER_NOTICE|E_USER_WARNING|E_WARNING);
173 $request = new MockRequest($db_params);
174
175 /*
176 if (ENABLE_USER_NEW)
177     $request->_user = WikiUser('AnonUser');
178 else {
179     $request->_user = new WikiUser($request, 'AnonUser');
180     $request->_prefs = $request->_user->getPreferences();
181 }
182 */
183 include_once("themes/" . THEME . "/themeinfo.php");
184
185 ####################################################################
186 #
187 # End of preamble, run the test suite ..
188 #
189 ####################################################################
190
191 # Test files
192 require_once 'PHPUnit.php';
193 # lib/config.php might do a cwd()
194
195 if (isset($HTTP_SERVER_VARS['REQUEST_METHOD']))
196     echo "<pre>\n";
197 // purge the testbox
198     
199 print "Run tests .. ";
200
201 $suite  = new PHPUnit_TestSuite("phpwiki");
202 // use argv (from cli) or tests (from browser) params to run only certain tests
203 $alltests = array('InlineParserTest','HtmlParserTest','PageListTest','ListPagesTest',
204                               'SetupWiki','DumpHtml','AllPagesTest','AllUsersTest','OrphanedPagesTest');
205 if (isset($HTTP_SERVER_VARS['REQUEST_METHOD']) and !empty($HTTP_GET_VARS['tests']))
206     $argv = explode(',',$HTTP_GET_VARS['tests']);
207 if (!empty($argv) and preg_match("/test\.php$/", $argv[0]))
208     array_shift($argv);
209 if (!empty($argv)) {
210     $runtests = array();
211     foreach ($argv as $test) {
212         if (in_array($test,$alltests))
213             $runtests[] = $test;
214     }
215     $alltests = $runtests;
216     print_r($runtests);
217 }
218
219 foreach ($alltests as $test) {
220     if (file_exists(dirname(__FILE__).'/lib/'.$test.'.php'))
221         require_once dirname(__FILE__).'/lib/'.$test.'.php';
222     else    
223         require_once dirname(__FILE__).'/lib/plugin/'.$test.'.php';
224     $suite->addTest( new PHPUnit_TestSuite($test) );
225 }
226 $result = PHPUnit::run($suite); 
227
228 echo "ran " . $result->runCount() . " tests, " . $result->failureCount() . " failures.\n";
229 flush();
230
231 if ($result->failureCount() > 0) {
232     echo "More detail:\n";
233     echo $result->toString();
234 }
235
236 if (isset($HTTP_SERVER_VARS['REQUEST_METHOD']))
237     echo "</pre>\n";
238
239 // (c-file-style: "gnu")
240 // Local Variables:
241 // mode: php
242 // tab-width: 8
243 // c-basic-offset: 4
244 // c-hanging-comment-ender-p: nil
245 // indent-tabs-mode: nil
246 // End:   
247 ?>