123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Quote\Api;
- use Magento\Framework\App\Config;
- use Magento\TestFramework\TestCase\WebapiAbstract;
- /**
- * Class CartManagementTest
- * @package Magento\Quote\Api
- * @magentoAppIsolation enabled
- */
- class CartManagementTest extends WebapiAbstract
- {
- const SERVICE_VERSION = 'V1';
- const SERVICE_NAME = 'quoteCartManagementV1';
- const RESOURCE_PATH = '/V1/carts/';
- const RESOURCE_PATH_CUSTOMER_TOKEN = "/V1/integration/customer/token";
- protected $createdQuotes = [];
- /**
- * @var \Magento\TestFramework\ObjectManager
- */
- protected $objectManager;
- protected function setUp()
- {
- $this->objectManager = \Magento\TestFramework\Helper\Bootstrap::getObjectManager();
- $appConfig = $this->objectManager->get(Config::class);
- $appConfig->clean();
- }
- public function tearDown()
- {
- /** @var \Magento\Quote\Model\Quote $quote */
- $quote = $this->objectManager->create(\Magento\Quote\Model\Quote::class);
- foreach ($this->createdQuotes as $quoteId) {
- $quote->load($quoteId);
- $quote->delete();
- }
- }
- public function testCreateEmptyCartForGuest()
- {
- $serviceInfo = [
- 'rest' => [
- 'resourcePath' => self::RESOURCE_PATH,
- 'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_POST,
- ],
- 'soap' => [
- 'service' => self::SERVICE_NAME,
- 'serviceVersion' => self::SERVICE_VERSION,
- 'operation' => self::SERVICE_NAME . 'CreateEmptyCart',
- ],
- ];
- $requestData = ['storeId' => 1];
- $quoteId = $this->_webApiCall($serviceInfo, $requestData);
- $this->assertGreaterThan(0, $quoteId);
- $this->createdQuotes[] = $quoteId;
- }
- /**
- * @magentoApiDataFixture Magento/Customer/_files/customer.php
- */
- public function testCreateEmptyCartForCustomer()
- {
- /** @var $repository \Magento\Customer\Api\CustomerRepositoryInterface */
- $repository = $this->objectManager->create(\Magento\Customer\Api\CustomerRepositoryInterface::class);
- /** @var $customer \Magento\Customer\Api\Data\CustomerInterface */
- $customer = $repository->getById(1);
- $customerId = $customer->getId();
- $serviceInfo = [
- 'rest' => [
- 'resourcePath' => '/V1/customers/' . $customerId . '/carts',
- 'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_POST,
- ],
- 'soap' => [
- 'service' => self::SERVICE_NAME,
- 'serviceVersion' => self::SERVICE_VERSION,
- 'operation' => self::SERVICE_NAME . 'CreateEmptyCartForCustomer',
- ],
- ];
- $quoteId = $this->_webApiCall($serviceInfo, ['customerId' => $customerId]);
- $this->assertGreaterThan(0, $quoteId);
- $this->createdQuotes[] = $quoteId;
- }
- /**
- * @magentoApiDataFixture Magento/Customer/_files/customer.php
- */
- public function testCreateEmptyCartAndGetCartForCustomer()
- {
- $this->_markTestAsRestOnly();
- // get customer ID token
- /** @var \Magento\Integration\Api\CustomerTokenServiceInterface $customerTokenService */
- $customerTokenService = $this->objectManager->create(
- \Magento\Integration\Api\CustomerTokenServiceInterface::class
- );
- $token = $customerTokenService->createCustomerAccessToken('customer@example.com', 'password');
- $serviceInfo = [
- 'rest' => [
- 'resourcePath' => '/V1/carts/mine',
- 'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_POST,
- 'token' => $token
- ]
- ];
- $quoteId = $this->_webApiCall($serviceInfo, ['customerId' => 999]); // customerId 999 will get overridden
- $this->assertGreaterThan(0, $quoteId);
- $this->createdQuotes[] = $quoteId;
- $serviceInfo = [
- 'rest' => [
- 'resourcePath' => '/V1/carts/mine',
- 'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_GET,
- 'token' => $token
- ]
- ];
- /** @var \Magento\Quote\Api\Data\CartInterface $cart */
- $cart = $this->_webApiCall($serviceInfo, ['customerId' => 999]); // customerId 999 will get overridden
- $this->assertEquals($quoteId, $cart['id']);
- }
- /**
- * @magentoApiDataFixture Magento/Sales/_files/quote.php
- * @magentoApiDataFixture Magento/Customer/_files/customer.php
- */
- public function testAssignCustomer()
- {
- /** @var $quote \Magento\Quote\Model\Quote */
- $quote = $this->objectManager->create(\Magento\Quote\Model\Quote::class)->load('test01', 'reserved_order_id');
- $cartId = $quote->getId();
- /** @var $repository \Magento\Customer\Api\CustomerRepositoryInterface */
- $repository = $this->objectManager->create(\Magento\Customer\Api\CustomerRepositoryInterface::class);
- /** @var $customer \Magento\Customer\Api\Data\CustomerInterface */
- $customer = $repository->getById(1);
- $customerId = $customer->getId();
- $serviceInfo = [
- 'rest' => [
- 'resourcePath' => '/V1/carts/' . $cartId,
- 'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_PUT,
- ],
- 'soap' => [
- 'service' => self::SERVICE_NAME,
- 'serviceVersion' => 'V1',
- 'operation' => self::SERVICE_NAME . 'AssignCustomer',
- ],
- ];
- $requestData = [
- 'cartId' => $cartId,
- 'customerId' => $customerId,
- 'storeId' => 1,
- ];
- // Cart must be anonymous (see fixture)
- $this->assertEmpty($quote->getCustomerId());
- $this->assertTrue($this->_webApiCall($serviceInfo, $requestData));
- // Reload target quote
- $quote = $this->objectManager->create(\Magento\Quote\Model\Quote::class)->load('test01', 'reserved_order_id');
- $this->assertEquals(0, $quote->getCustomerIsGuest());
- $this->assertEquals($customer->getId(), $quote->getCustomerId());
- $this->assertEquals($customer->getFirstname(), $quote->getCustomerFirstname());
- $this->assertEquals($customer->getLastname(), $quote->getCustomerLastname());
- }
- /**
- * @magentoApiDataFixture Magento/Sales/_files/quote.php
- * @expectedException \Exception
- */
- public function testAssignCustomerThrowsExceptionIfThereIsNoCustomerWithGivenId()
- {
- /** @var $quote \Magento\Quote\Model\Quote */
- $quote = $this->objectManager->create(\Magento\Quote\Model\Quote::class)->load('test01', 'reserved_order_id');
- $cartId = $quote->getId();
- $customerId = 9999;
- $serviceInfo = [
- 'soap' => [
- 'serviceVersion' => 'V1',
- 'service' => self::SERVICE_NAME,
- 'operation' => self::SERVICE_NAME . 'AssignCustomer',
- ],
- 'rest' => [
- 'resourcePath' => '/V1/carts/' . $cartId,
- 'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_PUT,
- ],
- ];
- $requestData = [
- 'cartId' => $cartId,
- 'customerId' => $customerId,
- 'storeId' => 1,
- ];
- $this->_webApiCall($serviceInfo, $requestData);
- }
- /**
- * @magentoApiDataFixture Magento/Customer/_files/customer.php
- * @expectedException \Exception
- */
- public function testAssignCustomerThrowsExceptionIfThereIsNoCartWithGivenId()
- {
- $cartId = 9999;
- $customerId = 1;
- $serviceInfo = [
- 'soap' => [
- 'service' => self::SERVICE_NAME,
- 'serviceVersion' => 'V1',
- 'operation' => self::SERVICE_NAME . 'AssignCustomer',
- ],
- 'rest' => [
- 'resourcePath' => '/V1/carts/' . $cartId,
- 'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_PUT,
- ],
- ];
- $requestData = [
- 'cartId' => $cartId,
- 'customerId' => $customerId,
- 'storeId' => 1,
- ];
- $this->_webApiCall($serviceInfo, $requestData);
- }
- /**
- * @magentoApiDataFixture Magento/Sales/_files/quote_with_customer.php
- * @expectedException \Exception
- * @expectedExceptionMessage The customer can't be assigned to the cart because the cart isn't anonymous.
- */
- public function testAssignCustomerThrowsExceptionIfTargetCartIsNotAnonymous()
- {
- /** @var $customer \Magento\Customer\Model\Customer */
- $customer = $this->objectManager->create(\Magento\Customer\Model\Customer::class)->load(1);
- $customerId = $customer->getId();
- /** @var $quote \Magento\Quote\Model\Quote */
- $quote = $this->objectManager->create(\Magento\Quote\Model\Quote::class)->load('test01', 'reserved_order_id');
- $cartId = $quote->getId();
- $serviceInfo = [
- 'rest' => [
- 'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_PUT,
- 'resourcePath' => '/V1/carts/' . $cartId,
- ],
- 'soap' => [
- 'service' => self::SERVICE_NAME,
- 'serviceVersion' => 'V1',
- 'operation' => self::SERVICE_NAME . 'AssignCustomer',
- ],
- ];
- $requestData = [
- 'cartId' => $cartId,
- 'customerId' => $customerId,
- 'storeId' => 1,
- ];
- $this->_webApiCall($serviceInfo, $requestData);
- }
- /**
- * @magentoApiDataFixture Magento/Sales/_files/quote.php
- * @magentoApiDataFixture Magento/Customer/_files/customer_non_default_website_id.php
- * @expectedException \Exception
- * @expectedExceptionMessage The customer can't be assigned to the cart. The cart belongs to a different store.
- */
- public function testAssignCustomerThrowsExceptionIfCartIsAssignedToDifferentStore()
- {
- $repository = $this->objectManager->create(\Magento\Customer\Api\CustomerRepositoryInterface::class);
- /** @var $customer \Magento\Customer\Api\Data\CustomerInterface */
- $customer = $repository->getById(1);
- /** @var $quote \Magento\Quote\Model\Quote */
- $quote = $this->objectManager->create(\Magento\Quote\Model\Quote::class)->load('test01', 'reserved_order_id');
- $customerId = $customer->getId();
- $cartId = $quote->getId();
- $serviceInfo = [
- 'soap' => [
- 'service' => self::SERVICE_NAME,
- 'serviceVersion' => 'V1',
- 'operation' => self::SERVICE_NAME . 'AssignCustomer',
- ],
- 'rest' => [
- 'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_PUT,
- 'resourcePath' => '/V1/carts/' . $cartId,
- ],
- ];
- $requestData = [
- 'cartId' => $cartId,
- 'customerId' => $customerId,
- 'storeId' => 1,
- ];
- $this->_webApiCall($serviceInfo, $requestData);
- }
- /**
- * @magentoApiDataFixture Magento/Checkout/_files/quote_with_address_saved.php
- * @magentoApiDataFixture Magento/Sales/_files/quote.php
- * @expectedException \Exception
- */
- public function testAssignCustomerThrowsExceptionIfCustomerAlreadyHasActiveCart()
- {
- /** @var $customer \Magento\Customer\Model\Customer */
- $customer = $this->objectManager->create(\Magento\Customer\Model\Customer::class)->load(1);
- // Customer has a quote with reserved order ID test_order_1 (see fixture)
- /** @var $customerQuote \Magento\Quote\Model\Quote */
- $customerQuote = $this->objectManager->create(\Magento\Quote\Model\Quote::class)
- ->load('test_order_1', 'reserved_order_id');
- $customerQuote->setIsActive(1)->save();
- /** @var $quote \Magento\Quote\Model\Quote */
- $quote = $this->objectManager->create(\Magento\Quote\Model\Quote::class)->load('test01', 'reserved_order_id');
- $cartId = $quote->getId();
- $customerId = $customer->getId();
- $serviceInfo = [
- 'soap' => [
- 'service' => self::SERVICE_NAME,
- 'operation' => self::SERVICE_NAME . 'AssignCustomer',
- 'serviceVersion' => 'V1',
- ],
- 'rest' => [
- 'resourcePath' => '/V1/carts/' . $cartId,
- 'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_PUT,
- ],
- ];
- $requestData = [
- 'cartId' => $cartId,
- 'customerId' => $customerId,
- 'storeId' => 1,
- ];
- $this->_webApiCall($serviceInfo, $requestData);
- $this->expectExceptionMessage(
- "The customer can't be assigned to the cart because the customer already has an active cart."
- );
- }
- /**
- * @magentoApiDataFixture Magento/Checkout/_files/quote_with_check_payment.php
- */
- public function testPlaceOrder()
- {
- /** @var $quote \Magento\Quote\Model\Quote */
- $quote = $this->objectManager->create(\Magento\Quote\Model\Quote::class)
- ->load('test_order_1', 'reserved_order_id');
- $cartId = $quote->getId();
- $serviceInfo = [
- 'soap' => [
- 'service' => 'quoteCartManagementV1',
- 'operation' => 'quoteCartManagementV1PlaceOrder',
- 'serviceVersion' => 'V1',
- ],
- 'rest' => [
- 'resourcePath' => '/V1/carts/' . $cartId . '/order',
- 'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_PUT,
- ],
- ];
- $orderId = $this->_webApiCall($serviceInfo, ['cartId' => $cartId]);
- /** @var \Magento\Sales\Model\Order $order */
- $order = $this->objectManager->create(\Magento\Sales\Model\Order::class)->load($orderId);
- $items = $order->getAllItems();
- $this->assertCount(1, $items);
- $this->assertEquals('Simple Product', $items[0]->getName());
- }
- /**
- * @magentoApiDataFixture Magento/Checkout/_files/quote_with_check_payment.php
- */
- public function testPlaceOrderForMyCart()
- {
- $this->_markTestAsRestOnly();
- // get customer ID token
- /** @var \Magento\Integration\Api\CustomerTokenServiceInterface $customerTokenService */
- $customerTokenService = $this->objectManager->create(
- \Magento\Integration\Api\CustomerTokenServiceInterface::class
- );
- $token = $customerTokenService->createCustomerAccessToken('customer@example.com', 'password');
- $serviceInfo = [
- 'rest' => [
- 'resourcePath' => '/V1/carts/mine/order',
- 'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_PUT,
- 'token' => $token
- ],
- ];
- $orderId = $this->_webApiCall($serviceInfo, []);
- /** @var \Magento\Sales\Model\Order $order */
- $order = $this->objectManager->create(\Magento\Sales\Model\Order::class)->load($orderId);
- $items = $order->getAllItems();
- $this->assertCount(1, $items);
- $this->assertEquals('Simple Product', $items[0]->getName());
- }
- /**
- * Test to get my cart based on customer authentication token or session
- *
- * @magentoApiDataFixture Magento/Sales/_files/quote_with_customer.php
- */
- public function testGetCartForCustomer()
- {
- // get customer ID token
- /** @var \Magento\Integration\Api\CustomerTokenServiceInterface $customerTokenService */
- $customerTokenService = $this->objectManager->create(
- \Magento\Integration\Api\CustomerTokenServiceInterface::class
- );
- $token = $customerTokenService->createCustomerAccessToken('customer@example.com', 'password');
- $cart = $this->getCart('test01');
- $customerId = $cart->getCustomer()->getId();
- $serviceInfo = [
- 'rest' => [
- 'resourcePath' => '/V1/carts/mine',
- 'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_GET,
- 'token' => $token
- ],
- 'soap' => [
- 'service' => 'quoteCartManagementV1',
- 'serviceVersion' => 'V1',
- 'operation' => 'quoteCartManagementV1GetCartForCustomer',
- 'token' => $token
- ],
- ];
- $requestData = ['customerId' => $customerId];
- $cartData = $this->_webApiCall($serviceInfo, $requestData);
- $this->assertEquals($cart->getId(), $cartData['id']);
- $this->assertEquals($cart->getCreatedAt(), $cartData['created_at']);
- $this->assertEquals($cart->getUpdatedAt(), $cartData['updated_at']);
- $this->assertEquals($cart->getIsActive(), $cartData['is_active']);
- $this->assertEquals($cart->getIsVirtual(), $cartData['is_virtual']);
- $this->assertEquals($cart->getOrigOrderId(), $cartData['orig_order_id']);
- $this->assertEquals($cart->getItemsCount(), $cartData['items_count']);
- $this->assertEquals($cart->getItemsQty(), $cartData['items_qty']);
- $this->assertContains('customer', $cartData);
- $this->assertEquals(false, $cartData['customer_is_guest']);
- $this->assertContains('currency', $cartData);
- $this->assertEquals($cart->getGlobalCurrencyCode(), $cartData['currency']['global_currency_code']);
- $this->assertEquals($cart->getBaseCurrencyCode(), $cartData['currency']['base_currency_code']);
- $this->assertEquals($cart->getQuoteCurrencyCode(), $cartData['currency']['quote_currency_code']);
- $this->assertEquals($cart->getStoreCurrencyCode(), $cartData['currency']['store_currency_code']);
- $this->assertEquals($cart->getBaseToGlobalRate(), $cartData['currency']['base_to_global_rate']);
- $this->assertEquals($cart->getBaseToQuoteRate(), $cartData['currency']['base_to_quote_rate']);
- $this->assertEquals($cart->getStoreToBaseRate(), $cartData['currency']['store_to_base_rate']);
- $this->assertEquals($cart->getStoreToQuoteRate(), $cartData['currency']['store_to_quote_rate']);
- }
- /**
- * Retrieve quote by given reserved order ID
- *
- * @param string $reservedOrderId
- * @return \Magento\Quote\Model\Quote
- * @throws \InvalidArgumentException
- */
- protected function getCart($reservedOrderId)
- {
- /** @var $cart \Magento\Quote\Model\Quote */
- $cart = $this->objectManager->get(\Magento\Quote\Model\Quote::class);
- $cart->load($reservedOrderId, 'reserved_order_id');
- if (!$cart->getId()) {
- throw new \InvalidArgumentException('There is no quote with provided reserved order ID.');
- }
- return $cart;
- }
- }
|