123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Customer\Controller;
- use Magento\Customer\Api\AccountManagementInterface;
- use Magento\Customer\Model\CustomerRegistry;
- use Magento\Framework\Data\Form\FormKey;
- use Magento\TestFramework\Helper\Bootstrap;
- use Magento\Framework\App\Request\Http as HttpRequest;
- class AddressTest extends \Magento\TestFramework\TestCase\AbstractController
- {
- /** @var AccountManagementInterface */
- private $accountManagement;
- /** @var FormKey */
- private $formKey;
- /**
- * @inheritDoc
- */
- protected function setUp()
- {
- parent::setUp();
- $logger = $this->createMock(\Psr\Log\LoggerInterface::class);
- $session = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create(
- \Magento\Customer\Model\Session::class,
- [$logger]
- );
- $this->accountManagement = Bootstrap::getObjectManager()->create(AccountManagementInterface::class);
- $this->formKey = Bootstrap::getObjectManager()->create(FormKey::class);
- $customer = $this->accountManagement->authenticate('customer@example.com', 'password');
- $session->setCustomerDataAsLoggedIn($customer);
- }
- /**
- * @magentoDataFixture Magento/Customer/_files/customer.php
- * @magentoDataFixture Magento/Customer/_files/customer_address.php
- */
- public function testIndexAction()
- {
- $this->dispatch('customer/address/index');
- $body = $this->getResponse()->getBody();
- $this->assertContains('Default Billing Address', $body);
- $this->assertContains('Default Shipping Address', $body);
- $this->assertContains('Green str, 67', $body);
- }
- /**
- * @magentoDataFixture Magento/Customer/_files/customer.php
- * @magentoDataFixture Magento/Customer/_files/customer_address.php
- */
- public function testFormAction()
- {
- $this->dispatch('customer/address/edit');
- $body = $this->getResponse()->getBody();
- $this->assertContains('value="John"', $body);
- $this->assertContains('value="Smith"', $body);
- }
- /**
- * @magentoDataFixture Magento/Customer/_files/customer.php
- * @magentoDataFixture Magento/Customer/_files/customer_two_addresses.php
- */
- public function testFormPostAction()
- {
- $this->getRequest()->setParam(
- 'id',
- 2
- )->setMethod(
- 'POST'
- )->setPostValue(
- [
- 'form_key' => $this->_objectManager->get(\Magento\Framework\Data\Form\FormKey::class)->getFormKey(),
- 'firstname' => 'James',
- 'lastname' => 'Bond',
- 'company' => 'Magento Commerce Inc.',
- 'telephone' => '1112223333',
- 'fax' => '2223334444',
- 'street' => ['1234 Monterey Rd', 'Apt 13'],
- 'city' => 'Kyiv',
- 'region' => 'Kiev',
- 'postcode' => '55555',
- 'country_id' => 'UA',
- 'success_url' => '',
- 'error_url' => '',
- 'default_billing' => true,
- 'default_shipping' => true,
- ]
- );
- // we are overwriting the address coming from the fixture
- $this->dispatch('customer/address/formPost');
- $this->getCustomerRegistry()->remove(1);
- $this->assertRedirect($this->stringContains('customer/address/index'));
- $this->assertSessionMessages(
- $this->equalTo(['You saved the address.']),
- \Magento\Framework\Message\MessageInterface::TYPE_SUCCESS
- );
- $address = $this->accountManagement->getDefaultBillingAddress(1);
- $this->assertEquals('UA', $address->getCountryId());
- $this->assertEquals('Kyiv', $address->getCity());
- $this->assertEquals('Kiev', $address->getRegion()->getRegion());
- $this->assertTrue($address->isDefaultBilling());
- $this->assertTrue($address->isDefaultShipping());
- }
- /**
- * @return CustomerRegistry
- */
- private function getCustomerRegistry()
- {
- return $this->_objectManager->get(CustomerRegistry::class);
- }
- /**
- * @magentoDataFixture Magento/Customer/_files/customer.php
- * @magentoDataFixture Magento/Customer/_files/customer_address.php
- */
- public function testFailedFormPostAction()
- {
- $this->getRequest()->setParam(
- 'id',
- 1
- )->setMethod(
- 'POST'
- )->setPostValue(
- [
- 'form_key' => $this->_objectManager->get(\Magento\Framework\Data\Form\FormKey::class)->getFormKey(),
- 'firstname' => 'James',
- 'lastname' => 'Bond',
- 'company' => 'Magento Commerce Inc.',
- 'telephone' => '1112223333',
- 'fax' => '2223334444',
- // omit street and city to fail validation
- 'region_id' => '12',
- 'region' => 'California',
- 'postcode' => '55555',
- 'country_id' => 'US',
- 'success_url' => '',
- 'error_url' => '',
- ]
- );
- // we are overwriting the address coming from the fixture
- $this->dispatch('customer/address/formPost');
- $this->getCustomerRegistry()->remove(1);
- $this->assertRedirect($this->stringContains('customer/address/edit'));
- $this->assertSessionMessages(
- $this->equalTo(
- [
- 'One or more input exceptions have occurred.',
- '"street" is required. Enter and try again.',
- '"city" is required. Enter and try again.',
- ]
- ),
- \Magento\Framework\Message\MessageInterface::TYPE_ERROR
- );
- }
- /**
- * @magentoDataFixture Magento/Customer/_files/customer.php
- * @magentoDataFixture Magento/Customer/_files/customer_address.php
- */
- public function testDeleteAction()
- {
- $this->getRequest()->setParam('id', 1);
- $this->getRequest()->setParam('form_key', $this->formKey->getFormKey())->setMethod(HttpRequest::METHOD_POST);
- // we are overwriting the address coming from the fixture
- $this->dispatch('customer/address/delete');
- $this->assertRedirect($this->stringContains('customer/address/index'));
- $this->assertSessionMessages(
- $this->equalTo(['You deleted the address.']),
- \Magento\Framework\Message\MessageInterface::TYPE_SUCCESS
- );
- }
- /**
- * @magentoDataFixture Magento/Customer/_files/customer.php
- * @magentoDataFixture Magento/Customer/_files/customer_address.php
- */
- public function testWrongAddressDeleteAction()
- {
- $this->getRequest()->setParam('id', 555);
- $this->getRequest()->setParam('form_key', $this->formKey->getFormKey())->setMethod(HttpRequest::METHOD_POST);
- // we are overwriting the address coming from the fixture
- $this->dispatch('customer/address/delete');
- $this->assertRedirect($this->stringContains('customer/address/index'));
- $this->assertSessionMessages(
- $this->equalTo(['We can\'t delete the address right now.']),
- \Magento\Framework\Message\MessageInterface::TYPE_ERROR
- );
- }
- }
|