def setUp(self): super(TestADICommand, self).setUp() self.command = Command()
class TestADICommand(FixturesFolderMixin, amo.tests.TestCase): fixtures = ('base/addon_3615', 'base/featured', 'addons/persona', 'base/appversion.json') date = '2014-07-10' source_folder = 'src' def setUp(self): super(TestADICommand, self).setUp() self.command = Command() @mock.patch( 'stats.management.commands.update_counts_from_file.save_stats_to_file') def test_update_counts_from_file(self, mock_save_stats_to_file): management.call_command('update_counts_from_file', hive_folder, date=self.date) assert UpdateCount.objects.all().count() == 1 update_count = UpdateCount.objects.last() assert update_count.count == 5 assert update_count.date == date(2014, 7, 10) assert update_count.versions == {u'3.8': 2, u'3.7': 3} assert update_count.statuses == {u'userEnabled': 5} application = u'{ec8030f7-c20a-464f-9b0e-13a3a9e97384}' assert update_count.applications[application] == {u'3.6': 18} assert update_count.oses == {u'WINNT': 5} assert update_count.locales == {u'en-us': 1, u'en-US': 4} # save_stats_to_file is called with a non-saved model. update_count.id = None mock_save_stats_to_file.assert_called_once_with(update_count) def test_update_version(self): # Initialize the known addons and their versions. self.command.addons_versions = {3615: ['3.5', '3.6']} uc = UpdateCount(addon_id=3615) self.command.update_version(uc, '3.6', 123) assert uc.versions == {'3.6': 123} # Test very long version: self.command.update_version(uc, '1' * 33, 1) assert uc.versions == {'3.6': 123, '1' * 32: 1} # Trimmed. def test_update_status(self): uc = UpdateCount(addon_id=3615) self.command.update_status(uc, 'foobar', 123) # Non-existent status. assert not uc.statuses self.command.update_status(uc, 'userEnabled', 123) assert uc.statuses == {'userEnabled': 123} def test_update_app(self): firefox_guid = '{ec8030f7-c20a-464f-9b0e-13a3a9e97384}' uc = UpdateCount(addon_id=3615) self.command.update_app(uc, 'foobar', '1.0', 123) # Non-existent app. assert not uc.applications # Malformed versions. self.command.update_app(uc, firefox_guid, '3.0.1.2', 123) self.command.update_app(uc, firefox_guid, '3.0123', 123) self.command.update_app(uc, firefox_guid, '3.0c2', 123) self.command.update_app(uc, firefox_guid, 'a.b.c', 123) assert not uc.applications # Well formed versions. self.command.update_app(uc, firefox_guid, '1.0', 123) self.command.update_app(uc, firefox_guid, '1.0.1', 124) self.command.update_app(uc, firefox_guid, '1.0a1', 125) self.command.update_app(uc, firefox_guid, '1.0b2', 126) assert uc.applications == {firefox_guid: { '1.0': 123, '1.0.1': 124, '1.0a1': 125, '1.0b2': 126}} def test_update_os(self): uc = UpdateCount(addon_id=3615) self.command.update_os(uc, 'foobar', 123) # Non-existent OS. assert not uc.oses self.command.update_os(uc, 'WINNT', 123) assert uc.oses == {'WINNT': 123} def test_update_locale(self): current_locales = [ # Taken from the language pack index. 'ach', 'af', 'ak', 'an', 'ar', 'as', 'ast', 'ast-ES', 'az', 'bb-BK', 'be', 'bg', 'bn-BD', 'bn-IN', 'br', 'bs', 'ca', 'ca-valencia', 'cs', 'csb', 'cy', 'cy-GB', 'da', 'de', 'dsb', 'el', 'en-GB', 'en-ZA', 'eo', 'es-AR', 'es-CL', 'es-ES', 'es-MX', 'et', 'eu', 'fa', 'ff', 'fi', 'fj-FJ', 'fr', 'fur-IT', 'fy-NL', 'ga-IE', 'gd', 'gl', 'gu-IN', 'he', 'hi', 'hi-IN', 'hr', 'hsb', 'hu', 'hy-AM', 'id', 'is', 'it', 'ja', 'kk', 'km', 'kn', 'ko', 'ku', 'lg', 'lij', 'lt', 'lv', 'mai', 'mg', 'mk', 'ml', 'mr', 'ms', 'nb-NO', 'nl', 'nn-NO', 'nr', 'nso', 'or', 'pa-IN', 'pl', 'pt-BR', 'pt-PT', 'rm', 'ro', 'ru', 'si', 'sk', 'sl', 'son', 'sq', 'sr', 'ss', 'st', 'sv-SE', 'sw', 'sw-TZ', 'ta', 'ta-IN', 'ta-LK', 'te', 'th', 'tn', 'tr', 'ts', 'uk', 've', 'vi', 'wa', 'wo-SN', 'xh', 'zap-MX-diiste', 'zh-CN', 'zh-TW', 'zu'] uc = UpdateCount(addon_id=3615) self.command.update_locale(uc, 'foobar', 123) # Non-existent locale. assert not uc.locales for locale in current_locales: self.command.update_locale(uc, locale, 1) assert len(uc.locales) == len(current_locales) def test_trim_field(self): uc = UpdateCount(addon_id=3615, count=1, date='2015-01-11') self.command.trim_field(uc.versions) # Empty field. assert not uc.versions uc.versions = {'3.6': 123, '3.7': 321} self.command.trim_field(uc.versions) # Small enough to fit in the db. assert uc.versions == {'3.6': 123, '3.7': 321} # Unchanged. very_long_key = 'x' * (2 ** 16) uc.versions[very_long_key] = 1 self.command.trim_field(uc.versions) # Too big, must be trimmed. assert uc.versions == {'3.6': 123, '3.7': 321} # Keep the most used. uc.versions[very_long_key] = 1000 # Most used. self.command.trim_field(uc.versions) # Too big, must be trimmed. # Nothing left: least used removed, but still too big, so all the keys # were removed. assert uc.versions == {} # Make sure we can store a very large field in the database. long_key = 'x' * 65528 # This makes the dict barely fit in the db. uc.versions[long_key] = 1 assert len(json.dumps(uc.versions)) == (2 ** 16) - 1 uc.save() uc = UpdateCount.objects.get(pk=uc.pk) # Reload # Fits in the database, so no truncation. assert len(json.dumps(uc.versions)) == (2 ** 16) - 1 @mock.patch( 'stats.management.commands.download_counts_from_file.' 'save_stats_to_file') def test_download_counts_from_file(self, mock_save_stats_to_file): # Create the necessary "valid download sources" entries. DownloadSource.objects.create(name='search', type='full') DownloadSource.objects.create(name='coll', type='prefix') management.call_command('download_counts_from_file', hive_folder, date=self.date) assert DownloadCount.objects.all().count() == 1 download_count = DownloadCount.objects.last() assert download_count.count == 2 assert download_count.date == date(2014, 7, 10) assert download_count.sources == {u'search': 1, u'collection': 1} # save_stats_to_file is called with a non-saved model. download_count.id = None mock_save_stats_to_file.assert_called_once_with(download_count) @mock.patch('stats.management.commands.save_stats_to_file') def test_theme_update_counts_from_file(self, mock_save_stats_to_file): management.call_command('theme_update_counts_from_file', hive_folder, date=self.date) assert ThemeUpdateCount.objects.all().count() == 2 tuc1 = ThemeUpdateCount.objects.get(addon_id=3615) assert tuc1.count == 2 # Persona 813 has addon id 15663: we need the count to be the sum of # the "old" request on the persona_id 813 (only the one with the source # "gp") and the "new" request on the addon_id 15663. tuc2 = ThemeUpdateCount.objects.get(addon_id=15663) assert tuc2.count == 15 assert mock_save_stats_to_file.call_count == 2 # save_stats_to_file is called with a non-saved model. tuc1.id = None tuc2.id = None mock_save_stats_to_file.assert_has_calls( [mock.call(tuc1), mock.call(tuc2)]) def test_update_theme_popularity_movers(self): # Create ThemeUpdateCount entries for the persona 559 with addon_id # 15663 and the persona 575 with addon_id 15679 for the last 28 days. # We start from the previous day, as the theme_update_counts_from_* # scripts are gathering data for the day before. yesterday = date.today() - timedelta(days=1) for i in range(28): d = yesterday - timedelta(days=i) ThemeUpdateCount.objects.create(addon_id=15663, count=i, date=d) ThemeUpdateCount.objects.create(addon_id=15679, count=i * 100, date=d) # Compute the popularity and movers. management.call_command('update_theme_popularity_movers') p1 = Persona.objects.get(pk=559) p2 = Persona.objects.get(pk=575) # The popularity is the average over the last 7 days, and as we created # entries with one more user per day in the past (or 100 more), the # calculation is "sum(range(7)) / 7" (or "sum(range(7)) * 100 / 7"). assert p1.popularity == 3 # sum(range(7)) / 7 assert p2.popularity == 300 # sum(range(7)) * 100 / 7 # Three weeks avg (sum(range(21)) / 21) = 10 so (3 - 10) / 10. # The movers is computed with the following formula: # previous_3_weeks: the average over the 21 days before the last 7 days # movers: (popularity - previous_3_weeks) / previous_3_weeks # The calculation for the previous_3_weeks is: # previous_3_weeks: (sum(range(28) - sum(range(7))) * 100 / 21 == 1700. assert p1.movers == 0.0 # Because the popularity is <= 100. # We round the results to cope with floating point imprecision. assert round(p2.movers, 5) == round((300.0 - 1700) / 1700, 5) def test_is_valid_source(self): assert is_valid_source('foo', fulls=['foo', 'bar'], prefixes=['baz', 'cruux']) assert not is_valid_source('foob', fulls=['foo', 'bar'], prefixes=['baz', 'cruux']) assert is_valid_source('foobaz', fulls=['foo', 'bar'], prefixes=['baz', 'cruux']) assert not is_valid_source('ba', fulls=['foo', 'bar'], prefixes=['baz', 'cruux'])
class TestADICommand(FixturesFolderMixin, amo.tests.TestCase): fixtures = ('base/addon_3615', 'base/featured', 'addons/persona', 'base/appversion.json') date = '2014-07-10' source_folder = 'src' def setUp(self): super(TestADICommand, self).setUp() self.command = Command() def test_update_counts_from_file(self): management.call_command('update_counts_from_file', hive_folder, date=self.date) eq_(UpdateCount.objects.all().count(), 1) update_count = UpdateCount.objects.last() eq_(update_count.count, 5) eq_(update_count.date, date(2014, 7, 10)) eq_(update_count.versions, {u'3.8': 2, u'3.7': 3}) eq_(update_count.statuses, {u'userEnabled': 5}) application = u'{ec8030f7-c20a-464f-9b0e-13a3a9e97384}' eq_(update_count.applications[application], {u'3.6': 18}) eq_(update_count.oses, {u'WINNT': 5}) eq_(update_count.locales, {u'en-us': 1, u'en-US': 4}) def test_update_version(self): # Initialize the known addons and their versions. self.command.addons_versions = {3615: ['3.5', '3.6']} uc = UpdateCount(addon_id=3615) self.command.update_version(uc, '3.6', 123) assert uc.versions == {'3.6': 123} # Test very long version: self.command.update_version(uc, '1' * 33, 1) assert uc.versions == {'3.6': 123, '1' * 32: 1} # Trimmed. def test_update_status(self): uc = UpdateCount(addon_id=3615) self.command.update_status(uc, 'foobar', 123) # Non-existent status. assert not uc.statuses self.command.update_status(uc, 'userEnabled', 123) assert uc.statuses == {'userEnabled': 123} def test_update_app(self): # Initialize the known applications and their versions. self.command.valid_appversions = {'{app-guid}': ['1.0', '2.0']} uc = UpdateCount(addon_id=3615) self.command.update_app(uc, 'foobar', '1.0', 123) # Non-existent app. assert not uc.applications # Non-existent version. self.command.update_app(uc, '{app-guid}', '3.0', 123) assert not uc.applications self.command.update_app(uc, '{app-guid}', '1.0', 123) assert uc.applications == {'{app-guid}': {'1.0': 123}} def test_update_os(self): uc = UpdateCount(addon_id=3615) self.command.update_os(uc, 'foobar', 123) # Non-existent OS. assert not uc.oses self.command.update_os(uc, 'WINNT', 123) assert uc.oses == {'WINNT': 123} def test_update_locale(self): current_locales = [ # Taken from the language pack index. 'ach', 'af', 'ak', 'an', 'ar', 'as', 'ast', 'ast-ES', 'az', 'bb-BK', 'be', 'bg', 'bn-BD', 'bn-IN', 'br', 'bs', 'ca', 'ca-valencia', 'cs', 'csb', 'cy', 'cy-GB', 'da', 'de', 'dsb', 'el', 'en-GB', 'en-ZA', 'eo', 'es-AR', 'es-CL', 'es-ES', 'es-MX', 'et', 'eu', 'fa', 'ff', 'fi', 'fj-FJ', 'fr', 'fur-IT', 'fy-NL', 'ga-IE', 'gd', 'gl', 'gu-IN', 'he', 'hi', 'hi-IN', 'hr', 'hsb', 'hu', 'hy-AM', 'id', 'is', 'it', 'ja', 'kk', 'km', 'kn', 'ko', 'ku', 'lg', 'lij', 'lt', 'lv', 'mai', 'mg', 'mk', 'ml', 'mr', 'ms', 'nb-NO', 'nl', 'nn-NO', 'nr', 'nso', 'or', 'pa-IN', 'pl', 'pt-BR', 'pt-PT', 'rm', 'ro', 'ru', 'si', 'sk', 'sl', 'son', 'sq', 'sr', 'ss', 'st', 'sv-SE', 'sw', 'sw-TZ', 'ta', 'ta-IN', 'ta-LK', 'te', 'th', 'tn', 'tr', 'ts', 'uk', 've', 'vi', 'wa', 'wo-SN', 'xh', 'zap-MX-diiste', 'zh-CN', 'zh-TW', 'zu' ] uc = UpdateCount(addon_id=3615) self.command.update_locale(uc, 'foobar', 123) # Non-existent locale. assert not uc.locales for locale in current_locales: self.command.update_locale(uc, locale, 1) assert len(uc.locales) == len(current_locales) def test_trim_field(self): uc = UpdateCount(addon_id=3615, count=1, date='2015-01-11') self.command.trim_field(uc.versions) # Empty field. assert not uc.versions uc.versions = {'3.6': 123, '3.7': 321} self.command.trim_field(uc.versions) # Small enough to fit in the db. assert uc.versions == {'3.6': 123, '3.7': 321} # Unchanged. very_long_key = 'x' * (2**16) uc.versions[very_long_key] = 1 self.command.trim_field(uc.versions) # Too big, must be trimmed. assert uc.versions == {'3.6': 123, '3.7': 321} # Keep the most used. uc.versions[very_long_key] = 1000 # Most used. self.command.trim_field(uc.versions) # Too big, must be trimmed. # Nothing left: least used removed, but still too big, so all the keys # were removed. assert uc.versions == {} # Make sure we can store a very large field in the database. long_key = 'x' * 65528 # This makes the dict barely fit in the db. uc.versions[long_key] = 1 assert len(json.dumps(uc.versions)) == (2**16) - 1 uc.save() uc = UpdateCount.objects.get(pk=uc.pk) # Reload # Fits in the database, so no truncation. assert len(json.dumps(uc.versions)) == (2**16) - 1 def test_download_counts_from_file(self): # Create the necessary "valid download sources" entries. DownloadSource.objects.create(name='search', type='full') DownloadSource.objects.create(name='coll', type='prefix') management.call_command('download_counts_from_file', hive_folder, date=self.date) eq_(DownloadCount.objects.all().count(), 1) download_count = DownloadCount.objects.last() eq_(download_count.count, 2) eq_(download_count.date, date(2014, 7, 10)) eq_(download_count.sources, {u'search': 1, u'collection': 1}) def test_theme_update_counts_from_file(self): management.call_command('theme_update_counts_from_file', hive_folder, date=self.date) eq_(ThemeUpdateCount.objects.all().count(), 2) eq_(ThemeUpdateCount.objects.get(addon_id=3615).count, 2) # Persona 813 has addon id 15663: we need the count to be the sum of # the "old" request on the persona_id 813 (only the one with the source # "gp") and the "new" request on the addon_id 15663. eq_(ThemeUpdateCount.objects.get(addon_id=15663).count, 15) def test_update_theme_popularity_movers(self): # Create ThemeUpdateCount entries for the persona 559 with addon_id # 15663 and the persona 575 with addon_id 15679 for the last 28 days. # We start from the previous day, as the theme_update_counts_from_* # scripts are gathering data for the day before. yesterday = date.today() - timedelta(days=1) for i in range(28): d = yesterday - timedelta(days=i) ThemeUpdateCount.objects.create(addon_id=15663, count=i, date=d) ThemeUpdateCount.objects.create(addon_id=15679, count=i * 100, date=d) # Compute the popularity and movers. management.call_command('update_theme_popularity_movers') p1 = Persona.objects.get(pk=559) p2 = Persona.objects.get(pk=575) # The popularity is the average over the last 7 days, and as we created # entries with one more user per day in the past (or 100 more), the # calculation is "sum(range(7)) / 7" (or "sum(range(7)) * 100 / 7"). eq_(p1.popularity, 3) # sum(range(7)) / 7 eq_(p2.popularity, 300) # sum(range(7)) * 100 / 7 # Three weeks avg (sum(range(21)) / 21) = 10 so (3 - 10) / 10. # The movers is computed with the following formula: # previous_3_weeks: the average over the 21 days before the last 7 days # movers: (popularity - previous_3_weeks) / previous_3_weeks # The calculation for the previous_3_weeks is: # previous_3_weeks: (sum(range(28) - sum(range(7))) * 100 / 21 == 1700. eq_(p1.movers, 0.0) # Because the popularity is <= 100. # We round the results to cope with floating point imprecision. eq_(round(p2.movers, 5), round((300.0 - 1700) / 1700, 5)) def test_is_valid_source(self): assert is_valid_source('foo', fulls=['foo', 'bar'], prefixes=['baz', 'cruux']) assert not is_valid_source( 'foob', fulls=['foo', 'bar'], prefixes=['baz', 'cruux']) assert is_valid_source('foobaz', fulls=['foo', 'bar'], prefixes=['baz', 'cruux']) assert not is_valid_source( 'ba', fulls=['foo', 'bar'], prefixes=['baz', 'cruux'])