1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
import unittest
import pbtest
from selenium.common.exceptions import TimeoutException
from pbtest import retry_until
class SurrogatesTest(pbtest.PBSeleniumTest):
"""Integration tests to verify surrogate script functionality."""
FIXTURE_URL = (
"https://efforg.github.io/privacybadger-test-fixtures/html/"
"ga_surrogate.html"
)
def load_ga_js_test_page(self, timeout=12):
self.load_url(SurrogatesTest.FIXTURE_URL)
try:
self.wait_for_and_switch_to_frame('iframe', timeout=timeout)
self.wait_for_text('h1', "It worked!", timeout=timeout)
return True
except TimeoutException:
return False
def test_ga_js_surrogate(self):
# clear pre-trained/seed tracker data
self.load_url(self.options_url)
self.js("chrome.extension.getBackgroundPage().badger.storage.clearTrackerData();")
# verify the surrogate is present
self.load_url(self.options_url)
self.assertTrue(self.js(
"let bg = chrome.extension.getBackgroundPage();"
"const sdb = bg.require('surrogatedb');"
"return sdb.hostnames.hasOwnProperty('www.google-analytics.com');"
), "Surrogate is missing but should be present.")
# verify site loads
self.assertTrue(
self.load_ga_js_test_page(),
"Page failed to load even before we did anything."
)
# block ga.js (known to break the site)
self.block_domain("www.google-analytics.com")
# back up the surrogate definition before removing it
ga_backup = self.js(
"let bg = chrome.extension.getBackgroundPage();"
"const sdb = bg.require('surrogatedb');"
"return JSON.stringify(sdb.hostnames['www.google-analytics.com']);"
)
# now remove the surrogate
self.js(
"let bg = chrome.extension.getBackgroundPage();"
"const sdb = bg.require('surrogatedb');"
"delete sdb.hostnames['www.google-analytics.com'];"
)
# wait until this happens
self.wait_for_script(
"let bg = chrome.extension.getBackgroundPage();"
"const sdb = bg.require('surrogatedb');"
"return !sdb.hostnames.hasOwnProperty('www.google-analytics.com');",
timeout=5,
message="Timed out waiting for surrogate to get removed."
)
# verify site breaks
self.assertFalse(
self.load_ga_js_test_page(),
"Page loaded successfully when it should have failed."
)
# re-enable surrogate
self.open_window()
self.load_url(self.options_url)
self.js(
"let bg = chrome.extension.getBackgroundPage();"
"const sdb = bg.require('surrogatedb');"
"sdb.hostnames['www.google-analytics.com'] = JSON.parse('%s');" % ga_backup
)
# wait until this happens
self.wait_for_script(
"let bg = chrome.extension.getBackgroundPage();"
"const sdb = bg.require('surrogatedb');"
"return sdb.hostnames.hasOwnProperty('www.google-analytics.com');",
timeout=5,
message="Timed out waiting for surrogate to get readded."
)
# verify site loads again
self.assertTrue(
retry_until(self.load_ga_js_test_page),
"Page failed to load after surrogation."
)
if __name__ == "__main__":
unittest.main()
|