e872219c8b425f80c5cd17278865c5ccf746acff
[lhc/web/wiklou.git] / maintenance / tests / RunSeleniumTests.php
1 <?php
2 /**
3 * @file
4 * @ingroup Maintenance
5 * @copyright Copyright © Wikimedia Deuschland, 2009
6 * @author Hallo Welt! Medienwerkstatt GmbH
7 * @author Markus Glaser, Dan Nessett
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 * http://www.gnu.org/copyleft/gpl.html
23 */
24
25 define( 'SELENIUMTEST', true );
26
27 require( dirname( __FILE__ ) . "/../commandLine.inc" );
28 if ( isset( $options['help'] ) ) {
29 echo <<<ENDS
30 MediaWiki $wgVersion Selenium Framework tester
31 Usage: php RunSeleniumTests.php [options...]
32 Options:
33 --port=<TCP port> Port used by selenium server to accept commands
34 --help Show this help message
35 ENDS;
36 exit( 1 );
37 }
38
39 if ( isset( $options['port'] ) ) {
40 $wgSeleniumServerPort = (int) $options['port'];
41 }
42
43 SeleniumLoader::load();
44
45 $result = new PHPUnit_Framework_TestResult;
46 $logger = new SeleniumTestConsoleLogger;
47 $result->addListener( new SeleniumTestListener( $logger ) );
48
49 foreach ( $wgSeleniumTestSuites as $testSuiteName ) {
50 $suite = new $testSuiteName;
51 $suite->addTests();
52 $suite->run( $result );
53 }
54