mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2024-11-23 21:16:02 +03:00
d5a49f2e6d
* Started on tag api * Added TagAPI * code style * cs * removed final * Adjusting to Davids feedback. * Added PagingProvider interface
76 lines
1.9 KiB
PHP
76 lines
1.9 KiB
PHP
<?php
|
|
|
|
/*
|
|
* Copyright (C) 2013-2016 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;
|
|
|
|
/**
|
|
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
|
|
* @author Contributors of https://github.com/KnpLabs/php-github-api
|
|
*/
|
|
abstract class TestCase extends \PHPUnit_Framework_TestCase
|
|
{
|
|
/**
|
|
* Private Mailgun API key.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $apiPrivKey;
|
|
|
|
/**
|
|
* Public Mailgun API key.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $apiPubKey;
|
|
|
|
/**
|
|
* Domain used for API testing.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $testDomain;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->apiPrivKey = getenv('MAILGUN_PRIV_KEY');
|
|
$this->apiPubKey = getenv('MAILGUN_PUB_KEY');
|
|
$this->testDomain = getenv('MAILGUN_DOMAIN');
|
|
}
|
|
|
|
abstract protected function getApiClass();
|
|
|
|
protected function getApiMock()
|
|
{
|
|
$httpClient = $this->getMockBuilder('Http\Client\HttpClient')
|
|
->setMethods(['sendRequest'])
|
|
->getMock();
|
|
$httpClient
|
|
->expects($this->any())
|
|
->method('sendRequest');
|
|
|
|
$requestClient = $this->getMockBuilder('Mailgun\RequestBuilder')
|
|
->setMethods(['create'])
|
|
->getMock();
|
|
|
|
$deserializer = $this->getMockBuilder('Mailgun\Deserializer\ResponseDeserializer')
|
|
->setMethods(['deserialize'])
|
|
->getMock();
|
|
|
|
return $this->getMockBuilder($this->getApiClass())
|
|
->setMethods(['httpGet', 'httpPost', 'httpPostRaw', 'httpDelete', 'httpPut'])
|
|
->setConstructorArgs([$httpClient, $requestClient, $deserializer])
|
|
->getMock();
|
|
}
|
|
|
|
protected function getMailgunClient()
|
|
{
|
|
return new \Mailgun\Mailgun($this->apiPrivKey);
|
|
}
|
|
}
|