Spaces:
No application file
No application file
File size: 5,054 Bytes
d2897cd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 |
<?php
declare(strict_types=1);
namespace Mautic\EmailBundle\Tests\Controller;
use Mautic\CoreBundle\Test\MauticMysqlTestCase;
use Mautic\EmailBundle\Entity\Email;
use Mautic\LeadBundle\Entity\Lead;
use Mautic\LeadBundle\Entity\LeadList;
use Mautic\LeadBundle\Entity\ListLead;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
class PreviewFunctionalTest extends MauticMysqlTestCase
{
public function testPreviewPage(): void
{
$lead = $this->createLead();
$email = $this->createEmail();
$this->em->flush();
$url = "/email/preview/{$email->getId()}";
$urlWithContact = "{$url}?contactId={$lead->getId()}";
$contentNoContactInfo = 'Contact emails is [Email]';
$contentWithContactInfo = sprintf('Contact emails is %s', $lead->getEmail());
// Anonymous visitor
$this->assertPageContent($url, $contentNoContactInfo);
$this->assertPageContent($urlWithContact, $contentNoContactInfo);
$this->loginUser('admin');
// Admin user
$this->assertPageContent($url, $contentNoContactInfo);
$this->assertPageContent($urlWithContact, $contentWithContactInfo);
}
private function assertPageContent(string $url, string $expectedContent): void
{
$crawler = $this->client->request(Request::METHOD_GET, $url);
self::assertSame(Response::HTTP_OK, $this->client->getResponse()->getStatusCode());
self::assertStringContainsString($expectedContent, $crawler->text());
}
private function createEmail(bool $publicPreview = true): Email
{
$email = new Email();
$email->setDateAdded(new \DateTime());
$email->setName('Email name');
$email->setSubject('Email subject');
$email->setTemplate('Blank');
$email->setPublicPreview($publicPreview);
$email->setCustomHtml('Contact emails is {contactfield=email}');
$this->em->persist($email);
return $email;
}
private function createLead(): Lead
{
$lead = new Lead();
$lead->setEmail('[email protected]');
$this->em->persist($lead);
return $lead;
}
public function testPreviewEmailWithCorrectDCVariationFilterSegmentMembership(): void
{
$segment1 = $this->createSegment('Segment 1');
$segment2 = $this->createSegment('Segment 2');
$lead = $this->createLead();
$email = $this->createEmail();
$this->addLeadToSegment($lead, $segment1);
$email->setDynamicContent([
[
'tokenName' => 'Dynamic Content 1',
'content' => '<p>Default Dynamic Content</p>',
'filters' => [
[
'content' => '<p>Variation 1</p>',
'filters' => [
[
'glue' => 'and',
'field' => 'leadlist',
'object' => 'lead',
'type' => 'leadlist',
'filter' => [
$segment1->getId(),
$segment2->getId(),
],
'display' => 'Segment Membership',
'operator' => 'in',
],
],
],
],
],
]);
$email->setCustomHtml('{dynamiccontent="Dynamic Content 1"}');
$this->em->persist($email);
$this->em->flush();
$url = "/email/preview/{$email->getId()}";
$urlWithContact = "{$url}?contactId={$lead->getId()}";
$contentNoContactInfo = 'Default Dynamic Content';
$contentWithContactInfo = 'Variation 1';
// Anonymous visitor
$this->assertPageContent($url, $contentNoContactInfo);
$this->assertPageContent($urlWithContact, $contentNoContactInfo);
$this->loginUser('admin');
// Admin user
$this->assertPageContent($url, $contentNoContactInfo);
$this->assertPageContent($urlWithContact, $contentWithContactInfo);
}
private function createSegment(string $name = 'Segment 1'): LeadList
{
$segment = new LeadList();
$segment->setName($name);
$segment->setPublicName($name);
$segment->setAlias(strtolower($name));
$segment->isPublished(true);
$this->em->persist($segment);
$this->em->flush();
return $segment;
}
private function addLeadToSegment(Lead $lead, LeadList $segment): ListLead
{
$listLead = new ListLead();
$listLead->setLead($lead);
$listLead->setList($segment);
$listLead->setDateAdded(new \DateTime());
$this->em->persist($listLead);
$this->em->flush();
return $listLead;
}
}
|