This repository has been archived by the owner on Dec 19, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ENGCOM-4615: #542: Replace deprecated Magento/Checkout/_files/quote_w…
…ith_address_saved.php fixture in SetOfflineShippingMethodsOnCartTest #543
- Loading branch information
Showing
3 changed files
with
300 additions
and
210 deletions.
There are no files selected for viewing
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 = 'customer@example.com', string $password = 'password'): array | ||
{ | ||
$customerToken = $this->customerTokenService->createCustomerAccessToken($username, $password); | ||
$headerMap = ['Authorization' => 'Bearer ' . $customerToken]; | ||
return $headerMap; | ||
} | ||
} |
140 changes: 140 additions & 0 deletions
140
...-functional/testsuite/Magento/GraphQl/Quote/Guest/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,140 @@ | ||
<?php | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
declare(strict_types=1); | ||
|
||
namespace Magento\GraphQl\Quote\Guest; | ||
|
||
use Magento\GraphQl\Quote\GetMaskedQuoteIdByReservedOrderId; | ||
use Magento\GraphQl\Quote\GetQuoteShippingAddressIdByReservedQuoteId; | ||
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; | ||
|
||
/** | ||
* @inheritdoc | ||
*/ | ||
protected function setUp() | ||
{ | ||
$objectManager = Bootstrap::getObjectManager(); | ||
$this->getMaskedQuoteIdByReservedOrderId = $objectManager->get(GetMaskedQuoteIdByReservedOrderId::class); | ||
$this->getQuoteShippingAddressIdByReservedQuoteId = $objectManager->get( | ||
GetQuoteShippingAddressIdByReservedQuoteId::class | ||
); | ||
} | ||
|
||
/** | ||
* @magentoApiDataFixture Magento/Catalog/_files/product_simple.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/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); | ||
|
||
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; | ||
} | ||
} |
Oops, something went wrong.