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

Unified Diff: sitescripts/notifications/test/notification.py

Issue 4883267715072000: Issue 2276 - Handle groups in notification.json requests (Closed)
Patch Set: Refactor Created April 17, 2015, 3 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: sitescripts/notifications/test/notification.py
===================================================================
new file mode 100644
--- /dev/null
+++ b/sitescripts/notifications/test/notification.py
@@ -0,0 +1,289 @@
+# coding: utf-8
+
+# This file is part of the Adblock Plus web scripts,
+# Copyright (C) 2006-2015 Eyeo GmbH
+#
+# Adblock Plus is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License version 3 as
+# published by the Free Software Foundation.
+#
+# Adblock Plus is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
+
+import json
+import mock
+import unittest
+
+import sitescripts.notifications.web.notification as notification
+
+class TestNotification(unittest.TestCase):
+ def test_no_group(self):
+ notification.load_notifications = lambda: [{"id": "1"}]
+ result = json.loads(notification.notification({}, lambda *args: None))
+ self.assertEqual(len(result["notifications"]), 1)
+ self.assertEqual(result["notifications"][0]["id"], "1")
+ self.assertFalse("-" in result["version"])
+
+ def test_not_in_group(self):
+ notification.load_notifications = lambda: [
+ {"id": "1"},
+ {
+ "id": "a",
+ "variants": [{}]
+ }
+ ]
+ result = json.loads(notification.notification({
+ "QUERY_STRING": "lastVersion=197001010000-a/0"
+ }, lambda *args: None))
+ self.assertEqual(len(result["notifications"]), 1)
+ self.assertEqual(result["notifications"][0]["id"], "1")
+ self.assertRegexpMatches(result["version"], r"-a/0")
+
+ def test_in_group(self):
+ notification.load_notifications = lambda: [
+ {"id": "1"},
+ {
+ "id": "a",
+ "variants": [{}]
+ }
+ ]
+ result = json.loads(notification.notification({
+ "QUERY_STRING": "lastVersion=197001010000-a/1"
+ }, lambda *args: None))
+ self.assertEqual(len(result["notifications"]), 1)
+ self.assertEqual(result["notifications"][0]["id"], "a")
+ self.assertRegexpMatches(result["version"], r"-a/1")
+
+ def test_not_in_one_of_many_groups(self):
+ notification.load_notifications = lambda: [
+ {"id": "1"},
+ {
+ "id": "a",
+ "variants": [{}]
+ },
+ {
+ "id": "b",
+ "variants": [{}]
+ },
+ {
+ "id": "c",
+ "variants": [{}]
+ }
+ ]
+ result = json.loads(notification.notification({
+ "QUERY_STRING": "lastVersion=197001010000-a/0-b/0-c/0"
+ }, lambda *args: None))
+ self.assertEqual(len(result["notifications"]), 1)
+ self.assertEqual(result["notifications"][0]["id"], "1")
+ self.assertRegexpMatches(result["version"], r"-a/0-b/0-c/0")
+
+ def test_in_one_of_many_groups(self):
+ notification.load_notifications = lambda: [
Sebastian Noack 2015/04/20 14:44:39 You should restore the orginal value. Feel free to
Felix Dahlke 2015/04/23 22:15:18 Done.
+ {"id": "1"},
+ {
+ "id": "a",
+ "variants": [{}]
+ },
+ {
+ "id": "b",
+ "variants": [{}]
+ },
+ {
+ "id": "c",
+ "variants": [{}]
+ }
+ ]
+ result = json.loads(notification.notification({
+ "QUERY_STRING": "lastVersion=197001010000-a/0-b/1-c/0"
+ }, lambda *args: None))
+ self.assertEqual(len(result["notifications"]), 1)
+ self.assertEqual(result["notifications"][0]["id"], "b")
+ self.assertRegexpMatches(result["version"], r"-a/0-b/1-c/0")
+
+ def test_not_put_in_group(self):
+ notification.load_notifications = lambda: [
+ {"id": "1"},
+ {
+ "id": "a",
+ "variants": [{"sample": 0}]
+ }
+ ]
+ result = json.loads(notification.notification({
+ "QUERY_STRING": "lastVersion=197001010000"
+ }, lambda *args: None))
+ self.assertEqual(len(result["notifications"]), 1)
+ self.assertEqual(result["notifications"][0]["id"], "1")
+ self.assertRegexpMatches(result["version"], r"-a/0")
+
+ def test_put_in_group(self):
+ notification.load_notifications = lambda: [
+ {"id": "1"},
+ {
+ "id": "a",
+ "variants": [{"sample": 1}]
+ }
+ ]
+ result = json.loads(notification.notification({
+ "QUERY_STRING": "lastVersion=197001010000"
+ }, lambda *args: None))
+ self.assertEqual(len(result["notifications"]), 1)
+ self.assertEqual(result["notifications"][0]["id"], "a")
+ self.assertRegexpMatches(result["version"], r"-a/1")
+
+ def test_notification_variant_merged(self):
+ notification.load_notifications = lambda: [
+ {
+ "id": "a",
+ "title.en-GB": "default",
+ "message.en-GB": "default",
+ "message.de-DE": "vorgabe",
+ "variants": [
+ {
+ "sample": 1,
+ "message.en-GB": "variant"
+ }
+ ]
+ }
+ ]
+ result = json.loads(notification.notification({}, lambda *args: None))
+ self.assertEqual(len(result["notifications"]), 1)
+ self.assertEqual(result["notifications"][0]["id"], "a")
+ self.assertEqual(result["notifications"][0]["title.en-GB"], "default")
+ self.assertEqual(result["notifications"][0]["message.en-GB"], "variant")
+ self.assertEqual(result["notifications"][0]["message.de-DE"], "vorgabe")
+ self.assertFalse("variants" in result["notifications"][0])
+ self.assertFalse("sample" in result["notifications"][0])
+
+ def test_no_variant_no_notifications(self):
+ notification.load_notifications = lambda: [
+ {
+ "id": "a",
+ "variants": [{"sample": 0}]
+ }
+ ]
+ result = json.loads(notification.notification({}, lambda *args: None))
+ self.assertEqual(len(result["notifications"]), 0)
+
+ @mock.patch("random.random")
+ def test_probability_distribution_single_group(self, random_call):
+ notification.load_notifications = lambda: [
+ {
+ "id": "a",
+ "variants": [
+ {
+ "sample": 0.5,
+ "title.en-GB": "1"
+ },
+ {
+ "sample": 0.25,
+ "title.en-GB": "2"
+ },
+ {
+ "sample": 0.25,
+ "title.en-GB": "3"
+ }
+ ]
+ }
+ ]
+ random_call.return_value = 0
+ result = json.loads(notification.notification({}, lambda *args: None))
+ self.assertEqual(len(result["notifications"]), 1)
+ self.assertEqual(result["notifications"][0]["title.en-GB"], "1")
+ self.assertRegexpMatches(result["version"], r"-a/1")
+ random_call.return_value = 0.5
+ result = json.loads(notification.notification({}, lambda *args: None))
+ self.assertEqual(len(result["notifications"]), 1)
+ self.assertEqual(result["notifications"][0]["title.en-GB"], "1")
+ self.assertRegexpMatches(result["version"], r"-a/1")
+ random_call.return_value = 0.51
+ result = json.loads(notification.notification({}, lambda *args: None))
+ self.assertEqual(len(result["notifications"]), 1)
+ self.assertEqual(result["notifications"][0]["title.en-GB"], "2")
+ self.assertRegexpMatches(result["version"], r"-a/2")
+ random_call.return_value = 0.75
+ result = json.loads(notification.notification({}, lambda *args: None))
+ self.assertEqual(len(result["notifications"]), 1)
+ self.assertEqual(result["notifications"][0]["title.en-GB"], "2")
+ self.assertRegexpMatches(result["version"], r"-a/2")
+ random_call.return_value = 0.751
+ result = json.loads(notification.notification({}, lambda *args: None))
+ self.assertEqual(len(result["notifications"]), 1)
+ self.assertEqual(result["notifications"][0]["title.en-GB"], "3")
+ self.assertRegexpMatches(result["version"], r"-a/3")
+ random_call.return_value = 1
+ result = json.loads(notification.notification({}, lambda *args: None))
+ self.assertEqual(len(result["notifications"]), 1)
+ self.assertEqual(result["notifications"][0]["title.en-GB"], "3")
+ self.assertRegexpMatches(result["version"], r"-a/3")
+
+ @mock.patch("random.random")
+ def test_probability_distribution_multiple_groups(self, random_call):
+ notification.load_notifications = lambda: [
+ {
+ "id": "a",
+ "variants": [
+ {
+ "sample": 0.25,
+ "title.en-GB": "1"
+ },
+ {
+ "sample": 0.25,
+ "title.en-GB": "2"
+ }
+ ]
+ },
+ {
+ "id": "b",
+ "variants": [
+ {
+ "sample": 0.25,
+ "title.en-GB": "1"
+ },
+ {
+ "sample": 0.25,
+ "title.en-GB": "2"
+ }
+ ]
+ }
+ ]
+ random_call.return_value = 0
+ result = json.loads(notification.notification({}, lambda *args: None))
+ self.assertEqual(len(result["notifications"]), 1)
+ self.assertEqual(result["notifications"][0]["id"], "a")
+ self.assertEqual(result["notifications"][0]["title.en-GB"], "1")
+ self.assertRegexpMatches(result["version"], r"-a/1-b/0")
+ random_call.return_value = 0.251
+ result = json.loads(notification.notification({}, lambda *args: None))
+ self.assertEqual(len(result["notifications"]), 1)
+ self.assertEqual(result["notifications"][0]["id"], "a")
+ self.assertEqual(result["notifications"][0]["title.en-GB"], "2")
+ self.assertRegexpMatches(result["version"], r"-a/2-b/0")
+ random_call.return_value = 0.51
+ result = json.loads(notification.notification({}, lambda *args: None))
+ self.assertEqual(len(result["notifications"]), 1)
+ self.assertEqual(result["notifications"][0]["id"], "b")
+ self.assertEqual(result["notifications"][0]["title.en-GB"], "1")
+ self.assertRegexpMatches(result["version"], r"-a/0-b/1")
+ random_call.return_value = 0.751
+ result = json.loads(notification.notification({}, lambda *args: None))
+ self.assertEqual(len(result["notifications"]), 1)
+ self.assertEqual(result["notifications"][0]["id"], "b")
+ self.assertEqual(result["notifications"][0]["title.en-GB"], "2")
+ self.assertRegexpMatches(result["version"], r"-a/0-b/2")
+
+ def test_invalid_last_version(self):
+ notification.load_notifications = lambda: []
+ notification.notification({"QUERY_STRING": "lastVersion="},
+ lambda *args: None)
+ notification.notification({"QUERY_STRING": "lastVersion=-"},
+ lambda *args: None)
+ notification.notification({"QUERY_STRING": "lastVersion=-/"},
+ lambda *args: None)
+
+if __name__ == '__main__':
+ unittest.main()

Powered by Google App Engine
This is Rietveld