Spaces:
No application file
No application file
File size: 2,181 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 |
<?php
namespace Mautic\LeadBundle\Tests\Twig;
use Mautic\LeadBundle\Entity\DoNotContact;
use Mautic\LeadBundle\Exception\UnknownDncReasonException;
use Mautic\LeadBundle\Twig\Helper\DncReasonHelper;
use Symfony\Contracts\Translation\TranslatorInterface;
class DncReasonHelperTest extends \PHPUnit\Framework\TestCase
{
/**
* @var array<int, string>
*/
private $reasonTo = [
DoNotContact::IS_CONTACTABLE => 'mautic.lead.event.donotcontact_contactable',
DoNotContact::UNSUBSCRIBED => 'mautic.lead.event.donotcontact_unsubscribed',
DoNotContact::BOUNCED => 'mautic.lead.event.donotcontact_bounced',
DoNotContact::MANUAL => 'mautic.lead.event.donotcontact_manual',
];
/**
* @var array<string, string>
*/
private $translations = [
'mautic.lead.event.donotcontact_contactable' => 'a',
'mautic.lead.event.donotcontact_unsubscribed' => 'b',
'mautic.lead.event.donotcontact_bounced' => 'c',
'mautic.lead.event.donotcontact_manual' => 'd',
];
public function testToText(): void
{
foreach ($this->reasonTo as $reasonId => $translationKey) {
$translationResult = $this->translations[$translationKey];
$translator = $this->createMock(TranslatorInterface::class);
$translator->expects($this->once())
->method('trans')
->with($translationKey)
->willReturn($translationResult);
$dncReasonHelper = new DncReasonHelper($translator);
$this->assertSame($translationResult, $dncReasonHelper->toText($reasonId));
}
$translator = $this->createMock(TranslatorInterface::class);
$dncReasonHelper = new DncReasonHelper($translator);
$this->expectException(UnknownDncReasonException::class);
$dncReasonHelper->toText(999);
}
public function testGetName(): void
{
$translator = $this->createMock(TranslatorInterface::class);
$dncReasonHelper = new DncReasonHelper($translator);
$this->assertSame('lead_dnc_reason', $dncReasonHelper->getName());
}
}
|