Merge "mediawiki.searchSuggest: Unbreak browser blacklist"
[lhc/web/wiklou.git] / tests / phpunit / maintenance / fetchTextTest.php
1 <?php
2
3 require_once __DIR__ . "/../../../maintenance/fetchText.php";
4
5 /**
6 * Mock for the input/output of FetchText
7 *
8 * FetchText internally tries to access stdin and stdout. We mock those aspects
9 * for testing.
10 */
11 class SemiMockedFetchText extends FetchText {
12
13 /**
14 * @var String|null Text to pass as stdin
15 */
16 private $mockStdinText = null;
17
18 /**
19 * @var bool Whether or not a text for stdin has been provided
20 */
21 private $mockSetUp = false;
22
23 /**
24 * @var Array Invocation counters for the mocked aspects
25 */
26 private $mockInvocations = array( 'getStdin' => 0 );
27
28 /**
29 * Data for the fake stdin
30 *
31 * @param $stdin String The string to be used instead of stdin
32 */
33 function mockStdin( $stdin ) {
34 $this->mockStdinText = $stdin;
35 $this->mockSetUp = true;
36 }
37
38 /**
39 * Gets invocation counters for mocked methods.
40 *
41 * @return Array An array, whose keys are function names. The corresponding values
42 * denote the number of times the function has been invoked.
43 */
44 function mockGetInvocations() {
45 return $this->mockInvocations;
46 }
47
48 // -----------------------------------------------------------------
49 // Mocked functions from FetchText follow.
50
51 function getStdin( $len = null ) {
52 $this->mockInvocations['getStdin']++;
53 if ( $len !== null ) {
54 throw new PHPUnit_Framework_ExpectationFailedException(
55 "Tried to get stdin with non null parameter" );
56 }
57
58 if ( !$this->mockSetUp ) {
59 throw new PHPUnit_Framework_ExpectationFailedException(
60 "Tried to get stdin before setting up rerouting" );
61 }
62
63 return fopen( 'data://text/plain,' . $this->mockStdinText, 'r' );
64 }
65 }
66
67 /**
68 * TestCase for FetchText
69 *
70 * @group Database
71 * @group Dump
72 * @covers FetchText
73 */
74 class FetchTextTest extends MediaWikiTestCase {
75
76 // We add 5 Revisions for this test. Their corresponding text id's
77 // are stored in the following 5 variables.
78 private $textId1;
79 private $textId2;
80 private $textId3;
81 private $textId4;
82 private $textId5;
83
84 /**
85 * @var Exception|null As the current MediaWikiTestCase::run is not
86 * robust enough to recover from thrown exceptions directly, we cannot
87 * throw frow within addDBData, although it would be appropriate. Hence,
88 * we catch the exception and store it until we are in setUp and may
89 * finally rethrow the exception without crashing the test suite.
90 */
91 private $exceptionFromAddDBData;
92
93 /**
94 * @var FetchText the (mocked) FetchText that is to test
95 */
96 private $fetchText;
97
98 /**
99 * Adds a revision to a page, while returning the resuting text's id
100 *
101 * @param $page WikiPage The page to add the revision to
102 * @param $text String The revisions text
103 * @param $text String The revisions summare
104 *
105 * @throws MWExcepion
106 */
107 private function addRevision( $page, $text, $summary ) {
108 $status = $page->doEditContent( ContentHandler::makeContent( $text, $page->getTitle() ), $summary );
109 if ( $status->isGood() ) {
110 $value = $status->getValue();
111 $revision = $value['revision'];
112 $id = $revision->getTextId();
113 if ( $id > 0 ) {
114 return $id;
115 }
116 }
117 throw new MWException( "Could not determine text id" );
118 }
119
120 function addDBData() {
121 $this->tablesUsed[] = 'page';
122 $this->tablesUsed[] = 'revision';
123 $this->tablesUsed[] = 'text';
124
125 $wikitextNamespace = $this->getDefaultWikitextNS();
126
127 try {
128 $title = Title::newFromText( 'FetchTextTestPage1', $wikitextNamespace );
129 $page = WikiPage::factory( $title );
130 $this->textId1 = $this->addRevision( $page, "FetchTextTestPage1Text1", "FetchTextTestPage1Summary1" );
131
132 $title = Title::newFromText( 'FetchTextTestPage2', $wikitextNamespace );
133 $page = WikiPage::factory( $title );
134 $this->textId2 = $this->addRevision( $page, "FetchTextTestPage2Text1", "FetchTextTestPage2Summary1" );
135 $this->textId3 = $this->addRevision( $page, "FetchTextTestPage2Text2", "FetchTextTestPage2Summary2" );
136 $this->textId4 = $this->addRevision( $page, "FetchTextTestPage2Text3", "FetchTextTestPage2Summary3" );
137 $this->textId5 = $this->addRevision( $page, "FetchTextTestPage2Text4 some additional Text ", "FetchTextTestPage2Summary4 extra " );
138 } catch ( Exception $e ) {
139 // We'd love to pass $e directly. However, ... see
140 // documentation of exceptionFromAddDBData
141 $this->exceptionFromAddDBData = $e;
142 }
143 }
144
145 protected function setUp() {
146 parent::setUp();
147
148 // Check if any Exception is stored for rethrowing from addDBData
149 if ( $this->exceptionFromAddDBData !== null ) {
150 throw $this->exceptionFromAddDBData;
151 }
152
153 $this->fetchText = new SemiMockedFetchText();
154 }
155
156 /**
157 * Helper to relate FetchText's input and output
158 */
159 private function assertFilter( $input, $expectedOutput ) {
160 $this->fetchText->mockStdin( $input );
161 $this->fetchText->execute();
162 $invocations = $this->fetchText->mockGetInvocations();
163 $this->assertEquals( 1, $invocations['getStdin'],
164 "getStdin invocation counter" );
165 $this->expectOutputString( $expectedOutput );
166 }
167
168 // Instead of the following functions, a data provider would be great.
169 // However, as data providers are evaluated /before/ addDBData, a data
170 // provider would not know the required ids.
171
172 function testExistingSimple() {
173 $this->assertFilter( $this->textId2,
174 $this->textId2 . "\n23\nFetchTextTestPage2Text1" );
175 }
176
177 function testExistingSimpleWithNewline() {
178 $this->assertFilter( $this->textId2 . "\n",
179 $this->textId2 . "\n23\nFetchTextTestPage2Text1" );
180 }
181
182 function testExistingSeveral() {
183 $this->assertFilter( "$this->textId1\n$this->textId5\n"
184 . "$this->textId3\n$this->textId3",
185 implode( "", array(
186 $this->textId1 . "\n23\nFetchTextTestPage1Text1",
187 $this->textId5 . "\n44\nFetchTextTestPage2Text4 "
188 . "some additional Text",
189 $this->textId3 . "\n23\nFetchTextTestPage2Text2",
190 $this->textId3 . "\n23\nFetchTextTestPage2Text2"
191 ) ) );
192 }
193
194 function testEmpty() {
195 $this->assertFilter( "", null );
196 }
197
198 function testNonExisting() {
199 $this->assertFilter( $this->textId5 + 10, ( $this->textId5 + 10 ) . "\n-1\n" );
200 }
201
202 function testNegativeInteger() {
203 $this->assertFilter( "-42", "-42\n-1\n" );
204 }
205
206 function testFloatingPointNumberExisting() {
207 // float -> int -> revision
208 $this->assertFilter( $this->textId3 + 0.14159,
209 $this->textId3 . "\n23\nFetchTextTestPage2Text2" );
210 }
211
212 function testFloatingPointNumberNonExisting() {
213 $this->assertFilter( $this->textId5 + 3.14159,
214 ( $this->textId5 + 3 ) . "\n-1\n" );
215 }
216
217 function testCharacters() {
218 $this->assertFilter( "abc", "0\n-1\n" );
219 }
220
221 function testMix() {
222 $this->assertFilter( "ab\n" . $this->textId4 . ".5cd\n\nefg\n" . $this->textId2
223 . "\n" . $this->textId3,
224 implode( "", array(
225 "0\n-1\n",
226 $this->textId4 . "\n23\nFetchTextTestPage2Text3",
227 "0\n-1\n",
228 "0\n-1\n",
229 $this->textId2 . "\n23\nFetchTextTestPage2Text1",
230 $this->textId3 . "\n23\nFetchTextTestPage2Text2"
231 ) ) );
232 }
233 }