123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- declare(strict_types=1);
- namespace Magento\GraphQl\Customer;
- use Magento\Customer\Api\CustomerRepositoryInterface;
- use Magento\Customer\Api\AddressRepositoryInterface;
- use Magento\TestFramework\Helper\Bootstrap;
- use Magento\TestFramework\TestCase\GraphQlAbstract;
- use Magento\Integration\Api\CustomerTokenServiceInterface;
- class DeleteCustomerAddressTest extends GraphQlAbstract
- {
- /**
- * @var CustomerTokenServiceInterface
- */
- private $customerTokenService;
- /**
- * @var CustomerRepositoryInterface
- */
- private $customerRepository;
- /**
- * @var AddressRepositoryInterface
- */
- private $addressRepository;
- protected function setUp()
- {
- parent::setUp();
- $this->customerTokenService = Bootstrap::getObjectManager()->get(CustomerTokenServiceInterface::class);
- $this->customerRepository = Bootstrap::getObjectManager()->get(CustomerRepositoryInterface::class);
- $this->addressRepository = Bootstrap::getObjectManager()->get(AddressRepositoryInterface::class);
- }
- /**
- * @magentoApiDataFixture Magento/Customer/_files/customer.php
- * @magentoApiDataFixture Magento/Customer/_files/customer_two_addresses.php
- */
- public function testDeleteCustomerAddress()
- {
- $userName = 'customer@example.com';
- $password = 'password';
- $addressId = 2;
- $mutation
- = <<<MUTATION
- mutation {
- deleteCustomerAddress(id: {$addressId})
- }
- MUTATION;
- $response = $this->graphQlQuery($mutation, [], '', $this->getCustomerAuthHeaders($userName, $password));
- $this->assertArrayHasKey('deleteCustomerAddress', $response);
- $this->assertEquals(true, $response['deleteCustomerAddress']);
- }
- /**
- * @expectedException \Exception
- * @expectedExceptionMessage The current customer isn't authorized.
- */
- public function testDeleteCustomerAddressIfUserIsNotAuthorized()
- {
- $addressId = 1;
- $mutation
- = <<<MUTATION
- mutation {
- deleteCustomerAddress(id: {$addressId})
- }
- MUTATION;
- $this->graphQlQuery($mutation);
- }
- /**
- * @magentoApiDataFixture Magento/Customer/_files/customer.php
- * @magentoApiDataFixture Magento/Customer/_files/customer_two_addresses.php
- *
- * @expectedException \Exception
- * @expectedExceptionMessage Customer Address 2 is set as default shipping address and can not be deleted
- */
- public function testDeleteDefaultShippingCustomerAddress()
- {
- $userName = 'customer@example.com';
- $password = 'password';
- $addressId = 2;
- $address = $this->addressRepository->getById($addressId);
- $address->setIsDefaultShipping(true);
- $this->addressRepository->save($address);
- $mutation
- = <<<MUTATION
- mutation {
- deleteCustomerAddress(id: {$addressId})
- }
- MUTATION;
- $this->graphQlQuery($mutation, [], '', $this->getCustomerAuthHeaders($userName, $password));
- }
- /**
- * @magentoApiDataFixture Magento/Customer/_files/customer.php
- * @magentoApiDataFixture Magento/Customer/_files/customer_two_addresses.php
- *
- * @expectedException \Exception
- * @expectedExceptionMessage Customer Address 2 is set as default billing address and can not be deleted
- */
- public function testDeleteDefaultBillingCustomerAddress()
- {
- $userName = 'customer@example.com';
- $password = 'password';
- $addressId = 2;
- $address = $this->addressRepository->getById($addressId);
- $address->setIsDefaultBilling(true);
- $this->addressRepository->save($address);
- $mutation
- = <<<MUTATION
- mutation {
- deleteCustomerAddress(id: {$addressId})
- }
- MUTATION;
- $this->graphQlQuery($mutation, [], '', $this->getCustomerAuthHeaders($userName, $password));
- }
- /**
- * @magentoApiDataFixture Magento/Customer/_files/customer.php
- *
- * @expectedException \Exception
- * @expectedExceptionMessage Address id 9999 does not exist.
- */
- public function testDeleteNonExistCustomerAddress()
- {
- $userName = 'customer@example.com';
- $password = 'password';
- $mutation
- = <<<MUTATION
- mutation {
- deleteCustomerAddress(id: 9999)
- }
- MUTATION;
- $this->graphQlQuery($mutation, [], '', $this->getCustomerAuthHeaders($userName, $password));
- }
- /**
- * @param string $email
- * @param string $password
- * @return array
- */
- private function getCustomerAuthHeaders(string $email, string $password): array
- {
- $customerToken = $this->customerTokenService->createCustomerAccessToken($email, $password);
- return ['Authorization' => 'Bearer ' . $customerToken];
- }
- }
|