40 lines
1.2 KiB
PHP
Raw Normal View History

2013-07-23 17:34:50 -07:00
<?PHP
namespace Mailgun\Tests\Unsubscribes;
2013-07-24 16:25:24 -07:00
use Mailgun\Tests\MailgunClientTest;
2013-07-23 17:34:50 -07:00
class UnsubscribeTest extends \Mailgun\Tests\MailgunTestCase{
private $client;
public function setUp(){
2013-07-24 16:25:24 -07:00
$this->client = new MailgunClientTest("My-Super-Awesome-API-Key", "samples.mailgun.org", false);
2013-07-23 17:34:50 -07:00
}
2013-07-24 16:25:24 -07:00
public function testAddAddress(){
$client = $this->client->Unsubscribes();
$response = $client->addAddress("test@samples.mailgun.org");
2013-07-24 16:25:24 -07:00
$httpCode = $response->http_response_code;
2013-07-23 17:34:50 -07:00
$this->assertEquals(200, $httpCode);
}
2013-07-24 16:25:24 -07:00
public function testDeleteAddress(){
$client = $this->client->Unsubscribes();
$response = $client->deleteAddress("test@samples.mailgun.org");
2013-07-24 16:25:24 -07:00
$httpCode = $response->http_response_code;
$this->assertEquals(200, $httpCode);
}
public function testGetAddress(){
$client = $this->client->Unsubscribes();
$response = $client->getUnsubscribe("test@samples.mailgun.org");
2013-07-24 16:25:24 -07:00
$httpCode = $response->http_response_code;
$this->assertEquals(200, $httpCode);
}
public function testGetAddresses(){
$client = $this->client->Unsubscribes();
$response = $client->getUnsubscribes("1", "30");
2013-07-24 16:25:24 -07:00
$httpCode = $response->http_response_code;
2013-07-23 17:34:50 -07:00
$this->assertEquals(200, $httpCode);
}
}