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

Unified Diff: test/elemHideEmulation.js

Issue 29587914: Issue 5142 - Convert Element Hiding to C++ (Closed) Base URL: https://hg.adblockplus.org/adblockpluscore/
Patch Set: mFiltersByDomain is now an OwnedStringMap Created Jan. 26, 2018, 8:41 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
« no previous file with comments | « test/elemHide.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/elemHideEmulation.js
===================================================================
--- a/test/elemHideEmulation.js
+++ b/test/elemHideEmulation.js
@@ -13,16 +13,17 @@
*
* You should have received a copy of the GNU General Public License
* along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
*/
"use strict";
const {createSandbox} = require("./_common");
+const {withNAD} = require("./_test-utils");
let ElemHideEmulationFilter = null;
let ElemHideEmulation = null;
let ElemHide = null;
let Filter = null;
exports.setUp = function(callback)
{
@@ -32,35 +33,139 @@
ElemHideEmulationFilter} = sandboxedRequire("../lib/filterClasses"),
{ElemHideEmulation} = sandboxedRequire("../lib/elemHideEmulation"),
{ElemHide} = sandboxedRequire("../lib/elemHide")
);
callback();
};
+exports.testElemHideAPI = function(test)
+{
+ withNAD(0, elemHide =>
+ {
+ withNAD(0, filter =>
+ {
+ elemHide.add(filter);
+ test.equal(filter.selectorDomain, "");
+ })(Filter.fromText("###ads"));
+
+ withNAD(0, unconditionals =>
+ {
+ test.equal(unconditionals.selectorCount, 1);
+ test.equal(unconditionals.selectorAt(0), "#ads");
+ test.equal(unconditionals.filterKeyAt(0), "###ads");
+ })(elemHide.getUnconditionalSelectors());
+
+ withNAD(0, filter =>
+ {
+ elemHide.add(filter);
+ test.equal(filter.selectorDomain, "example.com");
+ })(Filter.fromText("example.com##.foo"));
+
+ withNAD(
+ 0, unconditionals =>
+ test.equal(unconditionals.selectorCount, 1))(elemHide.getUnconditionalSelectors());
+
+ withNAD(0, selectors =>
+ {
+ test.equal(selectors.selectorCount, 1);
+ test.equal(selectors.selectorAt(0), ".foo");
+ test.equal(selectors.filterKeyAt(0), "example.com##.foo");
+ })(elemHide.getSelectorsForDomain("example.com", 1));
+
+ withNAD(0, selectors =>
+ {
+ test.equal(selectors.selectorCount, 2);
+ test.equal(selectors.selectorAt(0), "#ads");
+ test.equal(selectors.filterKeyAt(0), "###ads");
+ test.equal(selectors.selectorAt(1), ".foo");
+ test.equal(selectors.filterKeyAt(1), "example.com##.foo");
+ })(elemHide.getSelectorsForDomain("example.com", 0));
+
+ withNAD(0, filter3 =>
+ {
+ elemHide.add(filter3);
+
+ withNAD(
+ 0, selectors =>
+ test.equal(selectors.selectorCount, 3))(
+ elemHide.getSelectorsForDomain("example.com", 0));
+
+ withNAD(
+ 0, selectors =>
+ test.equal(selectors.selectorCount, 3))(
+ elemHide.getSelectorsForDomain("mail.example.com", 0));
+
+ withNAD(0, filter4 =>
+ {
+ elemHide.add(filter4);
+ withNAD(
+ 0, selectors =>
+ test.equal(selectors.selectorCount, 3))(
+ elemHide.getSelectorsForDomain("example.com", 0));
+
+ withNAD(
+ 0, selectors =>
+ test.equal(selectors.selectorCount, 2))(
+ elemHide.getSelectorsForDomain("mail.example.com", 0));
+
+ withNAD(
+ 0,
+ unconditionals =>
+ test.equal(unconditionals.selectorCount, 1))(elemHide.getUnconditionalSelectors());
+
+ elemHide.remove(filter4);
+ })(Filter.fromText("mail.example.com#@#.message"));
+
+ withNAD(
+ 0, selectors =>
+ test.equal(selectors.selectorCount, 3))(
+ elemHide.getSelectorsForDomain("example.com", 0));
+
+ withNAD(
+ 0, selectors =>
+ test.equal(selectors.selectorCount, 3))(
+ elemHide.getSelectorsForDomain("mail.example.com", 0));
+
+ elemHide.remove(filter3);
+ })(Filter.fromText("example.com##.message"));
+
+ withNAD(
+ 0, selectors =>
+ test.equal(selectors.selectorCount, 2))(
+ elemHide.getSelectorsForDomain("example.com", 0));
+ })(ElemHide.create());
+
+ test.done();
+};
+
exports.testDomainRestrictions = function(test)
{
function testSelectorMatches(description, filters, domain, expectedMatches)
{
- for (let filter of filters)
+ withNAD(0, elemHide =>
{
- filter = Filter.fromText(filter);
- if (filter instanceof ElemHideEmulationFilter)
- ElemHideEmulation.add(filter);
- else
- ElemHide.add(filter);
- }
+ let addFilter = withNAD(0, filter =>
+ {
+ if (filter instanceof ElemHideEmulationFilter)
+ ElemHideEmulation.add(filter);
+ else
+ elemHide.add(filter);
+ });
- let matches = ElemHideEmulation.getRulesForDomain(domain)
- .map(filter => filter.text);
- test.deepEqual(matches.sort(), expectedMatches.sort(), description);
+ for (let text of filters)
+ addFilter(Filter.fromText(text));
- ElemHideEmulation.clear();
- ElemHide.clear();
+ let matches = ElemHideEmulation.getRulesForDomain(domain, elemHide)
+ .map(filter => filter.text);
+ test.deepEqual(matches.sort(), expectedMatches.sort(), description);
+
+ ElemHideEmulation.clear();
+ })(ElemHide.create());
}
testSelectorMatches(
"Ignore generic filters",
[
"##[-abp-properties='foo']", "example.com##[-abp-properties='foo']",
"~example.com##[-abp-properties='foo']"
],
@@ -104,45 +209,49 @@
["other.example.com##[-abp-properties='foo']"]
);
test.done();
};
exports.testElemHideEmulationFiltersContainer = function(test)
{
- function compareRules(description, domain, expectedMatches)
+ withNAD(0, elemHide =>
{
- let result = ElemHideEmulation.getRulesForDomain(domain)
- .map(filter => filter.text);
- expectedMatches = expectedMatches.map(filter => filter.text);
- test.deepEqual(result.sort(), expectedMatches.sort(), description);
- }
-
- let domainFilter = Filter.fromText("example.com##filter1");
- let subdomainFilter = Filter.fromText("www.example.com##filter2");
- let otherDomainFilter = Filter.fromText("other.example.com##filter3");
+ function compareRules(description, domain, expectedMatches)
+ {
+ let result = ElemHideEmulation.getRulesForDomain(domain, elemHide)
+ .map(filter => filter.text);
+ expectedMatches = expectedMatches.map(filter => filter.text);
+ test.deepEqual(result.sort(), expectedMatches.sort(), description);
+ }
- ElemHideEmulation.add(domainFilter);
- ElemHideEmulation.add(subdomainFilter);
- ElemHideEmulation.add(otherDomainFilter);
- compareRules(
- "Return all matching filters",
- "www.example.com",
- [domainFilter, subdomainFilter]
- );
+ withNAD([0, 1, 2], (domainFilter, subdomainFilter, otherDomainFilter) =>
+ {
+ ElemHideEmulation.add(domainFilter);
+ ElemHideEmulation.add(subdomainFilter);
+ ElemHideEmulation.add(otherDomainFilter);
+ compareRules(
+ "Return all matching filters",
+ "www.example.com",
+ [domainFilter, subdomainFilter]
+ );
- ElemHideEmulation.remove(domainFilter);
- compareRules(
- "Return all matching filters after removing one",
- "www.example.com",
- [subdomainFilter]
- );
+ ElemHideEmulation.remove(domainFilter);
+ compareRules(
+ "Return all matching filters after removing one",
+ "www.example.com",
+ [subdomainFilter]
+ );
- ElemHideEmulation.clear();
- compareRules(
- "Return no filters after clearing",
- "www.example.com",
- []
- );
+ ElemHideEmulation.clear();
+ compareRules(
+ "Return no filters after clearing",
+ "www.example.com",
+ []
+ );
+ })(Filter.fromText("example.com##filter1"),
+ Filter.fromText("www.example.com##filter2"),
+ Filter.fromText("other.example.com##filter3"));
+ })(ElemHide.create());
test.done();
};
« no previous file with comments | « test/elemHide.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld