271 lines
10 KiB
PHP
Executable File
271 lines
10 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\OfflinePayments\Model\Cashondelivery;
|
|
use Magento\OfflinePayments\Model\Checkmo;
|
|
use Magento\OfflinePayments\Model\Purchaseorder;
|
|
use Magento\TestFramework\Helper\Bootstrap;
|
|
use Magento\TestFramework\TestCase\GraphQlAbstract;
|
|
|
|
/**
|
|
* Test for setting payment methods on cart by guest
|
|
*/
|
|
class SetPaymentMethodOnCartTest 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 testSetPaymentOnCartWithSimpleProduct()
|
|
{
|
|
$methodCode = Checkmo::PAYMENT_METHOD_CHECKMO_CODE;
|
|
$maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute('test_quote');
|
|
|
|
$query = $this->getQuery($maskedQuoteId, $methodCode);
|
|
$response = $this->graphQlMutation($query);
|
|
|
|
self::assertArrayHasKey('setPaymentMethodOnCart', $response);
|
|
self::assertArrayHasKey('cart', $response['setPaymentMethodOnCart']);
|
|
self::assertArrayHasKey('selected_payment_method', $response['setPaymentMethodOnCart']['cart']);
|
|
self::assertEquals($methodCode, $response['setPaymentMethodOnCart']['cart']['selected_payment_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
|
|
*
|
|
*/
|
|
public function testSetPaymentOnCartWithSimpleProductAndWithoutAddress()
|
|
{
|
|
$this->expectException(\Exception::class);
|
|
$this->expectExceptionMessage('The shipping address is missing. Set the address and try again.');
|
|
|
|
$methodCode = Checkmo::PAYMENT_METHOD_CHECKMO_CODE;
|
|
$maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute('test_quote');
|
|
|
|
$query = $this->getQuery($maskedQuoteId, $methodCode);
|
|
$this->graphQlMutation($query);
|
|
}
|
|
|
|
/**
|
|
* @magentoApiDataFixture Magento/Catalog/_files/product_virtual.php
|
|
* @magentoApiDataFixture Magento/GraphQl/Quote/_files/guest/create_empty_cart.php
|
|
* @magentoApiDataFixture Magento/GraphQl/Quote/_files/add_virtual_product.php
|
|
*/
|
|
public function testSetPaymentOnCartWithVirtualProduct()
|
|
{
|
|
$methodCode = Checkmo::PAYMENT_METHOD_CHECKMO_CODE;
|
|
$maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute('test_quote');
|
|
|
|
$query = $this->getQuery($maskedQuoteId, $methodCode);
|
|
$response = $this->graphQlMutation($query);
|
|
|
|
self::assertArrayHasKey('setPaymentMethodOnCart', $response);
|
|
self::assertArrayHasKey('cart', $response['setPaymentMethodOnCart']);
|
|
self::assertArrayHasKey('selected_payment_method', $response['setPaymentMethodOnCart']['cart']);
|
|
self::assertEquals($methodCode, $response['setPaymentMethodOnCart']['cart']['selected_payment_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
|
|
*
|
|
*/
|
|
public function testSetNonExistentPaymentMethod()
|
|
{
|
|
$this->expectException(\Exception::class);
|
|
$this->expectExceptionMessage('The requested Payment Method is not available.');
|
|
|
|
$methodCode = 'noway';
|
|
$maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute('test_quote');
|
|
|
|
$query = $this->getQuery($maskedQuoteId, $methodCode);
|
|
$this->graphQlMutation($query);
|
|
}
|
|
|
|
/**
|
|
*/
|
|
public function testSetPaymentOnNonExistentCart()
|
|
{
|
|
$this->expectException(\Exception::class);
|
|
$this->expectExceptionMessage('Could not find a cart with ID "non_existent_masked_id"');
|
|
|
|
$maskedQuoteId = 'non_existent_masked_id';
|
|
$methodCode = Checkmo::PAYMENT_METHOD_CHECKMO_CODE;
|
|
|
|
$query = $this->getQuery($maskedQuoteId, $methodCode);
|
|
$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 testSetPaymentMethodToCustomerCart()
|
|
{
|
|
$methodCode = Checkmo::PAYMENT_METHOD_CHECKMO_CODE;
|
|
$maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute('test_quote');
|
|
|
|
$query = $this->getQuery($maskedQuoteId, $methodCode);
|
|
|
|
$this->expectExceptionMessage(
|
|
"The current user cannot perform operations on cart \"$maskedQuoteId\""
|
|
);
|
|
$this->graphQlMutation($query);
|
|
}
|
|
|
|
/**
|
|
* @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 dataProviderSetPaymentMethodWithoutRequiredParameters
|
|
* @throws Exception
|
|
*/
|
|
public function testSetPaymentMethodWithoutRequiredParameters(string $input, string $message)
|
|
{
|
|
$maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute('test_quote');
|
|
$input = str_replace('cart_id_value', $maskedQuoteId, $input);
|
|
|
|
$query = <<<QUERY
|
|
mutation {
|
|
setPaymentMethodOnCart(
|
|
input: {
|
|
{$input}
|
|
}
|
|
) {
|
|
cart {
|
|
items {
|
|
quantity
|
|
}
|
|
}
|
|
}
|
|
}
|
|
QUERY;
|
|
$this->expectExceptionMessage($message);
|
|
$this->graphQlMutation($query);
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function dataProviderSetPaymentMethodWithoutRequiredParameters(): array
|
|
{
|
|
return [
|
|
'missed_cart_id' => [
|
|
'cart_id: "", payment_method: {code: "' . Checkmo::PAYMENT_METHOD_CHECKMO_CODE . '"}',
|
|
'Required parameter "cart_id" is missing.'
|
|
],
|
|
'missed_payment_method_code' => [
|
|
'cart_id: "cart_id_value", payment_method: {code: ""}',
|
|
'Required parameter "code" for "payment_method" is missing.'
|
|
],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @magentoApiDataFixture Magento/GraphQl/Catalog/_files/simple_product.php
|
|
* @magentoConfigFixture default_store payment/banktransfer/active 1
|
|
* @magentoConfigFixture default_store payment/cashondelivery/active 1
|
|
* @magentoConfigFixture default_store payment/checkmo/active 1
|
|
* @magentoConfigFixture default_store payment/purchaseorder/active 1
|
|
* @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_checkmo_payment_method.php
|
|
*/
|
|
public function testReSetPayment()
|
|
{
|
|
$maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute('test_quote');
|
|
|
|
$methodCode = Cashondelivery::PAYMENT_METHOD_CASHONDELIVERY_CODE;
|
|
$query = $this->getQuery($maskedQuoteId, $methodCode);
|
|
$response = $this->graphQlMutation($query);
|
|
|
|
self::assertArrayHasKey('setPaymentMethodOnCart', $response);
|
|
self::assertArrayHasKey('cart', $response['setPaymentMethodOnCart']);
|
|
self::assertArrayHasKey('selected_payment_method', $response['setPaymentMethodOnCart']['cart']);
|
|
self::assertArrayHasKey('code', $response['setPaymentMethodOnCart']['cart']['selected_payment_method']);
|
|
self::assertEquals($methodCode, $response['setPaymentMethodOnCart']['cart']['selected_payment_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
|
|
*/
|
|
public function testSetDisabledPaymentOnCart()
|
|
{
|
|
$this->expectException(\Exception::class);
|
|
$this->expectExceptionMessage('The requested Payment Method is not available.');
|
|
|
|
$methodCode = Purchaseorder::PAYMENT_METHOD_PURCHASEORDER_CODE;
|
|
$maskedQuoteId = $this->getMaskedQuoteIdByReservedOrderId->execute('test_quote');
|
|
|
|
$query = $this->getQuery($maskedQuoteId, $methodCode);
|
|
$this->graphQlMutation($query);
|
|
}
|
|
|
|
/**
|
|
* @param string $maskedQuoteId
|
|
* @param string $methodCode
|
|
* @return string
|
|
*/
|
|
private function getQuery(
|
|
string $maskedQuoteId,
|
|
string $methodCode
|
|
) : string {
|
|
return <<<QUERY
|
|
mutation {
|
|
setPaymentMethodOnCart(input: {
|
|
cart_id: "{$maskedQuoteId}",
|
|
payment_method: {
|
|
code: "{$methodCode}"
|
|
}
|
|
}) {
|
|
cart {
|
|
selected_payment_method {
|
|
code
|
|
}
|
|
}
|
|
}
|
|
}
|
|
QUERY;
|
|
}
|
|
}
|