编程语言
首页 > 编程语言> > php – 在Guzzle中同时模拟响应并使用历史中间件

php – 在Guzzle中同时模拟响应并使用历史中间件

作者:互联网

有没有办法在Guzzle中模拟响应和请求?

我有一个发送一些请求的类,我想测试.

在Guzzle doc中,我找到了一种方法,我可以单独模拟响应和请求.但我怎样才能将它们结合起来?

因为,如果使用历史堆栈,guzzle试图发送一个真实的请求.
和签证一样,当我模拟响应处理程序无法测试请求时.

class MyClass {

     public function __construct($guzzleClient) {

        $this->client = $guzzleClient;

    }

    public function registerUser($name, $lang)
    {

           $body = ['name' => $name, 'lang' = $lang, 'state' => 'online'];

           $response = $this->sendRequest('PUT', '/users', ['body' => $body];

           return $response->getStatusCode() == 201;        
    }

   protected function sendRequest($method, $resource, array $options = [])
   {

       try {
           $response = $this->client->request($method, $resource, $options);
       } catch (BadResponseException $e) {
           $response = $e->getResponse();
       }

       $this->response = $response;

      return $response;
  }

}

测试:

class MyClassTest {

  //....
 public function testRegisterUser()

 { 

    $guzzleMock = new \GuzzleHttp\Handler\MockHandler([
        new \GuzzleHttp\Psr7\Response(201, [], 'user created response'),
    ]);

    $guzzleClient = new \GuzzleHttp\Client(['handler' => $guzzleMock]);

    $myClass = new MyClass($guzzleClient);
    /**
    * But how can I check that request contains all fields that I put in the body? Or if I add some extra header?
    */
    $this->assertTrue($myClass->registerUser('John Doe', 'en'));


 }
 //...

}

解决方法:

@Alex Blex非常接近.

解:

$container = [];
$history = \GuzzleHttp\Middleware::history($container);

$guzzleMock = new \GuzzleHttp\Handler\MockHandler([
    new \GuzzleHttp\Psr7\Response(201, [], 'user created response'),
]);

$stack = \GuzzleHttp\HandlerStack::create($guzzleMock);

$stack->push($history);

$guzzleClient = new \GuzzleHttp\Client(['handler' => $stack]);

标签:php,unit-testing,guzzle,guzzle6,guzzlehttp
来源: https://codeday.me/bug/20190527/1164722.html