Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: test/filterListener.js

Issue 29784555: Issue 6665 - Abstract element hiding container logic into its own module Base URL: https://hg.adblockplus.org/adblockpluscore/
Patch Set: Move base class into lib/contentFilterModule.js Created Aug. 15, 2018, 8:56 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« lib/contentFilterModule.js ('K') | « lib/elemHideEmulation.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/filterListener.js
===================================================================
--- a/test/filterListener.js
+++ b/test/filterListener.js
@@ -25,18 +25,16 @@
let Filter = null;
let defaultMatcher = null;
let SpecialSubscription = null;
exports.setUp = function(callback)
{
sandboxedRequire = createSandbox({
extraExports: {
- elemHide: ["knownFilters"],
- elemHideEmulation: ["filters"],
elemHideExceptions: ["knownExceptions"],
snippets: ["filters"]
}
});
// We need to require the filterListener module so that filter changes will be
// noticed, even though we don't directly use the module here.
sandboxedRequire("../lib/filterListener");
@@ -76,28 +74,28 @@
filters.push(filter.text);
}
}
result[type] = filters;
}
let elemHide = sandboxedRequire("../lib/elemHide");
result.elemhide = [];
- for (let filter of elemHide.knownFilters)
+ for (let filter of elemHide.ElemHide._knownFilters)
result.elemhide.push(filter.text);
let elemHideExceptions = sandboxedRequire("../lib/elemHideExceptions");
result.elemhideexception = [];
for (let exception of elemHideExceptions.knownExceptions)
result.elemhideexception.push(exception.text);
let elemHideEmulation = sandboxedRequire("../lib/elemHideEmulation");
result.elemhideemulation = [];
- for (let filterText of elemHideEmulation.filters)
- result.elemhideemulation.push(filterText);
+ for (let filter of elemHideEmulation.ElemHideEmulation._knownFilters)
+ result.elemhideemulation.push(filter.text);
let snippets = sandboxedRequire("../lib/snippets");
result.snippets = [];
for (let filterText of snippets.filters)
result.snippets.push(filterText);
let types = ["blacklist", "whitelist", "elemhide", "elemhideexception",
"elemhideemulation", "snippets"];
« lib/contentFilterModule.js ('K') | « lib/elemHideEmulation.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld