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
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
const { WeatherFeed } = ChromeUtils.importESModule(
"resource://activity-stream/lib/WeatherFeed.sys.mjs"
);
const { actionCreators: ac, actionTypes: at } = ChromeUtils.importESModule(
"resource://activity-stream/common/Actions.mjs"
);
ChromeUtils.defineESModuleGetters(this, {
sinon: "resource://testing-common/Sinon.sys.mjs",
MerinoTestUtils: "resource://testing-common/MerinoTestUtils.sys.mjs",
});
const { WEATHER_SUGGESTION } = MerinoTestUtils;
const WEATHER_ENABLED = "browser.newtabpage.activity-stream.showWeather";
const SYS_WEATHER_ENABLED =
"browser.newtabpage.activity-stream.system.showWeather";
add_task(async function test_construction() {
let sandbox = sinon.createSandbox();
sandbox.stub(WeatherFeed.prototype, "PersistentCache").returns({
set: () => {},
get: () => {},
});
let feed = new WeatherFeed();
info("WeatherFeed constructor should create initial values");
Assert.ok(feed, "Could construct a WeatherFeed");
Assert.ok(feed.loaded === false, "WeatherFeed is not loaded");
Assert.ok(feed.merino === null, "merino is initialized as null");
Assert.ok(
feed.suggestions.length === 0,
"suggestions is initialized as a array with length of 0"
);
Assert.ok(feed.fetchTimer === null, "fetchTimer is initialized as null");
sandbox.restore();
});
add_task(async function test_onAction_INIT() {
let sandbox = sinon.createSandbox();
sandbox.stub(WeatherFeed.prototype, "MerinoClient").returns({
get: () => [WEATHER_SUGGESTION],
on: () => {},
});
sandbox.stub(WeatherFeed.prototype, "PersistentCache").returns({
set: () => {},
get: () => {},
});
const dateNowTestValue = 1;
sandbox.stub(WeatherFeed.prototype, "Date").returns({
now: () => dateNowTestValue,
});
let feed = new WeatherFeed();
Services.prefs.setBoolPref(WEATHER_ENABLED, true);
Services.prefs.setBoolPref(SYS_WEATHER_ENABLED, true);
sandbox.stub(feed, "isEnabled").returns(true);
sandbox.stub(feed, "fetchHelper");
feed.suggestions = [WEATHER_SUGGESTION];
feed.store = {
dispatch: sinon.spy(),
};
info("WeatherFeed.onAction INIT should initialize Weather");
await feed.onAction({
type: at.INIT,
});
Assert.ok(feed.store.dispatch.calledOnce);
Assert.ok(
feed.store.dispatch.calledWith(
ac.BroadcastToContent({
type: at.WEATHER_UPDATE,
data: {
suggestions: [WEATHER_SUGGESTION],
lastUpdated: dateNowTestValue,
},
meta: {
isStartup: true,
},
})
)
);
Services.prefs.clearUserPref(WEATHER_ENABLED);
sandbox.restore();
});
|