3 class MockSearch
extends SearchEngine
{
8 public function __construct( $db ) {
11 public function update( $id, $title, $text ) {
13 self
::$title = $title;
21 class SearchUpdateTest
extends MediaWikiTestCase
{
28 protected function setUp() {
30 $this->setMwGlobals( 'wgSearchType', 'MockSearch' );
31 $this->su
= new SearchUpdate( 0, "" );
34 public function updateText( $text ) {
35 return trim( $this->su
->updateText( $text ) );
39 * @covers SearchUpdate::updateText
41 public function testUpdateText() {
44 $this->updateText( '<div>TeSt</div>' ),
45 'HTML stripped, text lowercased'
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>
56 ), 'Stripping HTML tables' );
60 $this->updateText( 'a > b' ),
61 'Handle unclosed tags'
64 $text = str_pad( "foo <barbarbar \n", 10000, 'x' );
66 $this->assertNotEquals(
68 $this->updateText( $text ),
74 * @covers SearchUpdate::updateText
76 * Test if unicode quotes in article links make its search index empty
78 public function testUnicodeLinkSearchIndexError() {
79 $text = "text „http://example.com“ text";
80 $result = $this->updateText( $text );
81 $processed = preg_replace( '/Q/u', 'Q', $result );
84 'Link surrounded by unicode quotes should not fail UTF-8 validation'