summaryrefslogtreecommitdiff
path: root/tests/selenium/installer/MediaWikiUserInterfaceTestCase.php
blob: 97331523cac6e9041ebc612b08be0782e138a1e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
<?php
/**
 * MediaWikiUserInterfaceTestCase
 *
 * @file
 * @ingroup Maintenance
 * Copyright (C) 2010 Nadeesha Weerasinghe <nadeesha@calcey.com>
 * 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   : 18 - 27 (http://www.mediawiki.org/wiki/New_installer/Test_plan)
 * Test Case Name : UI of MediaWiki initial/ Language/ Welcome to MediaWiki!/ Connect to database/
 * Database settings/ Name/ Options/ Install/ Complete/ Restart Inslation pages
 * Version        : MediaWiki 1.18alpha
 */
class MediaWikiUserInterfaceTestCase extends MediaWikiInstallationCommonFunction {
	function setUp() {
		parent::setUp();
	}

	public function testInitialPageUI() {

		parent::navigateInitialpage();

		// MediaWiki logo available
		$this->assertTrue( $this->isElementPresent( "//img[@alt='The MediaWiki logo']" ) );

		// 'MediaWiki 1.18alpha' text available
		$this->assertEquals( "MediaWiki 1.18alpha", $this->getText( "//h1" ) );

		// 'LocalSettings.php not found.' text available
		$this->assertEquals( "LocalSettings.php not found.", $this->getText( "//p[1]" ) );

		// 'Please set up the wiki first' text available
		$this->assertEquals( "Please set up the wiki first.", $this->getText( "//p[2]" ) );

		// 'set up the wiki' link available
		$this->assertTrue( $this->isElementPresent( "link=set up the wiki" ) );
	}

	public function testlanguagePageUI() {
		parent::navigateLanguagePage();

		// Verify 'Language' heading
		$this->assertEquals( "Language", $this->getText( LINK_DIV . "h2" ) );

		// 'Your language' label available
		$this->assertEquals( "Your language:",
			$this->getText( LINK_FORM . "div[1]/div[1]/label" ) );

		// 'Your language' dropdown available
		$this->assertTrue( $this->isElementPresent( "UserLang" ) );

		// 'Wiki language' label available
		$this->assertEquals( "Wiki language:",
			$this->getText( LINK_FORM . "div[2]/div[1]/label" ) );

		// 'Wiki language' dropdown available
		$this->assertTrue( $this->isElementPresent( "ContLang" ) );
	}

	public function testWelcometoMediaWikiUI() {
		parent::navigateWelcometoMediaWikiPage();

		// Verify 'Welcome to MediaWiki!' heading
		$this->assertEquals( "Welcome to MediaWiki!",
			$this->getText( LINK_DIV . "h2" ) );

		// Verify environment ok text displayed.
		$this->assertEquals( "The environment has been checked.You can install MediaWiki.",
			$this->getText( LINK_DIV . "div[6]/span" ) );
	}

	public function testConnectToDatabaseUI() {
		parent::navigateConnetToDatabasePage();

		//  'MYSQL radio button available
		$this->assertEquals( "MySQL",
			$this->getText( LINK_FORM . "div[2]/div[2]/ul/li[1]/label" ) );
		$this->assertTrue( $this->isElementPresent( LINK_FORM . "div[2]/div[2]/ul/li[1]" ) );

		// 'SQLite' radio button available
		$this->assertTrue( $this->isElementPresent( LINK_FORM . "div[2]/div[2]/ul/li[2]" ) );
		$this->assertEquals( "SQLite", $this->getText( LINK_FORM . "div[2]/div[2]/ul/li[2]/label " ) );

		// 'Database host' label available
		$this->assertEquals( "Database host:", $this->getText( "//div[@id='DB_wrapper_mysql']/div/div[1]/label" ) );

		// 'Database host' text box default to 'localhost'
		$this->assertEquals( "localhost", $this->getValue( "mysql_wgDBserver" ) );

		// 'Identify this wiki' section available
		$this->assertTrue( $this->isElementPresent( "//div[@id='DB_wrapper_mysql']/fieldset[1]/legend" ) );

		// 'Identify this wiki' label available
		$this->assertEquals( "Identify this wiki", $this->getText( "//div[@id='DB_wrapper_mysql']/fieldset[1]/legend" ) );

		// 'Database name' lable available
		$this->assertEquals( "Database name:",
			$this->getText( "//div[@id='DB_wrapper_mysql']/fieldset[1]/div[1]/div[1]/label" ) );

		// Verify 'Database name:' text box is default to 'my_wiki'
		$this->assertEquals( "my_wiki", $this->getValue( "mysql_wgDBname" ) );

		// Verify 'Database table prefix:' label available
		$this->assertEquals( "Database table prefix:",
			$this->getText( "//div[@id='DB_wrapper_mysql']/fieldset[1]/div[2]/div[1]/label" ) );

		// 'User account for installation' section available
		$this->assertTrue( $this->isElementPresent( "//div[@id='DB_wrapper_mysql']/fieldset[2]/legend" ) );

		// 'User account for installation' label available
		$this->assertEquals( "User account for installation", $this->getText( "//div[@id='DB_wrapper_mysql']/fieldset[2]/legend" ) );

		// 'Database username' label available
		$this->assertEquals( "Database username:",
			$this->getText( "//div[@id='DB_wrapper_mysql']/fieldset[2]/div[1]/div[1]/label" ) );

		// 'Database username' text box defaults to 'root'
		$this->assertEquals( "root", $this->getValue( "mysql__InstallUser" ) );

		// 'Database password' label available
		$this->assertEquals( "Database password:",
			$this->getText( "//div[@id='DB_wrapper_mysql']/fieldset[2]/div[2]/div[1]/label" ) );
	}

