-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackground.test.js
265 lines (227 loc) · 6.85 KB
/
background.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
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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
/**
* @jest-environment jsdom
*/
// Mock the browser API
const mockBrowserAPI = {
storage: {
local: {
get: jest.fn().mockResolvedValue({}),
set: jest.fn().mockResolvedValue({}),
},
},
runtime: {
onMessage: {
addListener: jest.fn(),
removeListener: jest.fn(),
},
onInstalled: {
addListener: jest.fn(),
},
sendMessage: jest.fn().mockResolvedValue({}),
},
tabs: {
onRemoved: {
addListener: jest.fn(),
removeListener: jest.fn(),
},
query: jest
.fn()
.mockResolvedValue([{ id: 123, url: "https://example.com" }]),
sendMessage: jest.fn().mockResolvedValue({}),
},
alarms: {
onAlarm: {
addListener: jest.fn(),
removeListener: jest.fn(),
},
create: jest.fn(),
},
};
// Mock the browser object
global.browser = mockBrowserAPI;
global.chrome = mockBrowserAPI;
// Helper to manipulate the tabState Map in background.js
function manipulateTabState(callback) {
const backgroundModule = require("./background.js");
callback(backgroundModule.tabState);
}
describe("Background Script", () => {
let messageListener;
let tabRemovedListener;
beforeEach(() => {
// Clear all mocks
jest.clearAllMocks();
// Reset modules to get a fresh instance
jest.resetModules();
// Capture the message listener when it's added
mockBrowserAPI.runtime.onMessage.addListener.mockImplementation(
(listener) => {
messageListener = listener;
return listener;
}
);
// Capture the tab removed listener when it's added
mockBrowserAPI.tabs.onRemoved.addListener.mockImplementation((listener) => {
tabRemovedListener = listener;
return listener;
});
// Load the background script
require("./background.js");
});
test("should handle getTabEnabled message correctly", () => {
// Set up a tab state
manipulateTabState((tabState) => {
tabState.set(123, { enabled: true });
});
// Create a mock sender and sendResponse
const sender = { tab: { id: 123 } };
const sendResponse = jest.fn();
// Call the message listener directly
messageListener({ action: "getTabEnabled" }, sender, sendResponse);
// Check that it responded with the correct enabled state
expect(sendResponse).toHaveBeenCalledWith({ enabled: true });
});
test("should handle setTabEnabled message correctly", () => {
// Create a mock sender and sendResponse
const sender = {};
const sendResponse = jest.fn();
// Call the message listener directly
messageListener(
{ action: "setTabEnabled", tabId: 123, enabled: true },
sender,
sendResponse
);
// Check that it responded with success
expect(sendResponse).toHaveBeenCalledWith({ success: true });
// Check that the tab state was updated
manipulateTabState((tabState) => {
expect(tabState.get(123).enabled).toBe(true);
});
});
test("should clean up tab state when tab is closed", () => {
// Set up a tab state
manipulateTabState((tabState) => {
tabState.set(123, { enabled: true });
});
// Call the tab removed listener directly
tabRemovedListener(123);
// Check that the tab state was removed
manipulateTabState((tabState) => {
expect(tabState.has(123)).toBe(false);
});
});
test("should return default values for closed tabs", () => {
// Create a mock sender and sendResponse
const sender = { tab: { id: 456 } }; // Tab ID not in the Map
const sendResponse = jest.fn();
// Call the message listener directly
messageListener({ action: "getTabEnabled" }, sender, sendResponse);
// Check that it responded with the default enabled state (false)
expect(sendResponse).toHaveBeenCalledWith({ enabled: false });
});
test("should initialize tab formatting with defaults", () => {
// Create a mock sender and sendResponse
const sender = { tab: { id: 123 } };
const sendResponse = jest.fn();
// Call the message listener directly
messageListener({ action: "getTabFormatting" }, sender, sendResponse);
// Check that it responded with the default formatting
expect(sendResponse).toHaveBeenCalledWith({
formatting: {
backgroundColor: "#ffff00",
textColor: "#000000",
useDefaultBackground: false,
useDefaultText: false,
},
});
});
test("should set and get custom tab formatting", () => {
// Create a mock sender and sendResponse
const sender = {};
const sendResponse = jest.fn();
// Set custom formatting
messageListener(
{
action: "setTabFormatting",
tabId: 123,
formatting: {
backgroundColor: "#ff0000",
textColor: "#ffffff",
},
},
sender,
sendResponse
);
// Check that it responded with success
expect(sendResponse).toHaveBeenCalledWith({ success: true });
// Get the formatting
const getFormatSendResponse = jest.fn();
messageListener(
{ action: "getTabFormatting" },
{ tab: { id: 123 } },
getFormatSendResponse
);
// Check that it responded with the custom formatting
expect(getFormatSendResponse).toHaveBeenCalledWith({
formatting: {
backgroundColor: "#ff0000",
textColor: "#ffffff",
useDefaultBackground: false,
useDefaultText: false,
},
});
});
test("should handle partial formatting updates", () => {
// Create a mock sender and sendResponse
const sender = {};
const sendResponse = jest.fn();
// Set initial formatting
messageListener(
{
action: "setTabFormatting",
tabId: 123,
formatting: {
backgroundColor: "#ff0000",
textColor: "#ffffff",
},
},
sender,
sendResponse
);
// Update only the background color
const updateSendResponse = jest.fn();
messageListener(
{
action: "setTabFormatting",
tabId: 123,
formatting: {
backgroundColor: "#00ff00",
},
},
sender,
updateSendResponse
);
// Check that it responded with success
expect(updateSendResponse).toHaveBeenCalledWith({ success: true });
// Get the formatting
const getFormatSendResponse = jest.fn();
messageListener(
{ action: "getTabFormatting" },
{ tab: { id: 123 } },
getFormatSendResponse
);
// Check that it responded with the updated formatting
expect(getFormatSendResponse).toHaveBeenCalledWith({
formatting: {
backgroundColor: "#00ff00",
textColor: "#ffffff",
useDefaultBackground: false,
useDefaultText: false,
},
});
});
// Skip the stale tabs test since we can't easily mock the alarm listener
test.skip("should clean up stale tabs periodically", () => {
// This test is skipped because we can't easily mock the alarm listener
});
});