123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304 |
- <?php
- /**
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Persistent\Test\Unit\Model;
- use Magento\Persistent\Model\QuoteManager;
- class QuoteManagerTest extends \PHPUnit\Framework\TestCase
- {
- /**
- * @var QuoteManager
- */
- protected $model;
- /**
- * @var \Magento\Persistent\Helper\Session|\PHPUnit_Framework_MockObject_MockObject
- */
- protected $persistentSessionMock;
- /**
- * @var \Magento\Persistent\Helper\Data|\PHPUnit_Framework_MockObject_MockObject
- */
- protected $persistentDataMock;
- /**
- * @var \Magento\Checkout\Model\Session|\PHPUnit_Framework_MockObject_MockObject
- */
- protected $checkoutSessionMock;
- /**
- * @var \Magento\Quote\Model\Quote|\PHPUnit_Framework_MockObject_MockObject
- */
- protected $quoteMock;
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject
- */
- protected $sessionMock;
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject
- */
- protected $abstractCollectionMock;
- /**
- * @var \Magento\Quote\Api\CartRepositoryInterface|\PHPUnit_Framework_MockObject_MockObject
- */
- protected $quoteRepositoryMock;
- protected function setUp()
- {
- $this->persistentSessionMock = $this->createMock(\Magento\Persistent\Helper\Session::class);
- $this->sessionMock =
- $this->createPartialMock(\Magento\Persistent\Model\Session::class, [
- 'setLoadInactive',
- 'setCustomerData',
- 'clearQuote',
- 'clearStorage',
- 'getQuote',
- 'removePersistentCookie',
- '__wakeup',
- ]);
- $this->persistentDataMock = $this->createMock(\Magento\Persistent\Helper\Data::class);
- $this->checkoutSessionMock = $this->createMock(\Magento\Checkout\Model\Session::class);
- $this->abstractCollectionMock =
- $this->createMock(\Magento\Eav\Model\Entity\Collection\AbstractCollection::class);
- $this->quoteRepositoryMock = $this->createMock(\Magento\Quote\Api\CartRepositoryInterface::class);
- $this->quoteMock = $this->createPartialMock(\Magento\Quote\Model\Quote::class, [
- 'getId',
- 'getIsPersistent',
- 'getPaymentsCollection',
- 'getAddressesCollection',
- 'setIsActive',
- 'setCustomerId',
- 'setCustomerEmail',
- 'setCustomerFirstname',
- 'setCustomerLastname',
- 'setCustomerGroupId',
- 'setIsPersistent',
- 'getShippingAddress',
- 'getBillingAddress',
- 'collectTotals',
- 'removeAllAddresses',
- 'getIsActive',
- 'getCustomerId',
- '__wakeup'
- ]);
- $this->model = new QuoteManager(
- $this->persistentSessionMock,
- $this->persistentDataMock,
- $this->checkoutSessionMock,
- $this->quoteRepositoryMock
- );
- }
- public function testSetGuestWithEmptyQuote()
- {
- $this->checkoutSessionMock->expects($this->once())
- ->method('getQuote')->will($this->returnValue(null));
- $this->quoteMock->expects($this->never())->method('getId');
- $this->persistentSessionMock->expects($this->once())
- ->method('getSession')->will($this->returnValue($this->sessionMock));
- $this->sessionMock->expects($this->once())
- ->method('removePersistentCookie')->will($this->returnValue($this->sessionMock));
- $this->model->setGuest(false);
- }
- public function testSetGuestWithEmptyQuoteId()
- {
- $this->checkoutSessionMock->expects($this->once())
- ->method('getQuote')->will($this->returnValue($this->quoteMock));
- $this->quoteMock->expects($this->once())->method('getId')->will($this->returnValue(null));
- $this->persistentDataMock->expects($this->never())->method('isShoppingCartPersist');
- $this->persistentSessionMock->expects($this->once())
- ->method('getSession')->will($this->returnValue($this->sessionMock));
- $this->sessionMock->expects($this->once())
- ->method('removePersistentCookie')->will($this->returnValue($this->sessionMock));
- $this->model->setGuest(false);
- }
- public function testSetGuestWhenShoppingCartAndQuoteAreNotPersistent()
- {
- $this->checkoutSessionMock->expects($this->once())
- ->method('getQuote')->will($this->returnValue($this->quoteMock));
- $this->quoteMock->expects($this->once())->method('getId')->will($this->returnValue(11));
- $this->persistentDataMock->expects($this->once())
- ->method('isShoppingCartPersist')->will($this->returnValue(false));
- $this->quoteMock->expects($this->once())->method('getIsPersistent')->will($this->returnValue(false));
- $this->checkoutSessionMock->expects($this->once())
- ->method('clearQuote')->will($this->returnValue($this->checkoutSessionMock));
- $this->checkoutSessionMock->expects($this->once())->method('clearStorage');
- $this->quoteMock->expects($this->never())->method('getPaymentsCollection');
- $this->model->setGuest(true);
- }
- public function testSetGuest()
- {
- $this->checkoutSessionMock->expects($this->once())
- ->method('getQuote')->will($this->returnValue($this->quoteMock));
- $this->quoteMock->expects($this->once())->method('getId')->will($this->returnValue(11));
- $this->persistentDataMock->expects($this->never())->method('isShoppingCartPersist');
- $this->quoteMock->expects($this->once())
- ->method('getPaymentsCollection')->will($this->returnValue($this->abstractCollectionMock));
- $this->quoteMock->expects($this->once())
- ->method('getAddressesCollection')->will($this->returnValue($this->abstractCollectionMock));
- $this->abstractCollectionMock->expects($this->exactly(2))->method('walk')->with('delete');
- $this->quoteMock->expects($this->once())
- ->method('setIsActive')->with(true)->will($this->returnValue($this->quoteMock));
- $this->quoteMock->expects($this->once())
- ->method('setCustomerId')->with(null)->will($this->returnValue($this->quoteMock));
- $this->quoteMock->expects($this->once())
- ->method('setCustomerEmail')->with(null)->will($this->returnValue($this->quoteMock));
- $this->quoteMock->expects($this->once())
- ->method('setCustomerFirstname')->with(null)->will($this->returnValue($this->quoteMock));
- $this->quoteMock->expects($this->once())
- ->method('setCustomerLastname')->with(null)->will($this->returnValue($this->quoteMock));
- $this->quoteMock->expects($this->once())->method('setCustomerGroupId')
- ->with(\Magento\Customer\Model\GroupManagement::NOT_LOGGED_IN_ID)
- ->will($this->returnValue($this->quoteMock));
- $this->quoteMock->expects($this->once())
- ->method('setIsPersistent')->with(false)->will($this->returnValue($this->quoteMock));
- $this->quoteMock->expects($this->once())
- ->method('removeAllAddresses')->will($this->returnValue($this->quoteMock));
- $quoteAddressMock = $this->createMock(\Magento\Quote\Model\Quote\Address::class);
- $this->quoteMock->expects($this->once())
- ->method('getShippingAddress')->will($this->returnValue($quoteAddressMock));
- $this->quoteMock->expects($this->once())
- ->method('getBillingAddress')->will($this->returnValue($quoteAddressMock));
- $this->quoteMock->expects($this->once())->method('collectTotals')->will($this->returnValue($this->quoteMock));
- $this->quoteRepositoryMock->expects($this->once())->method('save')->with($this->quoteMock);
- $this->persistentSessionMock->expects($this->once())
- ->method('getSession')->will($this->returnValue($this->sessionMock));
- $this->sessionMock->expects($this->once())
- ->method('removePersistentCookie')->will($this->returnValue($this->sessionMock));
- $this->model->setGuest(false);
- }
- public function testExpireWithActiveQuoteAndCustomerId()
- {
- $this->checkoutSessionMock->expects($this->once())
- ->method('setLoadInactive')->will($this->returnValue($this->sessionMock));
- $this->sessionMock->expects($this->once())->method('getQuote')->will($this->returnValue($this->quoteMock));
- $this->quoteMock->expects($this->once())->method('getIsActive')->will($this->returnValue(11));
- $this->quoteMock->expects($this->once())->method('getCustomerId')->will($this->returnValue(22));
- $this->checkoutSessionMock->expects($this->once())
- ->method('setCustomerData')->with(null)->will($this->returnValue($this->sessionMock));
- $this->sessionMock->expects($this->once())
- ->method('clearQuote')->will($this->returnValue($this->sessionMock));
- $this->sessionMock->expects($this->once())
- ->method('clearStorage')->will($this->returnValue($this->sessionMock));
- $this->quoteMock->expects($this->never())->method('setIsActive');
- $this->model->expire();
- }
- public function testExpire()
- {
- $this->checkoutSessionMock->expects($this->once())
- ->method('setLoadInactive')->will($this->returnValue($this->sessionMock));
- $this->sessionMock->expects($this->once())->method('getQuote')->will($this->returnValue($this->quoteMock));
- $this->quoteMock->expects($this->once())->method('getIsActive')->will($this->returnValue(0));
- $this->checkoutSessionMock->expects($this->never())->method('setCustomerData');
- $this->quoteMock->expects($this->once())
- ->method('setIsActive')
- ->with(true)
- ->will($this->returnValue($this->quoteMock));
- $this->quoteMock->expects($this->once())
- ->method('setIsPersistent')
- ->with(false)
- ->will($this->returnValue($this->quoteMock));
- $this->quoteMock->expects($this->once())
- ->method('setCustomerId')
- ->with(null)
- ->will($this->returnValue($this->quoteMock));
- $this->quoteMock->expects($this->once())
- ->method('setCustomerGroupId')
- ->with(\Magento\Customer\Model\GroupManagement::NOT_LOGGED_IN_ID)
- ->will($this->returnValue($this->quoteMock));
- $this->model->expire();
- }
- public function testConvertCustomerCartToGuest()
- {
- $quoteId = 1;
- $addressArgs = ['customerAddressId' => null];
- $customerIdArgs = ['customerId' => null];
- $emailArgs = ['email' => null];
- $this->checkoutSessionMock->expects($this->once())
- ->method('getQuoteId')->willReturn($quoteId);
- $this->quoteMock->expects($this->once())->method('getId')->willReturn($quoteId);
- $this->quoteRepositoryMock->expects($this->once())->method('get')->with($quoteId)->willReturn($this->quoteMock);
- $this->quoteMock->expects($this->once())
- ->method('setIsActive')->with(true)->willReturn($this->quoteMock);
- $this->quoteMock->expects($this->once())
- ->method('setCustomerId')->with(null)->willReturn($this->quoteMock);
- $this->quoteMock->expects($this->once())
- ->method('setCustomerEmail')->with(null)->willReturn($this->quoteMock);
- $this->quoteMock->expects($this->once())
- ->method('setCustomerFirstname')->with(null)->willReturn($this->quoteMock);
- $this->quoteMock->expects($this->once())
- ->method('setCustomerLastname')->with(null)->willReturn($this->quoteMock);
- $this->quoteMock->expects($this->once())->method('setCustomerGroupId')
- ->with(\Magento\Customer\Model\GroupManagement::NOT_LOGGED_IN_ID)
- ->willReturn($this->quoteMock);
- $this->quoteMock->expects($this->once())
- ->method('setIsPersistent')->with(false)->willReturn($this->quoteMock);
- $this->quoteMock->expects($this->exactly(3))
- ->method('getAddressesCollection')->willReturn($this->abstractCollectionMock);
- $this->abstractCollectionMock->expects($this->exactly(3))->method('walk')->with($this->logicalOr(
- $this->equalTo('setCustomerAddressId'),
- $this->equalTo($addressArgs),
- $this->equalTo('setCustomerId'),
- $this->equalTo($customerIdArgs),
- $this->equalTo('setEmail'),
- $this->equalTo($emailArgs)
- ));
- $this->quoteMock->expects($this->once())->method('collectTotals')->willReturn($this->quoteMock);
- $this->persistentSessionMock->expects($this->once())
- ->method('getSession')->willReturn($this->sessionMock);
- $this->sessionMock->expects($this->once())
- ->method('removePersistentCookie')->willReturn($this->sessionMock);
- $this->quoteRepositoryMock->expects($this->once())->method('save')->with($this->quoteMock);
- $this->model->convertCustomerCartToGuest();
- }
- public function testConvertCustomerCartToGuestWithEmptyQuote()
- {
- $this->checkoutSessionMock->expects($this->once())
- ->method('getQuoteId')->willReturn(null);
- $this->quoteRepositoryMock->expects($this->once())->method('get')->with(null)->willReturn(null);
- $this->model->convertCustomerCartToGuest();
- }
- public function testConvertCustomerCartToGuestWithEmptyQuoteId()
- {
- $this->checkoutSessionMock->expects($this->once())
- ->method('getQuoteId')->willReturn(1);
- $quoteWithNoId = $this->quoteMock = $this->createMock(\Magento\Quote\Model\Quote::class);
- $quoteWithNoId->expects($this->once())->method('getId')->willReturn(null);
- $this->quoteRepositoryMock->expects($this->once())->method('get')->with(1)->willReturn($quoteWithNoId);
- $this->quoteMock->expects($this->once())->method('getId')->willReturn(1);
- $this->model->convertCustomerCartToGuest();
- }
- }
|