123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Customer\Test\Unit\Model\Address\Config;
- class ReaderTest extends \PHPUnit\Framework\TestCase
- {
- /**
- * @var \Magento\Customer\Model\Address\Config\Reader
- */
- protected $_model;
- /**
- * @var \Magento\Framework\Config\FileResolverInterface|\PHPUnit_Framework_MockObject_MockObject
- */
- protected $_fileResolverMock;
- /**
- * @var \Magento\Customer\Model\Address\Config\Converter|\PHPUnit_Framework_MockObject_MockObject
- */
- protected $_converter;
- /**
- * @var \Magento\Customer\Model\Address\Config\SchemaLocator
- */
- protected $_schemaLocator;
- /**
- * @var \Magento\Framework\Config\ValidationStateInterface|\PHPUnit_Framework_MockObject_MockObject
- */
- protected $_validationState;
- protected function setUp()
- {
- $this->_fileResolverMock = $this->createMock(\Magento\Framework\Config\FileResolverInterface::class);
- $this->_fileResolverMock->expects(
- $this->once()
- )->method(
- 'get'
- )->with(
- 'address_formats.xml',
- 'scope'
- )->will(
- $this->returnValue(
- [
- file_get_contents(__DIR__ . '/_files/formats_one.xml'),
- file_get_contents(__DIR__ . '/_files/formats_two.xml'),
- ]
- )
- );
- $this->_converter = $this->createPartialMock(
- \Magento\Customer\Model\Address\Config\Converter::class,
- ['convert']
- );
- $moduleReader = $this->createPartialMock(\Magento\Framework\Module\Dir\Reader::class, ['getModuleDir']);
- $moduleReader->expects(
- $this->once()
- )->method(
- 'getModuleDir'
- )->with(
- 'etc',
- 'Magento_Customer'
- )->will(
- $this->returnValue('stub')
- );
- $this->_schemaLocator = new \Magento\Customer\Model\Address\Config\SchemaLocator($moduleReader);
- $this->_validationState = $this->createMock(\Magento\Framework\Config\ValidationStateInterface::class);
- $this->_validationState->expects($this->any())
- ->method('isValidationRequired')
- ->willReturn(false);
- $this->_model = new \Magento\Customer\Model\Address\Config\Reader(
- $this->_fileResolverMock,
- $this->_converter,
- $this->_schemaLocator,
- $this->_validationState
- );
- }
- public function testRead()
- {
- $expectedResult = new \stdClass();
- $constraint = function (\DOMDocument $actual) {
- try {
- $expected = __DIR__ . '/_files/formats_merged.xml';
- \PHPUnit\Framework\Assert::assertXmlStringEqualsXmlFile($expected, $actual->saveXML());
- return true;
- } catch (\PHPUnit\Framework\AssertionFailedError $e) {
- return false;
- }
- };
- $this->_converter->expects(
- $this->once()
- )->method(
- 'convert'
- )->with(
- $this->callback($constraint)
- )->will(
- $this->returnValue($expectedResult)
- );
- $this->assertSame($expectedResult, $this->_model->read('scope'));
- }
- }
|