123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- declare(strict_types=1);
- namespace Magento\Customer\Controller\Adminhtml\Index;
- use Magento\Backend\Model\Session;
- use Magento\Framework\Message\MessageInterface;
- use Magento\Newsletter\Model\Subscriber;
- use Magento\Newsletter\Model\SubscriberFactory;
- use Magento\TestFramework\Helper\Bootstrap;
- use Magento\Customer\Api\CustomerRepositoryInterface;
- use Magento\Customer\Api\Data\CustomerInterface;
- /**
- * @magentoAppArea adminhtml
- */
- class MassSubscribeTest extends \Magento\TestFramework\TestCase\AbstractBackendController
- {
- /**
- * Base controller URL
- *
- * @var string
- */
- protected $baseControllerUrl = 'http://localhost/index.php/backend/customer/index/index';
- protected function tearDown()
- {
- /**
- * Unset customer data
- */
- Bootstrap::getObjectManager()->get(Session::class)->setCustomerData(null);
- /**
- * Unset messages
- */
- Bootstrap::getObjectManager()->get(Session::class)->getMessages(true);
- }
- /**
- * Tests subscriber status of customers.
- *
- * @magentoDataFixture Magento/Customer/_files/five_repository_customers.php
- * @magentoDbIsolation disabled
- */
- public function testMassSubscriberAction()
- {
- /** @var SubscriberFactory $subscriberFactory */
- $subscriberFactory = Bootstrap::getObjectManager()->get(SubscriberFactory::class);
- $customerRepository = Bootstrap::getObjectManager()->get(CustomerRepositoryInterface::class);
- $this->assertNull(
- $subscriberFactory->create()
- ->loadByEmail('customer1@example.com')
- ->getSubscriberStatus()
- );
- $this->assertNull(
- $subscriberFactory->create()
- ->loadByEmail('customer2@example.com')
- ->getSubscriberStatus()
- );
- /** @var CustomerInterface $customer1 */
- $customer1 = $customerRepository->get('customer1@example.com');
- /** @var CustomerInterface $customer2 */
- $customer2 = $customerRepository->get('customer2@example.com');
- $params = [
- 'selected' => [
- $customer1->getId(),
- $customer2->getId(),
- ],
- 'namespace' => 'customer_listing',
- ];
- $this->getRequest()->setParams($params);
- $this->dispatch('backend/customer/index/massSubscribe');
- // Assertions
- $this->assertRedirect($this->stringStartsWith($this->baseControllerUrl));
- $this->assertSessionMessages(
- self::equalTo(['A total of 2 record(s) were updated.']),
- MessageInterface::TYPE_SUCCESS
- );
- $this->assertEquals(
- Subscriber::STATUS_SUBSCRIBED,
- $subscriberFactory->create()
- ->loadByEmail('customer1@example.com')
- ->getSubscriberStatus()
- );
- $this->assertEquals(
- Subscriber::STATUS_SUBSCRIBED,
- $subscriberFactory->create()
- ->loadByEmail('customer2@example.com')
- ->getSubscriberStatus()
- );
- }
- /**
- * @magentoAppIsolation enabled
- * @magentoDbIsolation enabled
- */
- public function testMassSubscriberActionNoSelection()
- {
- $params = [
- 'namespace' => 'customer_listing'
- ];
- $this->getRequest()->setParams($params);
- $this->dispatch('backend/customer/index/massSubscribe');
- $this->assertRedirect($this->stringStartsWith($this->baseControllerUrl));
- $this->assertSessionMessages(
- self::equalTo(['An item needs to be selected. Select and try again.']),
- MessageInterface::TYPE_ERROR
- );
- }
- }
|