createMock(\Magento\Email\Model\Template\Config\FileResolver::class); $this->_paths = [ __DIR__ . '/_files/Fixture/ModuleOne/etc/email_templates_one.xml', __DIR__ . '/_files/Fixture/ModuleTwo/etc/email_templates_two.xml', ]; $this->_converter = $this->createPartialMock( \Magento\Email\Model\Template\Config\Converter::class, ['convert'] ); $moduleReader = $this->createPartialMock(\Magento\Framework\Module\Dir\Reader::class, ['getModuleDir']); $moduleReader->expects( $this->once() )->method( 'getModuleDir' )->with( 'etc', 'Magento_Email' )->will( $this->returnValue('stub') ); $schemaLocator = new \Magento\Email\Model\Template\Config\SchemaLocator($moduleReader); $validationStateMock = $this->createMock(\Magento\Framework\Config\ValidationStateInterface::class); $validationStateMock->expects($this->any()) ->method('isValidationRequired') ->willReturn(false); $this->_moduleDirResolver = $this->createMock(\Magento\Framework\Module\Dir\ReverseResolver::class); $readFactory = $this->createMock(\Magento\Framework\Filesystem\File\ReadFactory::class); $this->read = $this->createMock(\Magento\Framework\Filesystem\File\Read::class); $readFactory->expects($this->any())->method('create')->willReturn($this->read); $fileIterator = new \Magento\Email\Model\Template\Config\FileIterator( $readFactory, $this->_paths, $this->_moduleDirResolver ); $fileResolver->expects( $this->once() )->method( 'get' )->with( 'email_templates.xml', 'scope' )->will( $this->returnValue($fileIterator) ); $this->_model = new \Magento\Email\Model\Template\Config\Reader( $fileResolver, $this->_converter, $schemaLocator, $validationStateMock ); } public function testRead() { $this->read->expects( $this->at(0) )->method( 'readAll' )->will( $this->returnValue(file_get_contents($this->_paths[0])) ); $this->read->expects( $this->at(1) )->method( 'readAll' )->will( $this->returnValue(file_get_contents($this->_paths[1])) ); $this->_moduleDirResolver->expects( $this->at(0) )->method( 'getModuleName' )->with( __DIR__ . '/_files/Fixture/ModuleOne/etc/email_templates_one.xml' )->will( $this->returnValue('Fixture_ModuleOne') ); $this->_moduleDirResolver->expects( $this->at(1) )->method( 'getModuleName' )->with( __DIR__ . '/_files/Fixture/ModuleTwo/etc/email_templates_two.xml' )->will( $this->returnValue('Fixture_ModuleTwo') ); $constraint = function (\DOMDocument $actual) { try { $expected = file_get_contents(__DIR__ . '/_files/email_templates_merged.xml'); $expectedNorm = preg_replace('/xsi:noNamespaceSchemaLocation="[^"]*"/', '', $expected, 1); $actualNorm = preg_replace('/xsi:noNamespaceSchemaLocation="[^"]*"/', '', $actual->saveXML(), 1); \PHPUnit\Framework\Assert::assertXmlStringEqualsXmlString($expectedNorm, $actualNorm); return true; } catch (\PHPUnit\Framework\AssertionFailedError $e) { return false; } }; $expectedResult = new \stdClass(); $this->_converter->expects( $this->once() )->method( 'convert' )->with( $this->callback($constraint) )->will( $this->returnValue($expectedResult) ); $this->assertSame($expectedResult, $this->_model->read('scope')); } /** * @expectedException \UnexpectedValueException * @expectedExceptionMessage Unable to determine a module */ public function testReadUnknownModule() { $this->_moduleDirResolver->expects($this->once())->method('getModuleName')->will($this->returnValue(null)); $this->_converter->expects($this->never())->method('convert'); $this->_model->read('scope'); } }