Example #1
0
 /**
  * Make sure that the request sent is correct when updating authorization.
  *
  * @return void
  */
 public function testUpdateAuthorization()
 {
     $this->mock->addResponse(new Response(204));
     $order = new Order($this->connector, '0002');
     $order->updateAuthorization(['data' => 'sent in']);
     $request = $this->history->getLastRequest();
     $this->assertEquals('PATCH', $request->getMethod());
     $this->assertEquals('/ordermanagement/v1/orders/0002/authorization', $request->getPath());
     $this->assertEquals('application/json', $request->getHeader('Content-Type'));
     $this->assertEquals('{"data":"sent in"}', strval($request->getBody()));
     $this->assertAuthorization($request);
 }
Example #2
0
 /**
  * Make sure an unknown status code response results in an exception.
  *
  * @return void
  */
 public function testUpdateAuthorizationInvalidStatusCode()
 {
     $data = ['data' => 'goes here'];
     $this->connector->expects($this->once())->method('createRequest')->with('/ordermanagement/v1/orders/12345/authorization', 'PATCH', ['json' => $data])->will($this->returnValue($this->request));
     $this->connector->expects($this->once())->method('send')->with($this->request)->will($this->returnValue($this->response));
     $this->response->expects($this->once())->method('getStatusCode')->will($this->returnValue('200'));
     $order = new Order($this->connector, '12345');
     $this->setExpectedException('RuntimeException', 'Unexpected response status code: 200');
     $order->updateAuthorization($data);
 }