-
Notifications
You must be signed in to change notification settings - Fork 460
Expand file tree
/
Copy paththread-merging.test.ts
More file actions
180 lines (158 loc) · 5.33 KB
/
thread-merging.test.ts
File metadata and controls
180 lines (158 loc) · 5.33 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
/* 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 {
selectedThreadSelectors,
getSelectedThreadsKey,
} from 'firefox-profiler/selectors';
import {
changeSelectedThreads,
addTransformToStack,
changeSelectedCallNode,
} from 'firefox-profiler/actions/profile-view';
import { storeWithProfile } from '../fixtures/stores';
import { getProfileFromTextSamples } from '../fixtures/profiles/processed-profile';
import { formatTree } from '../fixtures/utils';
import type { CallNodePath } from 'firefox-profiler/types';
describe('thread merging', function () {
function setup() {
const {
profile,
// Select the second func dictionary, as it will contain all the funcs in the
// same order as the merged thread, which is laid out alphabetically.
funcNamesDictPerThread: [, func],
} = getProfileFromTextSamples(
`
A A A A
B B B B
C C C C
D D
`,
`
A A F F
B B G G
C C
D D
E E
`
);
const store = storeWithProfile(profile);
return { ...store, func };
}
it('can merge threads when multiple threads are selected', function () {
const { dispatch, getState } = setup();
expect(formatTree(selectedThreadSelectors.getCallTree(getState()))).toEqual(
[
'- A (total: 4, self: —)',
' - B (total: 4, self: —)',
' - C (total: 4, self: 2)',
' - D (total: 2, self: 2)',
]
);
dispatch(changeSelectedThreads(new Set([0, 1])));
expect(formatTree(selectedThreadSelectors.getCallTree(getState()))).toEqual(
[
'- A (total: 6, self: —)',
' - B (total: 6, self: —)',
' - C (total: 6, self: 2)',
' - D (total: 4, self: 2)',
' - E (total: 2, self: 2)',
'- F (total: 2, self: —)',
' - G (total: 2, self: 2)',
]
);
});
it('can use thread keys for transforms', function () {
const { dispatch, getState, func } = setup();
expect(formatTree(selectedThreadSelectors.getCallTree(getState()))).toEqual(
[
'- A (total: 4, self: —)',
' - B (total: 4, self: —)',
' - C (total: 4, self: 2)',
' - D (total: 2, self: 2)',
]
);
// Apply a transform:
dispatch(
addTransformToStack(0, {
type: 'merge-function',
funcIndex: func.B,
})
);
// Verify the call tree is modified.
expect(formatTree(selectedThreadSelectors.getCallTree(getState()))).toEqual(
[
'- A (total: 4, self: —)',
' - C (total: 4, self: 2)',
' - D (total: 2, self: 2)',
]
);
// Now select multiple threads
dispatch(changeSelectedThreads(new Set([0, 1])));
expect(formatTree(selectedThreadSelectors.getCallTree(getState()))).toEqual(
[
'- A (total: 6, self: —)',
' - B (total: 6, self: —)',
' - C (total: 6, self: 2)',
' - D (total: 4, self: 2)',
' - E (total: 2, self: 2)',
'- F (total: 2, self: —)',
' - G (total: 2, self: 2)',
]
);
dispatch(
addTransformToStack(getSelectedThreadsKey(getState()), {
type: 'merge-function',
funcIndex: func.C,
})
);
expect(formatTree(selectedThreadSelectors.getCallTree(getState()))).toEqual(
[
'- A (total: 6, self: —)',
' - B (total: 6, self: 2)',
' - D (total: 4, self: 2)',
' - E (total: 2, self: 2)',
'- F (total: 2, self: —)',
' - G (total: 2, self: 2)',
]
);
dispatch(changeSelectedThreads(new Set([0])));
// It retains the old transform.
expect(formatTree(selectedThreadSelectors.getCallTree(getState()))).toEqual(
[
'- A (total: 4, self: —)',
' - C (total: 4, self: 2)',
' - D (total: 2, self: 2)',
]
);
});
it('respects the ThreadViewOptions by using a ThreadsKey, with selected call nodes', function () {
const { dispatch, getState, func } = setup();
// Some simple helpers to make this test more terse:
const changePath = (path: CallNodePath) =>
dispatch(changeSelectedCallNode(getSelectedThreadsKey(getState()), path));
const getPath = () =>
selectedThreadSelectors.getSelectedCallNodePath(getState());
const singleThread = new Set([0]);
const mergedThreads = new Set([0, 1]);
const noPath: CallNodePath = [];
const singlePath = [func.A, func.B];
const mergedPath = [func.F, func.G];
// Start by adding a path to the single thread.
expect(getPath()).toEqual(noPath);
changePath(singlePath);
expect(getPath()).toEqual(singlePath);
// Merge some threads.
dispatch(changeSelectedThreads(mergedThreads));
// Add a path to the merged threads.
expect(getPath()).toEqual(noPath);
changePath(mergedPath);
expect(getPath()).toEqual(mergedPath);
// Switch back to the single thread.
dispatch(changeSelectedThreads(singleThread));
expect(getPath()).toEqual(singlePath);
// Then double check the merged thread.
dispatch(changeSelectedThreads(mergedThreads));
expect(getPath()).toEqual(mergedPath);
});
});