OctopushTransport example

use Symfony\Component\Notifier\Bridge\Octopush\OctopushTransport;
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 OctopushTransportTest extends TransportTestCase
{
    public static function createTransport(HttpClientInterface $client = null): OctopushTransport
    {
        return new OctopushTransport('userLogin', 'apiKey', 'from', 'type', $client ?? new MockHttpClient());
    }

    public static function toStringProvider(): iterable
    {
        yield ['octopush://www.octopush-dm.com?from=from&type=type', self::createTransport()];
    }

    public static function supportedMessagesProvider(): iterable
    {
        yield [new SmsMessage('33611223344', 'Hello!')];
    }

    
throw new UnsupportedSchemeException($dsn, 'octopush', $this->getSupportedSchemes());
        }

        $userLogin = urlencode($this->getUser($dsn));
        $apiKey = $this->getPassword($dsn);
        $from = $dsn->getRequiredOption('from');
        $type = $dsn->getRequiredOption('type');

        $host = 'default' === $dsn->getHost() ? null : $dsn->getHost();
        $port = $dsn->getPort();

        return (new OctopushTransport($userLogin$apiKey$from$type$this->client, $this->dispatcher))->setHost($host)->setPort($port);
    }

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