Index: trunk/phase3/tests/selenium/selenium_settings.ini.sample |
— | — | @@ -27,6 +27,6 @@ |
28 | 28 | |
29 | 29 | [SeleniumTests] |
30 | 30 | |
31 | | -testSuite[SimpleSeleniumTestSuite] = "maintenance/tests/selenium/suites/SimpleSeleniumTestSuite.php" |
| 31 | +testSuite[SimpleSeleniumTestSuite] = "tests/selenium/suites/SimpleSeleniumTestSuite.php" |
32 | 32 | testSuite[WikiEditorTestSuite] = "extensions/WikiEditor/selenium/WikiEditorTestSuite.php" |
33 | 33 | |
Index: trunk/phase3/tests/selenium/selenium_settings_grid.ini.sample |
— | — | @@ -11,4 +11,4 @@ |
12 | 12 | |
13 | 13 | [testSuite] |
14 | 14 | |
15 | | -SimpleSeleniumTestSuite = "maintenance/tests/selenium/suites/SimpleSeleniumTestSuite.php" |
\ No newline at end of file |
| 15 | +SimpleSeleniumTestSuite = "tests/selenium/suites/SimpleSeleniumTestSuite.php" |
\ No newline at end of file |
Index: trunk/phase3/tests/selenium/selenium_settings.ini.php52.sample |
— | — | @@ -19,5 +19,5 @@ |
20 | 20 | |
21 | 21 | [testSuite] |
22 | 22 | |
23 | | -SimpleSeleniumTestSuite = "maintenance/tests/selenium/suites/SimpleSeleniumTestSuite.php" |
| 23 | +SimpleSeleniumTestSuite = "tests/selenium/suites/SimpleSeleniumTestSuite.php" |
24 | 24 | WikiEditorTestSuite = "extensions/WikiEditor/selenium/WikiEditorTestSuite.php" |
Index: trunk/phase3/tests/selenium/suites/MediaWikiEditorConfig.php |
— | — | @@ -32,7 +32,7 @@ |
33 | 33 | public static function getSettings(&$includeFiles, &$globalConfigs) { |
34 | 34 | $includes = array( |
35 | 35 | //files that needed to be included would go here |
36 | | - 'maintenance/tests/selenium/suites/MediaWikiCommonFunction.php' |
| 36 | + 'tests/selenium/suites/MediaWikiCommonFunction.php' |
37 | 37 | ); |
38 | 38 | $configs = array( |
39 | 39 | 'wgPageLoadTime' => "600000" |
Index: trunk/phase3/tests/selenium/suites/SimpleSeleniumTestSuite.php |
— | — | @@ -3,7 +3,7 @@ |
4 | 4 | * Sample test suite. |
5 | 5 | * Two ways to configure MW for these tests |
6 | 6 | * 1) If you are running multiple test suites, add the following in LocalSettings.php |
7 | | - * require_once("maintenance/tests/selenium/SimpleSeleniumConfig.php"); |
| 7 | + * require_once("tests/selenium/SimpleSeleniumConfig.php"); |
8 | 8 | * $wgSeleniumTestConfigs['SimpleSeleniumTestSuite'] = 'SimpleSeleniumConfig::getSettings'; |
9 | 9 | * OR |
10 | 10 | * 2) Add the following to your Localsettings.php |
— | — | @@ -17,7 +17,7 @@ |
18 | 18 | } |
19 | 19 | public function addTests() { |
20 | 20 | $testFiles = array( |
21 | | - 'maintenance/tests/selenium/suites/SimpleSeleniumTestCase.php' |
| 21 | + 'tests/selenium/suites/SimpleSeleniumTestCase.php' |
22 | 22 | ); |
23 | 23 | parent::addTestFiles( $testFiles ); |
24 | 24 | } |
Index: trunk/phase3/tests/selenium/suites/MediaWikExtraTestSuite.php |
— | — | @@ -7,13 +7,13 @@ |
8 | 8 | } |
9 | 9 | public function addTests() { |
10 | 10 | $testFiles = array( |
11 | | - 'maintenance/tests/selenium/suites/MyContributionsTestCase.php', |
12 | | - 'maintenance/tests/selenium/suites/MyWatchListTestCase.php', |
13 | | - 'maintenance/tests/selenium/suites/UserPreferencesTestCase.php', |
14 | | - 'maintenance/tests/selenium/suites/MovePageTestCase.php', |
15 | | - 'maintenance/tests/selenium/suites/PageSearchTestCase.php', |
16 | | - 'maintenance/tests/selenium/suites/EmailPasswordTestCase.php', |
17 | | - 'maintenance/tests/selenium/suites/CreateAccountTestCase.php' |
| 11 | + 'tests/selenium/suites/MyContributionsTestCase.php', |
| 12 | + 'tests/selenium/suites/MyWatchListTestCase.php', |
| 13 | + 'tests/selenium/suites/UserPreferencesTestCase.php', |
| 14 | + 'tests/selenium/suites/MovePageTestCase.php', |
| 15 | + 'tests/selenium/suites/PageSearchTestCase.php', |
| 16 | + 'tests/selenium/suites/EmailPasswordTestCase.php', |
| 17 | + 'tests/selenium/suites/CreateAccountTestCase.php' |
18 | 18 | ); |
19 | 19 | parent::addTestFiles( $testFiles ); |
20 | 20 | } |
Index: trunk/phase3/tests/selenium/suites/PageDeleteTestSuite.php |
— | — | @@ -7,7 +7,7 @@ |
8 | 8 | } |
9 | 9 | public function addTests() { |
10 | 10 | $testFiles = array( |
11 | | - 'maintenance/tests/selenium/suites/DeletePageAdminTestCase.php' |
| 11 | + 'tests/selenium/suites/DeletePageAdminTestCase.php' |
12 | 12 | ); |
13 | 13 | parent::addTestFiles( $testFiles ); |
14 | 14 | } |
Index: trunk/phase3/tests/selenium/suites/MediaWikiEditorTestSuite.php |
— | — | @@ -7,10 +7,10 @@ |
8 | 8 | } |
9 | 9 | public function addTests() { |
10 | 10 | $testFiles = array( |
11 | | - 'maintenance/tests/selenium/suites/AddNewPageTestCase.php', |
12 | | - 'maintenance/tests/selenium/suites/AddContentToNewPageTestCase.php', |
13 | | - 'maintenance/tests/selenium/suites/PreviewPageTestCase.php', |
14 | | - 'maintenance/tests/selenium/suites/SavePageTestCase.php', |
| 11 | + 'tests/selenium/suites/AddNewPageTestCase.php', |
| 12 | + 'tests/selenium/suites/AddContentToNewPageTestCase.php', |
| 13 | + 'tests/selenium/suites/PreviewPageTestCase.php', |
| 14 | + 'tests/selenium/suites/SavePageTestCase.php', |
15 | 15 | ); |
16 | 16 | parent::addTestFiles( $testFiles ); |
17 | 17 | } |
Index: trunk/phase3/tests/selenium/suites/MediawikiCoreSmokeTestSuite.php |
— | — | @@ -10,7 +10,7 @@ |
11 | 11 | } |
12 | 12 | public function addTests() { |
13 | 13 | $testFiles = array( |
14 | | - 'maintenance/tests/selenium/suites/MediawikiCoreSmokeTestCase.php' |
| 14 | + 'tests/selenium/suites/MediawikiCoreSmokeTestCase.php' |
15 | 15 | ); |
16 | 16 | parent::addTestFiles( $testFiles ); |
17 | 17 | } |
Index: trunk/phase3/tests/phpunit/includes/parser/MediaWikiParserTest.php |
— | — | @@ -20,7 +20,7 @@ |
21 | 21 | |
22 | 22 | $tester = new self; |
23 | 23 | |
24 | | - $iter = new TestFileIterator( "$IP/maintenance/tests/parser/parserTests.txt", $tester ); |
| 24 | + $iter = new TestFileIterator( "$IP/tests/parser/parserTests.txt", $tester ); |
25 | 25 | $tester->count = 0; |
26 | 26 | |
27 | 27 | foreach ( $iter as $test ) { |
Index: trunk/phase3/tests/phpunit/includes/SeleniumConfigurationTest.php |
— | — | @@ -29,7 +29,7 @@ |
30 | 30 | runAgainstGrid = false |
31 | 31 | |
32 | 32 | [SeleniumTests] |
33 | | -testSuite[SimpleSeleniumTestSuite] = "maintenance/tests/selenium/SimpleSeleniumTestSuite.php" |
| 33 | +testSuite[SimpleSeleniumTestSuite] = "tests/selenium/SimpleSeleniumTestSuite.php" |
34 | 34 | testSuite[TestSuiteName] = "testSuitePath" |
35 | 35 | '; |
36 | 36 | /* |
— | — | @@ -59,7 +59,7 @@ |
60 | 60 | * Array of expected testSuites from $testConfig0 |
61 | 61 | */ |
62 | 62 | private $testSuites0 = array( |
63 | | - 'SimpleSeleniumTestSuite' => 'maintenance/tests/selenium/SimpleSeleniumTestSuite.php', |
| 63 | + 'SimpleSeleniumTestSuite' => 'tests/selenium/SimpleSeleniumTestSuite.php', |
64 | 64 | 'TestSuiteName' => 'testSuitePath' |
65 | 65 | ); |
66 | 66 | |