-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHttpClientTest.php
More file actions
133 lines (107 loc) · 4.37 KB
/
Copy pathHttpClientTest.php
File metadata and controls
133 lines (107 loc) · 4.37 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<?php
use Lettermint\Client\HttpClient;
use GuzzleHttp\Client;
use GuzzleHttp\Handler\MockHandler;
use GuzzleHttp\HandlerStack;
use GuzzleHttp\Psr7\Response;
use GuzzleHttp\Middleware;
beforeEach(function () {
$this->apiToken = 'test-token';
$this->baseUrl = 'http://api.example.com';
});
test('it documents typed request and response arrays', function () {
$classReflection = new ReflectionClass(HttpClient::class);
$classDocComment = $classReflection->getDocComment();
$methodReflection = new ReflectionMethod(HttpClient::class, 'post');
$methodDocComment = $methodReflection->getDocComment();
expect($classDocComment)
->toBeString()
->toContain('@phpstan-type RequestBody')
->toContain('@phpstan-type RequestHeaders')
->toContain('@phpstan-type ApiResponse');
expect($methodDocComment)
->toBeString()
->toContain('@param RequestBody $data')
->toContain('@param RequestHeaders $headers')
->toContain('@return ApiResponse');
});
test('it properly constructs with api token and base url', function () {
$client = new HttpClient($this->apiToken, $this->baseUrl);
expect($client)->toBeInstanceOf(HttpClient::class);
});
test('it properly handles successful API responses', function () {
$mockResponse = [
'message_id' => '123abc',
'status' => 'pending'
];
$mock = new MockHandler([
new Response(202, [], json_encode($mockResponse))
]);
$handlerStack = HandlerStack::create($mock);
$container = [];
$history = Middleware::history($container);
$handlerStack->push($history);
$mockGuzzle = new Client([
'handler' => $handlerStack,
'headers' => [
'Content-Type' => 'application/json',
'x-lettermint-token' => $this->apiToken,
]
]);
$client = new HttpClient($this->apiToken, $this->baseUrl);
$reflection = new ReflectionClass($client);
$property = $reflection->getProperty('client');
$property->setAccessible(true);
$property->setValue($client, $mockGuzzle);
$result = $client->post('/send', [
'from' => 'test@example.com',
'to' => ['recipient@example.com'],
'subject' => 'Test Email'
]);
expect($result)->toBe($mockResponse);
expect($container[0]['request']->getHeaders())->toHaveKey('x-lettermint-token');
expect($container[0]['request']->getHeader('x-lettermint-token')[0])->toBe($this->apiToken);
expect($container[0]['request']->getHeader('Content-Type')[0])->toBe('application/json');
});
test('it throws exception on invalid JSON response', function () {
$mock = new MockHandler([
new Response(200, [], 'invalid-json')
]);
$handlerStack = HandlerStack::create($mock);
$mockGuzzle = new Client(['handler' => $handlerStack]);
$client = new HttpClient($this->apiToken, $this->baseUrl);
$reflection = new ReflectionClass($client);
$property = $reflection->getProperty('client');
$property->setAccessible(true);
$property->setValue($client, $mockGuzzle);
expect(fn() => $client->post('/send', [
'from' => 'test@example.com',
'to' => ['recipient@example.com'],
'subject' => 'Test Email'
]))->toThrow(\Exception::class, 'Could not decode API response');
});
test('it throws exception on API error', function () {
$mock = new MockHandler([
new Response(400, [], json_encode(['error' => 'Bad Request']))
]);
$handlerStack = HandlerStack::create($mock);
$mockGuzzle = new Client(['handler' => $handlerStack]);
$client = new HttpClient($this->apiToken, $this->baseUrl);
$reflection = new ReflectionClass($client);
$property = $reflection->getProperty('client');
$property->setAccessible(true);
$property->setValue($client, $mockGuzzle);
expect(fn() => $client->post('/send', [
'from' => 'test@example.com',
'to' => ['recipient@example.com'],
'subject' => 'Test Email'
]))->toThrow(\Exception::class, 'API request failed');
});
test('it trims trailing slashes from base url', function () {
$baseUrlWithSlash = 'http://api.example.com/';
$client = new HttpClient($this->apiToken, $baseUrlWithSlash);
$reflection = new ReflectionClass($client);
$property = $reflection->getProperty('baseUrl');
$property->setAccessible(true);
expect($property->getValue($client))->toBe('http://api.example.com');
});