summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Importer/ImporterTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Importer/ImporterTest.php')
-rw-r--r--www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Importer/ImporterTest.php142
1 files changed, 142 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Importer/ImporterTest.php b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Importer/ImporterTest.php
new file mode 100644
index 00000000..0db5f2ff
--- /dev/null
+++ b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Importer/ImporterTest.php
@@ -0,0 +1,142 @@
+<?php
+
+namespace SMW\Tests\Importer;
+
+use SMW\Importer\ContentIterator;
+use SMW\Importer\ImportContents;
+use SMW\Importer\Importer;
+use SMW\Importer\JsoncontentIterator;
+use SMW\Importer\JsonImportContentsFileDirReader;
+use SMW\Tests\TestEnvironment;
+
+/**
+ * @covers \SMW\Importer\Importer
+ * @group semantic-mediawiki
+ *
+ * @license GNU GPL v2+
+ * @since 2.5
+ *
+ * @author mwjames
+ */
+class ImporterTest extends \PHPUnit_Framework_TestCase {
+
+ private $spyMessageReporter;
+ private $testEnvironment;
+ private $contentIterator;
+ private $jsonImportContentsFileDirReader;
+ private $contentCreator;
+ private $messageReporter;
+
+ protected function setUp() {
+ parent::setUp();
+
+ $this->jsonImportContentsFileDirReader = $this->getMockBuilder( JsonImportContentsFileDirReader::class )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $this->contentIterator = $this->getMockBuilder( ContentIterator::class )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $this->contentCreator = $this->getMockBuilder( '\SMW\Importer\ContentCreator' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $this->messageReporter = $this->getMockBuilder( '\Onoi\MessageReporter\MessageReporter' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $this->testEnvironment = new TestEnvironment();
+ }
+
+ public function testCanConstruct() {
+
+ $this->assertInstanceOf(
+ '\SMW\Importer\Importer',
+ new Importer( $this->contentIterator, $this->contentCreator )
+ );
+ }
+
+ public function testDisabled() {
+
+ $spyMessageReporter = $this->testEnvironment->getUtilityFactory()->newSpyMessageReporter();
+
+ $instance = new Importer(
+ new JsoncontentIterator( $this->jsonImportContentsFileDirReader ),
+ $this->contentCreator
+ );
+
+ $instance->setMessageReporter( $spyMessageReporter );
+ $instance->isEnabled( false );
+
+ $instance->doImport();
+
+ $this->assertContains(
+ 'Skipping the import process',
+ $spyMessageReporter->getMessagesAsString()
+ );
+ }
+
+ public function testDoImport() {
+
+ $importContents = new ImportContents();
+
+ $importContents->setName( 'Foo' );
+ $importContents->setVersion( 1 );
+
+ $page = $this->getMockBuilder( '\WikiPage' )
+ ->disableOriginalConstructor()
+ ->getMock();
+
+ $this->jsonImportContentsFileDirReader->expects( $this->atLeastOnce() )
+ ->method( 'getContentList' )
+ ->will( $this->returnValue( [ 'Foo' => [ $importContents ] ] ) );
+
+ $this->jsonImportContentsFileDirReader->expects( $this->atLeastOnce() )
+ ->method( 'getErrors' )
+ ->will( $this->returnValue( [] ) );
+
+ $this->contentCreator->expects( $this->atLeastOnce() )
+ ->method( 'create' );
+
+ $instance = new Importer(
+ new JsoncontentIterator( $this->jsonImportContentsFileDirReader ),
+ $this->contentCreator
+ );
+
+ $instance->setMessageReporter( $this->messageReporter );
+ $instance->setReqVersion( 1 );
+
+ $instance->doImport();
+ }
+
+ public function testDoImportWithError() {
+
+ $importContents = new ImportContents();
+
+ $importContents->addError( 'Bar' );
+ $importContents->setVersion( 1 );
+
+ $this->jsonImportContentsFileDirReader->expects( $this->atLeastOnce() )
+ ->method( 'getContentList' )
+ ->will( $this->returnValue( [ 'Foo' => [ $importContents ] ] ) );
+
+ $this->jsonImportContentsFileDirReader->expects( $this->atLeastOnce() )
+ ->method( 'getErrors' )
+ ->will( $this->returnValue( [ 'Error' ] ) );
+
+ $this->contentCreator->expects( $this->never() )
+ ->method( 'create' );
+
+ $instance = new Importer(
+ new JsoncontentIterator( $this->jsonImportContentsFileDirReader ),
+ $this->contentCreator
+ );
+
+ $instance->setMessageReporter( $this->messageReporter );
+ $instance->setReqVersion( 1 );
+
+ $instance->doImport();
+ }
+
+}