253 lines
9.4 KiB
PHP
Executable File
253 lines
9.4 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 Magento\GraphQl\Quote\GetMaskedQuoteIdByReservedOrderId;
|
|
use Magento\Integration\Api\CustomerTokenServiceInterface;
|
|
use Magento\TestFramework\Helper\Bootstrap;
|
|
use Magento\TestFramework\TestCase\GraphQlAbstract;
|
|
|
|
/**
|
|
* Test for get available shipping methods
|
|
*/
|
|
class GetAvailableShippingMethodsTest extends GraphQlAbstract
|
|
{
|
|
/**
|
|
* @var CustomerTokenServiceInterface
|
|
*/
|
|
private $customerTokenService;
|
|
|
|
/**
|
|
* @var GetMaskedQuoteIdByReservedOrderId
|
|
*/
|
|
private $getMaskedQuoteIdByReservedOrderId;
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
protected function setUp(): void
|
|
{
|
|
$objectManager = Bootstrap::getObjectManager();
|
|
$this->getMaskedQuoteIdByReservedOrderId = $objectManager->get(GetMaskedQuoteIdByReservedOrderId::class);
|
|
$this->customerTokenService = $objectManager->get(CustomerTokenServiceInterface::class);
|
|
}
|
|
|
|
/**
|
|
* Test case: get available shipping methods from current customer quote
|
|
*
|
|
* @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 testGetAvailableShippingMethods()
|
|
{
|
|
$maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute('test_quote');
|
|
$response = $this->graphQlQuery($this->getQuery($maskedQuoteId), [], '', $this->getHeaderMap());
|
|
|
|
self::assertArrayHasKey('cart', $response);
|
|
self::assertArrayHasKey('shipping_addresses', $response['cart']);
|
|
self::assertCount(1, $response['cart']['shipping_addresses']);
|
|
self::assertArrayHasKey('available_shipping_methods', $response['cart']['shipping_addresses'][0]);
|
|
self::assertCount(1, $response['cart']['shipping_addresses'][0]['available_shipping_methods']);
|
|
|
|
$expectedAddressData = [
|
|
'amount' => [
|
|
'value' => 10,
|
|
'currency' => 'USD',
|
|
],
|
|
'carrier_code' => 'flatrate',
|
|
'carrier_title' => 'Flat Rate',
|
|
'error_message' => '',
|
|
'method_code' => 'flatrate',
|
|
'method_title' => 'Fixed',
|
|
'price_incl_tax' => [
|
|
'value' => 10,
|
|
'currency' => 'USD',
|
|
],
|
|
'price_excl_tax' => [
|
|
'value' => 10,
|
|
'currency' => 'USD',
|
|
],
|
|
];
|
|
self::assertEquals(
|
|
$expectedAddressData,
|
|
$response['cart']['shipping_addresses'][0]['available_shipping_methods'][0]
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Test case: get available shipping methods from current customer quote with configurable product
|
|
*
|
|
* @magentoApiDataFixture Magento/Customer/_files/customer.php
|
|
* @magentoApiDataFixture Magento/GraphQl/Quote/_files/customer/create_empty_cart.php
|
|
* @magentoApiDataFixture Magento/CatalogRule/_files/configurable_product.php
|
|
* @magentoApiDataFixture Magento/GraphQl/Quote/_files/add_configurable_product.php
|
|
* @magentoApiDataFixture Magento/GraphQl/Quote/_files/set_new_shipping_address.php
|
|
*/
|
|
public function testGetAvailableShippingMethodsWithConfigurableProduct()
|
|
{
|
|
$maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute('test_quote');
|
|
$response = $this->graphQlQuery($this->getQuery($maskedQuoteId), [], '', $this->getHeaderMap());
|
|
|
|
self::assertArrayHasKey('cart', $response);
|
|
self::assertArrayHasKey('shipping_addresses', $response['cart']);
|
|
self::assertCount(1, $response['cart']['shipping_addresses']);
|
|
self::assertArrayHasKey('available_shipping_methods', $response['cart']['shipping_addresses'][0]);
|
|
self::assertCount(1, $response['cart']['shipping_addresses'][0]['available_shipping_methods']);
|
|
|
|
$expectedAddressData = [
|
|
'amount' => [
|
|
'value' => 5,
|
|
'currency' => 'USD',
|
|
],
|
|
'carrier_code' => 'flatrate',
|
|
'carrier_title' => 'Flat Rate',
|
|
'error_message' => '',
|
|
'method_code' => 'flatrate',
|
|
'method_title' => 'Fixed',
|
|
'price_incl_tax' => [
|
|
'value' => 5,
|
|
'currency' => 'USD',
|
|
],
|
|
'price_excl_tax' => [
|
|
'value' => 5,
|
|
'currency' => 'USD',
|
|
],
|
|
];
|
|
self::assertEquals(
|
|
$expectedAddressData,
|
|
$response['cart']['shipping_addresses'][0]['available_shipping_methods'][0]
|
|
);
|
|
}
|
|
|
|
/**
|
|
* _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 testGetAvailableShippingMethodsFromGuestCart()
|
|
{
|
|
$maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute('test_quote');
|
|
$query = $this->getQuery($maskedQuoteId);
|
|
|
|
$this->expectExceptionMessage(
|
|
"The current user cannot perform operations on cart \"$maskedQuoteId\""
|
|
);
|
|
$this->graphQlQuery($query, [], '', $this->getHeaderMap());
|
|
}
|
|
|
|
/**
|
|
* Test case: get available shipping methods from quote of another customer
|
|
*
|
|
* _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 testGetAvailableShippingMethodsFromAnotherCustomerCart()
|
|
{
|
|
$maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute('test_quote');
|
|
$query = $this->getQuery($maskedQuoteId);
|
|
|
|
$this->expectExceptionMessage(
|
|
"The current user cannot perform operations on cart \"$maskedQuoteId\""
|
|
);
|
|
$this->graphQlQuery($query, [], '', $this->getHeaderMap('customer3@search.example.com'));
|
|
}
|
|
|
|
/**
|
|
* Test case: get available shipping methods when all shipping methods are disabled
|
|
*
|
|
* @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
|
|
* @magentoConfigFixture default_store carriers/flatrate/active 0
|
|
* @magentoConfigFixture default_store carriers/tablerate/active 0
|
|
* @magentoConfigFixture default_store carriers/freeshipping/active 0
|
|
*/
|
|
public function testGetAvailableShippingMethodsIfShippingMethodsAreNotPresent()
|
|
{
|
|
$maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute('test_quote');
|
|
$response = $this->graphQlQuery($this->getQuery($maskedQuoteId), [], '', $this->getHeaderMap());
|
|
|
|
self::assertEmpty($response['cart']['shipping_addresses'][0]['available_shipping_methods']);
|
|
}
|
|
|
|
/**
|
|
* Test case: get available shipping methods from non-existent cart
|
|
*
|
|
* @magentoApiDataFixture Magento/Customer/_files/customer.php
|
|
*/
|
|
public function testGetAvailableShippingMethodsOfNonExistentCart()
|
|
{
|
|
$this->expectException(\Exception::class);
|
|
$this->expectExceptionMessage('Could not find a cart with ID "non_existent_masked_id"');
|
|
|
|
$maskedQuoteId = 'non_existent_masked_id';
|
|
$query = $this->getQuery($maskedQuoteId);
|
|
|
|
$this->graphQlQuery($query, [], '', $this->getHeaderMap());
|
|
}
|
|
|
|
/**
|
|
* @param string $maskedQuoteId
|
|
* @return string
|
|
*/
|
|
private function getQuery(string $maskedQuoteId): string
|
|
{
|
|
return <<<QUERY
|
|
query {
|
|
cart (cart_id: "{$maskedQuoteId}") {
|
|
shipping_addresses {
|
|
available_shipping_methods {
|
|
amount {
|
|
value
|
|
currency
|
|
}
|
|
carrier_code
|
|
carrier_title
|
|
error_message
|
|
method_code
|
|
method_title
|
|
price_excl_tax {
|
|
value
|
|
currency
|
|
}
|
|
price_incl_tax {
|
|
value
|
|
currency
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
QUERY;
|
|
}
|
|
|
|
/**
|
|
* @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;
|
|
}
|
|
}
|