MediaWiki
REL1_31
SpecialUncategorizedcategoriesTest.php
Go to the documentation of this file.
1
<?php
5
class
UncategorizedCategoriesPageTest
extends
MediaWikiTestCase
{
10
public
function
testGetQueryInfo
( $msgContent, $expected ) {
11
$msg =
new
RawMessage
( $msgContent );
12
$mockContext = $this->getMockBuilder( RequestContext::class )->getMock();
13
$mockContext->method(
'msg'
)->willReturn( $msg );
14
$special =
new
UncategorizedCategoriesPage
();
15
$special->setContext( $mockContext );
16
$this->assertEquals( [
17
'tables'
=> [
18
0 =>
'page'
,
19
1 =>
'categorylinks'
,
20
],
21
'fields'
=> [
22
'namespace'
=>
'page_namespace'
,
23
'title'
=>
'page_title'
,
24
],
25
'conds'
=> [
26
0 =>
'cl_from IS NULL'
,
27
'page_namespace'
=> 14,
28
'page_is_redirect'
=> 0,
29
] + $expected,
30
'join_conds'
=> [
31
'categorylinks'
=> [
32
0 =>
'LEFT JOIN'
,
33
1 =>
'cl_from = page_id'
,
34
],
35
],
36
], $special->getQueryInfo() );
37
}
38
39
public
function
provideTestGetQueryInfoData
() {
40
return
[
41
[
42
"* Stubs\n* Test\n* *\n* * test123"
,
43
[ 1 =>
"page_title not in ( 'Stubs','Test','*','*_test123' )"
]
44
],
45
[
46
"Stubs\n* Test\n* *\n* * test123"
,
47
[ 1 =>
"page_title not in ( 'Test','*','*_test123' )"
]
48
],
49
[
50
"* StubsTest\n* *\n* * test123"
,
51
[ 1 =>
"page_title not in ( 'StubsTest','*','*_test123' )"
]
52
],
53
[
""
, [] ],
54
[
"\n\n\n"
, [] ],
55
[
"\n"
, [] ],
56
[
"Test\n*Test2"
, [ 1 =>
"page_title not in ( 'Test2' )"
] ],
57
[
"Test"
, [] ],
58
[
"*Test\nTest2"
, [ 1 =>
"page_title not in ( 'Test' )"
] ],
59
[
"Test\nTest2"
, [] ],
60
];
61
}
62
}
MediaWikiTestCase
Definition
MediaWikiTestCase.php:17
RawMessage
Variant of the Message class.
Definition
RawMessage.php:34
UncategorizedCategoriesPageTest
Tests for Special:Uncategorizedcategories.
Definition
SpecialUncategorizedcategoriesTest.php:5
UncategorizedCategoriesPageTest\provideTestGetQueryInfoData
provideTestGetQueryInfoData()
Definition
SpecialUncategorizedcategoriesTest.php:39
UncategorizedCategoriesPageTest\testGetQueryInfo
testGetQueryInfo( $msgContent, $expected)
provideTestGetQueryInfoData UncategorizedCategoriesPage::getQueryInfo
Definition
SpecialUncategorizedcategoriesTest.php:10
UncategorizedCategoriesPage
A special page that lists uncategorized categories.
Definition
SpecialUncategorizedcategories.php:29
tests
phpunit
includes
specials
SpecialUncategorizedcategoriesTest.php
Generated on Mon Nov 25 2024 15:36:36 for MediaWiki by
1.10.0