mailgun-php/tests/Api/AttachmentTest.php

48 lines
1.2 KiB
PHP
Raw Normal View History

<?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');
}
}