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
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
/* eslint-disable */
/**
* Tests if the markers and memory overviews render with the correct
* theme on load, and rerenders when changed.
*/
const { setTheme } = require("devtools/client/shared/theme");
const LIGHT_BG = "white";
const DARK_BG = "#14171a";
setTheme("dark");
Services.prefs.setBoolPref(MEMORY_PREF, false);
requestLongerTimeout(2);
function* spawnTest() {
let { panel } = yield initPerformance(SIMPLE_URL);
let { EVENTS, $, OverviewView, document: doc } = panel.panelWin;
yield startRecording(panel);
let markers = OverviewView.graphs.get("timeline");
is(markers.backgroundColor, DARK_BG,
"correct theme on load for markers.");
yield stopRecording(panel);
let refreshed = once(markers, "refresh");
setTheme("light");
yield refreshed;
ok(true, "markers were rerendered after theme change.");
is(markers.backgroundColor, LIGHT_BG,
"correct theme on after toggle for markers.");
// reset back to dark
refreshed = once(markers, "refresh");
setTheme("dark");
yield refreshed;
info("Testing with memory overview");
Services.prefs.setBoolPref(MEMORY_PREF, true);
yield startRecording(panel);
let memory = OverviewView.graphs.get("memory");
is(memory.backgroundColor, DARK_BG,
"correct theme on load for memory.");
yield stopRecording(panel);
refreshed = Promise.all([
once(markers, "refresh"),
once(memory, "refresh"),
]);
setTheme("light");
yield refreshed;
ok(true, "Both memory and markers were rerendered after theme change.");
is(markers.backgroundColor, LIGHT_BG,
"correct theme on after toggle for markers.");
is(memory.backgroundColor, LIGHT_BG,
"correct theme on after toggle for memory.");
refreshed = Promise.all([
once(markers, "refresh"),
once(memory, "refresh"),
]);
// Set theme back to light
setTheme("light");
yield refreshed;
yield teardown(panel);
finish();
}
/* eslint-enable */
|