Spaces:
No application file
No application file
File size: 1,750 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
namespace Mautic\LeadBundle\Tests\Controller;
use Mautic\CoreBundle\Test\MauticMysqlTestCase;
use Mautic\LeadBundle\Entity\LeadField;
use Symfony\Component\HttpFoundation\Request;
class FieldControllerTest extends MauticMysqlTestCase
{
protected $useCleanupRollback = false;
public function testLengthValidationOnLabelFieldWhenAddingCustomFieldFailure(): void
{
$crawler = $this->client->request(Request::METHOD_GET, '/s/contacts/fields/new');
$form = $crawler->selectButton('Save & Close')->form();
$label = 'The leading Drupal Cloud platform to securely develop, deliver, and run websites, applications, and content. Top-of-the-line hosting options are paired with automated testing and development tools. Documentation is also included for the following components';
$form['leadfield[label]']->setValue($label);
$crawler = $this->client->submit($form);
$labelErrorMessage = trim($crawler->filter('#leadfield_label')->nextAll()->text());
$maxLengthErrorMessageTemplate = 'Label value cannot be longer than 191 characters';
$this->assertEquals($maxLengthErrorMessageTemplate, $labelErrorMessage);
}
public function testLengthValidationOnLabelFieldWhenAddingCustomFieldSuccess(): void
{
$crawler = $this->client->request(Request::METHOD_GET, '/s/contacts/fields/new');
$form = $crawler->selectButton('Save & Close')->form();
$label = 'Test value for custom field 4';
$form['leadfield[label]']->setValue($label);
$crawler = $this->client->submit($form);
$field = $this->em->getRepository(LeadField::class)->findOneBy(['label' => $label]);
$this->assertNotNull($field);
}
}
|