-
-
Notifications
You must be signed in to change notification settings - Fork 474
Expand file tree
/
Copy pathTransactionSamplerTest.php
More file actions
323 lines (274 loc) · 10.9 KB
/
Copy pathTransactionSamplerTest.php
File metadata and controls
323 lines (274 loc) · 10.9 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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
<?php
declare(strict_types=1);
namespace Sentry\Tests\Tracing;
use PHPUnit\Framework\TestCase;
use Sentry\Options;
use Sentry\Tracing\DynamicSamplingContext;
use Sentry\Tracing\SamplingContext;
use Sentry\Tracing\Transaction;
use Sentry\Tracing\TransactionContext;
use Sentry\Tracing\TransactionMetadata;
use Sentry\Tracing\TransactionSampler;
final class TransactionSamplerTest extends TestCase
{
/**
* @dataProvider sampleTransactionDataProvider
*/
public function testSampleTransaction(Options $options, TransactionContext $transactionContext, bool $expectedSampled): void
{
$transaction = $this->sampleTransaction($options, $transactionContext);
$this->assertSame($expectedSampled, $transaction->getSampled());
}
public function testIgnoresBaggageSampleRateWithoutSentryTrace(): void
{
$transactionContext = TransactionContext::fromHeaders('', 'sentry-sample_rate=1');
$transaction = $this->sampleTransaction(new Options([
'traces_sample_rate' => 0.0,
]), $transactionContext);
$this->assertFalse($transaction->getSampled());
}
public static function sampleTransactionDataProvider(): iterable
{
yield 'Acceptable float value returned from traces_sampler' => [
new Options([
'traces_sampler' => static function (): float {
return 1.0;
},
]),
new TransactionContext(),
true,
];
yield 'Acceptable but too low float value returned from traces_sampler' => [
new Options([
'traces_sampler' => static function (): float {
return 0.0;
},
]),
new TransactionContext(),
false,
];
yield 'Acceptable integer value returned from traces_sampler' => [
new Options([
'traces_sampler' => static function (): int {
return 1;
},
]),
new TransactionContext(),
true,
];
yield 'Acceptable but too low integer value returned from traces_sampler' => [
new Options([
'traces_sampler' => static function (): int {
return 0;
},
]),
new TransactionContext(),
false,
];
yield 'Acceptable float value returned from traces_sample_rate' => [
new Options([
'traces_sample_rate' => 1.0,
]),
new TransactionContext(),
true,
];
yield 'Acceptable but too low float value returned from traces_sample_rate' => [
new Options([
'traces_sample_rate' => 0.0,
]),
new TransactionContext(),
false,
];
yield 'Acceptable integer value returned from traces_sample_rate' => [
new Options([
'traces_sample_rate' => 1,
]),
new TransactionContext(),
true,
];
yield 'Acceptable but too low integer value returned from traces_sample_rate' => [
new Options([
'traces_sample_rate' => 0,
]),
new TransactionContext(),
false,
];
yield 'Acceptable but too low value returned from traces_sample_rate which is preferred over sample_rate' => [
new Options([
'sample_rate' => 1.0,
'traces_sample_rate' => 0.0,
]),
new TransactionContext(),
false,
];
yield 'Acceptable value returned from traces_sample_rate which is preferred over sample_rate' => [
new Options([
'sample_rate' => 0.0,
'traces_sample_rate' => 1.0,
]),
new TransactionContext(),
true,
];
yield 'Acceptable value returned from SamplingContext::getParentSampled() which is preferred over traces_sample_rate (x1)' => [
new Options([
'traces_sample_rate' => 0.5,
]),
new TransactionContext(TransactionContext::DEFAULT_NAME, true),
true,
];
yield 'Acceptable value returned from SamplingContext::getParentSampled() which is preferred over traces_sample_rate (x2)' => [
new Options([
'traces_sample_rate' => 1.0,
]),
new TransactionContext(TransactionContext::DEFAULT_NAME, false),
false,
];
yield 'Invalid incoming sample_rand is ignored' => [
new Options([
'traces_sample_rate' => 1.0,
]),
TransactionContext::fromHeaders(
'566e3688a61d4bc888951642d6f14a19-566e3688a61d4bc8',
'sentry-sample_rand=2.0'
),
true,
];
yield 'Out of range sample rate returned from traces_sampler (lower than minimum)' => [
new Options([
'traces_sampler' => static function (): float {
return -1.0;
},
]),
new TransactionContext(TransactionContext::DEFAULT_NAME, false),
false,
];
yield 'Out of range sample rate returned from traces_sampler (greater than maximum)' => [
new Options([
'traces_sampler' => static function (): float {
return 1.1;
},
]),
new TransactionContext(TransactionContext::DEFAULT_NAME, false),
false,
];
yield 'Invalid type returned from traces_sampler' => [
new Options([
'traces_sampler' => static function (): string {
return 'foo';
},
]),
new TransactionContext(TransactionContext::DEFAULT_NAME, false),
false,
];
}
public function testDoesNothingIfTracingIsNotEnabled(): void
{
$transaction = $this->sampleTransaction(new Options(), new TransactionContext());
$this->assertFalse($transaction->getSampled());
}
public function testPassesCustomSamplingContextToTracesSampler(): void
{
$customSamplingContext = ['a' => 'b'];
$samplerInvoked = false;
$this->sampleTransaction(new Options([
'traces_sampler' => function (SamplingContext $samplingContext) use ($customSamplingContext, &$samplerInvoked): float {
$this->assertSame($customSamplingContext, $samplingContext->getAdditionalContext());
$samplerInvoked = true;
return 1.0;
},
]), new TransactionContext(), $customSamplingContext);
$this->assertTrue($samplerInvoked);
}
public function testStartsProfilerWithProfilesSampler(): void
{
$transaction = $this->sampleTransaction(new Options([
'traces_sample_rate' => 1.0,
'profiles_sampler' => static function (): float {
return 1.0;
},
]), new TransactionContext());
$this->assertTrue($transaction->getSampled());
$this->assertNotNull($transaction->getProfiler());
}
public function testDoesNotStartProfilerWhenProfilesSamplerReturnsZero(): void
{
$transaction = $this->sampleTransaction(new Options([
'traces_sample_rate' => 1.0,
'profiles_sampler' => static function (): float {
return 0.0;
},
]), new TransactionContext());
$this->assertTrue($transaction->getSampled());
$this->assertNull($transaction->getProfiler());
}
public function testPrefersProfilesSamplerOverProfilesSampleRate(): void
{
$transaction = $this->sampleTransaction(new Options([
'traces_sample_rate' => 1.0,
'profiles_sample_rate' => 1.0,
'profiles_sampler' => static function (): float {
return 0.0;
},
]), new TransactionContext());
$this->assertTrue($transaction->getSampled());
$this->assertNull($transaction->getProfiler());
}
public function testPassesCustomSamplingContextToProfilesSampler(): void
{
$customSamplingContext = ['a' => 'b'];
$samplerInvoked = false;
$this->sampleTransaction(new Options([
'traces_sample_rate' => 1.0,
'profiles_sampler' => function (SamplingContext $samplingContext) use ($customSamplingContext, &$samplerInvoked): float {
$this->assertSame($customSamplingContext, $samplingContext->getAdditionalContext());
$samplerInvoked = true;
return 0.0;
},
]), new TransactionContext(), $customSamplingContext);
$this->assertTrue($samplerInvoked);
}
public function testDoesNotStartProfilerWhenProfilesSamplerReturnsInvalidValue(): void
{
$transaction = $this->sampleTransaction(new Options([
'traces_sample_rate' => 1.0,
'profiles_sampler' => static function (): string {
return 'foo';
},
]), new TransactionContext());
$this->assertTrue($transaction->getSampled());
$this->assertNull($transaction->getProfiler());
}
public function testDoesNotCallProfilesSamplerWhenTransactionIsNotSampled(): void
{
$profilesSamplerInvoked = false;
$transaction = $this->sampleTransaction(new Options([
'traces_sample_rate' => 0.0,
'profiles_sampler' => static function () use (&$profilesSamplerInvoked): float {
$profilesSamplerInvoked = true;
return 1.0;
},
]), new TransactionContext());
$this->assertFalse($transaction->getSampled());
$this->assertFalse($profilesSamplerInvoked);
$this->assertNull($transaction->getProfiler());
}
public function testUpdatesTheDscSampleRate(): void
{
$dsc = DynamicSamplingContext::fromHeader('sentry-trace_id=d49d9bf66f13450b81f65bc51cf49c03,sentry-public_key=public');
$transactionMetaData = new TransactionMetadata(null, $dsc);
$transactionContext = new TransactionContext(TransactionContext::DEFAULT_NAME, null, $transactionMetaData);
$transaction = $this->sampleTransaction(new Options([
'traces_sampler' => static function (SamplingContext $samplingContext): float {
return 1.0;
},
]), $transactionContext);
$this->assertSame('1', $transaction->getMetadata()->getDynamicSamplingContext()->get('sample_rate'));
}
/**
* @param array<string, mixed> $customSamplingContext
*/
private function sampleTransaction(Options $options, TransactionContext $transactionContext, array $customSamplingContext = []): Transaction
{
return TransactionSampler::startTransaction($options, $transactionContext, $customSamplingContext);
}
}