	public function testDatabaseSettingsUI() {
		$databaseName = DB_NAME_PREFIX . "_db_settings_UI";
		parent::navigateDatabaseSettingsPage( $databaseName );

		// 'Database settings' text available.
		$this->assertEquals( "Database settings", $this->getText( LINK_DIV . "h2" ) );

		// 'Database account for web access' section available
		$this->assertTrue( $this->isElementPresent( LINK_FORM . "fieldset" ) );

		// 'Database account for web access' label available
		$this->assertEquals( "Database account for web access", $this->getText( LINK_FORM . "fieldset/legend" ) );

		// 'Use the same account as for installation' check box available
		$this->assertEquals( "Use the same account as for installation", $this->getText( LINK_FORM . "fieldset/div[1]/label" ) );

		// 'Use the same account as for installation' check box is selected by default
		$this->assertEquals( "on", $this->getValue( "mysql__SameAccount" ) );

		// 'Use the same account as for installation' check box deselected
		$this->click( "mysql__SameAccount" );

		// verify 'Use the same account as for installation' check box is not selected
		$this->assertEquals( "off", $this->getValue( "mysql__SameAccount" ) );

		// 'Database username' label available
		$this->assertEquals( "Database username:", $this->getText( "//div[@id='dbOtherAccount']/div[1]/div[1]/label" ) );

		// 'Database username' text box is default to the 'wikiuser'
		$this->assertEquals( "wikiuser", $this->getValue( "mysql_wgDBuser" ) );

		// 'Database password' label available
		$this->assertEquals( "Database password:", $this->getText( "//div[@id='dbOtherAccount']/div[2]/div[1]/label" ) );

		// 'Create the account if it does not already exist' label available
		$this->assertEquals( "Create the account if it does not already exist", $this->getText( "//div[@id='dbOtherAccount']/div[4]/label" ) );

		// 'Create the account if it does not already exist' check box is not selected by default
		$this->assertEquals( "off", $this->getValue( "mysql__CreateDBAccount" ) );

		//  'Create the account if it does not already exist' check box selected
		$this->click( "mysql__CreateDBAccount" );

		// Verify  'Create the account if it does not already exist' check box is selected
		$this->assertEquals( "on", $this->getValue( "mysql__CreateDBAccount" ) );
		$this->click( "mysql__SameAccount" );
		$this->assertEquals( "on", $this->getValue( "mysql__SameAccount" ) );

		// 'Storage engine' label available
		$this->assertEquals( "Storage engine:",
			$this->getText( LINK_FORM . "div[1]/div[1]/label" ) );

		// 'InnoDB' label available
		$this->assertEquals( "InnoDB",
			$this->getText( LINK_FORM . "div[1]/div[2]/ul/li[1]/label" ) );

		// 'InnoDB' radio button available
		$this->assertTrue( $this->isElementPresent( "mysql__MysqlEngine_InnoDB" ) );

		// 'MyISAM' label available
		$this->assertEquals( "MyISAM", $this->getText( LINK_FORM . "div[1]/div[2]/ul/li[2]/label" ) );

		// 'MyISAM' radio button available
		$this->assertTrue( $this->isElementPresent( "mysql__MysqlEngine_MyISAM" ) );

		// 'Database character set' label available
		$this->assertEquals( "Database character set:",
			$this->getText( LINK_FORM . "div[3]/div[1]/label" ) );

		// 'Binary' radio button available
		$this->assertTrue( $this->isElementPresent( "mysql__MysqlCharset_binary" ) );

		// 'Binary' radio button available
		$this->assertEquals( "Binary", $this->getText( LINK_FORM . "div[3]/div[2]/ul/li[1]/label" ) );

		// 'UTF-8' radio button available
		$this->assertTrue( $this->isElementPresent( "mysql__MysqlCharset_utf8" ) );

		// 'UTF-8' label available
		$this->assertEquals( "UTF-8", $this->getText( LINK_FORM . "div[3]/div[2]/ul/li[2]/label" ) );

		// 'Binary' radio button is selected
		$this->assertEquals( "on", $this->getValue( "mysql__MysqlCharset_binary" ) );
	}

