-
Notifications
You must be signed in to change notification settings - Fork 470
Expand file tree
/
Copy pathWindowTitle.test.tsx
More file actions
245 lines (212 loc) · 7 KB
/
WindowTitle.test.tsx
File metadata and controls
245 lines (212 loc) · 7 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
/* 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 { Provider } from 'react-redux';
import { render, act } from 'firefox-profiler/test/fixtures/testing-library';
import { WindowTitle } from 'firefox-profiler/components/app/WindowTitle';
import {
getEmptyProfile,
getEmptyThread,
} from 'firefox-profiler/profile-logic/data-structures';
import {
changeProfileName,
setDataSource,
} from 'firefox-profiler/actions/profile-view';
import * as ZippedProfilesActions from 'firefox-profiler/actions/zipped-profiles';
import { storeWithProfile, blankStore } from '../fixtures/stores';
import { storeWithZipFile } from '../fixtures/profiles/zip-file';
describe('WindowTitle', () => {
it('shows basic window title', () => {
const profile = getEmptyProfile();
profile.threads.push(getEmptyThread());
const store = storeWithProfile(profile);
store.dispatch(setDataSource('from-url'));
render(
<Provider store={store}>
<WindowTitle />
</Provider>
);
expect(document.title).toBe('Firefox – Firefox Profiler');
});
it('shows the profiler startTime in the window title if it is available', () => {
const profile = getEmptyProfile();
profile.threads.push(getEmptyThread());
Object.assign(profile.meta, {
startTime: new Date('5 Nov 2024 13:00 UTC').getTime(),
});
const store = storeWithProfile(profile);
store.dispatch(setDataSource('from-url'));
render(
<Provider store={store}>
<WindowTitle />
</Provider>
);
expect(document.title).toBe(
'Firefox – 11/5/2024, 1:00:00 PM UTC – Firefox Profiler'
);
});
it('shows the profiler startTime with public annotation in the window title if it is available', () => {
const profile = getEmptyProfile();
profile.threads.push(getEmptyThread());
Object.assign(profile.meta, {
startTime: new Date('5 Nov 2024 13:00 UTC').getTime(),
});
const store = storeWithProfile(profile);
store.dispatch(setDataSource('public'));
render(
<Provider store={store}>
<WindowTitle />
</Provider>
);
expect(document.title).toBe(
'Firefox – 11/5/2024, 1:00:00 PM UTC (public) – Firefox Profiler'
);
});
it('shows the public annotation without startTime in the window title', () => {
const profile = getEmptyProfile();
profile.threads.push(getEmptyThread());
const store = storeWithProfile(profile);
store.dispatch(setDataSource('public'));
render(
<Provider store={store}>
<WindowTitle />
</Provider>
);
expect(document.title).toBe('Firefox (public) – Firefox Profiler');
});
it('shows platform details in the window title if it is available', () => {
const profile = getEmptyProfile();
profile.threads.push(getEmptyThread());
Object.assign(profile.meta, {
oscpu: 'Intel Mac OS X 10.14',
platform: 'Macintosh',
toolkit: 'cocoa',
});
const store = storeWithProfile(profile);
store.dispatch(setDataSource('from-url'));
render(
<Provider store={store}>
<WindowTitle />
</Provider>
);
expect(document.title).toBe('Firefox – macOS 10.14 – Firefox Profiler');
});
it('shows platform details with the start time in the window title if it is available', () => {
const profile = getEmptyProfile();
profile.threads.push(getEmptyThread());
Object.assign(profile.meta, {
oscpu: 'Intel Mac OS X 10.14',
platform: 'Macintosh',
toolkit: 'cocoa',
startTime: new Date('5 Nov 2024 13:00 UTC').getTime(),
});
const store = storeWithProfile(profile);
store.dispatch(setDataSource('from-url'));
render(
<Provider store={store}>
<WindowTitle />
</Provider>
);
expect(document.title).toBe(
'Firefox – macOS 10.14 – 11/5/2024, 1:00:00 PM UTC – Firefox Profiler'
);
});
it('shows profile name in the window title if it is available', () => {
const profile = getEmptyProfile();
profile.threads.push(getEmptyThread());
Object.assign(profile.meta, {
oscpu: 'Intel Mac OS X 10.14',
platform: 'Macintosh',
toolkit: 'cocoa',
});
const store = storeWithProfile(profile);
store.dispatch(changeProfileName('good profile'));
store.dispatch(setDataSource('from-url'));
render(
<Provider store={store}>
<WindowTitle />
</Provider>
);
expect(document.title).toBe('good profile – Firefox Profiler');
act(() => {
store.dispatch(changeProfileName('awesome profile'));
});
expect(document.title).toBe('awesome profile – Firefox Profiler');
});
it('shows profile name when formatedmetastring is empty null', () => {
const profile = getEmptyProfile();
profile.threads.push(getEmptyThread());
Object.assign(profile.meta, {
oscpu: '',
platform: '',
toolkit: '',
product: '',
});
const store = storeWithProfile(profile);
store.dispatch(setDataSource('from-url'));
render(
<Provider store={store}>
<WindowTitle />
</Provider>
);
expect(document.title).toBe('Firefox Profiler');
});
it('shows the correct title for uploaded recordings', () => {
const store = blankStore();
store.dispatch(setDataSource('uploaded-recordings'));
render(
<Provider store={store}>
<WindowTitle />
</Provider>
);
expect(document.title).toBe('Uploaded Recordings – Firefox Profiler');
});
it('shows the correct title for the compare view', () => {
// In this test we check that the title updates when navigating in the app.
const store = blankStore();
render(
<Provider store={store}>
<WindowTitle />
</Provider>
);
expect(document.title).toBe('Firefox Profiler');
act(() => {
store.dispatch(setDataSource('compare'));
});
expect(document.title).toBe('Compare Profiles – Firefox Profiler');
});
it("shows a title when a profile isn't loaded yet", () => {
const store = blankStore();
store.dispatch(setDataSource('from-url'));
render(
<Provider store={store}>
<WindowTitle />
</Provider>
);
expect(document.title).toBe('Firefox Profiler');
});
it('shows the file name when viewing a file from a zip file', async () => {
const { store } = await storeWithZipFile([
'foo/bar/profile1.json',
'foo/profile2.json',
'baz/profile3.json',
]);
store.dispatch(setDataSource('from-url'));
render(
<Provider store={store}>
<WindowTitle />
</Provider>
);
expect(document.title).toBe('Archive Contents – Firefox Profiler');
await act(() =>
store.dispatch(
ZippedProfilesActions.viewProfileFromPathInZipFile(
'foo/bar/profile1.json'
)
)
);
expect(document.title).toBe(
'bar/profile1.json – Firefox – Firefox Profiler'
);
});
});