357 lines
		
	
	
		
			16 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			357 lines
		
	
	
		
			16 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
<?php
 | 
						|
/**
 | 
						|
 * Copyright © Magento, Inc. All rights reserved.
 | 
						|
 * See COPYING.txt for license details.
 | 
						|
 */
 | 
						|
declare(strict_types=1);
 | 
						|
 | 
						|
namespace Magento\GraphQl\Quote\Customer;
 | 
						|
 | 
						|
use Exception;
 | 
						|
use Magento\Framework\Registry;
 | 
						|
use Magento\GraphQl\Quote\GetMaskedQuoteIdByReservedOrderId;
 | 
						|
use Magento\Integration\Api\CustomerTokenServiceInterface;
 | 
						|
use Magento\Sales\Api\OrderRepositoryInterface;
 | 
						|
use Magento\Sales\Model\ResourceModel\Order\CollectionFactory;
 | 
						|
use Magento\TestFramework\Helper\Bootstrap;
 | 
						|
use Magento\TestFramework\TestCase\GraphQlAbstract;
 | 
						|
 | 
						|
/**
 | 
						|
 * Test for placing an order for customer
 | 
						|
 */
 | 
						|
class PlaceOrderTest extends GraphQlAbstract
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * @var CustomerTokenServiceInterface
 | 
						|
     */
 | 
						|
    private $customerTokenService;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @var GetMaskedQuoteIdByReservedOrderId
 | 
						|
     */
 | 
						|
    private $getMaskedQuoteIdByReservedOrderId;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @var CollectionFactory
 | 
						|
     */
 | 
						|
    private $orderCollectionFactory;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @var OrderRepositoryInterface
 | 
						|
     */
 | 
						|
    private $orderRepository;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @var Registry
 | 
						|
     */
 | 
						|
    private $registry;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @inheritdoc
 | 
						|
     */
 | 
						|
    protected function setUp(): void
 | 
						|
    {
 | 
						|
        $objectManager = Bootstrap::getObjectManager();
 | 
						|
        $this->getMaskedQuoteIdByReservedOrderId = $objectManager->get(GetMaskedQuoteIdByReservedOrderId::class);
 | 
						|
        $this->customerTokenService = $objectManager->get(CustomerTokenServiceInterface::class);
 | 
						|
        $this->orderCollectionFactory = $objectManager->get(CollectionFactory::class);
 | 
						|
        $this->orderRepository = $objectManager->get(OrderRepositoryInterface::class);
 | 
						|
        $this->registry = Bootstrap::getObjectManager()->get(Registry::class);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @magentoApiDataFixture Magento/Customer/_files/customer.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Catalog/_files/simple_product.php
 | 
						|
     * @magentoConfigFixture default_store carriers/flatrate/active 1
 | 
						|
     * @magentoConfigFixture default_store carriers/tablerate/active 1
 | 
						|
     * @magentoConfigFixture default_store carriers/freeshipping/active 1
 | 
						|
     * @magentoConfigFixture default_store payment/banktransfer/active 1
 | 
						|
     * @magentoConfigFixture default_store payment/cashondelivery/active 1
 | 
						|
     * @magentoConfigFixture default_store payment/checkmo/active 1
 | 
						|
     * @magentoConfigFixture default_store payment/purchaseorder/active 1
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/customer/create_empty_cart.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/add_simple_product.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_new_shipping_address.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_new_billing_address.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_flatrate_shipping_method.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_checkmo_payment_method.php
 | 
						|
     */
 | 
						|
    public function testPlaceOrder()
 | 
						|
    {
 | 
						|
        $reservedOrderId = 'test_quote';
 | 
						|
        $maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute($reservedOrderId);
 | 
						|
 | 
						|
        $query = $this->getQuery($maskedQuoteId);
 | 
						|
        $response = $this->graphQlMutation($query, [], '', $this->getHeaderMap());
 | 
						|
 | 
						|
        self::assertArrayHasKey('placeOrder', $response);
 | 
						|
        self::assertArrayHasKey('order_number', $response['placeOrder']['order']);
 | 
						|
        self::assertEquals($reservedOrderId, $response['placeOrder']['order']['order_number']);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @magentoApiDataFixture Magento/Customer/_files/customer.php
 | 
						|
     */
 | 
						|
    public function testPlaceOrderIfCartIdIsEmpty()
 | 
						|
    {
 | 
						|
        $this->expectException(\Exception::class);
 | 
						|
        $this->expectExceptionMessage('Required parameter "cart_id" is missing');
 | 
						|
 | 
						|
        $maskedQuoteId = '';
 | 
						|
        $query = $this->getQuery($maskedQuoteId);
 | 
						|
 | 
						|
        $this->graphQlMutation($query, [], '', $this->getHeaderMap());
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @magentoApiDataFixture Magento/Customer/_files/customer.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/customer/create_empty_cart.php
 | 
						|
     */
 | 
						|
    public function testPlaceOrderWithNoItemsInCart()
 | 
						|
    {
 | 
						|
        $reservedOrderId = 'test_quote';
 | 
						|
        $maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute($reservedOrderId);
 | 
						|
        $query = $this->getQuery($maskedQuoteId);
 | 
						|
 | 
						|
        self::expectExceptionMessage(
 | 
						|
            'Unable to place order: A server error stopped your order from being placed. ' .
 | 
						|
            'Please try to place your order again'
 | 
						|
        );
 | 
						|
        $this->graphQlMutation($query, [], '', $this->getHeaderMap());
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @magentoApiDataFixture Magento/Customer/_files/customer.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Catalog/_files/simple_product.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/customer/create_empty_cart.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/add_simple_product.php
 | 
						|
     */
 | 
						|
    public function testPlaceOrderWithNoShippingAddress()
 | 
						|
    {
 | 
						|
        $reservedOrderId = 'test_quote';
 | 
						|
        $maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute($reservedOrderId);
 | 
						|
        $query = $this->getQuery($maskedQuoteId);
 | 
						|
 | 
						|
        self::expectExceptionMessage(
 | 
						|
            'Unable to place order: Some addresses can\'t be used due to the configurations for specific countries'
 | 
						|
        );
 | 
						|
        $this->graphQlMutation($query, [], '', $this->getHeaderMap());
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @magentoApiDataFixture Magento/Customer/_files/customer.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Catalog/_files/simple_product.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/customer/create_empty_cart.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/add_simple_product.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_new_shipping_address.php
 | 
						|
     */
 | 
						|
    public function testPlaceOrderWithNoShippingMethod()
 | 
						|
    {
 | 
						|
        $reservedOrderId = 'test_quote';
 | 
						|
        $maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute($reservedOrderId);
 | 
						|
        $query = $this->getQuery($maskedQuoteId);
 | 
						|
 | 
						|
        self::expectExceptionMessage(
 | 
						|
            'Unable to place order: The shipping method is missing. Select the shipping method and try again'
 | 
						|
        );
 | 
						|
        $this->graphQlMutation($query, [], '', $this->getHeaderMap());
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @magentoApiDataFixture Magento/Customer/_files/customer.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Catalog/_files/simple_product.php
 | 
						|
     * @magentoConfigFixture default_store carriers/flatrate/active 1
 | 
						|
     * @magentoConfigFixture default_store carriers/tablerate/active 1
 | 
						|
     * @magentoConfigFixture default_store carriers/freeshipping/active 1
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/customer/create_empty_cart.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/add_simple_product.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_new_shipping_address.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_flatrate_shipping_method.php
 | 
						|
     */
 | 
						|
    public function testPlaceOrderWithNoBillingAddress()
 | 
						|
    {
 | 
						|
        $reservedOrderId = 'test_quote';
 | 
						|
        $maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute($reservedOrderId);
 | 
						|
        $query = $this->getQuery($maskedQuoteId);
 | 
						|
 | 
						|
        self::expectExceptionMessageMatches(
 | 
						|
            '/Unable to place order: Please check the billing address information*/'
 | 
						|
        );
 | 
						|
        $this->graphQlMutation($query, [], '', $this->getHeaderMap());
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @magentoApiDataFixture Magento/Customer/_files/customer.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Catalog/_files/simple_product.php
 | 
						|
     * @magentoConfigFixture default_store carriers/flatrate/active 1
 | 
						|
     * @magentoConfigFixture default_store carriers/tablerate/active 1
 | 
						|
     * @magentoConfigFixture default_store carriers/freeshipping/active 1
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/customer/create_empty_cart.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/add_simple_product.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_new_shipping_address.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_new_billing_address.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_flatrate_shipping_method.php
 | 
						|
     */
 | 
						|
    public function testPlaceOrderWithNoPaymentMethod()
 | 
						|
    {
 | 
						|
        $reservedOrderId = 'test_quote';
 | 
						|
        $maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute($reservedOrderId);
 | 
						|
        $query = $this->getQuery($maskedQuoteId);
 | 
						|
 | 
						|
        self::expectExceptionMessage('Unable to place order: Enter a valid payment method and try again');
 | 
						|
        $this->graphQlMutation($query, [], '', $this->getHeaderMap());
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @magentoConfigFixture cataloginventory/options/enable_inventory_check 1
 | 
						|
     * @magentoApiDataFixture Magento/Customer/_files/customer.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Catalog/_files/simple_product.php
 | 
						|
     * @magentoConfigFixture default_store carriers/flatrate/active 1
 | 
						|
     * @magentoConfigFixture default_store carriers/tablerate/active 1
 | 
						|
     * @magentoConfigFixture default_store carriers/freeshipping/active 1
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/customer/create_empty_cart.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/add_simple_product.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_new_shipping_address.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_new_billing_address.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_flatrate_shipping_method.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Catalog/_files/set_simple_product_out_of_stock.php
 | 
						|
     */
 | 
						|
    public function testPlaceOrderWithOutOfStockProduct()
 | 
						|
    {
 | 
						|
        $reservedOrderId = 'test_quote';
 | 
						|
        $maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute($reservedOrderId);
 | 
						|
        $query = $this->getQuery($maskedQuoteId);
 | 
						|
 | 
						|
        self::expectExceptionMessage('Unable to place order: Some of the products are out of stock');
 | 
						|
        $this->graphQlMutation($query, [], '', $this->getHeaderMap());
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @magentoConfigFixture cataloginventory/options/enable_inventory_check 0
 | 
						|
     * @magentoApiDataFixture Magento/Customer/_files/customer.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Catalog/_files/simple_product.php
 | 
						|
     * @magentoConfigFixture default_store carriers/flatrate/active 1
 | 
						|
     * @magentoConfigFixture default_store carriers/tablerate/active 1
 | 
						|
     * @magentoConfigFixture default_store carriers/freeshipping/active 1
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/customer/create_empty_cart.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/add_simple_product.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_new_shipping_address.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_new_billing_address.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_flatrate_shipping_method.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Catalog/_files/set_simple_product_out_of_stock.php
 | 
						|
     */
 | 
						|
    public function testPlaceOrderWithOutOfStockProductWithDisabledInventoryCheck()
 | 
						|
    {
 | 
						|
        $reservedOrderId = 'test_quote';
 | 
						|
        $maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute($reservedOrderId);
 | 
						|
        $query = $this->getQuery($maskedQuoteId);
 | 
						|
 | 
						|
        self::expectExceptionMessage('Unable to place order: Enter a valid payment method and try again.');
 | 
						|
        $this->graphQlMutation($query, [], '', $this->getHeaderMap());
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * _security
 | 
						|
     * @magentoApiDataFixture Magento/Customer/_files/customer.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Catalog/_files/simple_product.php
 | 
						|
     * @magentoConfigFixture default_store carriers/flatrate/active 1
 | 
						|
     * @magentoConfigFixture default_store carriers/tablerate/active 1
 | 
						|
     * @magentoConfigFixture default_store carriers/freeshipping/active 1
 | 
						|
     * @magentoConfigFixture default_store payment/banktransfer/active 1
 | 
						|
     * @magentoConfigFixture default_store payment/cashondelivery/active 1
 | 
						|
     * @magentoConfigFixture default_store payment/checkmo/active 1
 | 
						|
     * @magentoConfigFixture default_store payment/purchaseorder/active 1
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/guest/create_empty_cart.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/add_simple_product.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_new_shipping_address.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_new_billing_address.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_flatrate_shipping_method.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_checkmo_payment_method.php
 | 
						|
     */
 | 
						|
    public function testPlaceOrderOfGuestCart()
 | 
						|
    {
 | 
						|
        $reservedOrderId = 'test_quote';
 | 
						|
        $maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute($reservedOrderId);
 | 
						|
        $query = $this->getQuery($maskedQuoteId);
 | 
						|
 | 
						|
        self::expectExceptionMessageMatches('/The current user cannot perform operations on cart*/');
 | 
						|
        $this->graphQlMutation($query, [], '', $this->getHeaderMap());
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * _security
 | 
						|
     * @magentoApiDataFixture Magento/Customer/_files/three_customers.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Catalog/_files/simple_product.php
 | 
						|
     * @magentoConfigFixture default_store carriers/flatrate/active 1
 | 
						|
     * @magentoConfigFixture default_store carriers/tablerate/active 1
 | 
						|
     * @magentoConfigFixture default_store carriers/freeshipping/active 1
 | 
						|
     * @magentoConfigFixture default_store payment/banktransfer/active 1
 | 
						|
     * @magentoConfigFixture default_store payment/cashondelivery/active 1
 | 
						|
     * @magentoConfigFixture default_store payment/checkmo/active 1
 | 
						|
     * @magentoConfigFixture default_store payment/purchaseorder/active 1
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/customer/create_empty_cart.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/add_simple_product.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_new_shipping_address.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_new_billing_address.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_flatrate_shipping_method.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_checkmo_payment_method.php
 | 
						|
     */
 | 
						|
    public function testPlaceOrderOfAnotherCustomerCart()
 | 
						|
    {
 | 
						|
        $reservedOrderId = 'test_quote';
 | 
						|
        $maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute($reservedOrderId);
 | 
						|
        $query = $this->getQuery($maskedQuoteId);
 | 
						|
 | 
						|
        self::expectExceptionMessageMatches('/The current user cannot perform operations on cart*/');
 | 
						|
        $this->graphQlMutation($query, [], '', $this->getHeaderMap('customer3@search.example.com'));
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param string $maskedQuoteId
 | 
						|
     * @return string
 | 
						|
     */
 | 
						|
    private function getQuery(string $maskedQuoteId): string
 | 
						|
    {
 | 
						|
        return <<<QUERY
 | 
						|
mutation {
 | 
						|
  placeOrder(input: {cart_id: "{$maskedQuoteId}"}) {
 | 
						|
    order {
 | 
						|
      order_number
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
QUERY;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param string $username
 | 
						|
     * @param string $password
 | 
						|
     * @return array
 | 
						|
     * @throws \Magento\Framework\Exception\AuthenticationException
 | 
						|
     */
 | 
						|
    private function getHeaderMap(string $username = 'customer@example.com', string $password = 'password'): array
 | 
						|
    {
 | 
						|
        $customerToken = $this->customerTokenService->createCustomerAccessToken($username, $password);
 | 
						|
        $headerMap = ['Authorization' => 'Bearer ' . $customerToken];
 | 
						|
        return $headerMap;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @inheritdoc
 | 
						|
     */
 | 
						|
    protected function tearDown(): void
 | 
						|
    {
 | 
						|
        $this->registry->unregister('isSecureArea');
 | 
						|
        $this->registry->register('isSecureArea', true);
 | 
						|
 | 
						|
        $orderCollection = $this->orderCollectionFactory->create();
 | 
						|
        foreach ($orderCollection as $order) {
 | 
						|
            $this->orderRepository->delete($order);
 | 
						|
        }
 | 
						|
        $this->registry->unregister('isSecureArea');
 | 
						|
        $this->registry->register('isSecureArea', false);
 | 
						|
 | 
						|
        parent::tearDown();
 | 
						|
    }
 | 
						|
}
 |