-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
Copy pathdynamicSamplingContext.test.ts
179 lines (150 loc) · 5.61 KB
/
dynamicSamplingContext.test.ts
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
import { afterEach, beforeEach, describe, expect, it, test, vi } from 'vitest';
import {
SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE,
SEMANTIC_ATTRIBUTE_SENTRY_SOURCE,
getClient,
setCurrentClient,
} from '../../../src';
import { SentrySpan, getDynamicSamplingContextFromSpan, startInactiveSpan } from '../../../src/tracing';
import { freezeDscOnSpan } from '../../../src/tracing/dynamicSamplingContext';
import type { Span, SpanContextData, TransactionSource } from '../../../src/types-hoist';
import { TestClient, getDefaultTestClientOptions } from '../../mocks/client';
describe('getDynamicSamplingContextFromSpan', () => {
beforeEach(() => {
const options = getDefaultTestClientOptions({ tracesSampleRate: 1.0, release: '1.0.1' });
const client = new TestClient(options);
setCurrentClient(client);
client.init();
});
afterEach(() => {
vi.resetAllMocks();
});
test('uses frozen DSC from span', () => {
const rootSpan = new SentrySpan({
name: 'tx',
sampled: true,
});
freezeDscOnSpan(rootSpan, { environment: 'myEnv' });
const dynamicSamplingContext = getDynamicSamplingContextFromSpan(rootSpan);
expect(dynamicSamplingContext).toStrictEqual({ environment: 'myEnv' });
});
test('uses frozen DSC from traceState', () => {
const rootSpan = {
spanContext() {
return {
traceId: '1234',
spanId: '12345',
traceFlags: 0,
traceState: {
get(key: string) {
if (key === 'sentry.dsc') {
return 'sentry-environment=myEnv2';
} else {
return undefined;
}
},
} as unknown as SpanContextData['traceState'],
};
},
} as Span;
const dynamicSamplingContext = getDynamicSamplingContextFromSpan(rootSpan);
expect(dynamicSamplingContext).toStrictEqual({ environment: 'myEnv2' });
});
test('returns a new DSC, if no DSC was provided during rootSpan creation (via attributes)', () => {
const rootSpan = startInactiveSpan({ name: 'tx' });
// Setting the attribute should overwrite the computed values
rootSpan.setAttribute(SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE, 0.56);
rootSpan.setAttribute(SEMANTIC_ATTRIBUTE_SENTRY_SOURCE, 'route');
const dynamicSamplingContext = getDynamicSamplingContextFromSpan(rootSpan);
expect(dynamicSamplingContext).toStrictEqual({
public_key: undefined,
release: '1.0.1',
environment: 'production',
sampled: 'true',
sample_rate: '0.56',
trace_id: expect.stringMatching(/^[a-f0-9]{32}$/),
transaction: 'tx',
sample_rand: expect.any(String),
});
});
test('returns a new DSC, if no DSC was provided during rootSpan creation (via deprecated metadata)', () => {
const rootSpan = startInactiveSpan({
name: 'tx',
});
const dynamicSamplingContext = getDynamicSamplingContextFromSpan(rootSpan);
expect(dynamicSamplingContext).toStrictEqual({
public_key: undefined,
release: '1.0.1',
environment: 'production',
sampled: 'true',
sample_rate: '1',
trace_id: expect.stringMatching(/^[a-f0-9]{32}$/),
transaction: 'tx',
sample_rand: expect.any(String),
});
});
test('returns a new DSC, if no DSC was provided during rootSpan creation (via new Txn and deprecated metadata)', () => {
const rootSpan = new SentrySpan({
name: 'tx',
attributes: {
[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]: 0.56,
[SEMANTIC_ATTRIBUTE_SENTRY_SOURCE]: 'route',
},
sampled: true,
});
const dynamicSamplingContext = getDynamicSamplingContextFromSpan(rootSpan);
expect(dynamicSamplingContext).toStrictEqual({
public_key: undefined,
release: '1.0.1',
environment: 'production',
sampled: 'true',
sample_rate: '0.56',
trace_id: expect.stringMatching(/^[a-f0-9]{32}$/),
transaction: 'tx',
sample_rand: undefined, // this is a bit funky admittedly
});
});
describe('Including rootSpan name in DSC', () => {
test('is not included if rootSpan source is url', () => {
const rootSpan = new SentrySpan({
name: 'tx',
attributes: {
[SEMANTIC_ATTRIBUTE_SENTRY_SOURCE]: 'url',
[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]: 0.56,
},
});
const dsc = getDynamicSamplingContextFromSpan(rootSpan);
expect(dsc.transaction).toBeUndefined();
});
test.each([
['is included if rootSpan source is parameterized route/url', 'route'],
['is included if rootSpan source is a custom name', 'custom'],
] as const)('%s', (_: string, source: TransactionSource) => {
const rootSpan = startInactiveSpan({
name: 'tx',
attributes: {
[SEMANTIC_ATTRIBUTE_SENTRY_SOURCE]: source,
},
});
rootSpan.setAttribute(SEMANTIC_ATTRIBUTE_SENTRY_SOURCE, source);
const dsc = getDynamicSamplingContextFromSpan(rootSpan);
expect(dsc.transaction).toEqual('tx');
});
});
it("doesn't return the sampled flag in the DSC if in Tracing without Performance mode", () => {
const rootSpan = new SentrySpan({
name: 'tx',
sampled: undefined,
});
// Simulate TwP mode by deleting the tracesSampleRate option set in beforeEach
delete getClient()?.getOptions().tracesSampleRate;
const dynamicSamplingContext = getDynamicSamplingContextFromSpan(rootSpan);
expect(dynamicSamplingContext).toStrictEqual({
public_key: undefined,
release: '1.0.1',
environment: 'production',
trace_id: expect.stringMatching(/^[a-f0-9]{32}$/),
transaction: 'tx',
});
});
});