2015-01-24 5 views
0

Я новичок в OmniPay, играя с ней и пытаясь создать простой пользовательский шлюз и создаю единичный тест с помощью mock json http response.Omnipay PHPUnit Guzzle httpClient 404 Ошибка - mock json

В 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?

--- UPDATE ---

Оказалось, что в моем PurchaseResponse.php

use Omnipay\Common\Message\RequestInterface; 

//and... 

public function __construct(RequestInterface $request, $data) 
{ 
    parent::__construct($request, $data); 
} 

отсутствует.

Теперь с $httpResponse = $this->httpClient->post(null)->send(); в PurchaseRequest.php утверждения в порядке, но когда я использую httpClient, Guzzle выдает ошибку 404. Я проверил Guzzle's docs и попытался создать макет ответ, но затем снова мои утверждения неудачу и 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?

ответ

0

Итак, вот что оказалось решение:

Оригинал Проблема

Это не хватало моего 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()); 
}