2010-12-14 16:26:35 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @group Search
|
|
|
|
|
*/
|
2020-06-30 15:09:24 +00:00
|
|
|
class SearchUpdateTest extends MediaWikiIntegrationTestCase {
|
2012-10-08 10:56:20 +00:00
|
|
|
|
2016-04-03 08:37:11 +00:00
|
|
|
/**
|
|
|
|
|
* @var SearchUpdate
|
|
|
|
|
*/
|
|
|
|
|
private $su;
|
|
|
|
|
|
2019-10-20 18:11:08 +00:00
|
|
|
protected function setUp() : void {
|
2012-10-08 10:56:20 +00:00
|
|
|
parent::setUp();
|
2019-08-01 10:13:45 +00:00
|
|
|
$this->su = new SearchUpdate( 0, Title::newMainPage() );
|
2012-10-08 10:56:20 +00:00
|
|
|
}
|
2010-12-14 16:26:35 +00:00
|
|
|
|
2014-03-07 20:22:13 +00:00
|
|
|
public function updateText( $text ) {
|
2016-04-03 08:37:11 +00:00
|
|
|
return trim( $this->su->updateText( $text ) );
|
2010-12-14 16:26:35 +00:00
|
|
|
}
|
|
|
|
|
|
2013-10-24 20:30:43 +00:00
|
|
|
/**
|
|
|
|
|
* @covers SearchUpdate::updateText
|
|
|
|
|
*/
|
2013-10-23 22:51:31 +00:00
|
|
|
public function testUpdateText() {
|
2010-12-14 16:26:35 +00:00
|
|
|
$this->assertEquals(
|
|
|
|
|
'test',
|
|
|
|
|
$this->updateText( '<div>TeSt</div>' ),
|
|
|
|
|
'HTML stripped, text lowercased'
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'foo bar boz quux',
|
|
|
|
|
$this->updateText( <<<EOT
|
|
|
|
|
<table style="color:red; font-size:100px">
|
|
|
|
|
<tr class="scary"><td><div>foo</div></td><tr>bar</td></tr>
|
|
|
|
|
<tr><td>boz</td><tr>quux</td></tr>
|
|
|
|
|
</table>
|
|
|
|
|
EOT
|
|
|
|
|
), 'Stripping HTML tables' );
|
|
|
|
|
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'a b',
|
|
|
|
|
$this->updateText( 'a > b' ),
|
|
|
|
|
'Handle unclosed tags'
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$text = str_pad( "foo <barbarbar \n", 10000, 'x' );
|
|
|
|
|
|
|
|
|
|
$this->assertNotEquals(
|
|
|
|
|
'',
|
|
|
|
|
$this->updateText( $text ),
|
2017-02-20 23:45:58 +00:00
|
|
|
'T20609'
|
2010-12-14 16:26:35 +00:00
|
|
|
);
|
|
|
|
|
}
|
2011-11-30 00:36:34 +00:00
|
|
|
|
2013-10-24 20:30:43 +00:00
|
|
|
/**
|
|
|
|
|
* @covers SearchUpdate::updateText
|
2017-02-20 23:45:58 +00:00
|
|
|
* Test T34712
|
2014-12-30 08:26:18 +00:00
|
|
|
* Test if unicode quotes in article links make its search index empty
|
2013-10-24 20:30:43 +00:00
|
|
|
*/
|
2014-12-30 08:26:18 +00:00
|
|
|
public function testUnicodeLinkSearchIndexError() {
|
2011-11-30 00:36:34 +00:00
|
|
|
$text = "text „http://example.com“ text";
|
|
|
|
|
$result = $this->updateText( $text );
|
|
|
|
|
$processed = preg_replace( '/Q/u', 'Q', $result );
|
|
|
|
|
$this->assertTrue(
|
|
|
|
|
$processed != '',
|
|
|
|
|
'Link surrounded by unicode quotes should not fail UTF-8 validation'
|
|
|
|
|
);
|
|
|
|
|
}
|
2010-12-14 16:26:35 +00:00
|
|
|
}
|