117 lines
4.4 KiB
PHP
117 lines
4.4 KiB
PHP
<?php
|
|
|
|
namespace MailPoet\Test\Acceptance;
|
|
|
|
use Codeception\Util\Locator;
|
|
use MailPoet\Test\DataFactories\Newsletter;
|
|
use MailPoet\Test\DataFactories\Settings;
|
|
|
|
class RevenueTrackingCookieCest {
|
|
|
|
/** @var Settings */
|
|
private $settings;
|
|
|
|
protected function _inject(Settings $settings) {
|
|
$this->settings = $settings;
|
|
}
|
|
|
|
public function _before(\AcceptanceTester $i) {
|
|
$i->activateWooCommerce();
|
|
$this->settings->withCronTriggerMethod('WordPress');
|
|
}
|
|
|
|
public function cookieIsStoredOnClick(\AcceptanceTester $i) {
|
|
$i->wantTo('Test Revenue cookie is saved');
|
|
$newsletterSubject = 'Receive Test' . \MailPoet\Util\Security::generateRandomString();
|
|
$newsletter = (new Newsletter())->withSubject($newsletterSubject)->create();
|
|
// make sure the settings is disabled
|
|
$this->settings->withTrackingEnabled()->withCookieRevenueTrackingDisabled();
|
|
$segmentName = $i->createListWithSubscriber();
|
|
// make sure a post exists
|
|
$i->cli(['post', 'create', '--post_status=publish', '--post_type=post', '--post_title=Lorem', '--post_content=Ipsum']);
|
|
|
|
$i->login();
|
|
// enable the settings
|
|
$i->amOnMailPoetPage('Settings');
|
|
$i->click('[data-automation-id="woocommerce_settings_tab"]');
|
|
$i->dontSeeCheckboxIsChecked('[data-automation-id="accept_cookie_revenue_tracking"]');
|
|
$i->checkOption('[data-automation-id="accept_cookie_revenue_tracking"]');
|
|
$i->click('[data-automation-id="settings-submit-button"]');
|
|
$i->waitForText('Settings saved');
|
|
|
|
// send any newsletter with a link
|
|
$i->amEditingNewsletter($newsletter->id);
|
|
$i->click('Next');
|
|
|
|
$i->waitForElement('[data-automation-id="newsletter_send_form"]');
|
|
$i->selectOptionInSelect2($segmentName);
|
|
$i->click('Send');
|
|
$i->waitForElement('.mailpoet_progress_label');
|
|
|
|
$i->logOut();
|
|
$this->checkEmailWasReceived($i, $newsletterSubject);
|
|
|
|
// click a link in the newsletter and check the cookie has been created
|
|
$i->click(Locator::contains('span.subject', $newsletterSubject));
|
|
$i->switchToIframe('preview-html');
|
|
$i->click('Read the post');
|
|
$i->switchToNextTab();
|
|
$i->canSeeCookie('mailpoet_revenue_tracking');
|
|
}
|
|
|
|
public function cookieIsNotStoredWhenSettingsDisabled(\AcceptanceTester $i) {
|
|
$i->wantTo('Test Revenue cookie is not saved');
|
|
$newsletterSubject = 'Receive Test' . \MailPoet\Util\Security::generateRandomString();
|
|
$newsletter = (new Newsletter())->withSubject($newsletterSubject)->create();
|
|
// make sure the settings is enabled
|
|
$this->settings->withTrackingEnabled()->withCookieRevenueTracking();
|
|
$segmentName = $i->createListWithSubscriber();
|
|
// make sure a post exists
|
|
$i->cli(['post', 'create', '--post_status=publish', '--post_type=post', '--post_title=Lorem', '--post_content=Ipsum']);
|
|
|
|
$i->login();
|
|
// dis the settings
|
|
$i->amOnMailPoetPage('Settings');
|
|
$i->click('[data-automation-id="woocommerce_settings_tab"]');
|
|
$i->seeCheckboxIsChecked('[data-automation-id="accept_cookie_revenue_tracking"]');
|
|
$i->uncheckOption('[data-automation-id="accept_cookie_revenue_tracking"]');
|
|
$i->click('[data-automation-id="settings-submit-button"]');
|
|
$i->waitForText('Settings saved');
|
|
// send any newsletter with a link
|
|
$i->amEditingNewsletter($newsletter->id);
|
|
$i->click('Next');
|
|
|
|
$i->waitForElement('[data-automation-id="newsletter_send_form"]');
|
|
$i->selectOptionInSelect2($segmentName);
|
|
$i->click('Send');
|
|
$i->waitForElement('.mailpoet_progress_label');
|
|
|
|
$i->logOut();
|
|
$this->checkEmailWasReceived($i, $newsletterSubject);
|
|
// click a link in the newsletter and check the cookie has NOT been created
|
|
$i->click(Locator::contains('span.subject', $newsletterSubject));
|
|
$i->switchToIframe('preview-html');
|
|
$i->click('Read the post');
|
|
$i->switchToNextTab();
|
|
$i->dontSeeCookie('mailpoet_revenue_tracking');
|
|
}
|
|
|
|
/**
|
|
* Checks that email was received by looking for a subject in inbox.
|
|
* In case it was not found reloads the inbox and check once more.
|
|
* Emails are sent via cron and might not be sent immediately.
|
|
* @param \AcceptanceTester $i
|
|
* @param string $subject
|
|
* @throws \Exception
|
|
*/
|
|
private function checkEmailWasReceived(\AcceptanceTester $i, $subject) {
|
|
$i->amOnMailboxAppPage();
|
|
try {
|
|
$i->waitForText($subject);
|
|
} catch (\Exception $e) {
|
|
$i->amOnMailboxAppPage();
|
|
$i->waitForText($subject);
|
|
}
|
|
}
|
|
}
|