mautic / app /bundles /CampaignBundle /Tests /Helper /ChannelExtractorTest.php
chrisbryan17's picture
Upload folder using huggingface_hub
d2897cd verified
<?php
namespace Mautic\CampaignBundle\Tests\Helper;
use Mautic\CampaignBundle\Entity\Event;
use Mautic\CampaignBundle\Entity\LeadEventLog;
use Mautic\CampaignBundle\EventCollector\Accessor\Event\AbstractEventAccessor;
use Mautic\CampaignBundle\Helper\ChannelExtractor;
class ChannelExtractorTest extends \PHPUnit\Framework\TestCase
{
public function testChannelIsSet(): void
{
$event = new Event();
$config = $this->createMock(AbstractEventAccessor::class);
$config->expects($this->once())
->method('getChannel')
->willReturn('email');
$log = new LeadEventLog();
ChannelExtractor::setChannel($log, $event, $config);
$this->assertEquals('email', $log->getChannel());
}
public function testChannelIsIgnoredIfSet(): void
{
$event = new Event();
$config = $this->createMock(AbstractEventAccessor::class);
$config->expects($this->never())
->method('getChannel');
$log = new LeadEventLog();
$log->setChannel('page');
ChannelExtractor::setChannel($log, $event, $config);
$this->assertEquals('page', $log->getChannel());
}
public function testChannelIdIsSet(): void
{
$event = new Event();
$event->setProperties(['email' => 1]);
$config = $this->createMock(AbstractEventAccessor::class);
$config->expects($this->once())
->method('getChannel')
->willReturn('email');
$config->expects($this->once())
->method('getChannelIdField')
->willReturn('email');
$log = new LeadEventLog();
ChannelExtractor::setChannel($log, $event, $config);
$this->assertEquals('email', $log->getChannel());
$this->assertEquals(1, $log->getChannelId());
}
public function testChannelIdIsIgnoredIfPropertiesAreEmpty(): void
{
$event = new Event();
$event->setProperties(null);
$config = $this->createMock(AbstractEventAccessor::class);
$config->expects($this->once())
->method('getChannel')
->willReturn('email');
$config->expects($this->once())
->method('getChannelIdField')
->willReturn('email');
$log = new LeadEventLog();
ChannelExtractor::setChannel($log, $event, $config);
$this->assertEquals('email', $log->getChannel());
$this->assertEquals(null, $log->getChannelId());
}
public function testChannelIdIsIgnoredIfChannelIdFieldIsNotSet(): void
{
$event = new Event();
$event->setProperties(['email' => 1]);
$config = $this->createMock(AbstractEventAccessor::class);
$config->expects($this->once())
->method('getChannel')
->willReturn('email');
$config->expects($this->once())
->method('getChannelIdField')
->willReturn(null);
$log = new LeadEventLog();
ChannelExtractor::setChannel($log, $event, $config);
$this->assertEquals('email', $log->getChannel());
$this->assertEquals(null, $log->getChannelId());
}
}