summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2017-01-02 15:16:35 +0100
committerLukas Reschke <lukas@statuscode.ch>2017-01-02 15:16:35 +0100
commit746fc3d3bf7205bcce66d1c610e20f9289237726 (patch)
tree786c38a0c2ea4ef467c598e9c10aa01b295f79d4 /tests
parent60a8a1a84484fd0f3ae8a7f46212850cd43b6c5c (diff)
downloadnextcloud-server-746fc3d3bf7205bcce66d1c610e20f9289237726.tar.gz
nextcloud-server-746fc3d3bf7205bcce66d1c610e20f9289237726.zip
Add 100% coverage for response.php
While already at https://github.com/nextcloud/server/pull/2911 I thought I can as well finish that one as well... Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/Http/Client/ResponseTest.php27
1 files changed, 24 insertions, 3 deletions
diff --git a/tests/lib/Http/Client/ResponseTest.php b/tests/lib/Http/Client/ResponseTest.php
index 685f34a0baf..2e5a47b7f4a 100644
--- a/tests/lib/Http/Client/ResponseTest.php
+++ b/tests/lib/Http/Client/ResponseTest.php
@@ -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;
@@ -27,12 +27,33 @@ class ResponseTest extends \Test\TestCase {
$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'));
}
}