	public function testNamePageUI() {
		$databaseName = DB_NAME_PREFIX . "_name_UI";
		parent::navigateNamePage( $databaseName );

		// 'Name of wiki' text box available
		$this->assertEquals( "Name of wiki:",
			$this->getText( LINK_FORM . "div[1]/div[1]/label" ) );

		$this->assertTrue( $this->isElementPresent( "config_wgSitename" ) );

		// 'Project namespace' label available
		$this->assertEquals( "Project namespace:",
			$this->getText( LINK_FORM . "div[2]/div[1]/label" ) );

		// 'Same as the wiki name' radio button available
		$this->assertTrue( $this->isElementPresent( "config__NamespaceType_site-name" ) );

		// 'Project' radio button available
		$this->assertTrue( $this->isElementPresent( "config__NamespaceType_generic" ) );

		// 'Project' radio button available
		$this->assertTrue( $this->isElementPresent( "config__NamespaceType_other" ) );

		// 'Same as the wiki name' label available
		$this->assertEquals( "Same as the wiki name:",
			$this->getText( LINK_FORM . "div[2]/div[2]/ul/li[1]/label" ) );

		// 'Project' label available
		$this->assertEquals( "Project",
			$this->getText( LINK_FORM . "div[2]/div[2]/ul/li[2]/label" ) );

		// 'Project' label available
		$this->assertEquals( "Other (specify)",
			$this->getText( LINK_FORM . "div[2]/div[2]/ul/li[3]/label" ) );

		//  'Same as the wiki name' radio button selected by default
		$this->assertEquals( "on", $this->getValue( "config__NamespaceType_site-name" ) );

		// 'Administrator account' section available
		$this->assertTrue( $this->isElementPresent( LINK_FORM . "fieldset" ) );

		// 'Administrator account' label available
		$this->assertEquals( "Administrator account",
			$this->getText( LINK_FORM . "fieldset/legend" ) );

		// 'Your Name' label available
		$this->assertEquals( "Your name:",
			$this->getText( LINK_FORM . "fieldset/div[1]/div[1]/label" ) );

		// 'Your Name' text box available
		$this->assertTrue( $this->isElementPresent( "config__AdminName" ) );

		// 'Password' label available
		$this->assertEquals( "Password:",
			$this->getText( LINK_FORM . "fieldset/div[2]/div[1]/label" ) );

		// 'Password' text box available
		$this->assertTrue( $this->isElementPresent( "config__AdminPassword" ) );

		// 'Password again' label available
		$this->assertEquals( "Password again:",
			$this->getText( LINK_FORM . "fieldset/div[3]/div[1]/label" ) );

		// 'Password again' text box available
		$this->assertTrue( $this->isElementPresent( "config__AdminPassword2" ) );

		// 'Email address' label avaialble
		$this->assertEquals( "E-mail address:",
			$this->getText( LINK_FORM . "fieldset/div[4]/div[1]/label" ) );

		// 'Email address' text box available
		$this->assertTrue( $this->isElementPresent( "config__AdminEmail" ) );

		// Message displayed
		$this->assertEquals( "You are almost done! You can now skip the remaining configuration and install the wiki right now.",
			$this->getText( LINK_FORM . "/div[4]/div[2]/p" ) );

		// 'Ask me more questions.' radio button available
		$this->assertTrue( $this->isElementPresent( "config__SkipOptional_continue" ) );

		// 'Ask me more questions.' label available
		$this->assertEquals( "Ask me more questions.",
			$this->getText( LINK_FORM . "div[5]/div[2]/ul/li[1]/label" ) );

		// 'I'm bored already, just install the wiki' radio button is avaiable
		$this->assertTrue( $this->isElementPresent( "config__SkipOptional_skip" ) );

		// 'I'm bored already, just install the wiki' label available
		$this->assertEquals( "I'm bored already, just install the wiki.",
			$this->getText( LINK_FORM . "div[5]/div[2]/ul/li[2]/label" ) );

		//  'Ask me more questions.' radio button is default selected
		$this->assertEquals( "on", $this->getValue( "config__SkipOptional_continue" ) );
	}

