forked from PCextreme/cloudstack-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRequestFactoryTest.php
More file actions
64 lines (48 loc) · 1.94 KB
/
RequestFactoryTest.php
File metadata and controls
64 lines (48 loc) · 1.94 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?php
namespace PCextreme\Cloudstack\Test;
use PCextreme\Cloudstack\RequestFactory;
use Psr\Http\Message\RequestInterface;
use Mockery as m;
class RequestFactoryTest extends \PHPUnit_Framework_TestCase
{
/**
* @var RequestFactory
*/
protected $factory;
public function setUp()
{
$this->factory = new RequestFactory;
}
public function testGetRequest()
{
$method = 'get';
$uri = '/test';
$request = $this->factory->getRequest($method, $uri);
$this->assertInstanceOf(RequestInterface::class, $request);
$this->assertSame(strtoupper($method), $request->getMethod());
$this->assertSame($uri, (string) $request->getUri());
$headers = ['X-Test' => 'Foo'];
$body = 'test body';
$protocolVersion = '1.0';
$request = $this->factory->getRequest($method, $uri, $headers, $body, $protocolVersion);
$this->assertTrue($request->hasHeader('X-Test'));
$this->assertSame($body, (string) $request->getBody());
$this->assertSame($protocolVersion, $request->getProtocolVersion());
}
public function testGetRequestWithOptions()
{
$method = 'head';
$uri = '/test/options';
$request = $this->factory->getRequestWithOptions($method, $uri);
$this->assertInstanceOf(RequestInterface::class, $request);
$this->assertSame(strtoupper($method), $request->getMethod());
$this->assertSame($uri, (string) $request->getUri());
$options = [
'body' => 'another=test&form=body',
'headers' => ['Content-Type' => 'application/x-www-form-urlencoded'],
];
$request = $this->factory->getRequestWithOptions($method, $uri, $options);
$this->assertContains($options['headers']['Content-Type'], $request->getHeader('Content-Type'));
$this->assertSame($options['body'], (string) $request->getBody());
}
}