-
Notifications
You must be signed in to change notification settings - Fork 9.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3972 from magento-engcom/graphql-develop-prs
[EngCom] Public Pull Requests - GraphQL
- Loading branch information
Showing
6 changed files
with
348 additions
and
213 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
160 changes: 160 additions & 0 deletions
160
...nctional/testsuite/Magento/GraphQl/Quote/Customer/SetOfflineShippingMethodsOnCartTest.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,160 @@ | ||
<?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\GraphQl\Quote\GetQuoteShippingAddressIdByReservedQuoteId; | ||
use Magento\Integration\Api\CustomerTokenServiceInterface; | ||
use Magento\TestFramework\Helper\Bootstrap; | ||
use Magento\TestFramework\TestCase\GraphQlAbstract; | ||
|
||
/** | ||
* Test for setting offline shipping methods on cart | ||
*/ | ||
class SetOfflineShippingMethodsOnCartTest extends GraphQlAbstract | ||
{ | ||
/** | ||
* @var GetMaskedQuoteIdByReservedOrderId | ||
*/ | ||
private $getMaskedQuoteIdByReservedOrderId; | ||
|
||
/** | ||
* @var GetQuoteShippingAddressIdByReservedQuoteId | ||
*/ | ||
private $getQuoteShippingAddressIdByReservedQuoteId; | ||
|
||
/** | ||
* @var CustomerTokenServiceInterface | ||
*/ | ||
private $customerTokenService; | ||
|
||
/** | ||
* @inheritdoc | ||
*/ | ||
protected function setUp() | ||
{ | ||
$objectManager = Bootstrap::getObjectManager(); | ||
$this->getMaskedQuoteIdByReservedOrderId = $objectManager->get(GetMaskedQuoteIdByReservedOrderId::class); | ||
$this->getQuoteShippingAddressIdByReservedQuoteId = $objectManager->get( | ||
GetQuoteShippingAddressIdByReservedQuoteId::class | ||
); | ||
$this->customerTokenService = $objectManager->get(CustomerTokenServiceInterface::class); | ||
} | ||
|
||
/** | ||
* @magentoApiDataFixture Magento/Customer/_files/customer.php | ||
* @magentoApiDataFixture Magento/Catalog/_files/product_simple.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/enable_offline_shipping_methods.php | ||
* @magentoApiDataFixture Magento/OfflineShipping/_files/tablerates_weight.php | ||
* | ||
* @param string $carrierCode | ||
* @param string $methodCode | ||
* @param float $amount | ||
* @param string $label | ||
* @dataProvider offlineShippingMethodDataProvider | ||
*/ | ||
public function testSetOfflineShippingMethod(string $carrierCode, string $methodCode, float $amount, string $label) | ||
{ | ||
$maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute('test_quote'); | ||
$quoteAddressId = $this->getQuoteShippingAddressIdByReservedQuoteId->execute('test_quote'); | ||
|
||
$query = $this->getQuery( | ||
$maskedQuoteId, | ||
$methodCode, | ||
$carrierCode, | ||
$quoteAddressId | ||
); | ||
$response = $this->graphQlQuery($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']); | ||
|
||
self::assertArrayHasKey('amount', $shippingAddress['selected_shipping_method']); | ||
self::assertEquals($amount, $shippingAddress['selected_shipping_method']['amount']); | ||
|
||
self::assertArrayHasKey('label', $shippingAddress['selected_shipping_method']); | ||
self::assertEquals($label, $shippingAddress['selected_shipping_method']['label']); | ||
} | ||
|
||
/** | ||
* @return array | ||
*/ | ||
public function offlineShippingMethodDataProvider(): array | ||
{ | ||
return [ | ||
'flatrate_flatrate' => ['flatrate', 'flatrate', 10, 'Flat Rate - Fixed'], | ||
'tablerate_bestway' => ['tablerate', 'bestway', 10, 'Best Way - Table Rate'], | ||
'freeshipping_freeshipping' => ['freeshipping', 'freeshipping', 0, 'Free Shipping - Free'], | ||
]; | ||
} | ||
|
||
/** | ||
* @param string $maskedQuoteId | ||
* @param string $shippingMethodCode | ||
* @param string $shippingCarrierCode | ||
* @param int $shippingAddressId | ||
* @return string | ||
*/ | ||
private function getQuery( | ||
string $maskedQuoteId, | ||
string $shippingMethodCode, | ||
string $shippingCarrierCode, | ||
int $shippingAddressId | ||
): string { | ||
return <<<QUERY | ||
mutation { | ||
setShippingMethodsOnCart(input: | ||
{ | ||
cart_id: "$maskedQuoteId", | ||
shipping_methods: [{ | ||
cart_address_id: $shippingAddressId | ||
carrier_code: "$shippingCarrierCode" | ||
method_code: "$shippingMethodCode" | ||
}] | ||
}) { | ||
cart { | ||
shipping_addresses { | ||
selected_shipping_method { | ||
carrier_code | ||
method_code | ||
amount | ||
label | ||
} | ||
} | ||
} | ||
} | ||
} | ||
QUERY; | ||
} | ||
|
||
/** | ||
* @param string $username | ||
* @param string $password | ||
* @return array | ||
*/ | ||
private function getHeaderMap(string $username = '[email protected]', string $password = 'password'): array | ||
{ | ||
$customerToken = $this->customerTokenService->createCustomerAccessToken($username, $password); | ||
$headerMap = ['Authorization' => 'Bearer ' . $customerToken]; | ||
return $headerMap; | ||
} | ||
} |
Oops, something went wrong.