AllMySmsTransport example

use Symfony\Component\Notifier\Bridge\AllMySms\AllMySmsTransport;
use Symfony\Component\Notifier\Message\ChatMessage;
use Symfony\Component\Notifier\Message\SmsMessage;
use Symfony\Component\Notifier\Test\TransportTestCase;
use Symfony\Component\Notifier\Tests\Transport\DummyMessage;
use Symfony\Contracts\HttpClient\HttpClientInterface;

final class AllMySmsTransportTest extends TransportTestCase
{
    public static function createTransport(HttpClientInterface $client = null, string $from = null): AllMySmsTransport
    {
        return new AllMySmsTransport('login', 'apiKey', $from$client ?? new MockHttpClient());
    }

    public static function toStringProvider(): iterable
    {
        yield ['allmysms://api.allmysms.com', self::createTransport()];
        yield ['allmysms://api.allmysms.com?from=TEST', self::createTransport(null, 'TEST')];
    }

    public static function supportedMessagesProvider(): iterable
    {
        yield [new SmsMessage('0611223344', 'Hello!')];
        
if ('allmysms' !== $scheme) {
            throw new UnsupportedSchemeException($dsn, 'allmysms', $this->getSupportedSchemes());
        }

        $login = $this->getUser($dsn);
        $apiKey = $this->getPassword($dsn);
        $from = $dsn->getOption('from');
        $host = 'default' === $dsn->getHost() ? null : $dsn->getHost();
        $port = $dsn->getPort();

        return (new AllMySmsTransport($login$apiKey$from$this->client, $this->dispatcher))->setHost($host)->setPort($port);
    }

    protected function getSupportedSchemes(): array
    {
        return ['allmysms'];
    }
}
Home | Imprint | This part of the site doesn't use cookies.