	public function testOptionPageUI() {
		$databaseName = DB_NAME_PREFIX . "_options_UI";
		parent::navigateOptionsPage( $databaseName );

		// 'Options' label available
		$this->assertEquals( "Options", $this->getText( LINK_DIV . "h2" ) );

		// 'Return e-mail address' label available
		$this->assertEquals( "Return e-mail address:", $this->getText( "//div[@id='emailwrapper']/div[1]/div[1]/label" ) );

		//    'Return e-mail address' text box available
		$this->assertTrue( $this->isElementPresent( "config_wgPasswordSender" ) );

		// Text 'apache@localhost' is default value of the 'Return e-mail address' text box
		$this->assertEquals( "apache@localhost", $this->getValue( "config_wgPasswordSender" ) );

		// 'Logo URL' label available
		$this->assertEquals( "Logo URL:", $this->getText( LINK_FORM . "fieldset[2]/div[3]/div[1]/label" ) );

		// 'Logo URL' text box available
		$this->assertTrue( $this->isElementPresent( "config_wgLogo" ) );

		// Correct path available in the 'Logo URL' text box
		$this->assertEquals( "/wiki/skins/common/images/wiki.png", $this->getValue( "config_wgLogo" ) );

		// 'Enable file uploads' radio button available
		$this->assertTrue( $this->isElementPresent( "config_wgEnableUploads" ) );

		// 'Enable file uploads' label available
		$this->assertEquals( "Enable file uploads",
			$this->getText( LINK_FORM . "fieldset[2]/div[1]/label" ) );

		// 'Enable file uploads' check box is not selected
		$this->assertEquals( "off", $this->getValue( "config_wgEnableUploads" ) );

		$this->click( "config_wgEnableUploads" );

		// 'Directory for deleted files' label available
		$this->assertEquals( "Directory for deleted files:",
			$this->getText( "//div[@id='uploadwrapper']/div/div[1]/label" ) );

		// 'Directory for deleted files' text box available
		$this->assertTrue( $this->isElementPresent( "config_wgDeletedDirectory" ) );

		// Correct path available in the 'Directory for deleted files' text box
		$this->assertEquals( "C:\\wamp\\www\\" . DIRECTORY_NAME . "/images/deleted",
			$this->getValue( "config_wgDeletedDirectory" ) );
	}

	public function testInstallPageUI() {
		$databaseName = DB_NAME_PREFIX . "_install_UI";
		parent::navigateInstallPage( $databaseName );

		// Verify installation done messages display
		$this->assertEquals( "Setting up database... done",
			$this->getText( LINK_FORM . "ul/li[1]" ) );
		$this->assertEquals( "Creating tables... done",
			$this->getText( LINK_FORM . "ul/li[2]" ) );
		$this->assertEquals( "Creating database user... done",
			$this->getText( LINK_FORM . "ul/li[3]" ) );
		$this->assertEquals( "Populating default interwiki table... done",
			$this->getText( LINK_FORM . "ul/li[4]" ) );
		$this->assertEquals( "Generating secret key... done",
			$this->getText( LINK_FORM . "ul/li[5]" ) );
		$this->assertEquals( "Generating default upgrade key... done",
			$this->getText( LINK_FORM . "ul/li[6]" ) );
		$this->assertEquals( "Creating administrator user account... done",
			$this->getText( LINK_FORM . "ul/li[7]" ) );
		$this->assertEquals( "Creating main page with default content... done",
			$this->getText( LINK_FORM . "ul/li[8]" ) );
	}

