374 lines
14 KiB
PHP
Executable File
374 lines
14 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\Guest;
|
|
|
|
use Exception;
|
|
use Magento\GraphQl\Quote\GetMaskedQuoteIdByReservedOrderId;
|
|
use Magento\TestFramework\Helper\Bootstrap;
|
|
use Magento\TestFramework\TestCase\GraphQlAbstract;
|
|
|
|
/**
|
|
* Test for setting shipping methods on cart for guest
|
|
*/
|
|
class SetShippingMethodsOnCartTest extends GraphQlAbstract
|
|
{
|
|
/**
|
|
* @var GetMaskedQuoteIdByReservedOrderId
|
|
*/
|
|
private $getMaskedQuoteIdByReservedOrderId;
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
protected function setUp(): void
|
|
{
|
|
$objectManager = Bootstrap::getObjectManager();
|
|
$this->getMaskedQuoteIdByReservedOrderId = $objectManager->get(GetMaskedQuoteIdByReservedOrderId::class);
|
|
}
|
|
|
|
/**
|
|
* @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 testSetShippingMethodOnCartWithSimpleProduct()
|
|
{
|
|
$maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute('test_quote');
|
|
$carrierCode = 'flatrate';
|
|
$methodCode = 'flatrate';
|
|
|
|
$query = $this->getQuery(
|
|
$maskedQuoteId,
|
|
$methodCode,
|
|
$carrierCode
|
|
);
|
|
$response = $this->graphQlMutation($query);
|
|
|
|
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('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']);
|
|
}
|
|
|
|
/**
|
|
* Shipping address for quote will be created automatically BUT with NULL values (considered that address
|
|
* is not set)
|
|
*
|
|
* @magentoApiDataFixture Magento/GraphQl/Catalog/_files/simple_product.php
|
|
* @magentoApiDataFixture Magento/Catalog/_files/product_virtual.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/add_virtual_product.php
|
|
*
|
|
*/
|
|
public function testSetShippingMethodOnCartWithSimpleProductAndWithoutAddress()
|
|
{
|
|
$this->expectException(\Exception::class);
|
|
$this->expectExceptionMessage('The shipping address is missing. Set the address and try again.');
|
|
|
|
$maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute('test_quote');
|
|
$carrierCode = 'flatrate';
|
|
$methodCode = 'flatrate';
|
|
|
|
$query = $this->getQuery(
|
|
$maskedQuoteId,
|
|
$methodCode,
|
|
$carrierCode
|
|
);
|
|
$this->graphQlMutation($query);
|
|
}
|
|
|
|
/**
|
|
* @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/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_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);
|
|
|
|
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/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
|
|
*
|
|
* @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);
|
|
}
|
|
|
|
/**
|
|
* @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'
|
|
],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @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/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 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);
|
|
}
|
|
|
|
/**
|
|
* _security
|
|
* @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 testSetShippingMethodToCustomerCart()
|
|
{
|
|
$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);
|
|
}
|
|
|
|
/**
|
|
* @magentoApiDataFixture Magento/GraphQl/Quote/_files/guest/create_empty_cart.php
|
|
* @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_new_shipping_address.php
|
|
* @magentoApiDataFixture Magento/GraphQl/Quote/_files/guest/quote_with_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);
|
|
}
|
|
|
|
/**
|
|
* @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
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
QUERY;
|
|
}
|
|
}
|