-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClientTest.php
More file actions
73 lines (54 loc) · 2.02 KB
/
Copy pathClientTest.php
File metadata and controls
73 lines (54 loc) · 2.02 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
65
66
67
68
69
70
71
72
73
<?php
declare(strict_types=1);
namespace TestingBot\Tests\Unit;
use PHPUnit\Framework\TestCase;
use TestingBot\Client;
use TestingBot\Configuration\ClientConfig;
use TestingBot\Exception\ApiException;
use TestingBot\Exception\InvalidArgumentException;
use TestingBot\Http\Request;
use TestingBot\Tests\Support\FakeHttpClient;
final class ClientTest extends TestCase
{
public function testRequiresKey(): void
{
$this->expectException(InvalidArgumentException::class);
new Client('', 'secret');
}
public function testRequiresSecret(): void
{
$this->expectException(InvalidArgumentException::class);
new Client('key', '');
}
public function testBaseUrlGetsTrailingSlash(): void
{
$config = ClientConfig::fromArray('key', 'secret', ['base_url' => 'https://example.test/v1']);
self::assertSame('https://example.test/v1/', $config->baseUrl);
}
public function testResourceAccessorsAreMemoised(): void
{
$client = new Client('key', 'secret', [], new FakeHttpClient());
self::assertSame($client->tests(), $client->tests());
}
public function testRequestEscapeHatchReturnsDecodedBody(): void
{
$http = new FakeHttpClient();
$http->queueJson(200, ['ok' => true]);
$client = new Client('key', 'secret', [], $http);
$result = $client->request(new Request('GET', 'anything'));
self::assertSame(['ok' => true], $result);
}
public function testRequestEscapeHatchThrowsOnError(): void
{
$http = new FakeHttpClient();
$http->queueJson(500, ['message' => 'boom']);
$client = new Client('key', 'secret', [], $http);
$this->expectException(ApiException::class);
$client->request(new Request('GET', 'anything'));
}
public function testUserAgentDefaultsToVersionedString(): void
{
$config = ClientConfig::fromArray('key', 'secret');
self::assertStringContainsString('testingbot-php/' . Client::VERSION, $config->userAgent);
}
}