Use more correct terms
This commit is contained in:
parent
0ecb431728
commit
eb1fcefd49
16
run_tests.py
16
run_tests.py
|
@ -21,14 +21,14 @@ if __name__ == '__main__':
|
||||||
for test in reader:
|
for test in reader:
|
||||||
log.info("Testing %s (%s)", test['url'], test['comment'])
|
log.info("Testing %s (%s)", test['url'], test['comment'])
|
||||||
|
|
||||||
for white in test['white'].split(':'):
|
for allow in test['allow'].split(':'):
|
||||||
if not white:
|
if not allow:
|
||||||
continue
|
continue
|
||||||
if any(DB.get_domain(white)):
|
if any(DB.get_domain(allow)):
|
||||||
log.error("False positive: %s", white)
|
log.error("False positive: %s", allow)
|
||||||
|
|
||||||
for black in test['black'].split(':'):
|
for deny in test['deny'].split(':'):
|
||||||
if not black:
|
if not deny:
|
||||||
continue
|
continue
|
||||||
if not any(DB.get_domain(black)):
|
if not any(DB.get_domain(deny)):
|
||||||
log.error("False negative: %s", black)
|
log.error("False negative: %s", deny)
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
url,white,black,comment
|
url,allow,deny,comment
|
||||||
https://support.apple.com,support.apple.com,,EdgeKey / AkamaiEdge
|
https://support.apple.com,support.apple.com,,EdgeKey / AkamaiEdge
|
||||||
https://www.pinterest.fr/,i.pinimg.com,,Cedexis
|
https://www.pinterest.fr/,i.pinimg.com,,Cedexis
|
||||||
https://www.tumblr.com/,66.media.tumblr.com,,ChiCDN
|
https://www.tumblr.com/,66.media.tumblr.com,,ChiCDN
|
||||||
|
|
|
|
@ -1,4 +1,4 @@
|
||||||
url,white,black,comment
|
url,allow,deny,comment
|
||||||
https://www.red-by-sfr.fr/,static.s-sfr.fr,nrg.red-by-sfr.fr,Eulerian
|
https://www.red-by-sfr.fr/,static.s-sfr.fr,nrg.red-by-sfr.fr,Eulerian
|
||||||
https://www.cbc.ca/,,smetrics.cbc.ca,2o7 | Ominuture | Adobe Experience Cloud
|
https://www.cbc.ca/,,smetrics.cbc.ca,2o7 | Ominuture | Adobe Experience Cloud
|
||||||
https://www.discover.com/,,content.discover.com,ThreatMetrix
|
https://www.discover.com/,,content.discover.com,ThreatMetrix
|
||||||
|
|
|
Loading…
Reference in a new issue