From 91e194556c52d2f354344f930419eef2dd6267f0 Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Wed, 4 Sep 2013 05:51:59 +0200 Subject: Update to MediaWiki 1.21.2 --- .../installer/MediaWikiHelpFieldHintTestCase.php | 128 +++++++++++++++++++++ 1 file changed, 128 insertions(+) create mode 100644 tests/selenium/installer/MediaWikiHelpFieldHintTestCase.php (limited to 'tests/selenium/installer/MediaWikiHelpFieldHintTestCase.php') diff --git a/tests/selenium/installer/MediaWikiHelpFieldHintTestCase.php b/tests/selenium/installer/MediaWikiHelpFieldHintTestCase.php new file mode 100644 index 00000000..f0efce6e --- /dev/null +++ b/tests/selenium/installer/MediaWikiHelpFieldHintTestCase.php @@ -0,0 +1,128 @@ + + * http://www.calcey.com/ + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * http://www.gnu.org/copyleft/gpl.html + */ + +require_once ( __DIR__ . '/MediaWikiInstallationCommonFunction.php' ); + +/** + * Test Case ID : 29 (http://www.mediawiki.org/wiki/New_installer/Test_plan) + * Test Case Name : Help field hint availability for the fields. + * Version : MediaWiki 1.18alpha + */ +class MediaWikiHelpFieldHintTestCase extends MediaWikiInstallationCommonFunction { + function setUp() { + parent::setUp(); + } + + // Verify help field availability for the fields + public function testMySQLConnectToDatabaseFieldHint() { + + parent::navigateConnetToDatabasePage(); + + // Verify help field for 'Database host' + $this->click( "//div[@id='DB_wrapper_mysql']/div/div[1]/div/span[1]" ); + $this->assertEquals( MYSQL_DATABASE_HOST_HELP, + $this->getText( "//div[@id='DB_wrapper_mysql']/div/div[1]/div/span[2]" ) ); + + // Verify help field for 'Database name' + $this->click( "//div[@id='DB_wrapper_mysql']/fieldset[1]/div[1]/div[1]/div/span[1]" ); + $this->assertEquals( MYSQL_DATABASE_NAME_HELP, + $this->getText( "//div[@id='DB_wrapper_mysql']/fieldset[1]/div[1]/div[1]/div/span[2]" ) ); + + + // Verify help field for 'Database table prefix' + $this->click( "//div[@id='DB_wrapper_mysql']/fieldset[1]/div[2]/div[1]/div/span[1]" ); + $this->assertEquals( MYSQL_DATABASE_TABLE_PREFIX_HELP, + $this->getText( "//div[@id='DB_wrapper_mysql']/fieldset[1]/div[1]/div[1]/div/span[2]/p[1]" ) ); + + // Verify help field for 'Database username' + $this->click( "//div[@id='DB_wrapper_mysql']/fieldset[2]/div[1]/div[1]/div/span[1]" ); + $this->assertEquals( MYSQL_DATBASE_USERNAME_HELP, + $this->getText( "//div[@id='DB_wrapper_mysql']/fieldset[2]/div[1]/div[1]/div/span[2]" ) ); + + // Verify help field for 'Database password' + $this->click( "//div[@id='DB_wrapper_mysql']/fieldset[2]/div[2]/div[1]/div/span[1]" ); + $this->assertEquals( MYSQL_DATABASE_PASSWORD_HELP, + $this->getText( "//div[@id='DB_wrapper_mysql']/fieldset[2]/div[2]/div[1]/div/span[2]/p" ) ); + } + + public function testSQLiteConnectToDatabaseFieldHint() { + parent::navigateConnetToDatabasePage(); + $this->click( "DBType_sqlite" ); + + // Verify help field for 'SQLite data directory' + $this->click( "//div[@id='DB_wrapper_sqlite']/div[1]/div[1]/div/span[1]" ); + $this->assertEquals( SQLITE_DATA_DIRECTORY_HELP, + $this->getText( "//div[@id='DB_wrapper_sqlite']/div[1]/div[1]/div/span[2]" ) ); + + // Verify help field for 'Database name' + $this->click( "//div[@id='DB_wrapper_sqlite']/div[2]/div[1]/div/span[1]" ); + $this->assertEquals( SQLITE_DATABASE_NAME_HELP, $this->getText( "//div[@id='DB_wrapper_sqlite']/div[2]/div[1]/div/span[2]/p" ) ); + } + + public function testDatabaseSettingsFieldHint() { + + $databaseName = DB_NAME_PREFIX . "_db_field"; + parent::navigateDatabaseSettingsPage( $databaseName ); + + // Verify help field for 'Search engine' + $this->click( LINK_FORM . "div[2]/span[1]" ); + $this->assertEquals( SEARCH_ENGINE_HELP, + $this->getText( LINK_FORM . "div[2]/span[2]" ) ); + + // Verify help field for 'Database character set' + $this->click( LINK_FORM . "div[4]/span[1]" ); + $this->assertEquals( DATABASE_CHARACTER_SET_HELP, + $this->getText( LINK_FORM . "div[4]/span[2]" ) ); + parent::restartInstallation(); + } + + public function testNameFieldHint() { + $databaseName = DB_NAME_PREFIX . "_name_field"; + parent::navigateNamePage( $databaseName ); + + // Verify help field for 'Name of Wiki' + $this->click( LINK_FORM . "div[1]/div[1]/div/span[1]" ); + $this->assertEquals( NAME_OF_WIKI_HELP, + $this->getText( LINK_FORM . "div[1]/div[1]/div/span[2]/p" ) ); + + // Verify help field for 'Project namespace' + $this->click( LINK_FORM . "div[2]/div[1]/div/span[1]" ); + $this->assertEquals( PROJECT_NAMESPACE_HELP, + $this->getText( LINK_FORM . "div[2]/div[1]/div/span[2]/p" ) ); + + // Verify help field for 'Your Name' + $this->click( LINK_FORM . "fieldset/div[1]/div[1]/div/span[1]" ); + $this->assertEquals( USER_NAME_HELP, + $this->getText( LINK_FORM . "fieldset/div[1]/div[1]/div/span[2]/p" ) ); + + // Verify help field for 'E mail address' + $this->click( LINK_FORM . "fieldset/div[4]/div[1]/div/span[1]" ); + $this->assertEquals( EMAIL_ADDRESS_HELP, + $this->getText( LINK_FORM . "fieldset/div[4]/div[1]/div/span[2]/p" ) ); + + parent::restartInstallation(); + } +} + -- cgit v1.2.3-54-g00ecf