Spaces:
No application file
No application file
File size: 1,392 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 |
<?php
declare(strict_types=1);
namespace Mautic\CampaignBundle\Tests\Controller;
use Mautic\CoreBundle\Test\MauticMysqlTestCase;
use Mautic\FormBundle\Entity\Form;
class SourceControllerTest extends MauticMysqlTestCase
{
public function testTwoSourcesWithSameName(): void
{
$form1 = new Form();
$form1->setName('test');
$form1->setAlias('test');
$form1->setFormType('campaign');
$form2 = new Form();
$form2->setName('test');
$form2->setAlias('test');
$form2->setFormType('campaign');
$this->em->persist($form1);
$this->em->persist($form2);
$this->em->flush();
$this->em->detach($form1);
$this->em->detach($form2);
$this->client->request('GET', '/s/campaigns/sources/new/random_object_id?sourceType=forms', [], [], $this->createAjaxHeaders());
$clientResponse = $this->client->getResponse();
$responseContent = $clientResponse->getContent();
$this->assertSame(200, $clientResponse->getStatusCode(), $responseContent);
$html = json_decode($responseContent, true)['newContent'];
$this->assertStringContainsString("<option value=\"{$form1->getId()}\">test ({$form1->getId()})</option>", $html);
$this->assertStringContainsString("<option value=\"{$form2->getId()}\">test ({$form2->getId()})</option>", $html);
}
}
|