readFactoryMock = $this->createMock(\Magento\Framework\Filesystem\Directory\ReadFactory::class); $this->readerMock = $this->getMockForAbstractClass( \Magento\Framework\Filesystem\Directory\ReadInterface::class, [], '', false ); $this->readFactoryMock->expects($this->once())->method('create')->willReturn($this->readerMock); $this->basePackageInfo = new BasePackageInfo($this->readFactoryMock); } // Error scenario: magento/magento2-base/composer.json not found public function testBaseComposerJsonFileNotFound() { $this->readerMock->expects($this->once())->method('isExist')->willReturn(false); $this->readerMock->expects($this->never())->method('isReadable'); $this->readerMock->expects($this->never())->method('readFile'); $this->expectException(\Magento\Setup\Exception::class); $this->expectExceptionMessage( sprintf('Could not locate %s file.', BasePackageInfo::MAGENTO_BASE_PACKAGE_COMPOSER_JSON_FILE) ); $this->basePackageInfo->getPaths(); } // Error scenario: magento/magento2-base/composer.json file could not be read public function testBaseComposerJsonFileNotReadable() { $this->readerMock->expects($this->once())->method('isExist')->willReturn(true); $this->readerMock->expects($this->once())->method('isReadable')->willReturn(false); $this->readerMock->expects($this->never())->method('readFile'); $this->expectException(\Magento\Setup\Exception::class); $this->expectExceptionMessage( sprintf('Could not read %s file.', BasePackageInfo::MAGENTO_BASE_PACKAGE_COMPOSER_JSON_FILE) ); $this->basePackageInfo->getPaths(); } // Scenario: ["extra"]["map"] is absent within magento/magento2-base/composer.json file public function testBaseNoExtraMapSectionInComposerJsonFile() { $this->readerMock->expects($this->once())->method('isExist')->willReturn(true); $this->readerMock->expects($this->once())->method('isReadable')->willReturn(true); $jsonData = json_encode( [ BasePackageInfo::COMPOSER_KEY_EXTRA => [ __FILE__, __FILE__ ] ] ); $this->readerMock->expects($this->once())->method('readFile')->willReturn($jsonData); $expectedList = []; $actualList = $this->basePackageInfo->getPaths(); $this->assertEquals($expectedList, $actualList); } // Success scenario public function testBasePackageInfo() { $this->readerMock->expects($this->once())->method('isExist')->willReturn(true); $this->readerMock->expects($this->once())->method('isReadable')->willReturn(true); $jsonData = json_encode( [ BasePackageInfo::COMPOSER_KEY_EXTRA => [ BasePackageInfo::COMPOSER_KEY_MAP => [ [ __FILE__, __FILE__ ], [ __DIR__, __DIR__ ] ] ] ] ); $this->readerMock->expects($this->once())->method('readFile')->willReturn($jsonData); $expectedList = [__FILE__, __DIR__]; $actualList = $this->basePackageInfo->getPaths(); $this->assertEquals($expectedList, $actualList); } }