\IExpiringStore::TTL_INDEFINITE, ] ); $configFactory = $this->createMock( \ConfigFactory::class ); $configFactory->method( 'makeConfig' ) ->with( 'textextracts' ) ->willReturn( $config ); $cache = new \WANObjectCache( [ 'cache' => new \HashBagOStuff() ] ); $context = $this->createMock( \IContextSource::class ); $context->method( 'getConfig' ) ->willReturn( $config ); $context->method( 'msg' ) ->willReturnCallback( function ( $key, ...$params ) { $msg = $this->createMock( \Message::class ); $msg->method( 'text' )->willReturn( "($key)" ); return $msg; } ); $main = $this->createMock( \ApiMain::class ); $main->expects( $this->once() ) ->method( 'getContext' ) ->willReturn( $context ); $query = $this->createMock( \ApiQuery::class ); $query->expects( $this->once() ) ->method( 'getMain' ) ->willReturn( $main ); $langConvFactory = $this->createMock( LanguageConverterFactory::class ); $langConvFactory->method( 'getLanguageConverter' ) ->willReturn( $this->createMock( ILanguageConverter::class ) ); return new ApiQueryExtracts( $query, '', $configFactory, $cache, $langConvFactory ); } public function testMemCacheHelpers() { $title = $this->createMock( \Title::class ); $title->method( 'getPageLanguage' ) ->willReturn( $this->createMock( \Language::class ) ); $page = $this->createMock( \WikiPage::class ); $page->method( 'getTitle' ) ->willReturn( $title ); $text = 'Text to cache'; /** @var ApiQueryExtracts $instance */ $instance = TestingAccessWrapper::newFromObject( $this->newInstance() ); // Default param values for this API module $instance->params = [ 'intro' => false, 'plaintext' => false ]; $this->assertFalse( $instance->getFromCache( $page, false ), 'is not cached yet' ); $instance->setCache( $page, $text ); $instance->cache->clearProcessCache(); $this->assertSame( $text, $instance->getFromCache( $page, false ) ); } public function testSelfDocumentation() { /** @var ApiQueryExtracts $instance */ $instance = TestingAccessWrapper::newFromObject( $this->newInstance() ); $this->assertIsString( $instance->getCacheMode( [] ) ); $this->assertNotEmpty( $instance->getExamplesMessages() ); $this->assertIsString( $instance->getHelpUrls() ); $params = $instance->getAllowedParams(); $this->assertIsArray( $params ); $this->assertSame( $params['chars'][\ApiBase::PARAM_MIN], 1 ); $this->assertSame( $params['chars'][\ApiBase::PARAM_MAX], 1200 ); $this->assertSame( $params['limit'][\ApiBase::PARAM_DFLT], 20 ); $this->assertSame( $params['limit'][\ApiBase::PARAM_TYPE], 'limit' ); $this->assertSame( $params['limit'][\ApiBase::PARAM_MIN], 1 ); $this->assertSame( $params['limit'][\ApiBase::PARAM_MAX], 20 ); $this->assertSame( $params['limit'][\ApiBase::PARAM_MAX2], 20 ); } /** * @dataProvider provideFirstSectionsToExtract */ public function testGetFirstSection( $text, $isPlainText, $expected ) { /** @var ApiQueryExtracts $instance */ $instance = TestingAccessWrapper::newFromObject( $this->newInstance() ); $this->assertSame( $expected, $instance->getFirstSection( $text, $isPlainText ) ); } public function provideFirstSectionsToExtract() { return [ 'Plain text match' => [ "First\nsection \1\2... \1\2...", true, "First\nsection ", ], 'Plain text without a match' => [ 'Example\1\2...', true, 'Example\1\2...', ], 'HTML match' => [ "First\nsection

...

...", false, "First\nsection ", ], 'HTML without a match' => [ 'Example ...', false, 'Example ...', ], ]; } /** * @dataProvider provideTextsToTruncate */ public function testTruncate( $text, array $params, $expected ) { /** @var ApiQueryExtracts $instance */ $instance = TestingAccessWrapper::newFromObject( $this->newInstance() ); $instance->params = $params + [ 'chars' => null, 'sentences' => null, 'plaintext' => true ]; $this->assertSame( $expected, $instance->truncate( $text ) ); } public function provideTextsToTruncate() { return [ [ '', [], '' ], [ 'abc', [], 'abc' ], [ 'abc', [ 'chars' => 1 ], 'abc' ], [ 'abc', [ 'chars' => 1, 'plaintext' => false ], 'abc' ], [ 'abc', [ 'sentences' => 1 ], 'abc' ], [ 'abc abc. xyz xyz.', [ 'chars' => 1 ], 'abc(ellipsis)' ], [ 'abc abc. xyz xyz.', [ 'sentences' => 1 ], 'abc abc.' ], [ 'abc abc. xyz xyz.', [ 'chars' => 1000 ], 'abc abc. xyz xyz.' ], [ 'abc abc. xyz xyz.', [ 'chars' => 1000, 'plaintext' => false ], 'abc abc. xyz xyz.' ], [ 'abc abc. xyz xyz.', [ 'sentences' => 10 ], 'abc abc. xyz xyz.' ], ]; } /** * @dataProvider provideSectionsToFormat */ public function testDoSections( $text, $format, $expected ) { /** @var ApiQueryExtracts $instance */ $instance = TestingAccessWrapper::newFromObject( $this->newInstance() ); $instance->params = [ 'sectionformat' => $format ]; $this->assertSame( $expected, $instance->doSections( $text ) ); } public function provideSectionsToFormat() { $level = 3; $marker = "\1\2$level\2\1"; return [ 'Raw' => [ "$marker Headline\t\nNext line", 'raw', "$marker Headline\t\nNext line", ], 'Wiki text' => [ "$marker Headline\t\nNext line", 'wiki', "\n=== Headline ===\nNext line", ], 'Plain text' => [ "$marker Headline\t\nNext line", 'plain', "\nHeadline\nNext line", ], 'Multiple matches' => [ "${marker}First\n${marker}Second", 'wiki', "\n=== First ===\n\n=== Second ===", ], ]; } }