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 further comments from Sebastian. Created April 2, 2015, 10:13 a.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/test/log_tests.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
19 from datetime import datetime
20
21 from sitescripts.filterhits.test import test_helpers
22 from sitescripts.filterhits import db, geometrical_mean
23
24 test_data = [{
25 "filters": {
26 "##.top-box-right-ad": {
27 "firstParty": {
28 "acxiom-online.com": { "hits": 6, "latest": 1414817340948 },
29 "google.com": { "hits": 50, "latest": 1414849084678 },
30 "yahoo.com": { "hits": 14, "latest": 1414859271125 },
31 "doubleclick.net": { "hits": 26, "latest": 1414823430333 }
32 },
33 "thirdParty": {
34 "demdex.net": { "hits": 36, "latest": 1414838712373 }
35 }
36 }
37 }
38 }, {
39 "filters": {
40 "##.top-box-right-ad": {
41 "thirdParty": {
42 "adsymptotic.com": { "hits": 49, "latest": 1414953943015 },
43 "amazon.com": { "hits": 2, "latest": 1414913563746 },
44 "live.com": { "hits": 34, "latest": 1414916268769 },
45 "google.com": { "hits": 21, "latest": 1414953920364 },
46 "yahoo.com": { "hits": 27, "latest": 1414917270343 }
47 }
48 }
49 }
50 }, {
51 "filters": {
52 "##.top-box-right-ad": {
53 "firstParty": {
54 "google.com": { "hits": 14, "latest": 1415008533089 },
55 "adsymptotic.com": { "hits": 15, "latest": 1414994112862 }
56 },
57 "thirdParty": {
58 "yahoo.com": { "hits": 43, "latest": 1415045194098 }
59 }
60 },
61 "stevedeace.com##.topAddHolder": {
62 "firstParty": {
63 "mathtag.com": { "hits": 14, "latest": 1415032601175 },
64 "amazonaws.com": { "hits": 18, "latest": 1414977342966 }
65 }
66 }
67 }
68 }]
69
70 class GeometricalMeanTestCase(test_helpers.FilterhitsTestCase):
71 longMessage = True
72 maxDiff = None
73
74 def geometrical(self, interval, new, new_timestamp, old, old_timestamp):
75 delta_divby_interval = (new_timestamp - old_timestamp) / 1000 / float(interv al)
76 return long(round(old ** (1 - delta_divby_interval) * new ** delta_divby_int erval))
77
78 def test_calculations(self):
79 interval = 86400
80
81 # Tables should be empty to start with
82 self.assertEqual(db.query(self.db, "SELECT * FROM filters"), ())
83 self.assertEqual(db.query(self.db, "SELECT * FROM frequencies"), ())
84 # First batch
85 db.write(self.db, geometrical_mean.update(interval, test_data[0]))
86 self.assertEqual(db.query(self.db, "SELECT * FROM filters"),
87 (("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"),
88 u"##.top-box-right-ad"),))
89 self.assertEqual(
90 db.query(self.db, "SELECT * FROM frequencies"),
91 (("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"), u"acxiom-onlin e.com",
92 6L, datetime.utcfromtimestamp(1414817340948 / 1000)),
93 ("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"), u"demdex.net",
94 36L, datetime.utcfromtimestamp(1414838712373 / 1000)),
95 ("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"), u"doubleclick. net",
96 26L, datetime.utcfromtimestamp(1414823430333 / 1000)),
97 ("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"), u"google.com",
98 50L, datetime.utcfromtimestamp(1414849084678 / 1000)),
99 ("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"), u"yahoo.com",
100 14L, datetime.utcfromtimestamp(1414859271125 / 1000))))
101 # Second batch
102 db.write(self.db, geometrical_mean.update(interval, test_data[1]))
103 self.assertEqual(db.query(self.db, "SELECT * FROM filters"),
104 (("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"),
105 u"##.top-box-right-ad"),))
106 self.assertEqual(
107 db.query(self.db, "SELECT * FROM frequencies"),
108 (("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"), u"acxiom-onlin e.com",
109 6L, datetime.utcfromtimestamp(1414817340948 / 1000)),
110 ("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"), u"adsymptotic. com",
111 49L, datetime.utcfromtimestamp(1414953943015 / 1000)),
112 ("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"), u"amazon.com",
113 2L, datetime.utcfromtimestamp(1414913563746 / 1000)),
114 ("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"), u"demdex.net",
115 36L, datetime.utcfromtimestamp(1414838712373 / 1000)),
116 ("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"), u"doubleclick. net",
117 26L, datetime.utcfromtimestamp(1414823430333 / 1000)),
118 ("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"), u"google.com",
119 self.geometrical(interval, 21, 1414953920364, 50, 1414849084678),
120 datetime.utcfromtimestamp(1414953920364 / 1000)),
121 ("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"), u"live.com",
122 34L, datetime.utcfromtimestamp(1414916268769 / 1000)),
123 ("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"), u"yahoo.com",
124 self.geometrical(interval, 27, 1414917270343, 14, 1414859271125),
125 datetime.utcfromtimestamp(1414917270343 / 1000))))
126 # Third batch
127 db.write(self.db, geometrical_mean.update(interval, test_data[2]))
128 self.assertEqual(db.query(self.db, "SELECT * FROM filters"),
129 (("22de8d2ba8429eb170a0ece6ea7a426f7b22e574".decode("hex"),
130 u"stevedeace.com##.topAddHolder"),
131 ("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"),
132 u"##.top-box-right-ad")))
133 self.assertEqual(
134 db.query(self.db, "SELECT * FROM frequencies"),
135 (("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"), u"acxiom-onlin e.com",
136 6L, datetime.utcfromtimestamp(1414817340948 / 1000)),
137 ("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"), u"adsymptotic. com",
138 self.geometrical(interval, 15, 1414994112862, 49, 1414953943015),
139 datetime.utcfromtimestamp(1414994112862 / 1000)),
140 ("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"), u"amazon.com",
141 2L, datetime.utcfromtimestamp(1414913563746 / 1000)),
142 ("22de8d2ba8429eb170a0ece6ea7a426f7b22e574".decode("hex"), u"amazonaws.co m",
143 18L, datetime.utcfromtimestamp(1414977342966 / 1000)),
144 ("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"), u"demdex.net",
145 36L, datetime.utcfromtimestamp(1414838712373 / 1000)),
146 ("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"), u"doubleclick. net",
147 26L, datetime.utcfromtimestamp(1414823430333 / 1000)),
148 ("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"), u"google.com",
149 self.geometrical(interval, 14, 1415008533089,
150 self.geometrical(interval, 21, 1414953920364,
151 50, 1414849084678),
152 1414953920364),
153 datetime.utcfromtimestamp(1415008533089 / 1000)),
154 ("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"), u"live.com",
155 34L, datetime.utcfromtimestamp(1414916268769 / 1000)),
156 ("22de8d2ba8429eb170a0ece6ea7a426f7b22e574".decode("hex"), u"mathtag.com" ,
157 14L, datetime.utcfromtimestamp(1415032601175 / 1000)),
158 ("8c5ea548436c61f05536e205a29ada6204f603b0".decode("hex"), u"yahoo.com",
159 self.geometrical(interval, 43, 1415045194098,
160 self.geometrical(interval, 27, 1414917270343,
161 14, 1414859271125),
162 1414917270343),
163 datetime.utcfromtimestamp(1415045194098 / 1000))))
164
165 if __name__ == "__main__":
166 unittest.main()
OLDNEW
« no previous file with comments | « sitescripts/filterhits/test/db_tests.py ('k') | sitescripts/filterhits/test/log_tests.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld