178 lines
6.6 KiB
PHP
Executable File
178 lines
6.6 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Copyright © Magento, Inc. All rights reserved.
|
|
* See COPYING.txt for license details.
|
|
*/
|
|
|
|
namespace Magento\Quote\Api;
|
|
|
|
use Magento\Quote\Api\Data\AddressInterface;
|
|
use Magento\TestFramework\TestCase\WebapiAbstract;
|
|
|
|
class GuestBillingAddressManagementTest extends WebapiAbstract
|
|
{
|
|
const SERVICE_VERSION = 'V1';
|
|
const SERVICE_NAME = 'quoteGuestBillingAddressManagementV1';
|
|
const RESOURCE_PATH = '/V1/guest-carts/';
|
|
|
|
/**
|
|
* @var \Magento\TestFramework\ObjectManager
|
|
*/
|
|
protected $objectManager;
|
|
|
|
protected function setUp(): void
|
|
{
|
|
$this->objectManager = \Magento\TestFramework\Helper\Bootstrap::getObjectManager();
|
|
}
|
|
|
|
protected function getQuoteMaskedId($quoteId)
|
|
{
|
|
/** @var \Magento\Quote\Model\QuoteIdMask $quoteIdMask */
|
|
$quoteIdMask = $this->objectManager->create(\Magento\Quote\Model\QuoteIdMaskFactory::class)->create();
|
|
$quoteIdMask->load($quoteId, 'quote_id');
|
|
return $quoteIdMask->getMaskedId();
|
|
}
|
|
|
|
/**
|
|
* @magentoApiDataFixture Magento/Checkout/_files/quote_with_address_saved.php
|
|
*/
|
|
public function testGetAddress()
|
|
{
|
|
$quote = $this->objectManager->create(\Magento\Quote\Model\Quote::class);
|
|
$quote->load('test_order_1', 'reserved_order_id');
|
|
|
|
/** @var \Magento\Quote\Model\Quote\Address $address */
|
|
$address = $quote->getBillingAddress();
|
|
|
|
$data = [
|
|
AddressInterface::KEY_ID => (int)$address->getId(),
|
|
AddressInterface::KEY_REGION => $address->getRegion(),
|
|
AddressInterface::KEY_REGION_ID => $address->getRegionId(),
|
|
AddressInterface::KEY_REGION_CODE => $address->getRegionCode(),
|
|
AddressInterface::KEY_COUNTRY_ID => $address->getCountryId(),
|
|
AddressInterface::KEY_STREET => $address->getStreet(),
|
|
AddressInterface::KEY_COMPANY => $address->getCompany(),
|
|
AddressInterface::KEY_TELEPHONE => $address->getTelephone(),
|
|
AddressInterface::KEY_POSTCODE => $address->getPostcode(),
|
|
AddressInterface::KEY_CITY => $address->getCity(),
|
|
AddressInterface::KEY_FIRSTNAME => $address->getFirstname(),
|
|
AddressInterface::KEY_LASTNAME => $address->getLastname(),
|
|
AddressInterface::KEY_CUSTOMER_ID => $address->getCustomerId(),
|
|
AddressInterface::KEY_EMAIL => $address->getEmail(),
|
|
AddressInterface::SAME_AS_BILLING => $address->getSameAsBilling(),
|
|
AddressInterface::CUSTOMER_ADDRESS_ID => $address->getCustomerAddressId(),
|
|
AddressInterface::SAVE_IN_ADDRESS_BOOK => $address->getSaveInAddressBook(),
|
|
];
|
|
|
|
$cartId = $this->getQuoteMaskedId($quote->getId());
|
|
|
|
$serviceInfo = [
|
|
'rest' => [
|
|
'resourcePath' => self::RESOURCE_PATH . $cartId . '/billing-address',
|
|
'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_GET,
|
|
],
|
|
'soap' => [
|
|
'service' => self::SERVICE_NAME,
|
|
'serviceVersion' => self::SERVICE_VERSION,
|
|
'operation' => self::SERVICE_NAME . 'Get',
|
|
],
|
|
];
|
|
|
|
$requestData = ["cartId" => $cartId];
|
|
$response = $this->_webApiCall($serviceInfo, $requestData);
|
|
|
|
asort($data);
|
|
asort($response);
|
|
$this->assertEquals($data, $response);
|
|
}
|
|
|
|
/**
|
|
* @magentoApiDataFixture Magento/Checkout/_files/quote_with_address_saved.php
|
|
* @dataProvider setAddressDataProvider
|
|
*/
|
|
public function testSetAddress($useForShipping)
|
|
{
|
|
/** @var \Magento\Quote\Model\Quote $quote */
|
|
$quote = $this->objectManager->create(\Magento\Quote\Model\Quote::class);
|
|
$quote->load('test_order_1', 'reserved_order_id');
|
|
|
|
$cartId = $this->getQuoteMaskedId($quote->getId());
|
|
|
|
$serviceInfo = [
|
|
'rest' => [
|
|
'resourcePath' => self::RESOURCE_PATH . $cartId . '/billing-address',
|
|
'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_POST,
|
|
],
|
|
'soap' => [
|
|
'service' => self::SERVICE_NAME,
|
|
'serviceVersion' => self::SERVICE_VERSION,
|
|
'operation' => self::SERVICE_NAME . 'Assign',
|
|
],
|
|
];
|
|
|
|
$addressData = [
|
|
'firstname' => 'John',
|
|
'lastname' => 'Smith',
|
|
'email' => '',
|
|
'company' => 'Magento Commerce Inc.',
|
|
'street' => ['Typical Street', 'Tiny House 18'],
|
|
'city' => 'Big City',
|
|
'region_id' => 12,
|
|
'region' => 'California',
|
|
'region_code' => 'CA',
|
|
'postcode' => '0985432',
|
|
'country_id' => 'US',
|
|
'telephone' => '88776655',
|
|
'fax' => '44332255',
|
|
];
|
|
$requestData = [
|
|
'cartId' => $cartId,
|
|
'address' => $addressData,
|
|
'useForShipping' => $useForShipping
|
|
];
|
|
|
|
$addressId = $this->_webApiCall($serviceInfo, $requestData);
|
|
|
|
//reset $quote to reload data
|
|
$quote = $this->objectManager->create(\Magento\Quote\Model\Quote::class);
|
|
$quote->load('test_order_1', 'reserved_order_id');
|
|
$address = $quote->getBillingAddress();
|
|
$address->getRegionCode();
|
|
$savedData = $address->getData();
|
|
$this->assertEquals($addressId, $savedData['address_id']);
|
|
//custom checks for street, region and address_type
|
|
foreach ($addressData['street'] as $streetLine) {
|
|
$this->assertContains($streetLine, $quote->getBillingAddress()->getStreet());
|
|
}
|
|
unset($addressData['street']);
|
|
unset($addressData['email']);
|
|
$this->assertEquals('billing', $savedData['address_type']);
|
|
//check the rest of fields
|
|
foreach ($addressData as $key => $value) {
|
|
$this->assertEquals($value, $savedData[$key]);
|
|
}
|
|
$address = $quote->getShippingAddress();
|
|
$address->getRegionCode();
|
|
$savedData = $address->getData();
|
|
if ($useForShipping) {
|
|
//check that shipping address set
|
|
$this->assertEquals('shipping', $savedData['address_type']);
|
|
$this->assertEquals(1, $savedData['same_as_billing']);
|
|
//check the rest of fields
|
|
foreach ($addressData as $key => $value) {
|
|
$this->assertEquals($value, $savedData[$key]);
|
|
}
|
|
} else {
|
|
$this->assertEquals(0, $savedData['same_as_billing']);
|
|
}
|
|
}
|
|
|
|
public function setAddressDataProvider()
|
|
{
|
|
return [
|
|
[true],
|
|
[false]
|
|
];
|
|
}
|
|
}
|