-
Notifications
You must be signed in to change notification settings - Fork 481
Expand file tree
/
Copy pathbottom-box.test.ts
More file actions
375 lines (341 loc) · 15.8 KB
/
Copy pathbottom-box.test.ts
File metadata and controls
375 lines (341 loc) · 15.8 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
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
import { getProfileFromTextSamples } from '../fixtures/profiles/processed-profile';
import { storeWithProfile } from '../fixtures/stores';
import * as UrlStateSelectors from '../../selectors/url-state';
import * as ProfileSelectors from '../../selectors/profile';
import { selectedThreadSelectors } from '../../selectors/per-thread';
import { emptyAddressTimings } from '../../profile-logic/address-timings';
import { getBottomBoxInfoForCallNode } from '../../profile-logic/bottom-box';
import {
changeSelectedCallNode,
updateBottomBoxContentsAndMaybeOpen,
openAssemblyView,
closeAssemblyView,
closeBottomBox,
} from '../../actions/profile-view';
import { changeSelectedTab } from '../../actions/app';
import { ensureExists } from '../../utils/types';
import type { Profile, Thread } from 'firefox-profiler/types';
function getProfileWithNiceAddresses(): {
profile: Profile;
derivedThreads: Thread[];
funcNamesPerThread: Array<string[]>;
funcNamesDictPerThread: Array<{ [funcName: string]: number }>;
nativeSymbolsDictPerThread: Array<{ [nativeSymbolName: string]: number }>;
} {
return getProfileFromTextSamples(`
A[lib:one][address:20][sym:Asym:20:][file:ab.cpp][line:20] A[lib:one][address:30][sym:Asym:20:][file:ab.cpp][line:22] A[lib:one][address:20][sym:Asym:20:][file:ab.cpp][line:20] A[lib:one][address:20][sym:Asym:20:][file:ab.cpp][line:20]
B[lib:one][address:40][sym:Bsym:30:][file:ab.cpp][line:40] B[lib:one][address:30][sym:Asym:20:][file:ab.cpp][line:40][inl:1] B[lib:one][address:45][sym:Bsym:30:][file:ab.cpp][line:43] E[lib:one][address:31][sym:Esym:30:][file:cde.cpp][line:90]
C[lib:one][address:40][sym:Bsym:30:][file:cde.cpp][line:60][inl:1] C[lib:one][address:30][sym:Asym:20:][file:cde.cpp][line:62][inl:2] C[lib:one][address:45][sym:Bsym:30:][file:cde.cpp][line:62] F[lib:two][address:15][sym:Fsym:12:]
D[lib:one][address:51][sym:Dsym:40:][file:cde.cpp][line:80]
`);
}
describe('bottom box', function () {
function setup() {
const {
profile,
derivedThreads,
funcNamesPerThread,
funcNamesDictPerThread,
nativeSymbolsDictPerThread,
} = getProfileWithNiceAddresses();
const { dispatch, getState } = storeWithProfile(profile);
return {
// Store:
dispatch,
getState,
// Other stuff:
thread: derivedThreads[0],
funcNames: funcNamesPerThread[0],
funcNamesDict: funcNamesDictPerThread[0],
nativeSymbolsDict: nativeSymbolsDictPerThread[0],
};
}
it('starts out with the bottom box closed', function () {
const { getState } = setup();
expect(UrlStateSelectors.getIsBottomBoxOpen(getState())).toBeFalse();
expect(UrlStateSelectors.getSelectedTab(getState())).toBe('calltree');
expect(UrlStateSelectors.getSourceViewSourceIndex(getState())).toBeNull();
expect(UrlStateSelectors.getAssemblyViewIsOpen(getState())).toBeFalse();
expect(
UrlStateSelectors.getAssemblyViewNativeSymbol(getState())
).toBeNull();
expect(
selectedThreadSelectors.getAssemblyViewAddressTimings(getState())
).toEqual(emptyAddressTimings);
});
it('opens the source view when double-clicking a call node with source code', function () {
const { dispatch, getState, funcNamesDict, thread } = setup();
const { A, B, C, D, E, F } = funcNamesDict;
const callNodeInfo = selectedThreadSelectors.getCallNodeInfo(getState());
// Simulate double-clicking the call node at [A, B, C, D].
const abcd = ensureExists(
callNodeInfo.getCallNodeIndexFromPath([A, B, C, D])
);
const nativeSymbolInfoD = {
libIndex: 0,
address: 0x40,
name: 'Dsym',
functionSize: 18,
functionSizeIsKnown: false,
};
const bottomBoxInfoD = getBottomBoxInfoForCallNode(
abcd,
callNodeInfo,
thread,
thread.samples
);
expect(bottomBoxInfoD.nativeSymbols).toEqual([nativeSymbolInfoD]);
dispatch(updateBottomBoxContentsAndMaybeOpen('calltree', bottomBoxInfoD));
// Now the source view should be displayed and the assembly view should be
// initialized but closed.
expect(UrlStateSelectors.getIsBottomBoxOpen(getState())).toBeTrue();
expect(ProfileSelectors.getSourceViewFile(getState())).toBe('cde.cpp');
expect(UrlStateSelectors.getAssemblyViewIsOpen(getState())).toBeFalse();
expect(UrlStateSelectors.getAssemblyViewNativeSymbol(getState())).toEqual(
nativeSymbolInfoD
);
// [selected tab: calltree] [calltree: bottombox open] [flame-graph: bottombox closed] [assembly view closed]
// Open the assembly view.
dispatch(openAssemblyView());
expect(UrlStateSelectors.getAssemblyViewIsOpen(getState())).toBeTrue();
// [selected tab: calltree] [calltree: bottombox open] [flame-graph: bottombox closed] [assembly view open]
// Close the assembly view.
dispatch(closeAssemblyView());
expect(UrlStateSelectors.getAssemblyViewIsOpen(getState())).toBeFalse();
expect(UrlStateSelectors.getIsBottomBoxOpen(getState())).toBeTrue();
// [selected tab: calltree] [calltree: bottombox open] [flame-graph: bottombox closed] [assembly view closed]
// Switch to the flame-graph tab. The bottom box should be closed but the
// saved information about the source file and native symbol should still be
// available.
dispatch(changeSelectedTab('flame-graph'));
expect(UrlStateSelectors.getSelectedTab(getState())).toBe('flame-graph');
expect(UrlStateSelectors.getIsBottomBoxOpen(getState())).toBeFalse();
expect(ProfileSelectors.getSourceViewFile(getState())).toBe('cde.cpp');
expect(UrlStateSelectors.getAssemblyViewNativeSymbol(getState())).toEqual(
nativeSymbolInfoD
);
// [selected tab: flame-graph] [calltree: bottombox open] [flame-graph: bottombox closed] [assembly view closed]
// Open the bottom box in the flame-graph tab, too.
dispatch(
updateBottomBoxContentsAndMaybeOpen('flame-graph', bottomBoxInfoD)
);
expect(UrlStateSelectors.getIsBottomBoxOpen(getState())).toBeTrue();
// [selected tab: flame-graph] [calltree: bottombox open] [flame-graph: bottombox open] [assembly view closed]
// Switch back to the calltree and close the bottom box.
dispatch(changeSelectedTab('calltree'));
expect(UrlStateSelectors.getIsBottomBoxOpen(getState())).toBeTrue();
dispatch(closeBottomBox());
expect(UrlStateSelectors.getIsBottomBoxOpen(getState())).toBeFalse();
// [selected tab: calltree] [calltree: bottombox closed] [flame-graph: bottombox open] [assembly view closed]
// Switch back to the flame-graph tab. The bottom box should still be open.
dispatch(changeSelectedTab('flame-graph'));
expect(UrlStateSelectors.getIsBottomBoxOpen(getState())).toBeTrue();
// [selected tab: flame-graph] [calltree: bottombox closed] [flame-graph: bottombox open] [assembly view closed]
// Open the assembly view and switch back to the calltree tab. Then open the
// bottom box again. The assembly view should be open when the bottom box is
// opened.
dispatch(openAssemblyView());
expect(UrlStateSelectors.getAssemblyViewIsOpen(getState())).toBeTrue();
// [selected tab: flame-graph] [calltree: bottombox closed] [flame-graph: bottombox open] [assembly view open]
dispatch(changeSelectedTab('calltree'));
dispatch(updateBottomBoxContentsAndMaybeOpen('calltree', bottomBoxInfoD));
expect(UrlStateSelectors.getIsBottomBoxOpen(getState())).toBeTrue();
expect(UrlStateSelectors.getAssemblyViewIsOpen(getState())).toBeTrue();
// [selected tab: calltree] [calltree: bottombox open] [flame-graph: bottombox open] [assembly view open]
// Close the assembly view.
dispatch(closeAssemblyView());
expect(UrlStateSelectors.getAssemblyViewIsOpen(getState())).toBeFalse();
expect(UrlStateSelectors.getIsBottomBoxOpen(getState())).toBeTrue();
// [selected tab: calltree] [calltree: bottombox open] [flame-graph: bottombox open] [assembly view closed]
// Double-click a call node which doesn't have source file information.
const aef = ensureExists(callNodeInfo.getCallNodeIndexFromPath([A, E, F]));
const nativeSymbolInfoF = {
libIndex: 1,
address: 0x12,
name: 'Fsym',
functionSize: 4,
functionSizeIsKnown: false,
};
const bottomBoxInfoF = getBottomBoxInfoForCallNode(
aef,
callNodeInfo,
thread,
thread.samples
);
expect(bottomBoxInfoF.nativeSymbols).toEqual([nativeSymbolInfoF]);
dispatch(updateBottomBoxContentsAndMaybeOpen('calltree', bottomBoxInfoF));
// Now the assembly view should be opened because there's no source to display.
expect(UrlStateSelectors.getIsBottomBoxOpen(getState())).toBeTrue();
expect(ProfileSelectors.getSourceViewFile(getState())).toBeNull();
expect(UrlStateSelectors.getAssemblyViewIsOpen(getState())).toBeTrue();
expect(UrlStateSelectors.getAssemblyViewNativeSymbol(getState())).toEqual(
nativeSymbolInfoF
);
// [selected tab: calltree] [calltree: bottombox open] [flame-graph: bottombox open] [assembly view open]
// Double-click a node with source information again. The assembly view should remain open.
dispatch(updateBottomBoxContentsAndMaybeOpen('calltree', bottomBoxInfoD));
expect(UrlStateSelectors.getIsBottomBoxOpen(getState())).toBeTrue();
expect(ProfileSelectors.getSourceViewFile(getState())).toBe('cde.cpp');
expect(UrlStateSelectors.getAssemblyViewIsOpen(getState())).toBeTrue();
expect(UrlStateSelectors.getAssemblyViewNativeSymbol(getState())).toEqual(
nativeSymbolInfoD
);
// [selected tab: calltree] [calltree: bottombox open] [flame-graph: bottombox open] [assembly view open]
});
it('stores multiple native symbols if the chosen call node has multiple native symbols', function () {
const { dispatch, getState, funcNamesDict, thread } = setup();
const { A, B, C } = funcNamesDict;
const callNodeInfo = selectedThreadSelectors.getCallNodeInfo(getState());
// Simulate double-clicking the call node at [A, B, C].
// This call node has been inlined into B and into A.
const abc = ensureExists(callNodeInfo.getCallNodeIndexFromPath([A, B, C]));
const nativeSymbolInfoA = {
libIndex: 0,
address: 0x20,
name: 'Asym',
functionSize: 17,
functionSizeIsKnown: false,
};
const nativeSymbolInfoB = {
libIndex: 0,
address: 0x30,
name: 'Bsym',
functionSize: 22,
functionSizeIsKnown: false,
};
const bottomBoxInfoC = getBottomBoxInfoForCallNode(
abc,
callNodeInfo,
thread,
thread.samples
);
expect(new Set(bottomBoxInfoC.nativeSymbols)).toEqual(
new Set([nativeSymbolInfoA, nativeSymbolInfoB])
);
dispatch(updateBottomBoxContentsAndMaybeOpen('calltree', bottomBoxInfoC));
// Now the source view should be displayed and the assembly view should be
// initialized but closed. The assembly view should show one of the two
// native symbols.
// The source view should scroll to line 62 because the call node [A, B, C]
// has 2 samples in line 62 and only 1 sample in line 60.
expect(UrlStateSelectors.getIsBottomBoxOpen(getState())).toBeTrue();
expect(ProfileSelectors.getSourceViewFile(getState())).toBe('cde.cpp');
expect(UrlStateSelectors.getSourceViewScrollToLineNumber(getState())).toBe(
62
);
expect(UrlStateSelectors.getSourceViewHighlightedLine(getState())).toBe(
null
);
expect(UrlStateSelectors.getAssemblyViewIsOpen(getState())).toBeFalse();
expect(
ensureExists(UrlStateSelectors.getAssemblyViewNativeSymbol(getState()))
.name
).toBeOneOf(['Asym', 'Bsym']);
});
it('displays the correct timings', function () {
const { dispatch, getState, funcNamesDict, thread } = setup();
const { A, B, C, D } = funcNamesDict;
const callNodeInfo = selectedThreadSelectors.getCallNodeInfo(getState());
const threadsKey = UrlStateSelectors.getSelectedThreadsKey(getState());
// Simulate double-clicking the call node at [A, B, C, D].
// We first select the call node, then we compute its "bottom box info" (this
// is what the call tree usually does on its own), and then we open the bottom
// box with that info.
dispatch(changeSelectedCallNode(threadsKey, [A, B, C, D]));
const bottomBoxInfoABCD = getBottomBoxInfoForCallNode(
ensureExists(callNodeInfo.getCallNodeIndexFromPath([A, B, C, D])),
callNodeInfo,
thread,
thread.samples
);
dispatch(
updateBottomBoxContentsAndMaybeOpen('calltree', bottomBoxInfoABCD)
);
// Check the assembly view state, including address timings.
expect(UrlStateSelectors.getAssemblyViewNativeSymbol(getState())).toEqual({
libIndex: 0,
address: 0x40,
name: 'Dsym',
functionSize: 18,
functionSizeIsKnown: false,
});
expect(
selectedThreadSelectors.getAssemblyViewAddressTimings(getState())
.totalAddressHits
).toEqual(new Map([[0x51, 1]]));
expect(
UrlStateSelectors.getAssemblyViewHighlightedInstruction(getState())
).toBe(null);
expect(
UrlStateSelectors.getAssemblyViewScrollToInstructionAddress(getState())
).toBe(0x51);
// Select the call node at [A, B, C].
// The global timings should still remain the same.
dispatch(changeSelectedCallNode(threadsKey, [A, B, C]));
expect(
selectedThreadSelectors.getAssemblyViewAddressTimings(getState())
.totalAddressHits
).toEqual(new Map([[0x51, 1]]));
// Change the selection back to call node [A, B, C, D], and then open the
// bottom box for the call node [A, B, C]. This simulates opening the
// bottom box from the context menu.
dispatch(changeSelectedCallNode(threadsKey, [A, B, C, D]));
const bottomBoxInfoABC = getBottomBoxInfoForCallNode(
ensureExists(callNodeInfo.getCallNodeIndexFromPath([A, B, C])),
callNodeInfo,
thread,
thread.samples
);
dispatch(updateBottomBoxContentsAndMaybeOpen('calltree', bottomBoxInfoABC));
// Check the assembly view state again.
expect(UrlStateSelectors.getAssemblyViewNativeSymbol(getState())).toEqual({
libIndex: 0,
address: 0x30,
name: 'Bsym',
functionSize: 22,
functionSizeIsKnown: false,
});
expect(
selectedThreadSelectors.getAssemblyViewAddressTimings(getState())
.totalAddressHits
).toEqual(
new Map([
[0x40, 1],
[0x45, 1],
])
);
expect(
UrlStateSelectors.getAssemblyViewHighlightedInstruction(getState())
).toBe(null);
expect(
UrlStateSelectors.getAssemblyViewScrollToInstructionAddress(getState())
).toBeOneOf([0x40, 0x45]);
});
it('returns null for getAssemblyViewNativeSymbol when nativeSymbols is empty but initialNativeSymbol is 0', function () {
// initialNativeSymbol = 0, even when nativeSymbols is empty
// (e.g., when the frame has no native symbol).
// The selector must return null (not undefined)
// to avoid a crash when downstream code accesses .libIndex on it.
const { dispatch, getState } = setup();
dispatch(
updateBottomBoxContentsAndMaybeOpen('calltree', {
libIndex: null,
sourceIndex: null,
nativeSymbols: [],
initialNativeSymbol: 0,
highlightedLineNumber: null,
highlightedInstructionAddress: null,
})
);
expect(
UrlStateSelectors.getAssemblyViewNativeSymbol(getState())
).toBeNull();
});
// Further ideas for tests:
//
// - A test with multiple threads: Open the assembly view for a symbol, switch
// to a different thread, check timings
});