mailgun-php/tests/Api/EventTest.php

89 lines
2.2 KiB
PHP
Raw Normal View History

2018-08-05 01:45:03 +03:00
<?php
2018-08-05 10:55:49 +03:00
/*
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
*/
2018-08-05 01:45:03 +03:00
namespace Mailgun\Tests\Api;
2018-08-05 10:54:41 +03:00
use GuzzleHttp\Psr7\Response;
2018-08-05 01:45:03 +03:00
use Mailgun\Api\Event;
2018-08-05 10:54:41 +03:00
use Mailgun\Exception\InvalidArgumentException;
use Mailgun\Model\Event\EventResponse;
2018-08-05 01:45:03 +03:00
class EventTest extends TestCase
{
protected function getApiClass()
{
return Event::class;
}
public function testGet()
{
$this->setRequestMethod('GET');
$this->setRequestUri('/v3/example.com/events');
2018-08-05 10:55:49 +03:00
$this->setHttpResponse(new Response(200, ['Content-Type' => 'application/json'], <<<'JSON'
2018-08-05 10:54:41 +03:00
{
"items": [
{
"tags": [],
"id": "czsjqFATSlC3QtAK-C80nw",
"timestamp": 1376325780.160809,
"envelope": {
"sender": "me@samples.mailgun.org",
"transport": ""
},
"event": "accepted",
"campaigns": [],
"user-variables": {},
"flags": {
"is-authenticated": true,
"is-test-mode": false
},
"message": {
"headers": {
"to": "foo@example.com",
"message-id": "20130812164300.28108.52546@samples.mailgun.org",
"from": "Excited User <me@samples.mailgun.org>",
"subject": "Hello"
},
"attachments": [],
"recipients": [
"foo@example.com",
"baz@example.com",
"bar@example.com"
],
"size": 69
},
"recipient": "baz@example.com",
"method": "http"
}
],
"paging": {
"next":
"https://api.mailgun.net/v3/samples.mailgun.org/events/W3siY...",
"previous":
"https://api.mailgun.net/v3/samples.mailgun.org/events/Lkawm..."
}
}
JSON
));
2018-08-05 01:45:03 +03:00
$api = $this->getApiInstance();
2018-08-05 10:54:41 +03:00
$event = $api->get('example.com');
$this->assertInstanceOf(EventResponse::class, $event);
$this->assertCount(1, $event->getItems());
$this->assertEquals('accepted', $event->getItems()[0]->getEvent());
}
public function testGetWithEmptyDomain()
{
$api = $this->getApiMock();
$this->expectException(InvalidArgumentException::class);
$api->get('');
2018-08-05 01:45:03 +03:00
}
}