summaryrefslogtreecommitdiffstats
path: root/tests/lib/Http/Client/ResponseTest.php
blob: 685f34a0bafd3d738ca4a29f897f4cf059546e22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?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 Test\Http\Client;

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

/**
 * 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'));
	}
}