414 lines
		
	
	
		
			15 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			414 lines
		
	
	
		
			15 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\GraphQl\Quote\GetMaskedQuoteIdByReservedOrderId;
 | 
						|
use Magento\Integration\Api\CustomerTokenServiceInterface;
 | 
						|
use Magento\TestFramework\Helper\Bootstrap;
 | 
						|
use Magento\TestFramework\TestCase\GraphQlAbstract;
 | 
						|
 | 
						|
/**
 | 
						|
 * Test for setting shipping methods on cart for customer
 | 
						|
 */
 | 
						|
class SetShippingMethodsOnCartTest extends GraphQlAbstract
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * @var GetMaskedQuoteIdByReservedOrderId
 | 
						|
     */
 | 
						|
    private $getMaskedQuoteIdByReservedOrderId;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @var CustomerTokenServiceInterface
 | 
						|
     */
 | 
						|
    private $customerTokenService;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @inheritdoc
 | 
						|
     */
 | 
						|
    protected function setUp(): void
 | 
						|
    {
 | 
						|
        $objectManager = Bootstrap::getObjectManager();
 | 
						|
        $this->getMaskedQuoteIdByReservedOrderId = $objectManager->get(GetMaskedQuoteIdByReservedOrderId::class);
 | 
						|
        $this->customerTokenService = $objectManager->get(CustomerTokenServiceInterface::class);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @magentoConfigFixture default_store carriers/freeshipping/active 1
 | 
						|
     * @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 testSetShippingMethodOnCartWithSimpleProduct()
 | 
						|
    {
 | 
						|
        $maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute('test_quote');
 | 
						|
        $carrierCode = 'flatrate';
 | 
						|
        $methodCode = 'flatrate';
 | 
						|
 | 
						|
        $query = $this->getQuery(
 | 
						|
            $maskedQuoteId,
 | 
						|
            $methodCode,
 | 
						|
            $carrierCode
 | 
						|
        );
 | 
						|
        $response = $this->graphQlMutation($query, [], '', $this->getHeaderMap());
 | 
						|
 | 
						|
        self::assertArrayHasKey('setShippingMethodsOnCart', $response);
 | 
						|
        self::assertArrayHasKey('cart', $response['setShippingMethodsOnCart']);
 | 
						|
        self::assertArrayHasKey('shipping_addresses', $response['setShippingMethodsOnCart']['cart']);
 | 
						|
        self::assertCount(1, $response['setShippingMethodsOnCart']['cart']['shipping_addresses']);
 | 
						|
 | 
						|
        $shippingAddress = current($response['setShippingMethodsOnCart']['cart']['shipping_addresses']);
 | 
						|
        $availableShippingMethods = $shippingAddress['available_shipping_methods'];
 | 
						|
 | 
						|
        self::assertArrayHasKey('selected_shipping_method', $shippingAddress);
 | 
						|
        self::assertArrayHasKey('available_shipping_methods', $shippingAddress);
 | 
						|
 | 
						|
        self::assertCount(2, $availableShippingMethods);
 | 
						|
        self::assertEquals('freeshipping', $availableShippingMethods[0]['carrier_code']);
 | 
						|
        self::assertEquals($carrierCode, $availableShippingMethods[1]['carrier_code']);
 | 
						|
 | 
						|
        self::assertEquals($availableShippingMethods[0]['amount']['value'], 0);
 | 
						|
        self::assertEquals($availableShippingMethods[1]['amount']['value'], 10);
 | 
						|
 | 
						|
        self::assertArrayHasKey('carrier_code', $shippingAddress['selected_shipping_method']);
 | 
						|
        self::assertEquals('flatrate', $shippingAddress['selected_shipping_method']['carrier_code']);
 | 
						|
 | 
						|
        self::assertArrayHasKey('method_code', $shippingAddress['selected_shipping_method']);
 | 
						|
        self::assertEquals('flatrate', $shippingAddress['selected_shipping_method']['method_code']);
 | 
						|
 | 
						|
        self::assertArrayHasKey('carrier_title', $shippingAddress['selected_shipping_method']);
 | 
						|
        self::assertEquals('Flat Rate', $shippingAddress['selected_shipping_method']['carrier_title']);
 | 
						|
 | 
						|
        self::assertArrayHasKey('method_title', $shippingAddress['selected_shipping_method']);
 | 
						|
        self::assertEquals('Fixed', $shippingAddress['selected_shipping_method']['method_title']);
 | 
						|
 | 
						|
        self::assertArrayHasKey('amount', $shippingAddress['selected_shipping_method']);
 | 
						|
        $amount = $shippingAddress['selected_shipping_method']['amount'];
 | 
						|
 | 
						|
        self::assertArrayHasKey('value', $amount);
 | 
						|
        self::assertEquals(10, $amount['value']);
 | 
						|
        self::assertArrayHasKey('currency', $amount);
 | 
						|
        self::assertEquals('USD', $amount['currency']);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @magentoApiDataFixture Magento/Customer/_files/customer.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/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
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_flatrate_shipping_method.php
 | 
						|
     */
 | 
						|
    public function testReSetShippingMethod()
 | 
						|
    {
 | 
						|
        $maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute('test_quote');
 | 
						|
        $carrierCode = 'freeshipping';
 | 
						|
        $methodCode = 'freeshipping';
 | 
						|
 | 
						|
        $query = $this->getQuery(
 | 
						|
            $maskedQuoteId,
 | 
						|
            $methodCode,
 | 
						|
            $carrierCode
 | 
						|
        );
 | 
						|
        $response = $this->graphQlMutation($query, [], '', $this->getHeaderMap());
 | 
						|
 | 
						|
        self::assertArrayHasKey('setShippingMethodsOnCart', $response);
 | 
						|
        self::assertArrayHasKey('cart', $response['setShippingMethodsOnCart']);
 | 
						|
        self::assertArrayHasKey('shipping_addresses', $response['setShippingMethodsOnCart']['cart']);
 | 
						|
        self::assertCount(1, $response['setShippingMethodsOnCart']['cart']['shipping_addresses']);
 | 
						|
 | 
						|
        $shippingAddress = current($response['setShippingMethodsOnCart']['cart']['shipping_addresses']);
 | 
						|
        self::assertArrayHasKey('selected_shipping_method', $shippingAddress);
 | 
						|
 | 
						|
        self::assertArrayHasKey('carrier_code', $shippingAddress['selected_shipping_method']);
 | 
						|
        self::assertEquals($carrierCode, $shippingAddress['selected_shipping_method']['carrier_code']);
 | 
						|
 | 
						|
        self::assertArrayHasKey('method_code', $shippingAddress['selected_shipping_method']);
 | 
						|
        self::assertEquals($methodCode, $shippingAddress['selected_shipping_method']['method_code']);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @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
 | 
						|
     *
 | 
						|
     * @param string $input
 | 
						|
     * @param string $message
 | 
						|
     * @dataProvider dataProviderSetShippingMethodWithWrongParameters
 | 
						|
     * @throws Exception
 | 
						|
     */
 | 
						|
    public function testSetShippingMethodWithWrongParameters(string $input, string $message)
 | 
						|
    {
 | 
						|
        $maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute('test_quote');
 | 
						|
        $input = str_replace('cart_id_value', $maskedQuoteId, $input);
 | 
						|
 | 
						|
        $query = <<<QUERY
 | 
						|
mutation {
 | 
						|
  setShippingMethodsOnCart(input:  {
 | 
						|
   {$input}
 | 
						|
  }) {
 | 
						|
    cart {
 | 
						|
      shipping_addresses {
 | 
						|
        selected_shipping_method {
 | 
						|
          carrier_code
 | 
						|
        }
 | 
						|
      }
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
QUERY;
 | 
						|
        $this->expectExceptionMessage($message);
 | 
						|
        $this->graphQlMutation($query, [], '', $this->getHeaderMap());
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @return array
 | 
						|
     * @SuppressWarnings(PHPMD.ExcessiveMethodLength)
 | 
						|
     */
 | 
						|
    public function dataProviderSetShippingMethodWithWrongParameters(): array
 | 
						|
    {
 | 
						|
        return [
 | 
						|
            'shipping_methods_are_empty' => [
 | 
						|
                'cart_id: "cart_id_value" shipping_methods: []',
 | 
						|
                'Required parameter "shipping_methods" is missing'
 | 
						|
            ],
 | 
						|
            'empty_carrier_code' => [
 | 
						|
                'cart_id: "cart_id_value", shipping_methods: [{
 | 
						|
                    carrier_code: ""
 | 
						|
                    method_code: "flatrate"
 | 
						|
                }]',
 | 
						|
                'Required parameter "carrier_code" is missing.'
 | 
						|
            ],
 | 
						|
            'non_existent_carrier_code' => [
 | 
						|
                'cart_id: "cart_id_value", shipping_methods: [{
 | 
						|
                    carrier_code: "wrong-carrier-code"
 | 
						|
                    method_code: "flatrate"
 | 
						|
                }]',
 | 
						|
                'Carrier with such method not found: wrong-carrier-code, flatrate'
 | 
						|
            ],
 | 
						|
            'empty_method_code' => [
 | 
						|
                'cart_id: "cart_id_value", shipping_methods: [{
 | 
						|
                    carrier_code: "flatrate"
 | 
						|
                    method_code: ""
 | 
						|
                }]',
 | 
						|
                'Required parameter "method_code" is missing.'
 | 
						|
            ],
 | 
						|
            'non_existent_method_code' => [
 | 
						|
                'cart_id: "cart_id_value", shipping_methods: [{
 | 
						|
                    carrier_code: "flatrate"
 | 
						|
                    method_code: "wrong-carrier-code"
 | 
						|
                }]',
 | 
						|
                'Carrier with such method not found: flatrate, wrong-carrier-code'
 | 
						|
            ],
 | 
						|
            'non_existent_shopping_cart' => [
 | 
						|
                'cart_id: "non_existent_masked_id", shipping_methods: [{
 | 
						|
                    carrier_code: "flatrate"
 | 
						|
                    method_code: "flatrate"
 | 
						|
                }]',
 | 
						|
                'Could not find a cart with ID "non_existent_masked_id"'
 | 
						|
            ],
 | 
						|
            'disabled_shipping_method' => [
 | 
						|
                'cart_id: "cart_id_value", shipping_methods: [{
 | 
						|
                    carrier_code: "freeshipping"
 | 
						|
                    method_code: "freeshipping"
 | 
						|
                }]',
 | 
						|
                'Carrier with such method not found: freeshipping, freeshipping'
 | 
						|
            ]
 | 
						|
        ];
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @magentoApiDataFixture Magento/Customer/_files/customer.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/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 testSetMultipleShippingMethods()
 | 
						|
    {
 | 
						|
        $this->expectException(\Exception::class);
 | 
						|
        $this->expectExceptionMessage('You cannot specify multiple shipping methods.');
 | 
						|
 | 
						|
        $maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute('test_quote');
 | 
						|
 | 
						|
        $query = <<<QUERY
 | 
						|
mutation {
 | 
						|
  setShippingMethodsOnCart(input:  {
 | 
						|
   cart_id: "{$maskedQuoteId}",
 | 
						|
   shipping_methods: [
 | 
						|
        {
 | 
						|
            carrier_code: "flatrate"
 | 
						|
            method_code: "flatrate"
 | 
						|
        }
 | 
						|
        {
 | 
						|
            carrier_code: "flatrate"
 | 
						|
            method_code: "flatrate"
 | 
						|
        }
 | 
						|
   ]
 | 
						|
  }) {
 | 
						|
    cart {
 | 
						|
      shipping_addresses {
 | 
						|
        selected_shipping_method {
 | 
						|
          carrier_code
 | 
						|
        }
 | 
						|
      }
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
QUERY;
 | 
						|
        $this->graphQlMutation($query, [], '', $this->getHeaderMap());
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * _security
 | 
						|
     * @magentoApiDataFixture Magento/Customer/_files/customer.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Catalog/_files/simple_product.php
 | 
						|
     * @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
 | 
						|
     *
 | 
						|
     */
 | 
						|
    public function testSetShippingMethodToGuestCart()
 | 
						|
    {
 | 
						|
        $this->expectException(\Exception::class);
 | 
						|
 | 
						|
        $maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute('test_quote');
 | 
						|
        $carrierCode = 'flatrate';
 | 
						|
        $methodCode = 'flatrate';
 | 
						|
        $query = $this->getQuery(
 | 
						|
            $maskedQuoteId,
 | 
						|
            $methodCode,
 | 
						|
            $carrierCode
 | 
						|
        );
 | 
						|
 | 
						|
        $this->expectExceptionMessage(
 | 
						|
            "The current user cannot perform operations on cart \"$maskedQuoteId\""
 | 
						|
        );
 | 
						|
        $this->graphQlMutation($query, [], '', $this->getHeaderMap());
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * _security
 | 
						|
     * @magentoApiDataFixture Magento/Customer/_files/three_customers.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 testSetShippingMethodToAnotherCustomerCart()
 | 
						|
    {
 | 
						|
        $this->expectException(\Exception::class);
 | 
						|
 | 
						|
        $maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute('test_quote');
 | 
						|
        $carrierCode = 'flatrate';
 | 
						|
        $methodCode = 'flatrate';
 | 
						|
        $query = $this->getQuery(
 | 
						|
            $maskedQuoteId,
 | 
						|
            $methodCode,
 | 
						|
            $carrierCode
 | 
						|
        );
 | 
						|
 | 
						|
        $this->expectExceptionMessage(
 | 
						|
            "The current user cannot perform operations on cart \"$maskedQuoteId\""
 | 
						|
        );
 | 
						|
        $this->graphQlMutation($query, [], '', $this->getHeaderMap('customer2@search.example.com'));
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param string $maskedQuoteId
 | 
						|
     * @param string $shippingMethodCode
 | 
						|
     * @param string $shippingCarrierCode
 | 
						|
     * @return string
 | 
						|
     */
 | 
						|
    private function getQuery(
 | 
						|
        string $maskedQuoteId,
 | 
						|
        string $shippingMethodCode,
 | 
						|
        string $shippingCarrierCode
 | 
						|
    ): string {
 | 
						|
        return <<<QUERY
 | 
						|
mutation {
 | 
						|
  setShippingMethodsOnCart(input:
 | 
						|
    {
 | 
						|
      cart_id: "$maskedQuoteId",
 | 
						|
      shipping_methods: [{
 | 
						|
        carrier_code: "$shippingCarrierCode"
 | 
						|
        method_code: "$shippingMethodCode"
 | 
						|
      }]
 | 
						|
    }) {
 | 
						|
    cart {
 | 
						|
      shipping_addresses {
 | 
						|
        selected_shipping_method {
 | 
						|
          carrier_code
 | 
						|
          method_code
 | 
						|
          carrier_title
 | 
						|
          method_title
 | 
						|
          amount {
 | 
						|
            value
 | 
						|
            currency
 | 
						|
          }
 | 
						|
        }
 | 
						|
        available_shipping_methods {
 | 
						|
          amount{
 | 
						|
            value
 | 
						|
          }
 | 
						|
          carrier_code
 | 
						|
        }
 | 
						|
      }
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
QUERY;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @magentoApiDataFixture Magento/Customer/_files/customer.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/customer/create_empty_cart.php
 | 
						|
     * @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_new_shipping_address.php
 | 
						|
     *
 | 
						|
     */
 | 
						|
    public function testSetShippingMethodOnAnEmptyCart()
 | 
						|
    {
 | 
						|
        $this->expectException(\Exception::class);
 | 
						|
        $this->expectExceptionMessage('The shipping method can\'t be set for an empty cart. Add an item to cart and try again.');
 | 
						|
 | 
						|
        $maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute('test_quote');
 | 
						|
        $carrierCode = 'flatrate';
 | 
						|
        $methodCode = 'flatrate';
 | 
						|
 | 
						|
        $query = $this->getQuery(
 | 
						|
            $maskedQuoteId,
 | 
						|
            $methodCode,
 | 
						|
            $carrierCode
 | 
						|
        );
 | 
						|
        $this->graphQlMutation($query, [], '', $this->getHeaderMap());
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param string $username
 | 
						|
     * @param string $password
 | 
						|
     * @return array
 | 
						|
     */
 | 
						|
    private function getHeaderMap(string $username = 'customer@example.com', string $password = 'password'): array
 | 
						|
    {
 | 
						|
        $customerToken = $this->customerTokenService->createCustomerAccessToken($username, $password);
 | 
						|
        $headerMap = ['Authorization' => 'Bearer ' . $customerToken];
 | 
						|
        return $headerMap;
 | 
						|
    }
 | 
						|
}
 |