forked from firefox-devtools/profiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bottom-box.test.js
305 lines (275 loc) · 13.6 KB
/
bottom-box.test.js
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
/* 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/. */
// @flow
import { getProfileFromTextSamples } from '../fixtures/profiles/processed-profile';
import { storeWithProfile } from '../fixtures/stores';
import * as UrlStateSelectors from '../../selectors/url-state';
import {
selectedThreadSelectors,
selectedNodeSelectors,
} from '../../selectors/per-thread';
import { emptyAddressTimings } from '../../profile-logic/address-timings';
import { getBottomBoxInfoForCallNode } from '../../profile-logic/profile-data';
import {
changeSelectedCallNode,
updateBottomBoxContentsAndMaybeOpen,
openAssemblyView,
closeAssemblyView,
closeBottomBox,
} from '../../actions/profile-view';
import { changeSelectedTab } from '../../actions/app';
import { ensureExists } from '../../utils/flow';
import type { Profile } from 'firefox-profiler/types';
function getProfileWithNiceAddresses(): {
profile: Profile,
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:63] 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,
funcNamesPerThread,
funcNamesDictPerThread,
nativeSymbolsDictPerThread,
} = getProfileWithNiceAddresses();
const { dispatch, getState } = storeWithProfile(profile);
return {
// Store:
dispatch,
getState,
// Other stuff:
thread: profile.threads[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.getSourceViewFile(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
);
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(UrlStateSelectors.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(UrlStateSelectors.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
);
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(UrlStateSelectors.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(UrlStateSelectors.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
);
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.
expect(UrlStateSelectors.getIsBottomBoxOpen(getState())).toBeTrue();
expect(UrlStateSelectors.getSourceViewFile(getState())).toBe('cde.cpp');
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 bottomBoxInfoABC = getBottomBoxInfoForCallNode(
ensureExists(callNodeInfo.getCallNodeIndexFromPath([A, B, C, D])),
callNodeInfo,
thread
);
dispatch(updateBottomBoxContentsAndMaybeOpen('calltree', bottomBoxInfoABC));
// Check the assembly view address timings, both the (thread-)global timings
// and the timings for the selected call node.
// Note the difference between "selectedThreadSelectors" and "selectedNodeSelectors" below.
// Both timings should be identical here because Dsym is selected and because
// there is no recursion on Dsym.
expect(
selectedThreadSelectors.getAssemblyViewAddressTimings(getState())
.totalAddressHits
).toEqual(new Map([[0x51, 1]]));
expect(
selectedNodeSelectors.getAssemblyViewAddressTimings(getState())
.totalAddressHits
).toEqual(new Map([[0x51, 1]]));
// Select the call node at [A, B, C].
dispatch(changeSelectedCallNode(threadsKey, [A, B, C]));
// The global timings should still remain the same.
expect(
selectedThreadSelectors.getAssemblyViewAddressTimings(getState())
.totalAddressHits
).toEqual(new Map([[0x51, 1]]));
// The timings for the selected call node should have dropped to zero,
// because the call node at [A, B, C] does not have any frames in Dsym.
expect(
selectedNodeSelectors.getAssemblyViewAddressTimings(getState())
.totalAddressHits
).toEqual(new Map());
});
// Further ideas for tests:
//
// - A test with multiple threads: Open the assembly view for a symbol, switch
// to a different thread, check timings
});