mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2024-11-22 04:26:02 +03:00
Make sure we dont use any risky tests
This commit is contained in:
parent
0f54332d0e
commit
3fbd33f640
@ -26,7 +26,7 @@ abstract class TestCase extends \PHPUnit\Framework\TestCase
|
||||
|
||||
private $requestUri;
|
||||
|
||||
private $requestHeaders;
|
||||
private $requestHeaders = [];
|
||||
|
||||
private $requestBody;
|
||||
|
||||
@ -89,14 +89,23 @@ abstract class TestCase extends \PHPUnit\Framework\TestCase
|
||||
$requestClient = $this->getMockBuilder('Mailgun\HttpClient\RequestBuilder')
|
||||
->setMethods(['create'])
|
||||
->getMock();
|
||||
$requestClient->method('create')
|
||||
->with(
|
||||
$this->callback([$this, 'validateRequestMethod']),
|
||||
$this->callback([$this, 'validateRequestUri']),
|
||||
$this->callback([$this, 'validateRequestHeaders']),
|
||||
$this->callback([$this, 'validateRequestBody'])
|
||||
)
|
||||
->willReturn(new Request('GET', '/'));
|
||||
|
||||
if (null !== $this->requestMethod
|
||||
|| null !== $this->requestUri
|
||||
|| !empty($this->requestHeaders)
|
||||
|| !empty($this->requestBody)
|
||||
) {
|
||||
$requestClient
|
||||
->expects($this->once())
|
||||
->method('create')
|
||||
->with(
|
||||
$this->callback([$this, 'validateRequestMethod']),
|
||||
$this->callback([$this, 'validateRequestUri']),
|
||||
$this->callback([$this, 'validateRequestHeaders']),
|
||||
$this->callback([$this, 'validateRequestBody'])
|
||||
)
|
||||
->willReturn(new Request('GET', '/'));
|
||||
}
|
||||
|
||||
$hydrator = new ModelHydrator();
|
||||
if (null === $this->httpResponse) {
|
||||
@ -198,18 +207,13 @@ abstract class TestCase extends \PHPUnit\Framework\TestCase
|
||||
|
||||
/**
|
||||
* Set request http method.
|
||||
*
|
||||
* @param string $httpMethod
|
||||
*/
|
||||
public function setRequestMethod($httpMethod)
|
||||
public function setRequestMethod(string $httpMethod)
|
||||
{
|
||||
$this->requestMethod = $httpMethod;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $requestUri
|
||||
*/
|
||||
public function setRequestUri($requestUri)
|
||||
public function setRequestUri(string $requestUri)
|
||||
{
|
||||
$this->requestUri = $requestUri;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user