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

Side by Side Diff: sitescripts/filterhits/test/geometrical_mean_tests.py

Issue 4615801646612480: Issue 395 - Filter hits statistics backend (Closed)
Patch Set: Addressed comments. Created Feb. 24, 2015, 5:59 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
« no previous file with comments | « sitescripts/filterhits/test/db_tests.py ('k') | sitescripts/filterhits/web/query.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # coding: utf-8
2
3 # This file is part of the Adblock Plus web scripts,
4 # Copyright (C) 2006-2015 Eyeo GmbH
5 #
6 # Adblock Plus is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License version 3 as
8 # published by the Free Software Foundation.
9 #
10 # Adblock Plus is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
17
18 import unittest, MySQLdb
19 from datetime import datetime
20 from ConfigParser import NoOptionError
21
22 from sitescripts.utils import get_config
23 import sitescripts.filterhits.db as db
24 import sitescripts.filterhits.geometrical_mean as geometrical_mean
25
26 test_data = [{
27 "filters": {
28 "##.top-box-right-ad": {
29 "firstParty": {
30 "acxiom-online.com": { "hits": 6, "latest": 1414817340948 },
31 "google.com": { "hits": 50, "latest": 1414849084678 },
32 "yahoo.com": { "hits": 14, "latest": 1414859271125 },
33 "doubleclick.net": { "hits": 26, "latest": 1414823430333 }
34 },
35 "thirdParty": {
36 "demdex.net": { "hits": 36, "latest": 1414838712373 }
37 }
38 }
39 }
40 }, {
41 "filters": {
42 "##.top-box-right-ad": {
43 "thirdParty": {
44 "adsymptotic.com": { "hits": 49, "latest": 1414953943015 },
45 "amazon.com": { "hits": 2, "latest": 1414913563746 },
46 "live.com": { "hits": 34, "latest": 1414916268769 },
47 "google.com": { "hits": 21, "latest": 1414953920364 },
48 "yahoo.com": { "hits": 27, "latest": 1414917270343 }
49 }
50 }
51 }
52 }, {
53 "filters": {
54 "##.top-box-right-ad": {
55 "firstParty": {
56 "google.com": { "hits": 14, "latest": 1415008533089 },
57 "adsymptotic.com": { "hits": 15, "latest": 1414994112862 }
58 },
59 "thirdParty": {
60 "yahoo.com": { "hits": 43, "latest": 1415045194098 }
61 }
62 },
63 "stevedeace.com##.topAddHolder": {
64 "firstParty": {
65 "mathtag.com": { "hits": 14, "latest": 1415032601175 },
66 "amazonaws.com": { "hits": 18, "latest": 1414977342966 }
67 }
68 }
69 }
70 }]
71
72 class GeometricalMeanTestCase(unittest.TestCase):
73 longMessage = True
74 maxDiff = None
75
76 def geometrical(self, interval, new, new_timestamp, old, old_timestamp):
77 delta_divby_interval = (new_timestamp - old_timestamp) / 1000 / float(interv al)
78 return long(round(old ** (1 - delta_divby_interval) * new ** delta_divby_int erval))
79
80 def clear_rows(self):
81 if self.db:
82 db.write(self.db, (("DELETE FROM geometrical_mean",),
83 ("DELETE FROM filters",)))
84
85 def setUp(self):
86 try:
87 self.config = get_config()
88 self.db = db.connect(
89 self.config.get("filterhitstats", "dbuser"),
90 self.config.get("filterhitstats", "dbpassword"),
91 self.config.get("filterhitstats", "test_database"))
92 except (MySQLdb.Error, NoOptionError):
93 self.db = None
94 self.clear_rows()
95
96 def tearDown(self):
97 if self.db:
98 self.clear_rows()
99 self.db.close()
100 self.db = None
101
102 def test_calculations(self):
103 if not self.db:
104 raise unittest.SkipTest("Not connected to test DB.")
105
106 interval = 86400
107
108 # Tables should be empty to start with
109 self.assertEqual(db.query(self.db, "SELECT * FROM filters"), ())
110 self.assertEqual(db.query(self.db, "SELECT * FROM geometrical_mean"), ())
111 # First batch
112 db.write(self.db, geometrical_mean.update(interval, test_data[0]))
113 self.assertEqual(db.query(self.db, "SELECT * FROM filters"),
114 (("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"),
115 u"##.top-box-right-ad"),))
116 self.assertEqual(
117 db.query(self.db, "SELECT * FROM geometrical_mean"),
118 (("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"), u"acxiom-onlin e.com",
119 6L, datetime.utcfromtimestamp(1414817340948 / 1000)),
120 ("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"), u"demdex.net",
121 36L, datetime.utcfromtimestamp(1414838712373 / 1000)),
122 ("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"), u"doubleclick. net",
123 26L, datetime.utcfromtimestamp(1414823430333 / 1000)),
124 ("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"), u"google.com",
125 50L, datetime.utcfromtimestamp(1414849084678 / 1000)),
126 ("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"), u"yahoo.com",
127 14L, datetime.utcfromtimestamp(1414859271125 / 1000))))
128 # Second batch
129 db.write(self.db, geometrical_mean.update(interval, test_data[1]))
130 self.assertEqual(db.query(self.db, "SELECT * FROM filters"),
131 (("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"),
132 u"##.top-box-right-ad"),))
133 self.assertEqual(
134 db.query(self.db, "SELECT * FROM geometrical_mean"),
135 (("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"), u"acxiom-onlin e.com",
136 6L, datetime.utcfromtimestamp(1414817340948 / 1000)),
137 ("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"), u"adsymptotic. com",
138 49L, datetime.utcfromtimestamp(1414953943015 / 1000)),
139 ("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"), u"amazon.com",
140 2L, datetime.utcfromtimestamp(1414913563746 / 1000)),
141 ("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"), u"demdex.net",
142 36L, datetime.utcfromtimestamp(1414838712373 / 1000)),
143 ("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"), u"doubleclick. net",
144 26L, datetime.utcfromtimestamp(1414823430333 / 1000)),
145 ("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"), u"google.com",
146 self.geometrical(interval, 21, 1414953920364, 50, 1414849084678),
147 datetime.utcfromtimestamp(1414953920364 / 1000)),
148 ("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"), u"live.com",
149 34L, datetime.utcfromtimestamp(1414916268769 / 1000)),
150 ("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"), u"yahoo.com",
151 self.geometrical(interval, 27, 1414917270343, 14, 1414859271125),
152 datetime.utcfromtimestamp(1414917270343 / 1000))))
153 # Third batch
154 db.write(self.db, geometrical_mean.update(interval, test_data[2]))
155 self.assertEqual(db.query(self.db, "SELECT * FROM filters"),
156 (("22de8d2ba8429eb170a0ece6ea7a426f7b22e574".decode("hex"),
157 u"stevedeace.com##.topAddHolder"),
158 ("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"),
159 u"##.top-box-right-ad")))
160 self.assertEqual(
161 db.query(self.db, "SELECT * FROM geometrical_mean"),
162 (("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"), u"acxiom-onlin e.com",
163 6L, datetime.utcfromtimestamp(1414817340948 / 1000)),
164 ("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"), u"adsymptotic. com",
165 self.geometrical(interval, 15, 1414994112862, 49, 1414953943015),
166 datetime.utcfromtimestamp(1414994112862 / 1000)),
167 ("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"), u"amazon.com",
168 2L, datetime.utcfromtimestamp(1414913563746 / 1000)),
169 ("22de8d2ba8429eb170a0ece6ea7a426f7b22e574".decode("hex"), u'amazonaws.co m',
170 18L, datetime.utcfromtimestamp(1414977342966 / 1000)),
171 ("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"), u"demdex.net",
172 36L, datetime.utcfromtimestamp(1414838712373 / 1000)),
173 ("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"), u"doubleclick. net",
174 26L, datetime.utcfromtimestamp(1414823430333 / 1000)),
175 ("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"), u"google.com",
176 self.geometrical(interval, 14, 1415008533089,
177 self.geometrical(interval, 21, 1414953920364,
178 50, 1414849084678),
179 1414953920364),
180 datetime.utcfromtimestamp(1415008533089 / 1000)),
181 ("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"), u"live.com",
182 34L, datetime.utcfromtimestamp(1414916268769 / 1000)),
183 ("22de8d2ba8429eb170a0ece6ea7a426f7b22e574".decode("hex"), u'mathtag.com' ,
184 14L, datetime.utcfromtimestamp(1415032601175 / 1000)),
185 ("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"), u"yahoo.com",
186 self.geometrical(interval, 43, 1415045194098,
187 self.geometrical(interval, 27, 1414917270343,
188 14, 1414859271125),
189 1414917270343),
190 datetime.utcfromtimestamp(1415045194098 / 1000))))
191
192 if __name__ == '__main__':
193 unittest.main()
OLDNEW
« no previous file with comments | « sitescripts/filterhits/test/db_tests.py ('k') | sitescripts/filterhits/web/query.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld