Files
piratepoet/tests/acceptance/Subscriptions/WooCheckoutCustomerSubscriptionsCest.php
2021-08-09 16:51:27 +02:00

123 lines
5.4 KiB
PHP

<?php
namespace MailPoet\Test\Acceptance;
use MailPoet\Entities\SubscriberEntity;
use MailPoet\Test\DataFactories\Segment;
use MailPoet\Test\DataFactories\Settings;
use MailPoet\Test\DataFactories\Subscriber;
use MailPoet\Test\DataFactories\WooCommerceProduct;
/**
* This class contains tests for subscriptions
* of registered customers done via checkout page
*/
class WooCheckoutCustomerSubscriptionsCest {
/** @var Settings */
private $settingsFactory;
/** @var array WooCommerce Product data*/
private $product;
public function _before(\AcceptanceTester $i) {
$i->activateWooCommerce();
$this->product = (new WooCommerceProduct($i))->create();
$this->settingsFactory = new Settings();
$this->settingsFactory->withWooCommerceListImportPageDisplayed(true);
$this->settingsFactory->withCookieRevenueTrackingDisabled();
}
public function checkoutOptInDisabled(\AcceptanceTester $i) {
$this->settingsFactory->withWooCommerceCheckoutOptinDisabled();
$this->settingsFactory->withConfirmationEmailEnabled();
$customerEmail = 'woo_customer_noptin@example.com';
$i->orderProductWithRegistration($this->product, $customerEmail, false);
$i->login();
$i->checkSubscriberStatusAndLists($customerEmail, SubscriberEntity::STATUS_UNCONFIRMED, ['WordPress Users'], ['WooCommerce Customers']);
$i->seeConfirmationEmailWasNotReceived();
}
public function checkoutOptInChecked(\AcceptanceTester $i) {
$this->settingsFactory->withWooCommerceCheckoutOptinEnabled();
$this->settingsFactory->withConfirmationEmailEnabled();
$customerEmail = 'woo_customer_check@example.com';
$i->orderProductWithRegistration($this->product, $customerEmail, true);
$i->login();
$i->checkSubscriberStatusAndLists($customerEmail, SubscriberEntity::STATUS_UNCONFIRMED, ['WooCommerce Customers', 'WordPress Users']);
$i->seeConfirmationEmailWasReceived();
}
public function checkoutOptInUnchecked(\AcceptanceTester $i) {
$this->settingsFactory->withWooCommerceCheckoutOptinEnabled();
$this->settingsFactory->withConfirmationEmailEnabled();
$customerEmail = 'woo_customer_uncheck@example.com';
$i->orderProductWithRegistration($this->product, $customerEmail, false);
$i->login();
$i->checkSubscriberStatusAndLists($customerEmail, SubscriberEntity::STATUS_UNSUBSCRIBED, ['WordPress Users'], ['WooCommerce Customers']);
$i->seeConfirmationEmailWasNotReceived();
}
public function checkoutOptInDisabledNoConfirmation(\AcceptanceTester $i) {
$this->settingsFactory->withWooCommerceCheckoutOptinDisabled();
$this->settingsFactory->withConfirmationEmailDisabled();
$customerEmail = 'woo_customer_noptin@example.com';
$i->orderProductWithRegistration($this->product, $customerEmail, false);
$i->login();
$i->checkSubscriberStatusAndLists($customerEmail, SubscriberEntity::STATUS_SUBSCRIBED, ['WordPress Users'], ['WooCommerce Customers']);
$i->seeConfirmationEmailWasNotReceived();
}
public function checkoutOptInCheckedNoConfirmation(\AcceptanceTester $i) {
$this->settingsFactory->withWooCommerceCheckoutOptinEnabled();
$this->settingsFactory->withConfirmationEmailDisabled();
$customerEmail = 'woo_customer_check@example.com';
$i->orderProductWithRegistration($this->product, $customerEmail, true);
$i->login();
$i->checkSubscriberStatusAndLists($customerEmail, SubscriberEntity::STATUS_SUBSCRIBED, ['WooCommerce Customers', 'WordPress Users']);
$i->seeConfirmationEmailWasNotReceived();
}
public function checkoutOptInUncheckedNoConfirmation(\AcceptanceTester $i) {
$this->settingsFactory->withWooCommerceCheckoutOptinEnabled();
$this->settingsFactory->withConfirmationEmailDisabled();
$customerEmail = 'woo_customer_uncheck@example.com';
$i->orderProductWithRegistration($this->product, $customerEmail, false);
$i->login();
$i->checkSubscriberStatusAndLists($customerEmail, SubscriberEntity::STATUS_UNSUBSCRIBED, ['WordPress Users'], ['WooCommerce Customers']);
$i->seeConfirmationEmailWasNotReceived();
}
public function checkoutOptInDisabledExistingSubscriber(\AcceptanceTester $i) {
$this->settingsFactory->withWooCommerceCheckoutOptinDisabled();
$list = (new Segment())->create();
$customerEmail = 'woo_customer_disabled_exist@example.com';
(new Subscriber())
->withEmail($customerEmail)
->withStatus(SubscriberEntity::STATUS_SUBSCRIBED)
->withSegments([$list])
->create();
$i->orderProductWithRegistration($this->product, $customerEmail, false);
$i->login();
$i->checkSubscriberStatusAndLists($customerEmail, SubscriberEntity::STATUS_SUBSCRIBED, [$list->getName()], ['WooCommerce Customers']);
$i->seeConfirmationEmailWasNotReceived();
}
public function checkoutOptInUncheckedExistingSubscriber(\AcceptanceTester $i) {
$this->settingsFactory->withWooCommerceCheckoutOptinEnabled();
$list = (new Segment())->create();
$customerEmail = 'woo_customer_uncheck_exist@example.com';
(new Subscriber())
->withEmail($customerEmail)
->withStatus(SubscriberEntity::STATUS_SUBSCRIBED)
->withSegments([$list])
->create();
$i->orderProductWithRegistration($this->product, $customerEmail, false);
$i->login();
$i->checkSubscriberStatusAndLists($customerEmail, SubscriberEntity::STATUS_SUBSCRIBED, [$list->getName()], ['WooCommerce Customers']);
$i->seeConfirmationEmailWasNotReceived();
}
}