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

Side by Side Diff: libadblockplus-android-tests/src/org/adblockplus/libadblockplus/tests/FilterEngineTest.java

Issue 29536604: Issue 5556 - Update to use libadblockplus revision hg:566f64c8a2a8 (Closed) Base URL: github.com:abby-sergz/libadblockplus-android.git
Patch Set: address comment Created Sept. 7, 2017, 12:54 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * This file is part of Adblock Plus <https://adblockplus.org/>, 2 * This file is part of Adblock Plus <https://adblockplus.org/>,
3 * Copyright (C) 2006-present eyeo GmbH 3 * Copyright (C) 2006-present eyeo GmbH
4 * 4 *
5 * Adblock Plus is free software: you can redistribute it and/or modify 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 6 * it under the terms of the GNU General Public License version 3 as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
8 * 8 *
9 * Adblock Plus is distributed in the hope that it will be useful, 9 * Adblock Plus is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details. 12 * GNU General Public License for more details.
13 * 13 *
14 * You should have received a copy of the GNU General Public License 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/>. 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
16 */ 16 */
17 17
18 package org.adblockplus.libadblockplus.tests; 18 package org.adblockplus.libadblockplus.tests;
19 19
20 import org.adblockplus.libadblockplus.Filter; 20 import org.adblockplus.libadblockplus.Filter;
21 import org.adblockplus.libadblockplus.FilterEngine; 21 import org.adblockplus.libadblockplus.FilterEngine;
22 import org.adblockplus.libadblockplus.MockFilterChangeCallback; 22 import org.adblockplus.libadblockplus.MockFilterChangeCallback;
23 import org.adblockplus.libadblockplus.Subscription; 23 import org.adblockplus.libadblockplus.Subscription;
24 24
25 import org.junit.Test; 25 import org.junit.Test;
26 26
27 import java.util.List; 27 import java.util.List;
28 28
29 public class FilterEngineTest extends FilterEngineGenericTest 29 public class FilterEngineTest extends BaseFilterEngineTest
30 { 30 {
31 @Test 31 @Test
32 public void testFilterCreation() 32 public void testFilterCreation()
33 { 33 {
34 Filter filter1 = filterEngine.getFilter("foo"); 34 Filter filter1 = filterEngine.getFilter("foo");
35 assertEquals(Filter.Type.BLOCKING, filter1.getType()); 35 assertEquals(Filter.Type.BLOCKING, filter1.getType());
36 Filter filter2 = filterEngine.getFilter("@@foo"); 36 Filter filter2 = filterEngine.getFilter("@@foo");
37 assertEquals(Filter.Type.EXCEPTION, filter2.getType()); 37 assertEquals(Filter.Type.EXCEPTION, filter2.getType());
38 Filter filter3 = filterEngine.getFilter("example.com##foo"); 38 Filter filter3 = filterEngine.getFilter("example.com##foo");
39 assertEquals(Filter.Type.ELEMHIDE, filter3.getType()); 39 assertEquals(Filter.Type.ELEMHIDE, filter3.getType());
(...skipping 438 matching lines...) Expand 10 before | Expand all | Expand 10 after
478 listedSubscriptions = filterEngine.getListedSubscriptions(); 478 listedSubscriptions = filterEngine.getListedSubscriptions();
479 for (Subscription eachSubscription : listedSubscriptions) 479 for (Subscription eachSubscription : listedSubscriptions)
480 { 480 {
481 if (eachSubscription.isAcceptableAds()) 481 if (eachSubscription.isAcceptableAds())
482 { 482 {
483 assertFalse(eachSubscription.isDisabled()); 483 assertFalse(eachSubscription.isDisabled());
484 } 484 }
485 } 485 }
486 } 486 }
487 } 487 }
OLDNEW

Powered by Google App Engine
This is Rietveld