summaryrefslogtreecommitdiff
path: root/tests/selenium/suites
diff options
context:
space:
mode:
Diffstat (limited to 'tests/selenium/suites')
-rw-r--r--tests/selenium/suites/MediawikiCoreSmokeTestCase.php40
-rw-r--r--tests/selenium/suites/MediawikiCoreSmokeTestSuite.php2
-rw-r--r--tests/selenium/suites/SimpleSeleniumTestCase.php14
-rw-r--r--tests/selenium/suites/SimpleSeleniumTestSuite.php2
4 files changed, 29 insertions, 29 deletions
diff --git a/tests/selenium/suites/MediawikiCoreSmokeTestCase.php b/tests/selenium/suites/MediawikiCoreSmokeTestCase.php
index 7b9525af..5fc1a5a6 100644
--- a/tests/selenium/suites/MediawikiCoreSmokeTestCase.php
+++ b/tests/selenium/suites/MediawikiCoreSmokeTestCase.php
@@ -1,44 +1,44 @@
<?php
-/*
+/*
* Stub of tests be need as part of the hack-a-ton
*/
class MediawikiCoreSmokeTestCase extends SeleniumTestCase {
public function testUserLogin() {
-
+
}
-
+
public function testChangeUserPreference() {
-
+
}
-
- /*
+
+ /**
* TODO: generalize this test to be reusable for different skins
*/
public function testCreateNewPageVector() {
-
+
}
-
- /*
+
+ /**
* TODO: generalize this test to be reusable for different skins
*/
public function testEditExistingPageVector() {
-
+
}
-
- /*
+
+ /**
* TODO: generalize this test to be reusable for different skins
*/
public function testCreateNewPageMonobook() {
-
+
}
-
- /*
+
+ /**
* TODO: generalize this test to be reusable for different skins
*/
public function testEditExistingPageMonobook() {
-
+
}
-
+
public function testImageUpload() {
$this->login();
$this->open( $this->getUrl() .
@@ -48,10 +48,10 @@ class MediawikiCoreSmokeTestCase extends SeleniumTestCase {
$this->check( 'wpIgnoreWarning' );
$this->click( 'wpUpload' );
$this->waitForPageToLoad( 30000 );
-
+
$this->assertSeleniumHTMLContains(
'//h1[@class="firstHeading"]', "Wikipedia-logo-v2-de.png" );
-
+
/*
$this->open( $this->getUrl() . '/index.php?title=Image:'
. ucfirst( $this->filename ) . '&action=delete' );
@@ -64,6 +64,6 @@ class MediawikiCoreSmokeTestCase extends SeleniumTestCase {
ucfirst( $this->filename ) . '.*has been deleted.' );
*/
}
-
+
}
diff --git a/tests/selenium/suites/MediawikiCoreSmokeTestSuite.php b/tests/selenium/suites/MediawikiCoreSmokeTestSuite.php
index 5d5ef518..a9a9b4d6 100644
--- a/tests/selenium/suites/MediawikiCoreSmokeTestSuite.php
+++ b/tests/selenium/suites/MediawikiCoreSmokeTestSuite.php
@@ -1,5 +1,5 @@
<?php
-/*
+/**
* Stubs for now. We're going to start populating this test.
*/
class MediawikiCoreSmokeTestSuite extends SeleniumTestSuite
diff --git a/tests/selenium/suites/SimpleSeleniumTestCase.php b/tests/selenium/suites/SimpleSeleniumTestCase.php
index 99a75c12..b87172e6 100644
--- a/tests/selenium/suites/SimpleSeleniumTestCase.php
+++ b/tests/selenium/suites/SimpleSeleniumTestCase.php
@@ -1,11 +1,11 @@
<?php
-/*
+/*
* This test case is part of the SimpleSeleniumTestSuite.
* Configuration for these tests are documented as part of SimpleSeleniumTestSuite.php
*/
class SimpleSeleniumTestCase extends SeleniumTestCase {
public function testBasic() {
- $this->open( $this->getUrl() .
+ $this->open( $this->getUrl() .
'/index.php?title=Selenium&action=edit' );
$this->type( "wpTextbox1", "This is a basic test" );
$this->click( "wpPreview" );
@@ -16,8 +16,8 @@ class SimpleSeleniumTestCase extends SeleniumTestCase {
$correct = strstr( $source, "This is a basic test" );
$this->assertEquals( $correct, true );
}
-
- /*
+
+ /**
* All this test really does is verify that a global var was set.
* It depends on $wgDefaultSkin = 'chick'; being set
*/
@@ -26,9 +26,9 @@ class SimpleSeleniumTestCase extends SeleniumTestCase {
$bodyClass = $this->getAttribute( "//body/@class" );
$this-> assertContains('skin-chick', $bodyClass, 'Chick skin not set');
}
-
- /*
- * Just verify that the test db was loaded correctly
+
+ /**
+ * Just verify that the test db was loaded correctly
*/
public function testDatabaseResourceLoadedCorrectly() {
$this->open( $this->getUrl() . '/index.php/TestResources?action=purge' );
diff --git a/tests/selenium/suites/SimpleSeleniumTestSuite.php b/tests/selenium/suites/SimpleSeleniumTestSuite.php
index 3f5e3645..2e0c4ee2 100644
--- a/tests/selenium/suites/SimpleSeleniumTestSuite.php
+++ b/tests/selenium/suites/SimpleSeleniumTestSuite.php
@@ -1,5 +1,5 @@
<?php
-/*
+/**
* Sample test suite.
* Two ways to configure MW for these tests
* 1) If you are running multiple test suites, add the following in LocalSettings.php