mautic / app /bundles /SmsBundle /Tests /Sms /TransportChainTest.php
chrisbryan17's picture
Upload folder using huggingface_hub
d2897cd verified
<?php
namespace Mautic\SmsBundle\Tests\Sms;
use Mautic\CoreBundle\Test\MauticMysqlTestCase;
use Mautic\LeadBundle\Entity\Lead;
use Mautic\SmsBundle\Integration\Twilio\TwilioTransport;
use Mautic\SmsBundle\Sms\TransportChain;
use Mautic\SmsBundle\Sms\TransportInterface;
use PHPUnit\Framework\MockObject\MockObject;
class TransportChainTest extends MauticMysqlTestCase
{
/**
* @var TransportChain|MockObject
*/
private TransportChain $transportChain;
/**
* @var TransportInterface|MockObject
*/
private MockObject $twilioTransport;
/**
* Call protected/private method of a class.
*
* @param object &$object Instantiated object that we will run method on
* @param string $methodName Method name to call
* @param array $parameters array of parameters to pass into method
*
* @return mixed method return
*
* @throws \ReflectionException
*/
public function invokeMethod(&$object, $methodName, array $parameters = [])
{
$reflection = new \ReflectionClass($object::class);
$method = $reflection->getMethod($methodName);
$method->setAccessible(true);
return $method->invokeArgs($object, $parameters);
}
protected function setUp(): void
{
parent::setUp();
$this->transportChain = new TransportChain(
'mautic.test.twilio.mock',
static::getContainer()->get('mautic.helper.integration')
);
$this->twilioTransport = $this->createMock(TwilioTransport::class);
$this->twilioTransport
->method('sendSMS')
->will($this->returnValue('lol'));
}
public function testAddTransport(): void
{
$count = count($this->transportChain->getTransports());
$this->transportChain->addTransport('mautic.transport.test', static::getContainer()->get('mautic.sms.twilio.transport'), 'mautic.transport.test', 'Twilio');
$this->assertCount($count + 1, $this->transportChain->getTransports());
}
public function testSendSms(): void
{
$this->testAddTransport();
$this->transportChain->addTransport('mautic.test.twilio.mock', $this->twilioTransport, 'mautic.test.twilio.mock', 'Twilio');
$lead = new Lead();
$lead->setMobile('+123456789');
try {
$this->transportChain->sendSms($lead, 'Yeah');
} catch (\Exception $e) {
$message = $e->getMessage();
$this->assertEquals('Primary SMS transport is not enabled', $message);
}
}
}