summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Elastic/Indexer/IndexerTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Elastic/Indexer/IndexerTest.php')
-rw-r--r--www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Elastic/Indexer/IndexerTest.php208
1 files changed, 208 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Elastic/Indexer/IndexerTest.php b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Elastic/Indexer/IndexerTest.php
new file mode 100644
index 00000000..51edfe84
--- /dev/null
+++ b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Elastic/Indexer/IndexerTest.php
@@ -0,0 +1,208 @@
+<?php
+
+namespace SMW\Tests\Elastic\Indexer;
+
+use SMW\Elastic\Indexer\Indexer;
+use SMW\Services\ServicesContainer;
+use SMW\DIWikiPage;
+
+/**
+ * @covers \SMW\Elastic\Indexer\Indexer
+ * @group semantic-mediawiki
+ *
+ * @license GNU GPL v2+
+ * @since 3.0
+ *
+ * @author mwjames
+ */
+class IndexerTest extends \PHPUnit_Framework_TestCase {
+
+ private $store;
+ private $servicesContainer;
+ private $logger;
+
+ protected function setUp() {
+
+ $this->store = $this->getMockBuilder( '\SMW\Store' )
+ ->disableOriginalConstructor()
+ ->getMockForAbstractClass();
+
+ $this->servicesContainer = new ServicesContainer();
+
+ $this->logger = $this->getMockBuilder( '\Psr\Log\NullLogger' )
+ ->disableOriginalConstructor()
+ ->getMock();
+ }
+
+ public function testCanConstruct() {
+
+ $this->assertInstanceOf(
+ Indexer::class,
+ new Indexer( $this->store, $this->servicesContainer )
+ );
+ }
+
+ public function testSetup() {
+
+ $rollover = $this->getMockBuilder( '\SMW\Elastic\Indexer\Rollover' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $rollover->expects( $this->exactly( 2 ) )
+ ->method( 'update' );
+
+ $this->servicesContainer->add(
+ 'Rollover',
+ function() use( $rollover ) { return $rollover; }
+ );
+
+ $instance = new Indexer(
+ $this->store,
+ $this->servicesContainer
+ );
+
+ $instance->setup();
+ }
+
+ public function testDrop() {
+
+ $rollover = $this->getMockBuilder( '\SMW\Elastic\Indexer\Rollover' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $rollover->expects( $this->exactly( 2 ) )
+ ->method( 'delete' );
+
+ $this->servicesContainer->add(
+ 'Rollover',
+ function() use( $rollover ) { return $rollover; }
+ );
+
+ $instance = new Indexer(
+ $this->store,
+ $this->servicesContainer
+ );
+
+ $instance->drop();
+ }
+
+ public function testTextIndex() {
+
+ $subject = DIWikiPage::newFromText( 'Foo' );
+ $subject->setId( 42 );
+
+ $changeDiff = $this->getMockBuilder( '\SMW\SQLStore\ChangeOp\ChangeDiff' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $changeDiff->expects( $this->once() )
+ ->method( 'getSubject' )
+ ->will( $this->returnValue( $subject ) );
+
+ $changeDiff->expects( $this->once() )
+ ->method( 'getTableChangeOps' )
+ ->will( $this->returnValue( [] ) );
+
+ $changeDiff->expects( $this->once() )
+ ->method( 'getDataOps' )
+ ->will( $this->returnValue( [] ) );
+
+ $bulk = $this->getMockBuilder( '\SMW\Elastic\Indexer\Bulk' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $bulk->expects( $this->once() )
+ ->method( 'upsert' )
+ ->with(
+ $this->anything(),
+ $this->equalTo( [ 'text_raw' => 'Bar' ] ) );
+
+ $this->servicesContainer->add(
+ 'Bulk',
+ function() use( $bulk ) { return $bulk; }
+ );
+
+ $instance = new Indexer(
+ $this->store,
+ $this->servicesContainer
+ );
+
+ $instance->setLogger( $this->logger );
+ $instance->index( $changeDiff, 'Bar' );
+ }
+
+ /**
+ * @dataProvider textLinksProvider
+ */
+ public function testRemoveLinks( $text, $expected ) {
+
+ $instance = new Indexer(
+ $this->store,
+ $this->servicesContainer
+ );
+
+ $this->assertEquals(
+ $expected,
+ $instance->removeLinks( $text )
+ );
+ }
+
+ public function textLinksProvider() {
+
+ yield [
+ 'abc',
+ 'abc'
+ ];
+
+ yield [
+ '{{DEFAULTSORT: FOO}}',
+ ''
+ ];
+
+ yield [
+ '{{Foo|bar=foobar}}',
+ 'bar=foobar'
+ ];
+
+ yield [
+ '[[Has foo::Bar]]',
+ 'Bar'
+ ];
+
+ yield [
+ '[[:foo|abc]]',
+ 'abc'
+ ];
+
+ yield [
+ 'abc [[:foo|abc]]',
+ 'abc abc'
+ ];
+
+ yield [
+ '[[:|abc]]',
+ '[[:|abc]]'
+ ];
+
+ yield [
+ '[[:abc]]',
+ ':abc'
+ ];
+
+ yield [
+ 'abc [[abc]]',
+ 'abc abc'
+ ];
+
+ yield [
+ '[[abc]] abc [[:bar|foobar]]',
+ 'abc abc foobar'
+ ];
+
+ yield [
+ '[[:Spécial%3ARequêter&cl=Yzo1jUEKwzAMBF8T3RKMS486tPTQb8iJjE3sGCSH9PlVGgpzWLRi9oPj_Wm8SUfvtr0GluH2OPF2fxkQm1TqGKTR0ikUhpJr7uids7StSKVAYlpYFDW1A5RJ5lQocMFpmgbv4i49mdo7Yd1LV5gLqb03-SmtOPKa_1nrcS2dPUITcyPpDC1G5Y4OKuXtGvgC|foo]]',
+ 'foo'
+ ];
+ }
+
+}