Skip to content

Commit

Permalink
Merge pull request #2912 from nextcloud/increase-coverage-response.php
Browse files Browse the repository at this point in the history
Add 100% coverage for response.php
  • Loading branch information
LukasReschke authored Jan 2, 2017
2 parents e2e4677 + 746fc3d commit 1b8aae8
Showing 1 changed file with 24 additions and 3 deletions.
27 changes: 24 additions & 3 deletions tests/lib/Http/Client/ResponseTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

namespace Test\Http\Client;

use Guzzle\Stream\Stream;
use GuzzleHttp\Stream\Stream;
use GuzzleHttp\Message\Response as GuzzleResponse;
use OC\Http\Client\Response;

Expand All @@ -27,12 +27,33 @@ public function setUp() {
$this->response = new Response($this->guzzleResponse);
}

public function testGetBody() {
$this->guzzleResponse->setBody(Stream::factory('MyResponse'));
$this->assertSame('MyResponse', $this->response->getBody());
}

public function testGetStatusCode() {
$this->assertEquals(1337, $this->response->getStatusCode());
$this->assertSame(1337, $this->response->getStatusCode());
}

public function testGetHeader() {
$this->guzzleResponse->setHeader('bar', 'foo');
$this->assertEquals('foo', $this->response->getHeader('bar'));
$this->assertSame('foo', $this->response->getHeader('bar'));
}

public function testGetHeaders() {
$this->guzzleResponse->setHeader('bar', 'foo');
$this->guzzleResponse->setHeader('x-awesome', 'yes');

$expected = [
'bar' => [
0 => 'foo',
],
'x-awesome' => [
0 => 'yes',
],
];
$this->assertSame($expected, $this->response->getHeaders());
$this->assertSame('yes', $this->response->getHeader('x-awesome'));
}
}

0 comments on commit 1b8aae8

Please sign in to comment.