Left: | ||
Right: |
OLD | NEW |
---|---|
(Empty) | |
1 /* | |
2 * This file is part of Adblock Plus <https://adblockplus.org/>, | |
3 * Copyright (C) 2006-present eyeo GmbH | |
4 * | |
5 * Adblock Plus is free software: you can redistribute it and/or modify | |
6 * it under the terms of the GNU General Public License version 3 as | |
7 * published by the Free Software Foundation. | |
8 * | |
9 * Adblock Plus is distributed in the hope that it will be useful, | |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 * GNU General Public License for more details. | |
13 * | |
14 * You should have received a copy of the GNU General Public License | |
15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | |
16 */ | |
17 | |
18 "use strict"; | |
19 | |
20 const library = require("../../lib/content/snippets.js"); | |
21 const {timeout} = require("./_utils"); | |
22 | |
23 // We need this stub for the injector. | |
24 window.browser = { | |
25 runtime: { | |
26 getURL: () => "" | |
27 } | |
28 }; | |
29 | |
30 async function runSnippet(test, snippetName, ...args) | |
31 { | |
32 let snippet = library[snippetName]; | |
33 | |
34 test.ok(snippet); | |
35 | |
36 snippet(...args); | |
37 await timeout(100); | |
Manish Jethani
2019/03/13 16:36:14
Do we really need this timeout here?
hub
2019/03/14 10:28:05
Without it, the test fail. With a 0 timeout, it fa
Manish Jethani
2019/03/14 11:32:08
Why is this though? Is it because the `<script>` e
hub
2019/03/14 12:32:54
that's what I think.
Manish Jethani
2019/03/16 10:50:24
OK, I checked. It is indeed because the snippet re
hub
2019/03/18 18:27:26
Done.
| |
38 } | |
39 | |
40 exports.testAbortPropertyReadSnippet = async function(test) | |
Manish Jethani
2019/03/13 16:36:14
Nit: We should maybe name this `testAbortOnPropert
hub
2019/03/14 10:28:05
Done.
| |
41 { | |
42 window.abpTest = "foo"; | |
43 | |
44 async function testProperty(property, result = true) | |
Manish Jethani
2019/03/13 16:36:14
This function doesn't have to be async from what I
hub
2019/03/14 10:28:05
Done.
| |
45 { | |
46 let properties = property.split("."); | |
Manish Jethani
2019/03/13 16:36:15
Nit: We could call this `path` instead of `propert
hub
2019/03/14 10:28:04
Done.
| |
47 test.ok(properties.length >= 1); | |
Manish Jethani
2019/03/13 16:36:15
This seems redundant. It is not possible for this
hub
2019/03/14 10:28:04
Done.
| |
48 | |
49 let exceptionCaught = false; | |
50 let value = 1; | |
51 try | |
Manish Jethani
2019/03/13 16:36:14
Nit: Would be cleaner to read if a line was left b
hub
2019/03/14 10:28:05
Done.
| |
52 { | |
53 let obj = window; | |
54 while (properties.length > 1) | |
55 obj = obj[properties.shift()]; | |
56 value = obj[properties.shift()]; | |
57 } | |
58 catch (e) | |
59 { | |
60 if (properties.length == 0) | |
Manish Jethani
2019/03/14 10:58:12
Will properties.length every be non-zero here?
| |
61 exceptionCaught = true; | |
62 } | |
63 test.equal(exceptionCaught, result, `The property "${property}" didn't trigg er and exception.`); | |
Manish Jethani
2019/03/13 16:36:15
The message here doesn't make complete sense. What
hub
2019/03/14 10:28:04
Done.
| |
64 test.equal(value, result ? 1 : undefined, `The value for "${property}" shoul dn't have been read.`); | |
Manish Jethani
2019/03/13 16:36:15
Same as above. Both of these cases assume `result`
hub
2019/03/14 10:28:05
Done.
| |
65 } | |
66 | |
67 await runSnippet(test, "abort-on-property-read", "abpTest"); | |
68 await testProperty("abpTest"); | |
69 | |
70 window.abpTest2 = {prop1: "foo"}; | |
71 | |
72 await runSnippet(test, "abort-on-property-read", "abpTest2.prop1"); | |
73 await testProperty("abpTest2.prop1"); | |
74 | |
75 // Test that we try to catch a property that don't exist yet. | |
76 await runSnippet(test, "abort-on-property-read", "abpTest3.prop1"); | |
77 window.abpTest3 = {prop1: "foo"}; | |
78 await testProperty("abpTest3.prop1"); | |
79 | |
80 // Test that other properties don't trigger. | |
81 await testProperty("abpTest3.prop2", false); | |
82 | |
83 // Test overwriting the object with another object | |
84 window.foo = {bar: {}}; | |
85 await runSnippet(test, "abort-on-property-read", "foo.bar.lambda"); | |
86 await testProperty("foo.bar.lambda"); | |
87 window.foo.bar = {}; | |
88 await testProperty("foo.bar.lambda"); | |
89 | |
90 // Test if we start with a non-object | |
91 window.foo2 = 5; | |
92 await runSnippet(test, "abort-on-property-read", "foo2.bar2.lambda"); | |
93 await testProperty("foo2.bar2.lambda"); | |
94 window.foo2 = {}; | |
95 await testProperty("foo2.bar2.lambda"); | |
96 | |
97 test.done(); | |
98 }; | |
99 | |
OLD | NEW |