summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Lang/LanguageContentsTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Lang/LanguageContentsTest.php')
-rw-r--r--www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Lang/LanguageContentsTest.php204
1 files changed, 204 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Lang/LanguageContentsTest.php b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Lang/LanguageContentsTest.php
new file mode 100644
index 00000000..285205ff
--- /dev/null
+++ b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Lang/LanguageContentsTest.php
@@ -0,0 +1,204 @@
+<?php
+
+namespace SMW\Tests\Lang;
+
+use SMW\Lang\FallbackFinder;
+use SMW\Lang\JsonContentsFileReader;
+use SMW\Lang\LanguageContents;
+use SMW\Tests\PHPUnitCompat;
+
+/**
+ * @covers \SMW\Lang\LanguageContents
+ * @group semantic-mediawiki
+ *
+ * @license GNU GPL v2+
+ * @since 2.5
+ *
+ * @author mwjames
+ */
+class LanguageContentsTest extends \PHPUnit_Framework_TestCase {
+
+ use PHPUnitCompat;
+
+ private $jsonContentsFileReader;
+ private $fallbackFinder;
+
+ protected function setUp() {
+
+ $this->jsonContentsFileReader = $this->getMockBuilder( JsonContentsFileReader::class )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $this->fallbackFinder = $this->getMockBuilder( FallbackFinder::class )
+ ->disableOriginalConstructor()
+ ->getMock();
+ }
+
+ public function testCanConstruct() {
+
+ $this->assertInstanceOf(
+ LanguageContents::class,
+ new LanguageContents( $this->jsonContentsFileReader, $this->fallbackFinder )
+ );
+ }
+
+ public function testGetCanonicalFallbackLanguageCode() {
+
+ $this->fallbackFinder->expects( $this->atLeastOnce() )
+ ->method( 'getCanonicalFallbackLanguageCode' );
+
+ $instance = new LanguageContents(
+ $this->jsonContentsFileReader,
+ $this->fallbackFinder
+ );
+
+ $instance->getCanonicalFallbackLanguageCode();
+ }
+
+ public function testPrepareWithLanguageWithoutFallback() {
+
+ $languageCode = 'Foo';
+
+ $this->jsonContentsFileReader->expects( $this->atLeastOnce() )
+ ->method( 'canReadByLanguageCode' )
+ ->will( $this->returnValue( true ) );
+
+ $this->jsonContentsFileReader->expects( $this->atLeastOnce() )
+ ->method( 'readByLanguageCode' )
+ ->with( $this->equalTo( $languageCode ) );
+
+ $instance = new LanguageContents(
+ $this->jsonContentsFileReader,
+ $this->fallbackFinder
+ );
+
+ $this->assertFalse(
+ $instance->isLoaded( $languageCode )
+ );
+
+ $instance->load( $languageCode );
+
+ $this->assertTrue(
+ $instance->isLoaded( $languageCode )
+ );
+ }
+
+ public function testGetContentsByLanguage_ID_Depth_2() {
+
+ $languageCode = 'Foo';
+
+ $this->jsonContentsFileReader->expects( $this->at( 0 ) )
+ ->method( 'readByLanguageCode' )
+ ->with( $this->equalTo( $languageCode ) )
+ ->will( $this->returnValue( [ 'Foo' => [ 'Bar' => 123 ] ] ) );
+
+ $this->fallbackFinder->expects( $this->atLeastOnce() )
+ ->method( 'getCanonicalFallbackLanguageCode' )
+ ->will( $this->returnValue( 'en' ) );
+
+ $instance = new LanguageContents(
+ $this->jsonContentsFileReader,
+ $this->fallbackFinder
+ );
+
+ $this->assertEquals(
+ 123,
+ $instance->get( 'Foo.Bar', $languageCode )
+ );
+ }
+
+ public function testGetContentsByLanguage_ID_Depth_3() {
+
+ $languageCode = 'Foo';
+
+ $this->jsonContentsFileReader->expects( $this->at( 0 ) )
+ ->method( 'readByLanguageCode' )
+ ->with( $this->equalTo( $languageCode ) )
+ ->will( $this->returnValue( [ 'Foo' => [ 'Bar' => [ 'Foobar' => 456 ] ] ] ) );
+
+ $this->fallbackFinder->expects( $this->atLeastOnce() )
+ ->method( 'getCanonicalFallbackLanguageCode' )
+ ->will( $this->returnValue( 'en' ) );
+
+ $instance = new LanguageContents(
+ $this->jsonContentsFileReader,
+ $this->fallbackFinder
+ );
+
+ $this->assertEquals(
+ 456,
+ $instance->get( 'Foo.Bar.Foobar', $languageCode )
+ );
+ }
+
+ public function testGetContentsByLanguageWithIndexWithFallback() {
+
+ $languageCode = 'Foo';
+ $fallback = 'Foobar';
+
+ $this->jsonContentsFileReader->expects( $this->at( 0 ) )
+ ->method( 'readByLanguageCode' )
+ ->with( $this->equalTo( $languageCode ) )
+ ->will( $this->returnValue( [] ) );
+
+ $this->jsonContentsFileReader->expects( $this->at( 1 ) )
+ ->method( 'readByLanguageCode' )
+ ->with( $this->equalTo( $fallback ) )
+ ->will( $this->returnValue( [ 'Bar' => 123 ] ) );
+
+ $this->fallbackFinder->expects( $this->atLeastOnce() )
+ ->method( 'getCanonicalFallbackLanguageCode' )
+ ->will( $this->returnValue( 'en' ) );
+
+ $this->fallbackFinder->expects( $this->at( 1 ) )
+ ->method( 'getFallbackLanguageBy' )
+ ->will( $this->returnValue( $fallback ) );
+
+ $instance = new LanguageContents(
+ $this->jsonContentsFileReader,
+ $this->fallbackFinder
+ );
+
+ $this->assertEquals(
+ 123,
+ $instance->get( 'Bar', $languageCode )
+ );
+ }
+
+ public function testGetContentsByLanguageWithIndexWithFallbackButMissingIndexThrowsException() {
+
+ $languageCode = 'Foo';
+ $fallback = 'Foobar';
+
+ $this->jsonContentsFileReader->expects( $this->at( 0 ) )
+ ->method( 'readByLanguageCode' )
+ ->with( $this->equalTo( $languageCode ) )
+ ->will( $this->returnValue( [] ) );
+
+ $this->jsonContentsFileReader->expects( $this->at( 1 ) )
+ ->method( 'readByLanguageCode' )
+ ->with( $this->equalTo( $fallback ) )
+ ->will( $this->returnValue( [] ) );
+
+ $this->fallbackFinder->expects( $this->atLeastOnce() )
+ ->method( 'getCanonicalFallbackLanguageCode' )
+ ->will( $this->returnValue( 'en' ) );
+
+ $this->fallbackFinder->expects( $this->at( 1 ) )
+ ->method( 'getFallbackLanguageBy' )
+ ->will( $this->returnValue( $fallback ) );
+
+ $this->fallbackFinder->expects( $this->at( 3 ) )
+ ->method( 'getFallbackLanguageBy' )
+ ->will( $this->returnValue( 'en' ) );
+
+ $instance = new LanguageContents(
+ $this->jsonContentsFileReader,
+ $this->fallbackFinder
+ );
+
+ $this->setExpectedException( 'RuntimeException' );
+ $instance->get( 'Bar', $languageCode );
+ }
+
+}