123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- declare(strict_types=1);
- namespace Magento\Customer\Controller;
- use Magento\TestFramework\TestCase\AbstractController;
- use Magento\Customer\Api\AccountManagementInterface;
- use Magento\Framework\Data\Form\FormKey;
- use Magento\TestFramework\Helper\Bootstrap;
- use Magento\Customer\Model\Session;
- use Psr\Log\LoggerInterface;
- class SendTest extends AbstractController
- {
- /** @var AccountManagementInterface */
- private $accountManagement;
- /** @var FormKey */
- private $formKey;
- /**
- * @throws \Magento\Framework\Exception\LocalizedException
- */
- protected function setUp()
- {
- parent::setUp();
- $logger = $this->createMock(LoggerInterface::class);
- $session = Bootstrap::getObjectManager()->create(
- 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
- */
- public function testExecutePost()
- {
- $this->getRequest()
- ->setMethod('POST')
- ->setPostValue(
- [
- 'form_key' => $this->formKey->getFormKey(),
- 'emails' => 'example1@gmail.com, example2@gmail.com, example3@gmail.com'
- ]
- );
- $this->dispatch('wishlist/index/send');
- $this->assertRedirect($this->stringContains('wishlist/index/index'));
- $this->assertSessionMessages(
- $this->equalTo(['Your wish list has been shared.']),
- \Magento\Framework\Message\MessageInterface::TYPE_SUCCESS
- );
- }
- /**
- * @magentoAppIsolation enabled
- * @magentoConfigFixture default_store customer/captcha/enable 1
- * @magentoConfigFixture default_store customer/captcha/failed_attempts_login 0
- * @magentoDataFixture Magento/Customer/_files/customer.php
- * @magentoConfigFixture default_store customer/captcha/forms user_forgotpassword,user_login,share_wishlist_form
- *
- */
- public function testCaptchaFailed()
- {
- $this->getRequest()
- ->setMethod('POST')
- ->setPostValue(
- [
- 'form_key' => $this->formKey->getFormKey(),
- 'emails' => 'example1@gmail.com, example2@gmail.com, example3@gmail.com',
- 'captcha' => [
- 'share_wishlist_form' => 'wrong_captcha_word'
- ]
- ]
- );
- $this->dispatch('wishlist/index/send');
- $this->assertRedirect($this->stringContains('wishlist/index/share'));
- $this->assertSessionMessages(
- $this->equalTo(['Incorrect CAPTCHA']),
- \Magento\Framework\Message\MessageInterface::TYPE_ERROR
- );
- }
- }
|