MicrosoftTeamsTransport example

use Symfony\Component\Notifier\Message\SmsMessage;
use Symfony\Component\Notifier\Notification\Notification;
use Symfony\Component\Notifier\Test\TransportTestCase;
use Symfony\Component\Notifier\Tests\Transport\DummyMessage;
use Symfony\Contracts\HttpClient\HttpClientInterface;
use Symfony\Contracts\HttpClient\ResponseInterface;

final class MicrosoftTeamsTransportTest extends TransportTestCase
{
    public static function createTransport(HttpClientInterface $client = null): MicrosoftTeamsTransport
    {
        return (new MicrosoftTeamsTransport('/testPath', $client ?? new MockHttpClient()))->setHost('host.test');
    }

    public static function toStringProvider(): iterable
    {
        yield ['microsoftteams://host.test/testPath', self::createTransport()];
    }

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

    


        $path = $dsn->getPath();

        if (null === $path) {
            throw new IncompleteDsnException('Path is not set.', 'microsoftteams://'.$dsn->getHost());
        }

        $host = $dsn->getHost();
        $port = $dsn->getPort();

        return (new MicrosoftTeamsTransport($path$this->client, $this->dispatcher))->setHost($host)->setPort($port);
    }

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