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

Delta Between Two Patch Sets: tests/test_parser.py

Issue 29793573: Issue 6701 - Implement CSP support in python-abp (Closed) Base URL: https://hg.adblockplus.org/python-abp/
Left Patch Set: Remove validity regex and extraneous comment Created June 7, 2018, 6:16 p.m.
Right Patch Set: Removing handling and testing for ~csp Created June 14, 2018, 7:48 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « abp/filters/parser.py ('k') | no next file » | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
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
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 }, 60 },
61 '@@http://bla$~script,~other,sitekey=foo|bar': { 61 '@@http://bla$~script,~other,sitekey=foo|bar': {
62 'selector': {'type': ST.URL_PATTERN, 'value': 'http://bla'}, 62 'selector': {'type': ST.URL_PATTERN, 'value': 'http://bla'},
63 'action': FA.ALLOW, 63 'action': FA.ALLOW,
64 'options': [ 64 'options': [
65 (OPT.SCRIPT, False), 65 (OPT.SCRIPT, False),
66 (OPT.OTHER, False), 66 (OPT.OTHER, False),
67 (OPT.SITEKEY, ['foo', 'bar']), 67 (OPT.SITEKEY, ['foo', 'bar']),
68 ], 68 ],
69 }, 69 },
70 "||foo.com^$csp=script-src 'self' * 'unsafe-inline'": { 70 "||foo.com^$csp=script-src 'self' * 'unsafe-inline',script,sitekey=foo," +
71 'other,match-case,domain=foo.com': {
71 'selector': {'type': ST.URL_PATTERN, 'value': '||foo.com^'}, 72 'selector': {'type': ST.URL_PATTERN, 'value': '||foo.com^'},
72 'action': FA.BLOCK, 73 'action': FA.BLOCK,
73 'options': [ 74 'options': [
74 (OPT.CSP, "script-src 'self' * 'unsafe-inline'"), 75 (OPT.CSP, "script-src 'self' * 'unsafe-inline'"),
76 ('script', True),
77 ('sitekey', ['foo']),
78 ('other', True),
79 ('match-case', True),
80 ('domain', [('foo.com', True)]),
81 ],
82 },
83 '@@bla$script,other,domain=foo.com|~bar.foo.com,csp=c s p': {
84 'selector': {'type': ST.URL_PATTERN, 'value': 'bla'},
85 'action': FA.ALLOW,
86 'options': [
87 ('script', True),
88 ('other', True),
89 ('domain', [('foo.com', True), ('bar.foo.com', False)]),
90 ('csp', 'c s p'),
75 ], 91 ],
76 }, 92 },
77 # Element hiding filters and exceptions. 93 # Element hiding filters and exceptions.
78 '##ddd': { 94 '##ddd': {
79 'selector': {'type': ST.CSS, 'value': 'ddd'}, 95 'selector': {'type': ST.CSS, 'value': 'ddd'},
80 'action': FA.HIDE, 96 'action': FA.HIDE,
81 'options': [], 97 'options': [],
82 }, 98 },
83 '#@#body > div:first-child': { 99 '#@#body > div:first-child': {
84 'selector': {'type': ST.CSS, 'value': 'body > div:first-child'}, 100 'selector': {'type': ST.CSS, 'value': 'body > div:first-child'},
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 def test_exception_timing(): 181 def test_exception_timing():
166 result = parse_filterlist(['! good line', '%bad line%']) 182 result = parse_filterlist(['! good line', '%bad line%'])
167 assert next(result) == Comment('good line') 183 assert next(result) == Comment('good line')
168 with pytest.raises(ParseError): 184 with pytest.raises(ParseError):
169 next(result) 185 next(result)
170 186
171 187
172 def test_parse_line_bytes(): 188 def test_parse_line_bytes():
173 line = parse_line(b'! \xc3\xbc') 189 line = parse_line(b'! \xc3\xbc')
174 assert line.text == '\xfc' 190 assert line.text == '\xfc'
LEFTRIGHT

Powered by Google App Engine
This is Rietveld