mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2024-11-22 12:36:02 +03:00
da5ccde2a7
* Adding Mailing list API * Added tests * cs * Fixed the tests * code cleanup
141 lines
3.4 KiB
PHP
141 lines
3.4 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 GuzzleHttp\Psr7\Response;
|
|
use Mailgun\Api\MailingList;
|
|
use Mailgun\Exception\InvalidArgumentException;
|
|
|
|
class MailingListTest extends TestCase
|
|
{
|
|
public function testPages()
|
|
{
|
|
$data = [
|
|
'limit' => 10,
|
|
];
|
|
|
|
$api = $this->getApiMock();
|
|
$api->expects($this->once())
|
|
->method('httpGet')
|
|
->with('/v3/lists/pages', $data)
|
|
->willReturn(new Response());
|
|
|
|
$api->pages(10);
|
|
}
|
|
|
|
public function testPagesInvalidArgument()
|
|
{
|
|
$this->setExpectedException(InvalidArgumentException::class);
|
|
$api = $this->getApiMock();
|
|
$limit = -1;
|
|
|
|
$api->pages($limit);
|
|
}
|
|
|
|
public function testCreate()
|
|
{
|
|
$data = [
|
|
'address' => 'foo@example.com',
|
|
'name' => 'Foo',
|
|
'description' => 'Description',
|
|
'access_level' => 'readonly',
|
|
];
|
|
|
|
$api = $this->getApiMock();
|
|
$api->expects($this->once())
|
|
->method('httpPost')
|
|
->with('/v3/lists', $data)
|
|
->willReturn(new Response());
|
|
|
|
$api->create($address = 'foo@example.com', $name = 'Foo', $description = 'Description', $accessLevel = 'readonly');
|
|
}
|
|
|
|
public function testCreateInvalidAddress()
|
|
{
|
|
$this->setExpectedException(InvalidArgumentException::class);
|
|
|
|
$api = $this->getApiMock();
|
|
$api->create($address = '', $name = 'Foo', $description = 'Description', $accessLevel = 'readonly');
|
|
}
|
|
|
|
public function testCreateInvalidAccessLevel()
|
|
{
|
|
$this->setExpectedException(InvalidArgumentException::class);
|
|
|
|
$api = $this->getApiMock();
|
|
$api->create($address = '', $name = 'Foo', $description = 'Description', $accessLevel = 'admin');
|
|
}
|
|
|
|
public function testShow()
|
|
{
|
|
$api = $this->getApiMock();
|
|
$api->expects($this->once())
|
|
->method('httpGet')
|
|
->with('/v3/lists/address')
|
|
->willReturn(new Response());
|
|
|
|
$api->show('address');
|
|
}
|
|
|
|
public function testShowInvalidAddress()
|
|
{
|
|
$this->setExpectedException(InvalidArgumentException::class);
|
|
|
|
$api = $this->getApiMock();
|
|
$api->show('');
|
|
}
|
|
|
|
public function testUpdate()
|
|
{
|
|
$data = [
|
|
'description' => 'desc',
|
|
];
|
|
|
|
$api = $this->getApiMock();
|
|
$api->expects($this->once())
|
|
->method('httpPut')
|
|
->with('/v3/lists/address', $data)
|
|
->willReturn(new Response());
|
|
|
|
$api->update('address', $data);
|
|
}
|
|
|
|
public function testUpdateInvalidArgument()
|
|
{
|
|
$this->setExpectedException(InvalidArgumentException::class);
|
|
|
|
$data = [
|
|
'access_level' => 'foo',
|
|
];
|
|
|
|
$api = $this->getApiMock();
|
|
$api->update('address', $data);
|
|
}
|
|
|
|
public function testDelete()
|
|
{
|
|
$api = $this->getApiMock();
|
|
$api->expects($this->once())
|
|
->method('httpDelete')
|
|
->with('/v3/lists/address')
|
|
->willReturn(new Response());
|
|
|
|
$api->delete('address');
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function getApiClass()
|
|
{
|
|
return MailingList::class;
|
|
}
|
|
}
|