2016-07-28 13:34:24 +01:00
|
|
|
import collections
|
|
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
|
|
|
|
|
from app.service.statistics import (
|
|
|
|
|
format_statistics,
|
2016-08-23 17:08:53 +01:00
|
|
|
create_zeroed_stats_dicts,
|
2016-07-28 13:34:24 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
StatsRow = collections.namedtuple('row', ('notification_type', 'status', 'count'))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# email_counts and sms_counts are 3-tuple of requested, delivered, failed
|
2017-01-31 11:32:53 +00:00
|
|
|
@pytest.mark.idparametrize('stats, email_counts, sms_counts, letter_counts', {
|
|
|
|
|
'empty': ([], [0, 0, 0], [0, 0, 0], [0, 0, 0]),
|
2016-07-28 13:34:24 +01:00
|
|
|
'always_increment_requested': ([
|
|
|
|
|
StatsRow('email', 'delivered', 1),
|
|
|
|
|
StatsRow('email', 'failed', 1)
|
2017-01-31 11:32:53 +00:00
|
|
|
], [2, 1, 1], [0, 0, 0], [0, 0, 0]),
|
|
|
|
|
'dont_mix_template_types': ([
|
2016-07-28 13:34:24 +01:00
|
|
|
StatsRow('email', 'delivered', 1),
|
2017-01-31 11:32:53 +00:00
|
|
|
StatsRow('sms', 'delivered', 1),
|
|
|
|
|
StatsRow('letter', 'delivered', 1)
|
|
|
|
|
], [1, 1, 0], [1, 1, 0], [1, 1, 0]),
|
2016-07-28 13:34:24 +01:00
|
|
|
'convert_fail_statuses_to_failed': ([
|
|
|
|
|
StatsRow('email', 'failed', 1),
|
|
|
|
|
StatsRow('email', 'technical-failure', 1),
|
|
|
|
|
StatsRow('email', 'temporary-failure', 1),
|
|
|
|
|
StatsRow('email', 'permanent-failure', 1),
|
2017-01-31 11:32:53 +00:00
|
|
|
], [4, 0, 4], [0, 0, 0], [0, 0, 0]),
|
2017-04-28 11:56:12 +01:00
|
|
|
'convert_sent_to_delivered': ([
|
|
|
|
|
StatsRow('sms', 'sending', 1),
|
|
|
|
|
StatsRow('sms', 'delivered', 1),
|
|
|
|
|
StatsRow('sms', 'sent', 1),
|
|
|
|
|
], [0, 0, 0], [3, 2, 0], [0, 0, 0]),
|
2016-07-28 13:34:24 +01:00
|
|
|
})
|
2017-01-31 11:32:53 +00:00
|
|
|
def test_format_statistics(stats, email_counts, sms_counts, letter_counts):
|
2016-07-28 13:34:24 +01:00
|
|
|
|
|
|
|
|
ret = format_statistics(stats)
|
|
|
|
|
|
|
|
|
|
assert ret['email'] == {
|
|
|
|
|
status: count
|
|
|
|
|
for status, count
|
|
|
|
|
in zip(['requested', 'delivered', 'failed'], email_counts)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
assert ret['sms'] == {
|
|
|
|
|
status: count
|
|
|
|
|
for status, count
|
|
|
|
|
in zip(['requested', 'delivered', 'failed'], sms_counts)
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-31 11:32:53 +00:00
|
|
|
assert ret['letter'] == {
|
|
|
|
|
status: count
|
|
|
|
|
for status, count
|
|
|
|
|
in zip(['requested', 'delivered', 'failed'], letter_counts)
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-28 13:34:24 +01:00
|
|
|
|
|
|
|
|
def test_create_zeroed_stats_dicts():
|
2016-08-23 17:08:53 +01:00
|
|
|
assert create_zeroed_stats_dicts() == {
|
2016-07-28 13:34:24 +01:00
|
|
|
'sms': {'requested': 0, 'delivered': 0, 'failed': 0},
|
|
|
|
|
'email': {'requested': 0, 'delivered': 0, 'failed': 0},
|
2017-01-31 11:32:53 +00:00
|
|
|
'letter': {'requested': 0, 'delivered': 0, 'failed': 0},
|
2016-07-28 13:34:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2016-07-28 15:24:21 +01:00
|
|
|
def _stats(requested, delivered, failed):
|
|
|
|
|
return {'requested': requested, 'delivered': delivered, 'failed': failed}
|