File manager - Edit - /home/premiey/www/wp-content/plugins/ameliabooking/vendor/microsoft/microsoft-graph/tests/Http/GraphResponseTest.php
Back
<?php use PHPUnit\Framework\TestCase; use Microsoft\Graph\Graph; use Microsoft\Graph\Http\GraphRequest; use Microsoft\Graph\Http\GraphResponse; use Microsoft\Graph\Exception\GraphException; use Microsoft\Graph\Model; class GraphResponseTest extends TestCase { public $client; public $request; public $response; public $responseBody; public function setUp() { $this->responseBody = array('body' => 'content', 'displayName' => 'Bob Barker'); $body = json_encode($this->responseBody); $multiBody = json_encode(array('value' => array('1' => array('givenName' => 'Bob'), '2' => array('givenName' => 'Drew')))); $valueBody = json_encode(array('value' => 'Bob Barker')); $mock = new AmeliaGuzzleHttp\Handler\MockHandler([ new AmeliaGuzzleHttp\Psr7\Response(200, ['foo' => 'bar'], $body), new AmeliaGuzzleHttp\Psr7\Response(200, ['foo' => 'bar'], $body), new AmeliaGuzzleHttp\Psr7\Response(200, ['foo' => 'bar'], $multiBody), new AmeliaGuzzleHttp\Psr7\Response(200, ['foo' => 'bar'], $valueBody), ]); $handler = AmeliaGuzzleHttp\HandlerStack::create($mock); $this->client = new AmeliaGuzzleHttp\Client(['handler' => $handler]); $this->request = new GraphRequest("GET", "/endpoint", "token", "baseUrl", "/version"); $this->response = new GraphResponse($this->request, "{response}", "200", ["foo" => "bar"]); } public function testGetResponseAsObject() { $this->request->setReturnType(Model\User::class); $response = $this->request->execute($this->client); $this->assertInstanceOf(Model\User::class, $response); $this->assertEquals($this->responseBody['displayName'], $response->getDisplayName()); } public function testGetResponseHeaders() { $response = $this->request->execute($this->client); $headers = $response->getHeaders(); $this->assertEquals(["foo" => ["bar"]], $headers); } public function testGetNextLink() { $body = json_encode(array('@odata.nextLink' => 'https://url.com/resource?$top=4&skip=4')); $response = new GraphResponse($this->request, $body); $nextLink = $response->getNextLink(); $this->assertEquals('https://url.com/resource?$top=4&skip=4', $nextLink); } public function testDecodeBody() { //Temporarily make decodeBody() public $reflectionMethod = new ReflectionMethod('Microsoft\Graph\Http\GraphResponse', '_decodeBody'); $reflectionMethod->setAccessible(true); $response = new GraphResponse($this->request, json_encode($this->responseBody)); $decodedBody = $reflectionMethod->invokeArgs($response, array()); $this->assertEquals($this->responseBody, $decodedBody); } public function testDecodeEmptyBody() { //Temporarily make decodeBody() public $reflectionMethod = new ReflectionMethod('Microsoft\Graph\Http\GraphResponse', '_decodeBody'); $reflectionMethod->setAccessible(true); $response = new GraphResponse($this->request); $decodedBody = $reflectionMethod->invokeArgs($response, array()); $this->assertEquals(array(), $decodedBody); } public function testGetHeaders() { $headers = $this->response->getHeaders(); $this->assertEquals(["foo" => "bar"], $headers); } public function testGetBody() { $response = $this->request->execute($this->client); $this->assertInstanceOf(GraphResponse::class, $response); $body = $response->getBody(); $this->assertEquals($this->responseBody, $body); } public function testGetRawBody() { $response = $this->request->execute($this->client); $body = $response->getRawBody(); $this->assertEquals(json_encode($this->responseBody), $body); } public function testGetStatus() { $response = $this->request->execute($this->client); $this->assertEquals('200', $response->getStatus()); } public function testGetMultipleObjects() { $this->request->execute($this->client); $this->request->execute($this->client); $hosts = $this->request->setReturnType(Model\User::class)->execute($this->client); $this->assertEquals(2, count($hosts)); $this->assertEquals("Bob", $hosts[0]->getGivenName()); } public function testGetValueObject() { $this->request->execute($this->client); $this->request->execute($this->client); $this->request->execute($this->client); $response = $this->request->setReturnType(Model\User::class)->execute($this->client); $this->assertInstanceOf(Model\User::class, $response); } }
| ver. 1.4 |
Github
|
.
| PHP 5.4.45 | Generation time: 0 |
proxy
|
phpinfo
|
Settings