diff options
author | hackademix | 2019-11-07 15:14:34 +0100 |
---|---|---|
committer | hackademix | 2019-11-07 15:14:34 +0100 |
commit | 2b7cc563dd441c08b202b3fbb6d04f577e428de3 (patch) | |
tree | a4224c448586eb054d4c7fb439dca892f3347a3d /src/test/Policy_test.js | |
parent | 035b4f28275e671a61c3f922cce0d783a9079098 (diff) | |
download | noscript-2b7cc563dd441c08b202b3fbb6d04f577e428de3.tar.gz noscript-2b7cc563dd441c08b202b3fbb6d04f577e428de3.tar.xz noscript-2b7cc563dd441c08b202b3fbb6d04f577e428de3.zip |
Fixed onionSecure setting persistence issue (Tor ticket #32362).
Diffstat (limited to 'src/test/Policy_test.js')
-rw-r--r-- | src/test/Policy_test.js | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/test/Policy_test.js b/src/test/Policy_test.js index a0f92f3..f12183e 100644 --- a/src/test/Policy_test.js +++ b/src/test/Policy_test.js @@ -13,7 +13,9 @@ let p2 = new Policy(p1.dry()); debug("p1", JSON.stringify(p1.dry())); debug("p2", JSON.stringify(p2.dry())); - + let onionSecureCurrent = Sites.onionSecure; + Sites.onionSecure = true; + p1.set("http://some.onion", p1.TRUSTED); for(let t of [ () => p2.can("https://noscript.net"), () => !p2.can("http://noscript.net"), @@ -29,7 +31,8 @@ () => !p1.can("https://192.168.69.1"), () => !p1.can("https://10.0.0.1"), () => p1.can("http://192.168.1.2"), + () => p1.can("http://some.onion") ]) Test.run(t); - + Sites.onionSecure = onionSecureCurrent; Test.report(); } |