diff options
Diffstat (limited to 'tests/lib/http/client/responsetest.php')
-rw-r--r-- | tests/lib/http/client/responsetest.php | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/tests/lib/http/client/responsetest.php b/tests/lib/http/client/responsetest.php new file mode 100644 index 00000000000..d9b181a8e28 --- /dev/null +++ b/tests/lib/http/client/responsetest.php @@ -0,0 +1,37 @@ +<?php +/** + * Copyright (c) 2015 Lukas Reschke <lukas@owncloud.com> + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC\Http\Client; + +use Guzzle\Stream\Stream; +use GuzzleHttp\Message\Response as GuzzleResponse; + +/** + * Class ResponseTest + */ +class ResponseTest extends \Test\TestCase { + /** @var Response */ + private $response; + /** @var GuzzleResponse */ + private $guzzleResponse; + + public function setUp() { + parent::setUp(); + $this->guzzleResponse = new GuzzleResponse(1337); + $this->response = new Response($this->guzzleResponse); + } + + public function testGetStatusCode() { + $this->assertEquals(1337, $this->response->getStatusCode()); + } + + public function testGetHeader() { + $this->guzzleResponse->setHeader('bar', 'foo'); + $this->assertEquals('foo', $this->response->getHeader('bar')); + } +} |