123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Shipping\Test\Unit\Model\Shipping;
- use Magento\Framework\TestFramework\Unit\Helper\ObjectManager as ObjectManagerHelper;
- use Magento\Sales\Model\Order\Shipment;
- use Magento\Store\Model\ScopeInterface;
- /**
- * Class LabelsTest
- *
- * Test class for \Magento\Shipping\Model\Shipping\Labels
- *
- * @SuppressWarnings(PHPMD.CouplingBetweenObjects)
- */
- class LabelsTest extends \PHPUnit\Framework\TestCase
- {
- /**
- * @var \Magento\Shipping\Model\Shipping\Labels
- */
- protected $labels;
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject
- */
- protected $request;
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject
- */
- protected $scopeConfig;
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject
- */
- protected $region;
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject
- */
- private $carrierFactory;
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject
- */
- private $user;
- protected function setUp()
- {
- $this->request = $this->getMockBuilder(\Magento\Shipping\Model\Shipment\Request::class)
- ->disableOriginalConstructor()
- ->getMock();
- $requestFactory = $this->getMockBuilder(\Magento\Shipping\Model\Shipment\RequestFactory::class)
- ->disableOriginalConstructor()
- ->setMethods(['create'])
- ->getMock();
- $requestFactory->expects(static::any())->method('create')->willReturn($this->request);
- $this->carrierFactory = $this->getMockBuilder(\Magento\Shipping\Model\CarrierFactory::class)
- ->disableOriginalConstructor()
- ->setMethods(['create'])
- ->getMock();
- $storeManager = $this->getStoreManager();
- $this->user = $this->getMockBuilder(\Magento\User\Model\User::class)
- ->disableOriginalConstructor()
- ->setMethods(['getFirstname', 'getLastname', 'getEmail', 'getName'])
- ->getMock();
- $authSession = $this->getMockBuilder(\Magento\Backend\Model\Auth\Session::class)
- ->disableOriginalConstructor()
- ->setMethods(['getUser'])
- ->getMock();
- $authSession->expects(static::any())->method('getUser')->willReturn($this->user);
- $regionFactory = $this->getRegionFactory();
- $this->scopeConfig = $this->getMockBuilder(\Magento\Framework\App\Config::class)
- ->disableOriginalConstructor()
- ->setMethods(['getValue'])
- ->getMock();
- $objectManagerHelper = new ObjectManagerHelper($this);
- $this->labels = $objectManagerHelper->getObject(
- \Magento\Shipping\Model\Shipping\Labels::class,
- [
- 'shipmentRequestFactory' => $requestFactory,
- 'carrierFactory' => $this->carrierFactory,
- 'storeManager' => $storeManager,
- 'scopeConfig' => $this->scopeConfig,
- 'authSession' => $authSession,
- 'regionFactory' => $regionFactory
- ]
- );
- }
- /**
- * @dataProvider requestToShipmentDataProvider
- */
- public function testRequestToShipment($regionId)
- {
- $carrier = $this->getMockBuilder(\Magento\Shipping\Model\Carrier\AbstractCarrier::class)
- ->disableOriginalConstructor()
- ->getMock();
- $this->carrierFactory->expects(static::any())->method('create')->willReturn($carrier);
- $order = $this->getMockBuilder(\Magento\Sales\Model\Order::class)
- ->disableOriginalConstructor()
- ->getMock();
- $this->user->expects($this->atLeastOnce())->method('getFirstname')->willReturn('John');
- $this->user->expects($this->atLeastOnce())->method('getLastname')->willReturn('Doe');
- $this->user->expects($this->once())->method('getName')->willReturn('John Doe');
- $this->user->expects($this->once())->method('getEmail')->willReturn('admin@admin.test.com');
- $shippingMethod = $this->getMockBuilder(\Magento\Framework\DataObject::class)
- ->disableOriginalConstructor()
- ->setMethods(['getCarrierCode'])
- ->getMock();
- $shippingMethod->expects(static::once())
- ->method('getCarrierCode')
- ->willReturn('usps');
- $order->expects(static::exactly(2))
- ->method('getShippingMethod')
- ->with(true)
- ->willReturn($shippingMethod);
- $address = $this->getRecipientAddress();
- $order->expects(static::once())
- ->method('getShippingAddress')
- ->willReturn($address);
- $order->expects(static::once())
- ->method('getWeight')
- ->willReturn(2);
- $storeId = 33;
- $shipment = $this->getMockBuilder(\Magento\Sales\Model\Order\Shipment::class)
- ->disableOriginalConstructor()
- ->getMock();
- $shipment->expects(static::once())->method('getOrder')->willReturn($order);
- $shipment->expects(static::once())->method('getStoreId')->willReturn($storeId);
- $shipment->expects(static::once())->method('getPackages')->willReturn('');
- $this->scopeConfig->expects(static::any())
- ->method('getValue')
- ->willReturnMap([
- [Shipment::XML_PATH_STORE_REGION_ID, ScopeInterface::SCOPE_STORE, $storeId, $regionId],
- [Shipment::XML_PATH_STORE_ADDRESS1, ScopeInterface::SCOPE_STORE, $storeId, 'Beverly Heals'],
- ['general/store_information', ScopeInterface::SCOPE_STORE, $storeId, [
- 'name' => 'General Store', 'phone' => '(244)1500301'
- ]],
- [Shipment::XML_PATH_STORE_CITY, ScopeInterface::SCOPE_STORE, $storeId, 'LA'],
- [Shipment::XML_PATH_STORE_ZIP, ScopeInterface::SCOPE_STORE, $storeId, '90304'],
- [Shipment::XML_PATH_STORE_COUNTRY_ID, ScopeInterface::SCOPE_STORE, $storeId, 'US'],
- [Shipment::XML_PATH_STORE_ADDRESS2, ScopeInterface::SCOPE_STORE, $storeId, '1st Park Avenue'],
- ]);
- $this->labels->requestToShipment($shipment);
- }
- /**
- * @expectedException \Magento\Framework\Exception\LocalizedException
- * @dataProvider requestToShipmentLocalizedExceptionDataProvider
- */
- public function testRequestToShipmentLocalizedException($isShipmentCarrierNotNull)
- {
- $order = $this->getMockBuilder(\Magento\Sales\Model\Order::class)
- ->disableOriginalConstructor()
- ->getMock();
- $shipment = $this->getMockBuilder(\Magento\Sales\Model\Order\Shipment::class)
- ->disableOriginalConstructor()
- ->getMock();
- $shippingMethod = $this->getMockBuilder(\Magento\Framework\DataObject::class)
- ->disableOriginalConstructor()
- ->setMethods(['getCarrierCode'])
- ->getMock();
- $order->expects($this->atLeastOnce())
- ->method('getShippingMethod')
- ->with(true)
- ->willReturn($shippingMethod);
- $this->carrierFactory
- ->expects(static::any())
- ->method('create')
- ->willReturn($isShipmentCarrierNotNull ? $shippingMethod : null);
- $shipment->expects($this->once())->method('getOrder')->willReturn($order);
- $this->labels->requestToShipment($shipment);
- }
- /**
- * @return \PHPUnit_Framework_MockObject_MockObject
- */
- protected function getStoreManager()
- {
- $store = $this->getMockBuilder(\Magento\Store\Model\Store::class)
- ->disableOriginalConstructor()
- ->getMock();
- $store->expects(static::any())
- ->method('getBaseCurrencyCode')
- ->willReturn('USD');
- $storeManager = $this->getMockBuilder(\Magento\Store\Model\StoreManager::class)
- ->disableOriginalConstructor()
- ->setMethods(['getStore'])
- ->getMock();
- $storeManager->expects(static::any())->method('getStore')->willReturn($store);
- return $storeManager;
- }
- /**
- * @return \PHPUnit_Framework_MockObject_MockObject
- */
- protected function getRegionFactory()
- {
- $this->region = $this->getMockBuilder(\Magento\Directory\Model\Region::class)
- ->disableOriginalConstructor()
- ->setMethods(['load', 'getCode'])
- ->getMock();
- $regionFactory = $this->getMockBuilder(\Magento\Directory\Model\RegionFactory::class)
- ->disableOriginalConstructor()
- ->setMethods(['create'])
- ->getMock();
- $regionFactory->expects(static::any())->method('create')->willReturn($this->region);
- return $regionFactory;
- }
- /**
- * @return \PHPUnit_Framework_MockObject_MockObject
- */
- protected function getRecipientAddress()
- {
- $address = $this->getMockBuilder(\Magento\Sales\Model\Order\Address::class)
- ->disableOriginalConstructor()
- ->getMock();
- $address->expects(static::exactly(2))
- ->method('getRegionCode')
- ->willReturn('CO');
- $address->expects(static::exactly(2))
- ->method('getFirstname')
- ->willReturn('Chimi');
- $address->expects(static::exactly(2))
- ->method('getLastname')
- ->willReturn('Chung');
- $address->expects(static::once())
- ->method('getCompany')
- ->willReturn('Software LLC');
- $address->expects(static::once())
- ->method('getTelephone')
- ->willReturn('(231) 324-123-31');
- $address->expects(static::once())
- ->method('getEmail')
- ->willReturn('chimi.chung@test.com');
- $address->expects(static::exactly(4))
- ->method('getStreetLine')
- ->willReturn('66 Pearl St');
- $address->expects(static::once())
- ->method('getCity')
- ->willReturn('Denver');
- $address->expects(static::once())
- ->method('getPostcode')
- ->willReturn('80203');
- $address->expects(static::once())
- ->method('getCountryId')
- ->willReturn(1);
- return $address;
- }
- /**
- * Data provider to testRequestToShipment
- * @return array
- */
- public function requestToShipmentDataProvider()
- {
- return [
- [
- 'CA'
- ],
- [
- null
- ]
- ];
- }
- /**
- * Data provider to testRequestToShipmentLocalizedException
- * @return array
- */
- public function requestToShipmentLocalizedExceptionDataProvider()
- {
- return [
- [
- true
- ],
- [
- false
- ]
- ];
- }
- }
|