Spaces:
No application file
No application file
File size: 1,686 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 |
<?php
declare(strict_types=1);
namespace Mautic\CampaignBundle\Tests\Functional\Campaign;
use Mautic\CampaignBundle\Entity\Campaign;
use Mautic\CoreBundle\Test\MauticMysqlTestCase;
use PHPUnit\Framework\Assert;
class DetailsTest extends MauticMysqlTestCase
{
public function testDetailsPageLoadCorrectly(): void
{
$campaign = new Campaign();
$campaign->setName('Campaign A');
$campaign->setCanvasSettings([
'nodes' => [
0 => [
'id' => '148',
'positionX' => '760',
'positionY' => '155',
],
1 => [
'id' => 'lists',
'positionX' => '860',
'positionY' => '50',
],
],
'connections' => [
0 => [
'sourceId' => 'lists',
'targetId' => '148',
'anchors' => [
'source' => 'leadsource',
'target' => 'top',
],
],
],
]
);
$this->em->persist($campaign);
$this->em->flush();
$this->client->request('GET', sprintf('/s/campaigns/view/%s', $campaign->getId()));
$response = $this->client->getResponse();
Assert::assertSame(200, $response->getStatusCode());
Assert::assertStringContainsString($campaign->getName(), $response->getContent());
Assert::assertStringContainsString(sprintf('data-target-url="/s/campaigns/view/%s/contact/1"', $campaign->getId()), $response->getContent());
}
}
|