OLD | NEW |
1 # This file is part of Adblock Plus <https://adblockplus.org/>, | 1 # This file is part of Adblock Plus <https://adblockplus.org/>, |
2 # Copyright (C) 2006-present eyeo GmbH | 2 # Copyright (C) 2006-present eyeo GmbH |
3 # | 3 # |
4 # Adblock Plus is free software: you can redistribute it and/or modify | 4 # Adblock Plus is free software: you can redistribute it and/or modify |
5 # it under the terms of the GNU General Public License version 3 as | 5 # it under the terms of the GNU General Public License version 3 as |
6 # published by the Free Software Foundation. | 6 # published by the Free Software Foundation. |
7 # | 7 # |
8 # Adblock Plus is distributed in the hope that it will be useful, | 8 # Adblock Plus is distributed in the hope that it will be useful, |
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of | 9 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
11 # GNU General Public License for more details. | 11 # GNU General Public License for more details. |
12 # | 12 # |
13 # You should have received a copy of the GNU General Public License | 13 # You should have received a copy of the GNU General Public License |
14 # along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 14 # along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
15 | 15 |
| 16 from __future__ import unicode_literals |
16 | 17 |
17 from abp.filters.renderer import render_diff | 18 from abp.filters.renderer import render_diff |
18 | 19 |
19 BASE = '''[Adblock Plus 2.0] | 20 BASE = '''[Adblock Plus 2.0] |
20 ! Version: 111 | 21 ! Version: 111 |
21 ! diff-url: https://easylist-downloads.adblockplus.org/easylist/diffs/111.txt | 22 ! diff-url: https://easylist-downloads.adblockplus.org/easylist/diffs/111.txt |
22 ! diff-expires: 1 hours | 23 ! diff-expires: 1 hours |
23 ! Title: EasyList | 24 ! Title: EasyList |
24 ! Expires: 1 days (update frequency) | 25 ! Expires: 1 days (update frequency) |
25 ! Homepage: https://easylist.to/ | 26 ! Homepage: https://easylist.to/ |
(...skipping 20 matching lines...) Expand all Loading... |
46 ! Licence: https://easylist.to/pages/licence.html | 47 ! Licence: https://easylist.to/pages/licence.html |
47 ! | 48 ! |
48 ! Please report any unblocked adverts or problems | 49 ! Please report any unblocked adverts or problems |
49 ! in the forums (https://forums.lanik.us/) | 50 ! in the forums (https://forums.lanik.us/) |
50 ! or via e-mail (easylist.subscription@gmail.com). | 51 ! or via e-mail (easylist.subscription@gmail.com). |
51 ! | 52 ! |
52 !-----------------------General advert blocking filters-----------------------! | 53 !-----------------------General advert blocking filters-----------------------! |
53 ! *** easylist:easylist/easylist_general_block.txt *** | 54 ! *** easylist:easylist/easylist_general_block.txt *** |
54 &act=ads_ | 55 &act=ads_ |
55 &ad_box_ | 56 &ad_box_ |
56 &ad_channel= | 57 &ad_channel=\U000000a3 |
57 test | 58 test |
58 ''' | 59 ''' |
59 | 60 |
60 | 61 |
61 EXPECTED = '''[Adblock Plus Diff] | 62 EXPECTED = '''[Adblock Plus Diff] |
62 ! Diff-URL: https://easylist-downloads.adblockplus.org/easylist/diffs/123.txt | 63 ! Diff-URL: https://easylist-downloads.adblockplus.org/easylist/diffs/123.txt |
63 ! Expires: | 64 ! Expires: |
64 ! Version: 123 | 65 ! Version: 123 |
65 - &ad.vid=$~xmlhttprequest | 66 - &ad.vid=$~xmlhttprequest |
66 + &ad_channel= | 67 + &ad_channel=\U000000a3 |
67 ''' | 68 ''' |
68 | 69 |
69 | 70 |
70 def test_differ(): | 71 def test_differ(): |
71 exp = set(EXPECTED.splitlines()) | 72 exp = set(EXPECTED.splitlines()) |
72 gen = set(render_diff(BASE.splitlines(), LATEST.splitlines())) | 73 gen = set(render_diff(BASE.splitlines(), LATEST.splitlines())) |
73 assert(gen == exp) | 74 assert(gen == exp) |
OLD | NEW |