mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2024-11-22 20:46:03 +03:00
a4aba16061
* Added a way to get attachments * Added some tests * cs * minor * Removed declare_strict * Typos * Bugfixes * Fixed bugs
48 lines
1.2 KiB
PHP
48 lines
1.2 KiB
PHP
<?php
|
|
|
|
/*
|
|
* Copyright (C) 2013 Mailgun
|
|
*
|
|
* This software may be modified and distributed under the terms
|
|
* of the MIT license. See the LICENSE file for details.
|
|
*/
|
|
|
|
namespace Mailgun\Tests\Api;
|
|
|
|
use Mailgun\Api\Attachment;
|
|
use Mailgun\Exception\InvalidArgumentException;
|
|
use Mailgun\Model\Attachment\Attachment as Model;
|
|
|
|
class AttachmentTest extends TestCase
|
|
{
|
|
protected function getApiClass()
|
|
{
|
|
return Attachment::class;
|
|
}
|
|
|
|
public function testShow()
|
|
{
|
|
$uri = 'https://api.mailgun.org/v2/domains/mydomain.com/messages/WyJhOTM2NDk1ODA3Iiw/attachments/0';
|
|
$this->setRequestMethod('GET');
|
|
$this->setHydrateClass(Model::class);
|
|
$this->setRequestUri($uri);
|
|
|
|
$api = $this->getApiInstance();
|
|
$api->show($uri);
|
|
}
|
|
|
|
public function testShowWrongUri()
|
|
{
|
|
$api = $this->getApiInstance();
|
|
$this->expectException(InvalidArgumentException::class);
|
|
$api->show('https://api.mailgun.org/v2/domains/mydomain.com');
|
|
}
|
|
|
|
public function testShowNonMailgunUri()
|
|
{
|
|
$api = $this->getApiInstance();
|
|
$this->expectException(InvalidArgumentException::class);
|
|
$api->show('https://example.com/v2/domains/mailgun.net?x=attachments/0');
|
|
}
|
|
}
|