-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRequestAssertsTestClientTestExample.php
62 lines (50 loc) · 1.85 KB
/
RequestAssertsTestClientTestExample.php
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
<?php
declare(strict_types=1);
namespace PHPUnit\Guzzle\TestClient\Example;
use GuzzleHttp\Client;
use GuzzleHttp\Psr7\Response;
use PHPUnit\Framework\TestCase;
use PHPUnit\Guzzle\TestClient\RequestAssertsTestClientTrait;
use Psr\Http\Message\RequestInterface;
class RequestAssertsTestClientTestExample extends TestCase
{
use RequestAssertsTestClientTrait;
public function testMethodOne(): void
{
$queue = [
new Response(200, [], '{"ok":true}'),
];
$assertsCallback = function (RequestInterface $request) {
self::assertSame('GET', $request->getMethod());
self::assertSame('/path-one', $request->getUri()->getPath());
return $request;
};
$service = new ServiceExample(
$this->createRequestAssertsTestHttpClient($queue, $assertsCallback)
);
$result = $service->methodOne();
self::assertSame(200, $result->getStatusCode());
self::assertSame('{"ok":true}', $result->getBody()->getContents());
}
public function testMethodTwo(): void
{
$queue = [
new Response(200, [], '{"ok":true}'),
];
$assertsCallback = function (RequestInterface $request) {
self::assertSame('POST', $request->getMethod());
self::assertSame('/path-two', $request->getUri()->getPath());
self::assertSame('{"foo":"bar"}', $request->getBody()->getContents());
return $request;
};
$config = $this->createRequestAssertsTestHttpClientConfig($queue, $assertsCallback);
$service = new ServiceExample(
new Client($config)
);
$result = $service->methodTwo([
'foo' => 'bar',
]);
self::assertSame(200, $result->getStatusCode());
self::assertSame('{"ok":true}', $result->getBody()->getContents());
}
}