-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathOrderStateTest.php
102 lines (92 loc) · 2.89 KB
/
OrderStateTest.php
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
92
93
94
95
96
97
98
99
100
101
102
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\GraphQl\SalesGraphQlAux;
use Magento\Sales\Model\Order;
use Magento\TestFramework\Helper\Bootstrap;
use Magento\Integration\Api\CustomerTokenServiceInterface;
use Magento\TestFramework\TestCase\GraphQlAbstract;
class OrderStateTest extends GraphQlAbstract
{
/**
* @var CustomerTokenServiceInterface
*/
private $customerTokenService;
protected function setUp(): void
{
parent::setUp();
$this->customerTokenService = Bootstrap::getObjectManager()->get(CustomerTokenServiceInterface::class);
}
/**
* @magentoApiDataFixture Magento/Customer/_files/customer.php
* @magentoApiDataFixture Magento/Sales/_files/orders_with_customer.php
*/
public function testOrdersQuery()
{
$query =
<<<QUERY
query {
customer {
orders {
items {
order_number
state
}
}
}
}
QUERY;
$currentEmail = '[email protected]';
$currentPassword = 'password';
$response = $this->graphQlQuery($query, [], '', $this->getCustomerAuthHeaders($currentEmail, $currentPassword));
$expectedData = [
[
'order_number' => '100000002',
'state' => Order::STATE_NEW
],
[
'order_number' => '100000003',
'state' => Order::STATE_PROCESSING
],
[
'order_number' => '100000004',
'state' => Order::STATE_PROCESSING
],
[
'order_number' => '100000005',
'state' => Order::STATE_COMPLETE
],
[
'order_number' => '100000006',
'state' => Order::STATE_COMPLETE
]
];
$actualData = $response['customerOrders']['items'];
foreach ($expectedData as $key => $data) {
$this->assertEquals(
$data['order_number'],
$actualData[$key]['order_number'],
"order_number is different than the expected for order - " . $data['order_number']
);
$this->assertEquals(
$data['state'],
$actualData[$key]['state'],
"state is different than the expected for order - " . $data['order_number']
);
}
}
/**
* @param string $email
* @param string $password
* @return array
* @throws \Magento\Framework\Exception\AuthenticationException
*/
private function getCustomerAuthHeaders(string $email, string $password): array
{
$customerToken = $this->customerTokenService->createCustomerAccessToken($email, $password);
return ['Authorization' => 'Bearer ' . $customerToken];
}
}