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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Quote\Api;
use Magento\Framework\App\Config;
use Magento\TestFramework\TestCase\WebapiAbstract;
/**
* Class CartManagementTest
* @package Magento\Quote\Api
* @magentoAppIsolation enabled
*/
class CartManagementTest extends WebapiAbstract
{
const SERVICE_VERSION = 'V1';
const SERVICE_NAME = 'quoteCartManagementV1';
const RESOURCE_PATH = '/V1/carts/';
const RESOURCE_PATH_CUSTOMER_TOKEN = "/V1/integration/customer/token";
protected $createdQuotes = [];
/**
* @var \Magento\TestFramework\ObjectManager
*/
protected $objectManager;
protected function setUp()
{
$this->objectManager = \Magento\TestFramework\Helper\Bootstrap::getObjectManager();
$appConfig = $this->objectManager->get(Config::class);
$appConfig->clean();
}
public function tearDown()
{
/** @var \Magento\Quote\Model\Quote $quote */
$quote = $this->objectManager->create(\Magento\Quote\Model\Quote::class);
foreach ($this->createdQuotes as $quoteId) {
$quote->load($quoteId);
$quote->delete();
}
}
public function testCreateEmptyCartForGuest()
{
$serviceInfo = [
'rest' => [
'resourcePath' => self::RESOURCE_PATH,
'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_POST,
],
'soap' => [
'service' => self::SERVICE_NAME,
'serviceVersion' => self::SERVICE_VERSION,
'operation' => self::SERVICE_NAME . 'CreateEmptyCart',
],
];
$requestData = ['storeId' => 1];
$quoteId = $this->_webApiCall($serviceInfo, $requestData);
$this->assertGreaterThan(0, $quoteId);
$this->createdQuotes[] = $quoteId;
}
/**
* @magentoApiDataFixture Magento/Customer/_files/customer.php
*/
public function testCreateEmptyCartForCustomer()
{
/** @var $repository \Magento\Customer\Api\CustomerRepositoryInterface */
$repository = $this->objectManager->create(\Magento\Customer\Api\CustomerRepositoryInterface::class);
/** @var $customer \Magento\Customer\Api\Data\CustomerInterface */
$customer = $repository->getById(1);
$customerId = $customer->getId();
$serviceInfo = [
'rest' => [
'resourcePath' => '/V1/customers/' . $customerId . '/carts',
'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_POST,
],
'soap' => [
'service' => self::SERVICE_NAME,
'serviceVersion' => self::SERVICE_VERSION,
'operation' => self::SERVICE_NAME . 'CreateEmptyCartForCustomer',
],
];
$quoteId = $this->_webApiCall($serviceInfo, ['customerId' => $customerId]);
$this->assertGreaterThan(0, $quoteId);
$this->createdQuotes[] = $quoteId;
}
/**
* @magentoApiDataFixture Magento/Customer/_files/customer.php
*/
public function testCreateEmptyCartAndGetCartForCustomer()
{
$this->_markTestAsRestOnly();
// get customer ID token
/** @var \Magento\Integration\Api\CustomerTokenServiceInterface $customerTokenService */
$customerTokenService = $this->objectManager->create(
\Magento\Integration\Api\CustomerTokenServiceInterface::class
);
$token = $customerTokenService->createCustomerAccessToken('customer@example.com', 'password');
$serviceInfo = [
'rest' => [
'resourcePath' => '/V1/carts/mine',
'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_POST,
'token' => $token
]
];
$quoteId = $this->_webApiCall($serviceInfo, ['customerId' => 999]); // customerId 999 will get overridden
$this->assertGreaterThan(0, $quoteId);
$this->createdQuotes[] = $quoteId;
$serviceInfo = [
'rest' => [
'resourcePath' => '/V1/carts/mine',
'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_GET,
'token' => $token
]
];
/** @var \Magento\Quote\Api\Data\CartInterface $cart */
$cart = $this->_webApiCall($serviceInfo, ['customerId' => 999]); // customerId 999 will get overridden
$this->assertEquals($quoteId, $cart['id']);
}
/**
* @magentoApiDataFixture Magento/Sales/_files/quote.php
* @magentoApiDataFixture Magento/Customer/_files/customer.php
*/
public function testAssignCustomer()
{
/** @var $quote \Magento\Quote\Model\Quote */
$quote = $this->objectManager->create(\Magento\Quote\Model\Quote::class)->load('test01', 'reserved_order_id');
$cartId = $quote->getId();
/** @var $repository \Magento\Customer\Api\CustomerRepositoryInterface */
$repository = $this->objectManager->create(\Magento\Customer\Api\CustomerRepositoryInterface::class);
/** @var $customer \Magento\Customer\Api\Data\CustomerInterface */
$customer = $repository->getById(1);
$customerId = $customer->getId();
$serviceInfo = [
'rest' => [
'resourcePath' => '/V1/carts/' . $cartId,
'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_PUT,
],
'soap' => [
'service' => self::SERVICE_NAME,
'serviceVersion' => 'V1',
'operation' => self::SERVICE_NAME . 'AssignCustomer',
],
];
$requestData = [
'cartId' => $cartId,
'customerId' => $customerId,
'storeId' => 1,
];
// Cart must be anonymous (see fixture)
$this->assertEmpty($quote->getCustomerId());
$this->assertTrue($this->_webApiCall($serviceInfo, $requestData));
// Reload target quote
$quote = $this->objectManager->create(\Magento\Quote\Model\Quote::class)->load('test01', 'reserved_order_id');
$this->assertEquals(0, $quote->getCustomerIsGuest());
$this->assertEquals($customer->getId(), $quote->getCustomerId());
$this->assertEquals($customer->getFirstname(), $quote->getCustomerFirstname());
$this->assertEquals($customer->getLastname(), $quote->getCustomerLastname());
}
/**
* @magentoApiDataFixture Magento/Sales/_files/quote.php
* @expectedException \Exception
*/
public function testAssignCustomerThrowsExceptionIfThereIsNoCustomerWithGivenId()
{
/** @var $quote \Magento\Quote\Model\Quote */
$quote = $this->objectManager->create(\Magento\Quote\Model\Quote::class)->load('test01', 'reserved_order_id');
$cartId = $quote->getId();
$customerId = 9999;
$serviceInfo = [
'soap' => [
'serviceVersion' => 'V1',
'service' => self::SERVICE_NAME,
'operation' => self::SERVICE_NAME . 'AssignCustomer',
],
'rest' => [
'resourcePath' => '/V1/carts/' . $cartId,
'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_PUT,
],
];
$requestData = [
'cartId' => $cartId,
'customerId' => $customerId,
'storeId' => 1,
];
$this->_webApiCall($serviceInfo, $requestData);
}
/**
* @magentoApiDataFixture Magento/Customer/_files/customer.php
* @expectedException \Exception
*/
public function testAssignCustomerThrowsExceptionIfThereIsNoCartWithGivenId()
{
$cartId = 9999;
$customerId = 1;
$serviceInfo = [
'soap' => [
'service' => self::SERVICE_NAME,
'serviceVersion' => 'V1',
'operation' => self::SERVICE_NAME . 'AssignCustomer',
],
'rest' => [
'resourcePath' => '/V1/carts/' . $cartId,
'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_PUT,
],
];
$requestData = [
'cartId' => $cartId,
'customerId' => $customerId,
'storeId' => 1,
];
$this->_webApiCall($serviceInfo, $requestData);
}
/**
* @magentoApiDataFixture Magento/Sales/_files/quote_with_customer.php
* @expectedException \Exception
* @expectedExceptionMessage The customer can't be assigned to the cart because the cart isn't anonymous.
*/
public function testAssignCustomerThrowsExceptionIfTargetCartIsNotAnonymous()
{
/** @var $customer \Magento\Customer\Model\Customer */
$customer = $this->objectManager->create(\Magento\Customer\Model\Customer::class)->load(1);
$customerId = $customer->getId();
/** @var $quote \Magento\Quote\Model\Quote */
$quote = $this->objectManager->create(\Magento\Quote\Model\Quote::class)->load('test01', 'reserved_order_id');
$cartId = $quote->getId();
$serviceInfo = [
'rest' => [
'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_PUT,
'resourcePath' => '/V1/carts/' . $cartId,
],
'soap' => [
'service' => self::SERVICE_NAME,
'serviceVersion' => 'V1',
'operation' => self::SERVICE_NAME . 'AssignCustomer',
],
];
$requestData = [
'cartId' => $cartId,
'customerId' => $customerId,
'storeId' => 1,
];
$this->_webApiCall($serviceInfo, $requestData);
}
/**
* @magentoApiDataFixture Magento/Sales/_files/quote.php
* @magentoApiDataFixture Magento/Customer/_files/customer_non_default_website_id.php
* @expectedException \Exception
* @expectedExceptionMessage The customer can't be assigned to the cart. The cart belongs to a different store.
*/
public function testAssignCustomerThrowsExceptionIfCartIsAssignedToDifferentStore()
{
$repository = $this->objectManager->create(\Magento\Customer\Api\CustomerRepositoryInterface::class);
/** @var $customer \Magento\Customer\Api\Data\CustomerInterface */
$customer = $repository->getById(1);
/** @var $quote \Magento\Quote\Model\Quote */
$quote = $this->objectManager->create(\Magento\Quote\Model\Quote::class)->load('test01', 'reserved_order_id');
$customerId = $customer->getId();
$cartId = $quote->getId();
$serviceInfo = [
'soap' => [
'service' => self::SERVICE_NAME,
'serviceVersion' => 'V1',
'operation' => self::SERVICE_NAME . 'AssignCustomer',
],
'rest' => [
'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_PUT,
'resourcePath' => '/V1/carts/' . $cartId,
],
];
$requestData = [
'cartId' => $cartId,
'customerId' => $customerId,
'storeId' => 1,
];
$this->_webApiCall($serviceInfo, $requestData);
}
/**
* @magentoApiDataFixture Magento/Checkout/_files/quote_with_address_saved.php
* @magentoApiDataFixture Magento/Sales/_files/quote.php
* @expectedException \Exception
*/
public function testAssignCustomerThrowsExceptionIfCustomerAlreadyHasActiveCart()
{
/** @var $customer \Magento\Customer\Model\Customer */
$customer = $this->objectManager->create(\Magento\Customer\Model\Customer::class)->load(1);
// Customer has a quote with reserved order ID test_order_1 (see fixture)
/** @var $customerQuote \Magento\Quote\Model\Quote */
$customerQuote = $this->objectManager->create(\Magento\Quote\Model\Quote::class)
->load('test_order_1', 'reserved_order_id');
$customerQuote->setIsActive(1)->save();
/** @var $quote \Magento\Quote\Model\Quote */
$quote = $this->objectManager->create(\Magento\Quote\Model\Quote::class)->load('test01', 'reserved_order_id');
$cartId = $quote->getId();
$customerId = $customer->getId();
$serviceInfo = [
'soap' => [
'service' => self::SERVICE_NAME,
'operation' => self::SERVICE_NAME . 'AssignCustomer',
'serviceVersion' => 'V1',
],
'rest' => [
'resourcePath' => '/V1/carts/' . $cartId,
'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_PUT,
],
];
$requestData = [
'cartId' => $cartId,
'customerId' => $customerId,
'storeId' => 1,
];
$this->_webApiCall($serviceInfo, $requestData);
$this->expectExceptionMessage(
"The customer can't be assigned to the cart because the customer already has an active cart."
);
}
/**
* @magentoApiDataFixture Magento/Checkout/_files/quote_with_check_payment.php
*/
public function testPlaceOrder()
{
/** @var $quote \Magento\Quote\Model\Quote */
$quote = $this->objectManager->create(\Magento\Quote\Model\Quote::class)
->load('test_order_1', 'reserved_order_id');
$cartId = $quote->getId();
$serviceInfo = [
'soap' => [
'service' => 'quoteCartManagementV1',
'operation' => 'quoteCartManagementV1PlaceOrder',
'serviceVersion' => 'V1',
],
'rest' => [
'resourcePath' => '/V1/carts/' . $cartId . '/order',
'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_PUT,
],
];
$orderId = $this->_webApiCall($serviceInfo, ['cartId' => $cartId]);
/** @var \Magento\Sales\Model\Order $order */
$order = $this->objectManager->create(\Magento\Sales\Model\Order::class)->load($orderId);
$items = $order->getAllItems();
$this->assertCount(1, $items);
$this->assertEquals('Simple Product', $items[0]->getName());
}
/**
* @magentoApiDataFixture Magento/Checkout/_files/quote_with_check_payment.php
*/
public function testPlaceOrderForMyCart()
{
$this->_markTestAsRestOnly();
// get customer ID token
/** @var \Magento\Integration\Api\CustomerTokenServiceInterface $customerTokenService */
$customerTokenService = $this->objectManager->create(
\Magento\Integration\Api\CustomerTokenServiceInterface::class
);
$token = $customerTokenService->createCustomerAccessToken('customer@example.com', 'password');
$serviceInfo = [
'rest' => [
'resourcePath' => '/V1/carts/mine/order',
'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_PUT,
'token' => $token
],
];
$orderId = $this->_webApiCall($serviceInfo, []);
/** @var \Magento\Sales\Model\Order $order */
$order = $this->objectManager->create(\Magento\Sales\Model\Order::class)->load($orderId);
$items = $order->getAllItems();
$this->assertCount(1, $items);
$this->assertEquals('Simple Product', $items[0]->getName());
}
/**
* Test to get my cart based on customer authentication token or session
*
* @magentoApiDataFixture Magento/Sales/_files/quote_with_customer.php
*/
public function testGetCartForCustomer()
{
// get customer ID token
/** @var \Magento\Integration\Api\CustomerTokenServiceInterface $customerTokenService */
$customerTokenService = $this->objectManager->create(
\Magento\Integration\Api\CustomerTokenServiceInterface::class
);
$token = $customerTokenService->createCustomerAccessToken('customer@example.com', 'password');
$cart = $this->getCart('test01');
$customerId = $cart->getCustomer()->getId();
$serviceInfo = [
'rest' => [
'resourcePath' => '/V1/carts/mine',
'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_GET,
'token' => $token
],
'soap' => [
'service' => 'quoteCartManagementV1',
'serviceVersion' => 'V1',
'operation' => 'quoteCartManagementV1GetCartForCustomer',
'token' => $token
],
];
$requestData = ['customerId' => $customerId];
$cartData = $this->_webApiCall($serviceInfo, $requestData);
$this->assertEquals($cart->getId(), $cartData['id']);
$this->assertEquals($cart->getCreatedAt(), $cartData['created_at']);
$this->assertEquals($cart->getUpdatedAt(), $cartData['updated_at']);
$this->assertEquals($cart->getIsActive(), $cartData['is_active']);
$this->assertEquals($cart->getIsVirtual(), $cartData['is_virtual']);
$this->assertEquals($cart->getOrigOrderId(), $cartData['orig_order_id']);
$this->assertEquals($cart->getItemsCount(), $cartData['items_count']);
$this->assertEquals($cart->getItemsQty(), $cartData['items_qty']);
$this->assertContains('customer', $cartData);
$this->assertEquals(false, $cartData['customer_is_guest']);
$this->assertContains('currency', $cartData);
$this->assertEquals($cart->getGlobalCurrencyCode(), $cartData['currency']['global_currency_code']);
$this->assertEquals($cart->getBaseCurrencyCode(), $cartData['currency']['base_currency_code']);
$this->assertEquals($cart->getQuoteCurrencyCode(), $cartData['currency']['quote_currency_code']);
$this->assertEquals($cart->getStoreCurrencyCode(), $cartData['currency']['store_currency_code']);
$this->assertEquals($cart->getBaseToGlobalRate(), $cartData['currency']['base_to_global_rate']);
$this->assertEquals($cart->getBaseToQuoteRate(), $cartData['currency']['base_to_quote_rate']);
$this->assertEquals($cart->getStoreToBaseRate(), $cartData['currency']['store_to_base_rate']);
$this->assertEquals($cart->getStoreToQuoteRate(), $cartData['currency']['store_to_quote_rate']);
}
/**
* Retrieve quote by given reserved order ID
*
* @param string $reservedOrderId
* @return \Magento\Quote\Model\Quote
* @throws \InvalidArgumentException
*/
protected function getCart($reservedOrderId)
{
/** @var $cart \Magento\Quote\Model\Quote */
$cart = $this->objectManager->get(\Magento\Quote\Model\Quote::class);
$cart->load($reservedOrderId, 'reserved_order_id');
if (!$cart->getId()) {
throw new \InvalidArgumentException('There is no quote with provided reserved order ID.');
}
return $cart;
}
}