Я новичок в OmniPay, поэкспериментируя с ним, пытаясь создать простой пользовательский шлюз и создать модульный тест с поддельным ответом json http.
В GatewayTest.php я установил ложный HTTP-ответ:
public function testPurchaseSuccess()
{
$this->setMockHttpResponse('TransactionSuccess.txt');
$response = $this->gateway->purchase($this->options)->send();
echo $response->isSuccessful();
$this->assertEquals(true, $response->isSuccessful());
}
В PurchaseRequest.php я пытаюсь получить его как-то:
public function sendData($data)
{
$httpResponse = //how do I get the mock http response set before?
return $this->response = new PurchaseResponse($this, $httpResponse->json());
}
Так как же получить фиктивный http-ответ в PurchaseRequest.php?
— ОБНОВИТЬ —
Оказалось, что в моем PurchaseResponse.php
use Omnipay\Common\Message\RequestInterface;
//and...
public function __construct(RequestInterface $request, $data)
{
parent::__construct($request, $data);
}
скучал.
Теперь с $httpResponse = $this->httpClient->post(null)->send();
в BuyRequest.php с утверждениями все в порядке, но когда я использую httpClient, Guzzle выдает ошибку 404. Я проверил Документы Гузла и попытался создать ложный ответ, но затем мои утверждения снова не сработали, и 404 остается:
PurchaseRequest.php
public function sendData($data)
{
$plugin = new Guzzle\Plugin\Mock\MockPlugin();
$plugin->addResponse(new Guzzle\Http\Message\Response(200));
$this->httpClient->addSubscriber($plugin);
$httpResponse = $this->httpClient->post(null)->send();
return $this->response = new PurchaseResponse($this, $httpResponse->json());
}
Есть предложения, как избавиться от 404?
Итак, вот что оказалось решением:
Оригинальная проблема
Это отсутствовало в моем PucrhaseResponse.php:
use Omnipay\Common\Message\RequestInterface;
//and...
public function __construct(RequestInterface $request, $data)
{
parent::__construct($request, $data);
}
PurchaseRequest.php:
public function sendData($data)
{
$httpResponse = $this->httpClient->post(null)->send();
return $this->response = new PurchaseResponse($this, $httpResponse->json());
}
Решение проблемы 404 в обновлении
Для того, чтобы Guzzle не выдавал исключения, мне пришлось добавить слушатель для request.error.
PurchaseRequest.php:
public function sendData($data)
{
$this->httpClient->getEventDispatcher()->addListener(
'request.error',
function (\Guzzle\Common\Event $event) {
$event->stopPropagation();
}
);
$httpResponse = $this->httpClient->post(null)->send();
return $this->response = new PurchaseResponse($this, $httpResponse->json());
}
Других решений пока нет …