Add @covers for RemexStripTagHandler
[lhc/web/wiklou.git] / tests / phpunit / includes / deferred / SearchUpdateTest.php
1 <?php
2
3 class MockSearch extends SearchEngine {
4 public static $id;
5 public static $title;
6 public static $text;
7
8 public function __construct( $db ) {
9 }
10
11 public function update( $id, $title, $text ) {
12 self::$id = $id;
13 self::$title = $title;
14 self::$text = $text;
15 }
16 }
17
18 /**
19 * @group Search
20 */
21 class SearchUpdateTest extends MediaWikiTestCase {
22
23 /**
24 * @var SearchUpdate
25 */
26 private $su;
27
28 protected function setUp() {
29 parent::setUp();
30 $this->setMwGlobals( 'wgSearchType', 'MockSearch' );
31 $this->su = new SearchUpdate( 0, "" );
32 }
33
34 public function updateText( $text ) {
35 return trim( $this->su->updateText( $text ) );
36 }
37
38 /**
39 * @covers SearchUpdate::updateText
40 */
41 public function testUpdateText() {
42 $this->assertEquals(
43 'test',
44 $this->updateText( '<div>TeSt</div>' ),
45 'HTML stripped, text lowercased'
46 );
47
48 $this->assertEquals(
49 'foo bar boz quux',
50 $this->updateText( <<<EOT
51 <table style="color:red; font-size:100px">
52 <tr class="scary"><td><div>foo</div></td><tr>bar</td></tr>
53 <tr><td>boz</td><tr>quux</td></tr>
54 </table>
55 EOT
56 ), 'Stripping HTML tables' );
57
58 $this->assertEquals(
59 'a b',
60 $this->updateText( 'a > b' ),
61 'Handle unclosed tags'
62 );
63
64 $text = str_pad( "foo <barbarbar \n", 10000, 'x' );
65
66 $this->assertNotEquals(
67 '',
68 $this->updateText( $text ),
69 'T20609'
70 );
71 }
72
73 /**
74 * @covers SearchUpdate::updateText
75 * Test T34712
76 * Test if unicode quotes in article links make its search index empty
77 */
78 public function testUnicodeLinkSearchIndexError() {
79 $text = "text „http://example.com“ text";
80 $result = $this->updateText( $text );
81 $processed = preg_replace( '/Q/u', 'Q', $result );
82 $this->assertTrue(
83 $processed != '',
84 'Link surrounded by unicode quotes should not fail UTF-8 validation'
85 );
86 }
87 }