-
-
Notifications
You must be signed in to change notification settings - Fork 367
Expand file tree
/
Copy pathgesturetracing.test.ts
More file actions
267 lines (226 loc) · 8.28 KB
/
Copy pathgesturetracing.test.ts
File metadata and controls
267 lines (226 loc) · 8.28 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
import type { Breadcrumb } from '@sentry/core';
import { getActiveSpan, spanToJSON, startSpan } from '@sentry/core';
import type { ReactNativeTracingIntegration } from '../../src/js/tracing/reactnativetracing';
import { UI_ACTION } from '../../src/js/tracing';
import {
DEFAULT_BREADCRUMB_CATEGORY as DEFAULT_GESTURE_BREADCRUMB_CATEGORY,
DEFAULT_BREADCRUMB_TYPE as DEFAULT_GESTURE_BREADCRUMB_TYPE,
sentryTraceGesture,
} from '../../src/js/tracing/gesturetracing';
import { startUserInteractionSpan } from '../../src/js/tracing/integrations/userInteraction';
import { SPAN_ORIGIN_AUTO_INTERACTION } from '../../src/js/tracing/origin';
import { reactNativeTracingIntegration } from '../../src/js/tracing/reactnativetracing';
import { SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN } from '../../src/js/tracing/semanticAttributes';
import { setupTestClient, type TestClient } from '../mocks/client';
jest.mock('../../src/js/wrapper', () => {
return {
NATIVE: {
fetchNativeAppStart: jest.fn(),
fetchNativeFrames: jest.fn(() => Promise.resolve()),
enableNativeFramesTracking: jest.fn(() => Promise.resolve()),
setCurrentScopePropagationContext: jest.fn(),
enableNative: true,
},
};
});
interface MockGesture {
handlers?: {
onBegin?: jest.Mock;
onEnd?: jest.Mock;
};
handlerName: string;
}
describe('GestureTracing', () => {
const label = 'testGesture';
describe('gracefully fails on invalid gestures', () => {
it('gesture is undefined', () => {
const gesture: unknown = undefined;
expect(sentryTraceGesture(label, gesture)).toBeUndefined();
});
it('gesture has no handlers', () => {
const gesture = {};
expect(sentryTraceGesture(label, gesture)).toEqual({});
});
});
describe('traces gestures', () => {
let client: TestClient;
let tracing: ReactNativeTracingIntegration;
let mockedGesture: MockGesture;
beforeEach(() => {
jest.clearAllMocks();
jest.useFakeTimers({
advanceTimers: true,
doNotFake: ['performance'], // Keep real performance API
});
client = setupTestClient({
enableUserInteractionTracing: true,
});
tracing = reactNativeTracingIntegration();
client.addIntegration(tracing);
tracing.setCurrentRoute('mockedScreenName');
mockedGesture = {
handlers: {
onBegin: jest.fn(),
onEnd: jest.fn(),
},
handlerName: 'MockGestureHandler',
};
});
afterEach(() => {
jest.runAllTimers();
jest.useRealTimers();
});
it('gesture creates interaction transaction', () => {
sentryTraceGesture('mockedGesture', mockedGesture);
mockedGesture.handlers!.onBegin!();
const transaction = getActiveSpan();
jest.runAllTimers();
expect(transaction).toBeDefined();
expect(spanToJSON(transaction!)).toEqual(
expect.objectContaining({
timestamp: expect.any(Number),
op: `${UI_ACTION}.mock`,
data: expect.objectContaining({
[SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN]: SPAN_ORIGIN_AUTO_INTERACTION,
}),
}),
);
});
it('gesture interaction transaction falls back on invalid handler name', () => {
mockedGesture.handlerName = 'Invalid';
sentryTraceGesture('mockedGesture', mockedGesture);
mockedGesture.handlers!.onBegin!();
const transaction = getActiveSpan();
jest.runAllTimers();
expect(transaction).toBeDefined();
expect(spanToJSON(transaction!)).toEqual(
expect.objectContaining({
timestamp: expect.any(Number),
op: `${UI_ACTION}.gesture`,
data: expect.objectContaining({
[SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN]: SPAN_ORIGIN_AUTO_INTERACTION,
}),
}),
);
});
it('gesture cancel previous interaction transaction', async () => {
const timeoutCloseToActualIdleTimeoutMs = 800;
sentryTraceGesture('mockedGesture', mockedGesture);
const mockedTouchInteractionId = { elementId: 'mockedElementId', op: 'mocked.op' };
startUserInteractionSpan(mockedTouchInteractionId);
startChildSpan();
await jest.advanceTimersByTimeAsync(timeoutCloseToActualIdleTimeoutMs);
mockedGesture.handlers?.onBegin?.();
startChildSpan();
await jest.advanceTimersByTimeAsync(timeoutCloseToActualIdleTimeoutMs);
await jest.runAllTimersAsync();
const touchTransactionEvent = client.eventQueue[0];
const gestureTransactionEvent = client.eventQueue[1];
expect(touchTransactionEvent).toEqual(
expect.objectContaining({
timestamp: expect.any(Number),
contexts: expect.objectContaining({
trace: expect.objectContaining({
op: 'mocked.op',
}),
}),
}),
);
expect(gestureTransactionEvent).toEqual(
expect.objectContaining({
timestamp: expect.any(Number),
}),
);
});
it('gesture original on begin handler is called', () => {
const original = mockedGesture.handlers?.onBegin;
sentryTraceGesture('mockedGesture', mockedGesture);
mockedGesture.handlers!.onBegin!();
jest.runAllTimers();
expect(original).toHaveBeenCalledTimes(1);
});
it('creates gesture on begin handled if non exists', () => {
delete mockedGesture.handlers?.onBegin;
sentryTraceGesture('mockedGesture', mockedGesture);
mockedGesture.handlers!.onBegin!();
jest.runAllTimers();
expect(mockedGesture.handlers?.onBegin).toBeDefined();
});
it('gesture original on end handler is called', () => {
const original = mockedGesture.handlers?.onEnd;
sentryTraceGesture('mockedGesture', mockedGesture);
mockedGesture.handlers!.onEnd!();
jest.runAllTimers();
expect(original).toHaveBeenCalledTimes(1);
});
it('creates gesture on end handled if non exists', () => {
delete mockedGesture.handlers?.onEnd;
sentryTraceGesture('mockedGesture', mockedGesture);
mockedGesture.handlers!.onEnd!();
jest.runAllTimers();
expect(mockedGesture.handlers?.onBegin).toBeDefined();
});
it('creates gesture on begin handled if non exists', () => {
delete mockedGesture.handlers?.onBegin;
sentryTraceGesture('mockedGesture', mockedGesture);
mockedGesture.handlers!.onBegin!();
jest.runAllTimers();
expect(mockedGesture.handlers?.onBegin).toBeDefined();
});
it('wrapped gesture creates breadcrumb on begin', async () => {
sentryTraceGesture('mockedGesture', mockedGesture);
mockedGesture.handlers!.onBegin!();
startChildSpan();
await jest.runAllTimersAsync();
expect(client.event).toEqual(
expect.objectContaining({
breadcrumbs: expect.arrayContaining([
expect.objectContaining(<Breadcrumb>{
category: DEFAULT_GESTURE_BREADCRUMB_CATEGORY,
type: DEFAULT_GESTURE_BREADCRUMB_TYPE,
level: 'info',
}),
]),
}),
);
});
it('wrapped gesture creates breadcrumb on end', async () => {
sentryTraceGesture('mockedGesture', mockedGesture);
mockedGesture.handlers!.onEnd!();
startChildSpan();
await jest.runAllTimersAsync();
expect(client.event).toEqual(
expect.objectContaining({
breadcrumbs: expect.arrayContaining([
expect.objectContaining(<Breadcrumb>{
category: DEFAULT_GESTURE_BREADCRUMB_CATEGORY,
type: DEFAULT_GESTURE_BREADCRUMB_TYPE,
level: 'info',
}),
]),
}),
);
});
it('wrapped gesture creates breadcrumb only with selected event keys', async () => {
sentryTraceGesture('mockedGesture', mockedGesture);
mockedGesture.handlers!.onBegin!({ notSelectedKey: 'notSelectedValue', scale: 1 });
startChildSpan();
await jest.runAllTimersAsync();
expect(client.event).toEqual(
expect.objectContaining({
breadcrumbs: expect.arrayContaining([
expect.objectContaining(<Breadcrumb>{
data: {
scale: 1,
gesture: 'mock',
},
}),
]),
}),
);
});
});
});
function startChildSpan() {
startSpan({ name: 'child', op: 'child.op' }, () => {});
}