forked from gorhill/uBlock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-utils.js
74 lines (70 loc) · 2.21 KB
/
test-utils.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
'use strict';
module.exports = {
setUserAgent (which) {
let uaString;
switch (which) {
case 'chrome_66':
uaString = 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36';
break;
case 'firefox':
uaString = 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:60.0) Gecko/20100101 Firefox/60.0';
break;
case 'firefox_mobile':
uaString = 'Mozilla/5.0 (Android 7.0; Mobile; rv:54.0) Gecko/54.0 Firefox/54.0';
break;
default:
uaString = 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36';
}
navigator.__defineGetter__('userAgent', function () {
return uaString;
});
},
getMockedVAPI () {
// return a fresh object
return {
app: {
name: 'uBlock Test',
},
getURL: jest.fn(),
messaging: {
setup: jest.fn(),
listen: jest.fn(),
},
setTimeout: jest.fn(),
storage: {
get: jest.fn(),
},
};
},
getMockedUblock () {
return {
cosmeticFilteringEngine: {
removeFromSelectorCache: jest.fn(),
},
hiddenSettings: {},
localSettings: {},
pageStoreFromTabId: jest.fn(),
sessionFirewall: {
copyRules: jest.fn(),
hasSameRules: jest.fn(),
lookupRuleData: jest.fn(),
},
staticExtFilteringEngine: {
compile: jest.fn(),
},
staticNetFilteringEngine: {
compile: jest.fn(),
},
tabContextManager: {
mustLookup: jest.fn(tabId => {
return {
rootHostname: 'roothn.com',
};
}),
},
userSettings: {
advancedUserEnabled: false,
},
};
}
};