diff options
author | Sandro Lutz <sandro.lutz@temparus.ch> | 2017-02-07 00:12:45 +0100 |
---|---|---|
committer | Sandro Lutz <sandro.lutz@temparus.ch> | 2017-02-07 00:15:30 +0100 |
commit | fa1d607bfa951711a2c358f889db56962c179153 (patch) | |
tree | 904b6bd3b7f9d2ed133f64da22b3fb9bbfbf1842 /tests/lib/Http/Client/ResponseTest.php | |
parent | ff3fa538e43bb38a5ff142b07216b9de79645c01 (diff) | |
parent | b55f5af7eaab6f827989407fa7b8d51cbb877eab (diff) | |
download | nextcloud-server-fa1d607bfa951711a2c358f889db56962c179153.tar.gz nextcloud-server-fa1d607bfa951711a2c358f889db56962c179153.zip |
Merge remote-tracking branch 'nextcloud/master'
Signed-off-by: Sandro Lutz <sandro.lutz@temparus.ch>
Diffstat (limited to 'tests/lib/Http/Client/ResponseTest.php')
-rw-r--r-- | tests/lib/Http/Client/ResponseTest.php | 27 |
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')); } } |