Change order of errors for bad CSV files

This commit rearranges the CSV errors (again) to make them geared towards
teaching you how to match placeholders to the column headers.

So the order of errors now is:

1. No phone number/email column
2. Column headers don’t match placeholders
3. Missing or bad data
4. Trial mode
5. Daily limit reached

This depends on:
- [x] https://github.com/alphagov/notifications-utils/pull/39 for 1.
This commit is contained in:
Chris Hill-Scott
2016-06-03 13:52:15 +01:00
parent 2c17261795
commit 2ff6cf049f
6 changed files with 109 additions and 69 deletions

View File

@@ -8,7 +8,6 @@ from app.utils import get_errors_for_csv
MockRecipients = namedtuple(
'RecipientCSV',
[
'missing_column_headers',
'rows_with_bad_recipients',
'rows_with_missing_data'
]
@@ -16,52 +15,45 @@ MockRecipients = namedtuple(
@pytest.mark.parametrize(
"missing_column_headers,rows_with_bad_recipients,rows_with_missing_data,template_type,expected_errors",
"rows_with_bad_recipients,rows_with_missing_data,template_type,expected_errors",
[
(
[], [], [],
[], [],
'sms',
[]
),
(
[], {2}, [],
{2}, [],
'sms',
['fix 1 phone number']
),
(
[], {2, 4, 6}, [],
{2, 4, 6}, [],
'sms',
['fix 3 phone numbers']
),
(
[], {1}, [],
{1}, [],
'email',
['fix 1 email address']
),
(
[], {2, 4, 6}, [],
{2, 4, 6}, [],
'email',
['fix 3 email addresses']
),
(
['name'], {2}, {3},
{2}, {3},
'sms',
[
'add a column called name',
'fix 1 phone number',
'enter missing data in 1 row'
]
),
(
['name', 'date'], [], [],
'sms',
['add 2 columns, name and date']
),
(
['name', 'date', 'time'], {2, 4, 6, 8}, {3, 6, 9, 12},
{2, 4, 6, 8}, {3, 6, 9, 12},
'sms',
[
'add columns called name, date, and time',
'fix 4 phone numbers',
'enter missing data in 4 rows'
]
@@ -69,11 +61,11 @@ MockRecipients = namedtuple(
]
)
def test_get_errors_for_csv(
missing_column_headers, rows_with_bad_recipients, rows_with_missing_data,
rows_with_bad_recipients, rows_with_missing_data,
template_type,
expected_errors
):
assert get_errors_for_csv(
MockRecipients(missing_column_headers, rows_with_bad_recipients, rows_with_missing_data),
MockRecipients(rows_with_bad_recipients, rows_with_missing_data),
template_type
) == expected_errors