forked from firefox-devtools/profiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWindowTitle.test.js
179 lines (152 loc) · 4.95 KB
/
WindowTitle.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
/* 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 React from 'react';
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 – 1/1/1970, 12:00:00 AM UTC – 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 – 1/1/1970, 12:00:00 AM 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('1/1/1970, 12:00:00 AM UTC – 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('Zip File Contents – Firefox Profiler');
await act(() =>
store.dispatch(
ZippedProfilesActions.viewProfileFromPathInZipFile(
'foo/bar/profile1.json'
)
)
);
expect(document.title).toBe(
'bar/profile1.json – Firefox – 1/1/1970, 12:00:00 AM UTC – Firefox Profiler'
);
});
});