summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/PropertyAliasFinderTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/PropertyAliasFinderTest.php')
-rw-r--r--www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/PropertyAliasFinderTest.php131
1 files changed, 131 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/PropertyAliasFinderTest.php b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/PropertyAliasFinderTest.php
new file mode 100644
index 00000000..a5fdf7e3
--- /dev/null
+++ b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/PropertyAliasFinderTest.php
@@ -0,0 +1,131 @@
+<?php
+
+namespace SMW\Tests;
+
+use SMW\PropertyAliasFinder;
+
+/**
+ * @covers \SMW\PropertyAliasFinder
+ * @group semantic-mediawiki
+ *
+ * @license GNU GPL v2+
+ * @since 2.1
+ *
+ * @author mwjames
+ */
+class PropertyAliasFinderTest extends \PHPUnit_Framework_TestCase {
+
+ private $cache;
+ private $store;
+
+ protected function setUp() {
+ parent::setUp();
+
+ $this->cache = $this->getMockBuilder( '\Onoi\Cache\Cache' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $this->store = $this->getMockBuilder( '\SMW\Store' )
+ ->disableOriginalConstructor()
+ ->getMockForAbstractClass();
+ }
+
+ public function testCanConstruct() {
+
+ $languageIndependentPropertyLabels = [];
+
+ $this->assertInstanceOf(
+ PropertyAliasFinder::class,
+ new PropertyAliasFinder( $this->cache )
+ );
+ }
+
+ public function testFindPropertyAliasById() {
+
+ $propertyAliases = [ 'Bar' => '_Foo' ];
+
+ $instance = new PropertyAliasFinder(
+ $this->cache,
+ $propertyAliases
+ );
+
+ $this->assertEquals(
+ $propertyAliases,
+ $instance->getKnownPropertyAliases()
+ );
+
+ $this->assertEquals(
+ 'Bar',
+ $instance->findPropertyAliasById( '_Foo' )
+ );
+ }
+
+ public function testFindPropertyIdByAlias() {
+
+ $canonicalPropertyAliases = [ 'Bar' => '_Foo' ];
+
+ $instance = new PropertyAliasFinder(
+ $this->cache,
+ [],
+ $canonicalPropertyAliases
+ );
+
+ $this->assertEquals(
+ '_Foo',
+ $instance->findPropertyIdByAlias( 'Bar' )
+ );
+ }
+
+ public function testRegisterAliasByFixedLabel() {
+
+ $instance = new PropertyAliasFinder(
+ $this->cache
+ );
+
+ $instance->registerAliasByFixedLabel( '_Foo', 'Bar' );
+
+ $this->assertEquals(
+ '_Foo',
+ $instance->findPropertyIdByAlias( 'Bar' )
+ );
+ }
+
+ public function testGetKnownPropertyAliasesByLanguageCodeCached() {
+
+ $this->cache->expects( $this->once() )
+ ->method( 'fetch' )
+ ->will( $this->returnValue( [ '⧼smw-bar⧽' => '_Foo' ] ) );
+
+ $instance = new PropertyAliasFinder(
+ $this->cache
+ );
+
+ $instance->registerAliasByMsgKey( '_Foo', 'smw-bar' );
+
+ $this->assertEquals(
+ [ '⧼smw-bar⧽' => '_Foo' ],
+ $instance->getKnownPropertyAliasesByLanguageCode( 'en' )
+ );
+ }
+
+ public function testGetKnownPropertyAliasesByLanguageCode() {
+
+ $this->cache->expects( $this->once() )
+ ->method( 'fetch' )
+ ->will( $this->returnValue( false ) );
+
+ $instance = new PropertyAliasFinder(
+ $this->cache
+ );
+
+ $instance->registerAliasByMsgKey( '_Foo', 'smw-bar' );
+
+ $msgKey = version_compare( $GLOBALS['wgVersion'], '1.28', '<' ) ? '<smw-bar>' : '⧼smw-bar⧽' ;
+
+ $this->assertEquals(
+ [ $msgKey => '_Foo' ],
+ $instance->getKnownPropertyAliasesByLanguageCode( 'en' )
+ );
+ }
+
+}