-
-
Notifications
You must be signed in to change notification settings - Fork 466
Expand file tree
/
Copy pathClientBuilderTest.php
More file actions
232 lines (173 loc) · 6.47 KB
/
ClientBuilderTest.php
File metadata and controls
232 lines (173 loc) · 6.47 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
<?php
declare(strict_types=1);
namespace Sentry\Tests;
use PHPUnit\Framework\TestCase;
use Psr\Log\AbstractLogger;
use Psr\Log\LoggerInterface;
use Sentry\Client;
use Sentry\ClientBuilder;
use Sentry\Event;
use Sentry\HttpClient\HttpClient;
use Sentry\HttpClient\HttpClientInterface;
use Sentry\HttpClient\Request;
use Sentry\HttpClient\Response;
use Sentry\Integration\IntegrationInterface;
use Sentry\Options;
use Sentry\Transport\HttpTransport;
use Sentry\Transport\Result;
use Sentry\Transport\ResultStatus;
use Sentry\Transport\TransportInterface;
final class ClientBuilderTest extends TestCase
{
public function testGetOptions(): void
{
$options = new Options();
$clientBuilder = new ClientBuilder($options);
$this->assertSame($options, $clientBuilder->getOptions());
}
public function testClientBuilderFallbacksToDefaultSdkIdentifierAndVersion(): void
{
$callbackCalled = false;
$options = new Options();
$options->setBeforeSendCallback(function (Event $event) use (&$callbackCalled) {
$callbackCalled = true;
$this->assertSame(Client::SDK_IDENTIFIER, $event->getSdkIdentifier());
$this->assertSame(Client::SDK_VERSION, $event->getSdkVersion());
return null;
});
(new ClientBuilder($options))->getClient()->captureMessage('test');
$this->assertTrue($callbackCalled, 'Callback not invoked, no assertions performed');
}
public function testClientBuilderSetsSdkIdentifierAndVersion(): void
{
$callbackCalled = false;
$options = new Options();
$options->setBeforeSendCallback(function (Event $event) use (&$callbackCalled) {
$callbackCalled = true;
$this->assertSame('sentry.test', $event->getSdkIdentifier());
$this->assertSame('1.2.3-test', $event->getSdkVersion());
return null;
});
(new ClientBuilder($options))
->setSdkIdentifier('sentry.test')
->setSdkVersion('1.2.3-test')
->getClient()
->captureMessage('test');
$this->assertTrue($callbackCalled, 'Callback not invoked, no assertions performed');
}
public function testCreateWithNoOptionsIsTheSameAsDefaultOptions(): void
{
$this->assertEquals(
new ClientBuilder(new Options()),
ClientBuilder::create([])
);
}
public function testDefaultHttpClientAndTransport(): void
{
$options = new Options();
$clientBuilder = new ClientBuilder($options);
$this->assertInstanceOf(HttpClient::class, $clientBuilder->getHttpClient());
$this->assertInstanceOf(HttpTransport::class, $clientBuilder->getTransport());
}
public function testSettingCustomLogger(): void
{
$logger = new CustomLogger();
$clientBuilder = new ClientBuilder();
$clientBuilder->setLogger($logger);
$this->assertSame($logger, $clientBuilder->getLogger());
$client = $clientBuilder->getClient();
$this->assertInstanceOf(Client::class, $client);
$this->assertSame($logger, $client->getLogger());
}
public function testSettingCustomLoggerFromOptions(): void
{
$logger = new CustomLogger();
$options = new Options([
'logger' => $logger,
]);
$clientBuilder = new ClientBuilder($options);
$this->assertSame($logger, $clientBuilder->getLogger());
$client = $clientBuilder->getClient();
$this->assertInstanceOf(Client::class, $client);
$this->assertSame($logger, $client->getLogger());
}
public function testSettingCustomHttpClient(): void
{
$httpClient = new CustomHttpClient();
$clientBuilder = new ClientBuilder();
$clientBuilder->setHttpClient($httpClient);
$this->assertSame($httpClient, $clientBuilder->getHttpClient());
$client = $clientBuilder->getClient();
$this->assertInstanceOf(Client::class, $client);
$transport = $client->getTransport();
$this->assertInstanceOf(HttpTransport::class, $transport);
$this->assertSame($httpClient, $transport->getHttpClient());
}
public function testSettingCustomHttpClientFromOptions(): void
{
$httpClient = new CustomHttpClient();
$options = new Options([
'http_client' => $httpClient,
]);
$clientBuilder = new ClientBuilder($options);
$this->assertSame($httpClient, $clientBuilder->getHttpClient());
$client = $clientBuilder->getClient();
$this->assertInstanceOf(Client::class, $client);
$transport = $client->getTransport();
$this->assertInstanceOf(HttpTransport::class, $transport);
$this->assertSame($httpClient, $transport->getHttpClient());
}
public function testSettingCustomTransport(): void
{
$transport = new CustomTransport();
$clientBuilder = new ClientBuilder();
$clientBuilder->setTransport($transport);
$this->assertSame($transport, $clientBuilder->getTransport());
$client = $clientBuilder->getClient();
$this->assertInstanceOf(Client::class, $client);
$this->assertSame($transport, $client->getTransport());
}
public function testSettingCustomTransportFromOptions(): void
{
$transport = new CustomTransport();
$options = new Options([
'transport' => $transport,
]);
$clientBuilder = new ClientBuilder($options);
$this->assertSame($transport, $clientBuilder->getTransport());
$client = $clientBuilder->getClient();
$this->assertInstanceOf(Client::class, $client);
$this->assertSame($transport, $client->getTransport());
}
}
final class StubIntegration implements IntegrationInterface
{
public function setupOnce(): void
{
}
}
final class CustomHttpClient implements HttpClientInterface
{
public function sendRequest(Request $request, Options $options): Response
{
return new Response(0, [], '');
}
}
final class CustomTransport implements TransportInterface
{
public function send(Event $event): Result
{
return new Result(ResultStatus::success());
}
public function close(?int $timeout = null): Result
{
return new Result(ResultStatus::success());
}
}
final class CustomLogger extends AbstractLogger implements LoggerInterface
{
public function log($level, $message, array $context = []): void
{
// noop
}
}