blob: 6b8fc974b2a4e06facef60413a43d6c5c2d19387 (
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
|
<?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() .
'/index.php?title=Special:Upload' );
$this->type( 'wpUploadFile', __DIR__ .
"\\..\\data\\Wikipedia-logo-v2-de.png" );
$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' );
$this->type( 'wpReason', 'Remove test file' );
$this->click( 'mw-filedelete-submit' );
$this->waitForPageToLoad( 10000 );
// Todo: This message is localized
$this->assertSeleniumHTMLContains( '//div[@id="bodyContent"]/p',
ucfirst( $this->filename ) . '.*has been deleted.' );
*/
}
}
|