1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\GraphQl\Quote;
use Magento\Quote\Api\Data\CartInterface;
use Magento\TestFramework\ObjectManager;
use Magento\TestFramework\TestCase\GraphQlAbstract;
use Magento\Quote\Model\QuoteIdMask;
use Magento\Quote\Api\GuestCartRepositoryInterface;
/**
* Test for empty cart creation mutation
*/
class CreateEmptyCartTest extends GraphQlAbstract
{
/**
* @var QuoteIdMask
*/
private $quoteIdMask;
/**
* @var ObjectManager
*/
private $objectManager;
/**
* @var GuestCartRepositoryInterface
*/
private $guestCartRepository;
protected function setUp()
{
$this->objectManager = \Magento\TestFramework\Helper\Bootstrap::getObjectManager();
$this->quoteIdMask = $this->objectManager->create(QuoteIdMask::class);
$this->guestCartRepository = $this->objectManager->create(GuestCartRepositoryInterface::class);
}
public function testCreateEmptyCartForGuest()
{
$query = <<<QUERY
mutation {
createEmptyCart
}
QUERY;
$response = $this->graphQlQuery($query);
self::assertArrayHasKey('createEmptyCart', $response);
$maskedCartId = $response['createEmptyCart'];
/** @var CartInterface $guestCart */
$guestCart = $this->guestCartRepository->get($maskedCartId);
self::assertNotNull($guestCart->getId());
self::assertNull($guestCart->getCustomer()->getId());
}
/**
* @magentoApiDataFixture Magento/Customer/_files/customer.php
*/
public function testCreateEmptyCartForRegisteredCustomer()
{
$query = <<<QUERY
mutation {
createEmptyCart
}
QUERY;
/** @var \Magento\Integration\Api\CustomerTokenServiceInterface $customerTokenService */
$customerTokenService = $this->objectManager->create(
\Magento\Integration\Api\CustomerTokenServiceInterface::class
);
$customerToken = $customerTokenService->createCustomerAccessToken('customer@example.com', 'password');
$headerMap = ['Authorization' => 'Bearer ' . $customerToken];
$response = $this->graphQlQuery($query, [], '', $headerMap);
self::assertArrayHasKey('createEmptyCart', $response);
$maskedCartId = $response['createEmptyCart'];
/* guestCartRepository is used for registered customer to get the cart hash */
$guestCart = $this->guestCartRepository->get($maskedCartId);
self::assertNotNull($guestCart->getId());
self::assertEquals(1, $guestCart->getCustomer()->getId());
}
}