2016-01-22 01:07:27 +08:00
|
|
|
import test_helper
|
2015-11-11 18:47:38 +08:00
|
|
|
from mockredis import MockRedis
|
2016-01-29 18:54:50 +08:00
|
|
|
from cartodb_services.metrics import UserMetricsService
|
|
|
|
from cartodb_services.metrics import GeocoderConfig
|
2016-01-22 01:07:27 +08:00
|
|
|
from datetime import datetime, date
|
2015-11-11 18:47:38 +08:00
|
|
|
from unittest import TestCase
|
2016-03-08 19:24:27 +08:00
|
|
|
from mock import Mock
|
2015-11-11 18:47:38 +08:00
|
|
|
from nose.tools import assert_raises
|
2016-01-22 01:07:27 +08:00
|
|
|
from datetime import timedelta
|
2016-06-13 17:33:11 +08:00
|
|
|
import nose #TODO remove
|
2015-11-11 18:47:38 +08:00
|
|
|
|
|
|
|
|
|
|
|
class TestUserService(TestCase):
|
|
|
|
|
2016-01-22 01:07:27 +08:00
|
|
|
NOKIA_GEOCODER = 'geocoder_here'
|
2015-11-18 01:02:21 +08:00
|
|
|
|
2015-11-11 18:47:38 +08:00
|
|
|
def setUp(self):
|
2016-01-22 01:07:27 +08:00
|
|
|
self.redis_conn = MockRedis()
|
2015-11-11 18:47:38 +08:00
|
|
|
|
2016-01-22 01:07:27 +08:00
|
|
|
def test_user_used_quota_for_a_day(self):
|
|
|
|
us = self.__build_user_service('test_user')
|
2016-04-22 22:43:28 +08:00
|
|
|
test_helper.increment_service_uses(self.redis_conn, 'test_user',
|
|
|
|
amount=400)
|
2016-01-22 01:07:27 +08:00
|
|
|
assert us.used_quota(self.NOKIA_GEOCODER, date.today()) == 400
|
2015-11-11 18:47:38 +08:00
|
|
|
|
2016-01-22 01:07:27 +08:00
|
|
|
def test_org_used_quota_for_a_day(self):
|
|
|
|
us = self.__build_user_service('test_user', orgname='test_org')
|
2016-04-22 22:43:28 +08:00
|
|
|
test_helper.increment_service_uses(self.redis_conn, 'test_user',
|
|
|
|
orgname='test_org',
|
|
|
|
amount=400)
|
2016-01-22 01:07:27 +08:00
|
|
|
assert us.used_quota(self.NOKIA_GEOCODER, date.today()) == 400
|
2015-11-11 18:47:38 +08:00
|
|
|
|
2015-11-18 01:02:21 +08:00
|
|
|
def test_user_not_amount_in_used_quota_for_month_should_be_0(self):
|
2016-01-22 01:07:27 +08:00
|
|
|
us = self.__build_user_service('test_user')
|
|
|
|
assert us.used_quota(self.NOKIA_GEOCODER, date.today()) == 0
|
2015-11-18 01:02:21 +08:00
|
|
|
|
|
|
|
def test_org_not_amount_in_used_quota_for_month_should_be_0(self):
|
2016-01-22 01:07:27 +08:00
|
|
|
us = self.__build_user_service('test_user', orgname='test_org')
|
|
|
|
assert us.used_quota(self.NOKIA_GEOCODER, date.today()) == 0
|
2015-11-18 01:02:21 +08:00
|
|
|
|
2016-01-22 01:07:27 +08:00
|
|
|
def test_should_increment_user_used_quota_for_one_date(self):
|
|
|
|
us = self.__build_user_service('test_user')
|
|
|
|
us.increment_service_use(self.NOKIA_GEOCODER, 'success_responses')
|
|
|
|
assert us.used_quota(self.NOKIA_GEOCODER, date.today()) == 1
|
|
|
|
us.increment_service_use(self.NOKIA_GEOCODER, 'empty_responses')
|
|
|
|
assert us.used_quota(self.NOKIA_GEOCODER, date.today()) == 2
|
|
|
|
us.increment_service_use(self.NOKIA_GEOCODER, 'fail_responses')
|
|
|
|
assert us.used_quota(self.NOKIA_GEOCODER, date.today()) == 2
|
2015-11-18 01:02:21 +08:00
|
|
|
|
|
|
|
def test_should_increment_org_used_quota(self):
|
2016-01-22 01:07:27 +08:00
|
|
|
us = self.__build_user_service('test_user', orgname='test_org')
|
|
|
|
us.increment_service_use(self.NOKIA_GEOCODER, 'success_responses')
|
|
|
|
assert us.used_quota(self.NOKIA_GEOCODER, date.today()) == 1
|
|
|
|
us.increment_service_use(self.NOKIA_GEOCODER, 'empty_responses')
|
|
|
|
assert us.used_quota(self.NOKIA_GEOCODER, date.today()) == 2
|
|
|
|
us.increment_service_use(self.NOKIA_GEOCODER, 'fail_responses')
|
|
|
|
assert us.used_quota(self.NOKIA_GEOCODER, date.today()) == 2
|
|
|
|
|
|
|
|
def test_should_increment_user_used_quota_in_for_multiples_dates(self):
|
|
|
|
two_days_ago = datetime.today() - timedelta(days=2)
|
|
|
|
one_day_ago = datetime.today() - timedelta(days=1)
|
|
|
|
one_day_after = datetime.today() + timedelta(days=1)
|
|
|
|
us = self.__build_user_service('test_user', end_date=one_day_ago)
|
|
|
|
us.increment_service_use(self.NOKIA_GEOCODER, 'success_responses',
|
|
|
|
date=date.today())
|
|
|
|
assert us.used_quota(self.NOKIA_GEOCODER, date.today()) == 1
|
|
|
|
us.increment_service_use(self.NOKIA_GEOCODER, 'empty_responses',
|
|
|
|
date=one_day_ago)
|
|
|
|
assert us.used_quota(self.NOKIA_GEOCODER, date.today()) == 2
|
|
|
|
us.increment_service_use(self.NOKIA_GEOCODER, 'empty_responses',
|
|
|
|
date=two_days_ago)
|
|
|
|
assert us.used_quota(self.NOKIA_GEOCODER, date.today()) == 2
|
|
|
|
us.increment_service_use(self.NOKIA_GEOCODER, 'empty_responses',
|
|
|
|
date=one_day_after)
|
|
|
|
assert us.used_quota(self.NOKIA_GEOCODER, date.today()) == 2
|
|
|
|
us.increment_service_use(self.NOKIA_GEOCODER, 'fail_responses')
|
|
|
|
assert us.used_quota(self.NOKIA_GEOCODER, date.today()) == 2
|
|
|
|
|
2016-06-13 17:33:11 +08:00
|
|
|
def test_should_account_for_zero_paddded_keys(self):
|
|
|
|
raise nose.SkipTest('not implemented yet')
|
|
|
|
|
|
|
|
def test_should_account_for_wrongly_stored_non_padded_keys(self):
|
2016-06-13 18:21:06 +08:00
|
|
|
us = self.__build_user_service('test_user', end_date = date(2016, 6, 1))
|
|
|
|
self.redis_conn.zincrby('user:test_user:geocoder_here:success_responses:201606', '1', 400)
|
|
|
|
assert us.used_quota(self.NOKIA_GEOCODER, date(2016, 6,1)) == 400
|
2016-06-13 17:33:11 +08:00
|
|
|
|
|
|
|
def test_should_sum_amounts_from_both_key_formats(self):
|
|
|
|
raise nose.SkipTest('not implemented yet')
|
|
|
|
|
|
|
|
def test_should_not_request_redis_twice_when_unneeded(self):
|
|
|
|
raise nose.SkipTest('not implemented yet')
|
|
|
|
|
|
|
|
|
2016-01-22 01:07:27 +08:00
|
|
|
def __build_user_service(self, username, quota=100, service='heremaps',
|
|
|
|
orgname=None, soft_limit=False,
|
|
|
|
end_date=datetime.today()):
|
|
|
|
test_helper.build_redis_user_config(self.redis_conn, username,
|
|
|
|
quota=quota, service=service,
|
|
|
|
soft_limit=soft_limit,
|
|
|
|
end_date=end_date)
|
|
|
|
if orgname:
|
|
|
|
test_helper.build_redis_org_config(self.redis_conn, orgname,
|
|
|
|
quota=quota, end_date=end_date)
|
2016-03-08 19:24:27 +08:00
|
|
|
plpy_mock = test_helper.build_plpy_mock()
|
|
|
|
geocoder_config = GeocoderConfig(self.redis_conn, plpy_mock,
|
2016-03-23 02:33:55 +08:00
|
|
|
username, orgname)
|
2016-01-29 18:54:50 +08:00
|
|
|
return UserMetricsService(geocoder_config, self.redis_conn)
|