-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTestClientTestExample.php
54 lines (44 loc) · 1.35 KB
/
TestClientTestExample.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
<?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\TestClientTrait;
class TestClientTestExample extends TestCase
{
use TestClientTrait;
public function testMethodOne(): void
{
$queue = [
new Response(200, [], '{"ok":true}'),
];
$config = [
'base_uri' => 'https://domain.test',
];
$service = new ServiceExample(
$this->createTestHttpClient($queue, $config)
);
$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}'),
];
$config = [
'base_uri' => 'https://domain.test',
];
$clientConfig = $this->createTestHttpClientConfig($queue, $config);
$service = new ServiceExample(
new Client($clientConfig)
);
$result = $service->methodTwo([
'foo' => 'bar',
]);
self::assertSame(200, $result->getStatusCode());
self::assertSame('{"ok":true}', $result->getBody()->getContents());
}
}