(bug 17602) fix Monobook action tabs not quite touching the page body
[lhc/web/wiklou.git] / tests / phpunit / includes / specials / SpecialSearchTest.php
1 <?php
2 /**
3 * Test class for SpecialSearch class
4 * Copyright © 2012, Antoine Musso
5 *
6 * @author Antoine Musso
7 * @group Database
8 */
9
10 class SpecialSearchTest extends MediaWikiTestCase {
11 private $search;
12
13 /**
14 * @covers SpecialSearch::load
15 * @dataProvider provideSearchOptionsTests
16 * @param $requested Array Request parameters. For example array( 'ns5' => true, 'ns6' => true). NULL to use default options.
17 * @param $userOptions Array User options to test with. For example array('searchNs5' => 1 );. NULL to use default options.
18 * @param $expectedProfile An expected search profile name
19 * @param $expectedNs Array Expected namespaces
20 */
21 function testProfileAndNamespaceLoading(
22 $requested, $userOptions, $expectedProfile, $expectedNS,
23 $message = 'Profile name and namespaces mismatches!'
24 ) {
25 $context = new RequestContext;
26 $context->setUser(
27 $this->newUserWithSearchNS( $userOptions )
28 );
29 /*
30 $context->setRequest( new FauxRequest( array(
31 'ns5'=>true,
32 'ns6'=>true,
33 ) ));
34 */
35 $context->setRequest( new FauxRequest( $requested ) );
36 $search = new SpecialSearch();
37 $search->setContext( $context );
38 $search->load();
39
40 /**
41 * Verify profile name and namespace in the same assertion to make
42 * sure we will be able to fully compare the above code. PHPUnit stop
43 * after an assertion fail.
44 */
45 $this->assertEquals(
46 array( /** Expected: */
47 'ProfileName' => $expectedProfile,
48 'Namespaces' => $expectedNS,
49 )
50 , array( /** Actual: */
51 'ProfileName' => $search->getProfile(),
52 'Namespaces' => $search->getNamespaces(),
53 )
54 , $message
55 );
56
57 }
58
59 public static function provideSearchOptionsTests() {
60 $defaultNS = SearchEngine::defaultNamespaces();
61 $EMPTY_REQUEST = array();
62 $NO_USER_PREF = null;
63
64 return array(
65 /**
66 * Parameters:
67 * <Web Request>, <User options>
68 * Followed by expected values:
69 * <ProfileName>, <NSList>
70 * Then an optional message.
71 */
72 array(
73 $EMPTY_REQUEST, $NO_USER_PREF,
74 'default', $defaultNS,
75 'Bug 33270: No request nor user preferences should give default profile'
76 ),
77 array(
78 array( 'ns5' => 1 ), $NO_USER_PREF,
79 'advanced', array( 5 ),
80 'Web request with specific NS should override user preference'
81 ),
82 array(
83 $EMPTY_REQUEST, array(
84 'searchNs2' => 1,
85 'searchNs14' => 1,
86 ) + array_fill_keys( array_map( function ( $ns ) {
87 return "searchNs$ns";
88 }, $defaultNS ), 0 ),
89 'advanced', array( 2, 14 ),
90 'Bug 33583: search with no option should honor User search preferences'
91 . ' and have all other namespace disabled'
92 ),
93 );
94 }
95
96 /**
97 * Helper to create a new User object with given options
98 * User remains anonymous though
99 */
100 function newUserWithSearchNS( $opt = null ) {
101 $u = User::newFromId( 0 );
102 if ( $opt === null ) {
103 return $u;
104 }
105 foreach ( $opt as $name => $value ) {
106 $u->setOption( $name, $value );
107 }
108 return $u;
109 }
110
111 /**
112 * Verify we do not expand search term in <title> on search result page
113 * https://gerrit.wikimedia.org/r/4841
114 */
115 function testSearchTermIsNotExpanded() {
116
117 # Initialize [[Special::Search]]
118 $search = new SpecialSearch();
119 $search->getContext()->setTitle( Title::newFromText( 'Special:Search' ) );
120 $search->load();
121
122 # Simulate a user searching for a given term
123 $term = '{{SITENAME}}';
124 $search->showResults( $term );
125
126 # Lookup the HTML page title set for that page
127 $pageTitle = $search
128 ->getContext()
129 ->getOutput()
130 ->getHTMLTitle();
131
132 # Compare :-]
133 $this->assertRegExp(
134 '/' . preg_quote( $term ) . '/',
135 $pageTitle,
136 "Search term '{$term}' should not be expanded in Special:Search <title>"
137 );
138
139 }
140 }