123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Directory\Test\Unit\Model;
- use Magento\Framework\Exception\NoSuchEntityException;
- /**
- * Class CountryInformationAcquirerTest
- */
- class CountryInformationAcquirerTest extends \PHPUnit\Framework\TestCase
- {
- /**
- * @var \Magento\Directory\Model\CountryInformationAcquirer
- */
- protected $model;
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject
- */
- protected $countryInformationFactory;
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject
- */
- protected $regionInformationFactory;
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject
- */
- protected $storeManager;
- /**
- * @var \Magento\Framework\TestFramework\Unit\Helper\ObjectManager
- */
- protected $objectManager;
- /**
- * Setup the test
- */
- protected function setUp()
- {
- $this->objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this);
- $className = \Magento\Directory\Model\Data\CountryInformationFactory::class;
- $this->countryInformationFactory = $this->createPartialMock($className, ['create']);
- $className = \Magento\Directory\Model\Data\RegionInformationFactory::class;
- $this->regionInformationFactory = $this->createPartialMock($className, ['create']);
- $className = \Magento\Directory\Helper\Data::class;
- $this->directoryHelper = $this->createPartialMock($className, ['getCountryCollection', 'getRegionData']);
- $className = \Magento\Store\Model\StoreManager::class;
- $this->storeManager = $this->createPartialMock($className, ['getStore']);
- $this->model = $this->objectManager->getObject(
- \Magento\Directory\Model\CountryInformationAcquirer::class,
- [
- 'countryInformationFactory' => $this->countryInformationFactory,
- 'regionInformationFactory' => $this->regionInformationFactory,
- 'directoryHelper' => $this->directoryHelper,
- 'storeManager' => $this->storeManager,
- ]
- );
- }
- /**
- * test GetCountriesInfo
- */
- public function testGetCountriesInfo()
- {
- /** @var \Magento\Store\Model\Store $store */
- $store = $this->createMock(\Magento\Store\Model\Store::class);
- $this->storeManager->expects($this->once())->method('getStore')->willReturn($store);
- $testCountryInfo = $this->objectManager->getObject(\Magento\Directory\Model\Country::class);
- $testCountryInfo->setData('country_id', 'US');
- $testCountryInfo->setData('iso2_code', 'US');
- $testCountryInfo->setData('iso3_code', 'USA');
- $testCountryInfo->setData('name_default', 'United States of America');
- $testCountryInfo->setData('name_en_US', 'United States of America');
- $countries = ['US' => $testCountryInfo];
- $this->directoryHelper->expects($this->once())->method('getCountryCollection')->willReturn($countries);
- $regions = ['US' => ['TX' => ['code' => 'TX', 'name' => 'Texas']]];
- $this->directoryHelper->expects($this->once())->method('getRegionData')->willReturn($regions);
- $countryInfo = $this->objectManager->getObject(\Magento\Directory\Model\Data\CountryInformation::class);
- $this->countryInformationFactory->expects($this->once())->method('create')->willReturn($countryInfo);
- $regionInfo = $this->objectManager->getObject(\Magento\Directory\Model\Data\RegionInformation::class);
- $this->regionInformationFactory->expects($this->once())->method('create')->willReturn($regionInfo);
- $result = $this->model->getCountriesInfo();
- $this->assertEquals('US', $result[0]->getId());
- $this->assertEquals('US', $result[0]->getTwoLetterAbbreviation());
- $this->assertEquals('USA', $result[0]->getThreeLetterAbbreviation());
- $this->assertEquals('United States of America', $result[0]->getFullNameLocale());
- $this->assertEquals('United States of America', $result[0]->getFullNameEnglish());
- $regionResult = $result[0]->getAvailableRegions();
- $this->assertEquals('TX', $regionResult[0]->getCode());
- $this->assertEquals('Texas', $regionResult[0]->getName());
- }
- /**
- * test GetGetCountryInfo
- */
- public function testGetCountryInfo()
- {
- /** @var \Magento\Store\Model\Store $store */
- $store = $this->createMock(\Magento\Store\Model\Store::class);
- $this->storeManager->expects($this->once())->method('getStore')->willReturn($store);
- $testCountryInfo = $this->objectManager->getObject(\Magento\Directory\Model\Country::class);
- $testCountryInfo->setData('country_id', 'AE');
- $testCountryInfo->setData('iso2_code', 'AE');
- $testCountryInfo->setData('iso3_code', 'ARE');
- $testCountryInfo->setData('name_default', 'United Arab Emirates');
- $testCountryInfo->setData('name_en_US', 'United Arab Emirates');
- $countryCollection = $this->createMock(\Magento\Directory\Model\ResourceModel\Country\Collection::class);
- $countryCollection->expects($this->once())->method('load')->willReturnSelf();
- $countryCollection->expects($this->once())->method('getItemById')->with('AE')->willReturn($testCountryInfo);
- $this->directoryHelper->expects($this->once())->method('getCountryCollection')->willReturn($countryCollection);
- $this->directoryHelper->expects($this->once())->method('getRegionData')->willReturn([]);
- $countryInfo = $this->objectManager->getObject(\Magento\Directory\Model\Data\CountryInformation::class);
- $this->countryInformationFactory->expects($this->once())->method('create')->willReturn($countryInfo);
- $result = $this->model->getCountryInfo('AE');
- $this->assertEquals('AE', $result->getId());
- $this->assertEquals('AE', $result->getTwoLetterAbbreviation());
- $this->assertEquals('ARE', $result->getThreeLetterAbbreviation());
- $this->assertEquals('United Arab Emirates', $result->getFullNameLocale());
- $this->assertEquals('United Arab Emirates', $result->getFullNameEnglish());
- }
- /**
- * test GetGetCountryInfoNotFound
- *
- * @expectedException \Magento\Framework\Exception\NoSuchEntityException
- * @expectedExceptionMessage The country isn't available.
- */
- public function testGetCountryInfoNotFound()
- {
- /** @var \Magento\Store\Model\Store $store */
- $store = $this->createMock(\Magento\Store\Model\Store::class);
- $this->storeManager->expects($this->once())->method('getStore')->willReturn($store);
- $testCountryInfo = $this->objectManager->getObject(\Magento\Directory\Model\Country::class);
- $testCountryInfo->setData('country_id', 'AE');
- $testCountryInfo->setData('iso2_code', 'AE');
- $testCountryInfo->setData('iso3_code', 'ARE');
- $testCountryInfo->setData('name_default', 'United Arab Emirates');
- $testCountryInfo->setData('name_en_US', 'United Arab Emirates');
- $countryCollection = $this->createMock(\Magento\Directory\Model\ResourceModel\Country\Collection::class);
- $countryCollection->expects($this->once())->method('load')->willReturnSelf();
- $this->directoryHelper->expects($this->once())->method('getCountryCollection')->willReturn($countryCollection);
- $countryCollection->expects($this->once())->method('getItemById')->willReturn(null);
- $this->model->getCountryInfo('AE');
- }
- }
|