	public function testCompletePageUI() {
		$databaseName = DB_NAME_PREFIX . "_complete_UI";
		parent::navigateCompletePage( $databaseName );

		// 'Congratulations!' text display
		$this->assertEquals( "Congratulations!",
			$this->getText( LINK_FORM . "div[1]/div[2]/p[1]/b" ) );
		// 'LocalSettings.php' generated message display
		$this->assertEquals( "The installer has generated a LocalSettings.php file. It contains all your configuration.",
			$this->getText( LINK_FORM . "div[1]/div[2]/p[2]" ) );

		// 'Download LocalSettings.php'' link available
		$this->assertTrue( $this->isElementPresent( "link=Download LocalSettings.php" ) );

		// 'enter your wiki' link available
		$this->assertTrue( $this->isElementPresent( "link=Folder/index.php enter your wiki" ) );
	}

	public function testRestartInstallation() {
		parent::navigateConnetToDatabasePage();
		$this->click( "link=Restart installation" );
		$this->waitForPageToLoad( PAGE_LOAD_TIME );

		// Restart installation' label should be available.
		$this->assertEquals( "Restart installation", $this->getText( LINK_DIV . "h2" ) );

		//'Do you want to clear all saved data that you have entered and restart the installation process?' label available
		$this->assertEquals( "Do you want to clear all saved data that you have entered and restart the installation process?",
			$this->getText( "//*[@id='bodyContent']/div/div/div[2]/form/div[1]/div[2]" ) );
		// 'Back' button available
		$this->assertTrue( $this->isElementPresent( "submit-back" ) );

		// 'Restart' button available
		$this->assertTrue( $this->isElementPresent( "submit-restart" ) );
	}

	public function testMediaWikiLogoAvailability() {
		$databaseName = DB_NAME_PREFIX . "_mediawiki_logo";
		parent::navigateInitialpage();
		parent::mediaWikiLogoPresentInitialScreen();
		$this->click( "link=set up the wiki" );
		$this->waitForPageToLoad( PAGE_LOAD_TIME );

		// 'Language' page
		parent::mediaWikiLogoPresent();
		parent::clickContinueButton();

		// 'Welcome to MediaWiki' page
		parent::mediaWikiLogoPresent();
		parent::clickContinueButton();

		// 'Connet to database' page
		parent::mediaWikiLogoPresent();
		$this->type( "mysql_wgDBname", $databaseName );
		parent::clickContinueButton();

		// 'Database setting' page
		parent::mediaWikiLogoPresent();
		parent::clickContinueButton();

		// 'Name' page
		parent::mediaWikiLogoPresent();
		parent::completeNamePage();
		parent::clickContinueButton();

		// 'Options' page
		parent::mediaWikiLogoPresent();
		parent::clickContinueButton();

		// 'Install' page
		parent::mediaWikiLogoPresent();
	}

	public function testRightFramework() {
		parent::navigateLanguagePage();
		// Verfy right framework texts display
		$this->assertEquals( "Language",
			$this->getText( LINK_RIGHT_FRAMEWORK . "li[1]" ) );
		$this->assertEquals( "Existing wiki",
			$this->getText( LINK_RIGHT_FRAMEWORK . "li[2]" ) );
		$this->assertEquals( "Welcome to MediaWiki!",
			$this->getText( LINK_RIGHT_FRAMEWORK . "li[3]" ) );
		$this->assertEquals( "Connect to database",
			$this->getText( LINK_RIGHT_FRAMEWORK . "li[4]" ) );
		$this->assertEquals( "Upgrade existing installation",
			$this->getText( LINK_RIGHT_FRAMEWORK . "li[5]" ) );
		$this->assertEquals( "Database settings",
			$this->getText( LINK_RIGHT_FRAMEWORK . "li[6]" ) );
		$this->assertEquals( "Name",
			$this->getText( LINK_RIGHT_FRAMEWORK . "li[7]" ) );
		$this->assertEquals( "Options",
			$this->getText( LINK_RIGHT_FRAMEWORK . "li[8]" ) );
		$this->assertEquals( "Install",
			$this->getText( LINK_RIGHT_FRAMEWORK . "li[9]" ) );
		$this->assertEquals( "Complete!",
			$this->getText( LINK_RIGHT_FRAMEWORK . "li[10]/span" ) );
	}
}