2017-06-16 13:47:00 +01:00
|
|
|
|
# -*- coding: utf-8 -*-
|
2017-01-19 14:55:22 +00:00
|
|
|
|
import uuid
|
2017-06-29 15:31:44 +01:00
|
|
|
|
from unittest.mock import Mock
|
2016-01-11 15:00:51 +00:00
|
|
|
|
from io import BytesIO
|
Accept common spreadsheet formats, not just CSV
We require users to export their spreadsheets as CSV files before
uploading them. But this seems like the sort of thing a computer should
be able to do.
So this commit adds a wrapper class which:
- takes a the uploaded file
- returns it in a normalised format, or reads it using pyexcel[1]
- gives the data back in CSV format
This allows us to accept `.csv`, `.xlsx`, `.xls` (97 and 95), `.ods`,
`.xlsm` and `.tsv` files. We can upload the resultant CSV just like
normal, and process it for errors as before.
Testing
---
To test this I’ve added a selection of common spreadsheet files as test
data. They all contain the same data, so the tests look to see that the
resultant CSV output is the same for each.
UI changes
---
This commit doesn’t change the UI, apart from to give a different error
message if a user uploads a file type that we still don’t understand.
I intend to do this as a separate pull request, in order to fulfil
https://www.pivotaltracker.com/story/show/119371637
2016-05-05 15:41:11 +01:00
|
|
|
|
from os import path
|
|
|
|
|
|
from glob import glob
|
2016-11-02 16:53:40 +00:00
|
|
|
|
from itertools import repeat
|
2016-06-24 10:15:20 +01:00
|
|
|
|
from functools import partial
|
2016-11-02 16:53:40 +00:00
|
|
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
|
from bs4 import BeautifulSoup
|
2016-01-14 16:00:13 +00:00
|
|
|
|
from flask import url_for
|
2017-06-29 15:31:44 +01:00
|
|
|
|
from notifications_python_client.errors import HTTPError
|
2017-05-04 09:30:55 +01:00
|
|
|
|
from notifications_utils.template import LetterPreviewTemplate, LetterImageTemplate
|
2017-04-26 16:19:49 +01:00
|
|
|
|
from notifications_utils.recipients import RecipientCSV
|
2016-11-02 16:53:40 +00:00
|
|
|
|
|
2017-07-03 17:21:44 +01:00
|
|
|
|
from tests import validate_route_permission, validate_route_permission_with_client
|
2017-04-07 09:18:00 +01:00
|
|
|
|
from tests.conftest import (
|
|
|
|
|
|
mock_get_service_template,
|
|
|
|
|
|
mock_get_service_template_with_placeholders,
|
|
|
|
|
|
mock_get_service_letter_template,
|
2017-04-26 16:19:49 +01:00
|
|
|
|
mock_get_service,
|
|
|
|
|
|
mock_get_international_service,
|
2017-05-22 11:49:15 +01:00
|
|
|
|
mock_get_service_email_template,
|
2017-07-04 13:38:08 +01:00
|
|
|
|
normalize_spaces,
|
2017-05-25 08:31:58 +01:00
|
|
|
|
SERVICE_ONE_ID,
|
2017-04-07 09:18:00 +01:00
|
|
|
|
)
|
2016-01-13 17:32:40 +00:00
|
|
|
|
|
2016-02-22 17:17:18 +00:00
|
|
|
|
template_types = ['email', 'sms']
|
2016-01-13 17:32:40 +00:00
|
|
|
|
|
Accept common spreadsheet formats, not just CSV
We require users to export their spreadsheets as CSV files before
uploading them. But this seems like the sort of thing a computer should
be able to do.
So this commit adds a wrapper class which:
- takes a the uploaded file
- returns it in a normalised format, or reads it using pyexcel[1]
- gives the data back in CSV format
This allows us to accept `.csv`, `.xlsx`, `.xls` (97 and 95), `.ods`,
`.xlsm` and `.tsv` files. We can upload the resultant CSV just like
normal, and process it for errors as before.
Testing
---
To test this I’ve added a selection of common spreadsheet files as test
data. They all contain the same data, so the tests look to see that the
resultant CSV output is the same for each.
UI changes
---
This commit doesn’t change the UI, apart from to give a different error
message if a user uploads a file type that we still don’t understand.
I intend to do this as a separate pull request, in order to fulfil
https://www.pivotaltracker.com/story/show/119371637
2016-05-05 15:41:11 +01:00
|
|
|
|
# The * ignores hidden files, eg .DS_Store
|
|
|
|
|
|
test_spreadsheet_files = glob(path.join('tests', 'spreadsheet_files', '*'))
|
2016-05-13 21:25:59 +01:00
|
|
|
|
test_non_spreadsheet_files = glob(path.join('tests', 'non_spreadsheet_files', '*'))
|
Accept common spreadsheet formats, not just CSV
We require users to export their spreadsheets as CSV files before
uploading them. But this seems like the sort of thing a computer should
be able to do.
So this commit adds a wrapper class which:
- takes a the uploaded file
- returns it in a normalised format, or reads it using pyexcel[1]
- gives the data back in CSV format
This allows us to accept `.csv`, `.xlsx`, `.xls` (97 and 95), `.ods`,
`.xlsm` and `.tsv` files. We can upload the resultant CSV just like
normal, and process it for errors as before.
Testing
---
To test this I’ve added a selection of common spreadsheet files as test
data. They all contain the same data, so the tests look to see that the
resultant CSV output is the same for each.
UI changes
---
This commit doesn’t change the UI, apart from to give a different error
message if a user uploads a file type that we still don’t understand.
I intend to do this as a separate pull request, in order to fulfil
https://www.pivotaltracker.com/story/show/119371637
2016-05-05 15:41:11 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_that_test_files_exist():
|
|
|
|
|
|
assert len(test_spreadsheet_files) == 8
|
2016-05-13 21:25:59 +01:00
|
|
|
|
assert len(test_non_spreadsheet_files) == 6
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-06-30 10:55:59 +01:00
|
|
|
|
def test_should_not_allow_files_to_be_uploaded_without_the_correct_permission(
|
|
|
|
|
|
logged_in_client,
|
|
|
|
|
|
mock_get_service_template,
|
|
|
|
|
|
service_one,
|
|
|
|
|
|
fake_uuid,
|
|
|
|
|
|
):
|
|
|
|
|
|
template_id = fake_uuid
|
|
|
|
|
|
service_one['permissions'] = []
|
|
|
|
|
|
|
|
|
|
|
|
response = logged_in_client.get(url_for(
|
|
|
|
|
|
'.send_messages',
|
|
|
|
|
|
service_id=service_one['id'],
|
|
|
|
|
|
template_id=template_id),
|
|
|
|
|
|
follow_redirects=True)
|
|
|
|
|
|
page = BeautifulSoup(response.data.decode('utf-8'), 'html.parser')
|
|
|
|
|
|
|
|
|
|
|
|
assert response.status_code == 200
|
2017-07-10 12:25:01 +01:00
|
|
|
|
assert page.select('main p')[0].text.strip() == "Sending text messages has been disabled for your service."
|
2017-06-30 10:55:59 +01:00
|
|
|
|
assert page.select(".page-footer-back-link")[0].text == "Back to the template"
|
|
|
|
|
|
assert page.select(".page-footer-back-link")[0]['href'] == url_for(
|
|
|
|
|
|
'.view_template',
|
|
|
|
|
|
service_id=service_one['id'],
|
|
|
|
|
|
template_id=template_id,
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-05-13 21:25:59 +01:00
|
|
|
|
@pytest.mark.parametrize(
|
|
|
|
|
|
"filename, acceptable_file",
|
|
|
|
|
|
list(zip(
|
|
|
|
|
|
test_spreadsheet_files, repeat(True)
|
|
|
|
|
|
)) +
|
|
|
|
|
|
list(zip(
|
|
|
|
|
|
test_non_spreadsheet_files, repeat(False)
|
|
|
|
|
|
))
|
|
|
|
|
|
)
|
Accept common spreadsheet formats, not just CSV
We require users to export their spreadsheets as CSV files before
uploading them. But this seems like the sort of thing a computer should
be able to do.
So this commit adds a wrapper class which:
- takes a the uploaded file
- returns it in a normalised format, or reads it using pyexcel[1]
- gives the data back in CSV format
This allows us to accept `.csv`, `.xlsx`, `.xls` (97 and 95), `.ods`,
`.xlsm` and `.tsv` files. We can upload the resultant CSV just like
normal, and process it for errors as before.
Testing
---
To test this I’ve added a selection of common spreadsheet files as test
data. They all contain the same data, so the tests look to see that the
resultant CSV output is the same for each.
UI changes
---
This commit doesn’t change the UI, apart from to give a different error
message if a user uploads a file type that we still don’t understand.
I intend to do this as a separate pull request, in order to fulfil
https://www.pivotaltracker.com/story/show/119371637
2016-05-05 15:41:11 +01:00
|
|
|
|
def test_upload_files_in_different_formats(
|
|
|
|
|
|
filename,
|
2016-05-13 21:25:59 +01:00
|
|
|
|
acceptable_file,
|
2017-02-03 12:07:21 +00:00
|
|
|
|
logged_in_client,
|
2017-05-22 10:32:22 +01:00
|
|
|
|
service_one,
|
Accept common spreadsheet formats, not just CSV
We require users to export their spreadsheets as CSV files before
uploading them. But this seems like the sort of thing a computer should
be able to do.
So this commit adds a wrapper class which:
- takes a the uploaded file
- returns it in a normalised format, or reads it using pyexcel[1]
- gives the data back in CSV format
This allows us to accept `.csv`, `.xlsx`, `.xls` (97 and 95), `.ods`,
`.xlsm` and `.tsv` files. We can upload the resultant CSV just like
normal, and process it for errors as before.
Testing
---
To test this I’ve added a selection of common spreadsheet files as test
data. They all contain the same data, so the tests look to see that the
resultant CSV output is the same for each.
UI changes
---
This commit doesn’t change the UI, apart from to give a different error
message if a user uploads a file type that we still don’t understand.
I intend to do this as a separate pull request, in order to fulfil
https://www.pivotaltracker.com/story/show/119371637
2016-05-05 15:41:11 +01:00
|
|
|
|
mocker,
|
|
|
|
|
|
mock_get_service_template,
|
|
|
|
|
|
mock_s3_upload,
|
2017-02-03 10:42:01 +00:00
|
|
|
|
fake_uuid,
|
Accept common spreadsheet formats, not just CSV
We require users to export their spreadsheets as CSV files before
uploading them. But this seems like the sort of thing a computer should
be able to do.
So this commit adds a wrapper class which:
- takes a the uploaded file
- returns it in a normalised format, or reads it using pyexcel[1]
- gives the data back in CSV format
This allows us to accept `.csv`, `.xlsx`, `.xls` (97 and 95), `.ods`,
`.xlsm` and `.tsv` files. We can upload the resultant CSV just like
normal, and process it for errors as before.
Testing
---
To test this I’ve added a selection of common spreadsheet files as test
data. They all contain the same data, so the tests look to see that the
resultant CSV output is the same for each.
UI changes
---
This commit doesn’t change the UI, apart from to give a different error
message if a user uploads a file type that we still don’t understand.
I intend to do this as a separate pull request, in order to fulfil
https://www.pivotaltracker.com/story/show/119371637
2016-05-05 15:41:11 +01:00
|
|
|
|
):
|
|
|
|
|
|
|
2017-02-03 12:07:21 +00:00
|
|
|
|
with open(filename, 'rb') as uploaded:
|
|
|
|
|
|
response = logged_in_client.post(
|
2017-05-22 10:32:22 +01:00
|
|
|
|
url_for('main.send_messages', service_id=service_one['id'], template_id=fake_uuid),
|
Accept common spreadsheet formats, not just CSV
We require users to export their spreadsheets as CSV files before
uploading them. But this seems like the sort of thing a computer should
be able to do.
So this commit adds a wrapper class which:
- takes a the uploaded file
- returns it in a normalised format, or reads it using pyexcel[1]
- gives the data back in CSV format
This allows us to accept `.csv`, `.xlsx`, `.xls` (97 and 95), `.ods`,
`.xlsm` and `.tsv` files. We can upload the resultant CSV just like
normal, and process it for errors as before.
Testing
---
To test this I’ve added a selection of common spreadsheet files as test
data. They all contain the same data, so the tests look to see that the
resultant CSV output is the same for each.
UI changes
---
This commit doesn’t change the UI, apart from to give a different error
message if a user uploads a file type that we still don’t understand.
I intend to do this as a separate pull request, in order to fulfil
https://www.pivotaltracker.com/story/show/119371637
2016-05-05 15:41:11 +01:00
|
|
|
|
data={'file': (BytesIO(uploaded.read()), filename)},
|
|
|
|
|
|
content_type='multipart/form-data'
|
|
|
|
|
|
)
|
|
|
|
|
|
|
2016-05-13 21:25:59 +01:00
|
|
|
|
if acceptable_file:
|
2016-05-15 07:47:50 +01:00
|
|
|
|
assert mock_s3_upload.call_args[0][1]['data'].strip() == (
|
2016-05-13 21:25:59 +01:00
|
|
|
|
"phone number,name,favourite colour,fruit\r\n"
|
|
|
|
|
|
"07739 468 050,Pete,Coral,tomato\r\n"
|
|
|
|
|
|
"07527 125 974,Not Pete,Magenta,Avacado\r\n"
|
|
|
|
|
|
"07512 058 823,Still Not Pete,Crimson,Pear"
|
|
|
|
|
|
)
|
|
|
|
|
|
else:
|
|
|
|
|
|
assert not mock_s3_upload.called
|
|
|
|
|
|
assert (
|
|
|
|
|
|
'Couldn’t read {}. Try using a different file format.'.format(filename)
|
|
|
|
|
|
) in response.get_data(as_text=True)
|
Accept common spreadsheet formats, not just CSV
We require users to export their spreadsheets as CSV files before
uploading them. But this seems like the sort of thing a computer should
be able to do.
So this commit adds a wrapper class which:
- takes a the uploaded file
- returns it in a normalised format, or reads it using pyexcel[1]
- gives the data back in CSV format
This allows us to accept `.csv`, `.xlsx`, `.xls` (97 and 95), `.ods`,
`.xlsm` and `.tsv` files. We can upload the resultant CSV just like
normal, and process it for errors as before.
Testing
---
To test this I’ve added a selection of common spreadsheet files as test
data. They all contain the same data, so the tests look to see that the
resultant CSV output is the same for each.
UI changes
---
This commit doesn’t change the UI, apart from to give a different error
message if a user uploads a file type that we still don’t understand.
I intend to do this as a separate pull request, in order to fulfil
https://www.pivotaltracker.com/story/show/119371637
2016-05-05 15:41:11 +01:00
|
|
|
|
|
2016-02-22 17:17:18 +00:00
|
|
|
|
|
2016-03-07 18:47:05 +00:00
|
|
|
|
def test_upload_csvfile_with_errors_shows_check_page_with_errors(
|
2017-02-03 12:07:21 +00:00
|
|
|
|
logged_in_client,
|
2017-05-22 10:32:22 +01:00
|
|
|
|
service_one,
|
2016-02-26 10:54:06 +00:00
|
|
|
|
mocker,
|
2016-05-17 09:23:33 +01:00
|
|
|
|
mock_get_service_template_with_placeholders,
|
2016-02-29 17:03:56 +00:00
|
|
|
|
mock_s3_upload,
|
2016-04-12 14:19:51 +01:00
|
|
|
|
mock_get_users_by_service,
|
2016-07-25 14:16:34 +01:00
|
|
|
|
mock_get_detailed_service_for_today,
|
2017-02-03 10:42:01 +00:00
|
|
|
|
fake_uuid,
|
2016-02-22 17:17:18 +00:00
|
|
|
|
):
|
2016-01-13 22:34:36 +00:00
|
|
|
|
|
2016-05-17 09:23:33 +01:00
|
|
|
|
mocker.patch(
|
|
|
|
|
|
'app.main.views.send.s3download',
|
|
|
|
|
|
return_value="""
|
|
|
|
|
|
phone number,name
|
|
|
|
|
|
+447700900986
|
|
|
|
|
|
+447700900986
|
|
|
|
|
|
"""
|
|
|
|
|
|
)
|
2015-12-17 16:21:34 +00:00
|
|
|
|
|
2017-02-03 12:07:21 +00:00
|
|
|
|
initial_upload = logged_in_client.post(
|
2017-05-22 10:32:22 +01:00
|
|
|
|
url_for('main.send_messages', service_id=service_one['id'], template_id=fake_uuid),
|
2017-02-03 12:07:21 +00:00
|
|
|
|
data={'file': (BytesIO(''.encode('utf-8')), 'invalid.csv')},
|
|
|
|
|
|
content_type='multipart/form-data',
|
|
|
|
|
|
follow_redirects=True
|
|
|
|
|
|
)
|
|
|
|
|
|
reupload = logged_in_client.post(
|
2017-05-22 10:32:22 +01:00
|
|
|
|
url_for('main.check_messages', service_id=service_one['id'], template_type='sms', upload_id='abc123'),
|
2017-02-03 12:07:21 +00:00
|
|
|
|
data={'file': (BytesIO(''.encode('utf-8')), 'invalid.csv')},
|
|
|
|
|
|
content_type='multipart/form-data',
|
|
|
|
|
|
follow_redirects=True
|
|
|
|
|
|
)
|
|
|
|
|
|
for response in [initial_upload, reupload]:
|
|
|
|
|
|
assert response.status_code == 200
|
|
|
|
|
|
content = response.get_data(as_text=True)
|
|
|
|
|
|
assert 'There is a problem with your data' in content
|
|
|
|
|
|
assert '+447700900986' in content
|
|
|
|
|
|
assert 'Missing' in content
|
|
|
|
|
|
assert 'Re-upload your file' in content
|
2016-02-26 10:54:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
2017-02-27 12:06:16 +00:00
|
|
|
|
@pytest.mark.parametrize('file_contents, expected_error,', [
|
|
|
|
|
|
(
|
|
|
|
|
|
"""
|
|
|
|
|
|
telephone,name
|
|
|
|
|
|
+447700900986
|
|
|
|
|
|
""",
|
|
|
|
|
|
(
|
2017-05-11 11:11:59 +01:00
|
|
|
|
'Your file needs a column called ‘phone number’ '
|
2017-05-11 11:33:25 +01:00
|
|
|
|
'Right now it has columns called ‘telephone’ and ‘name’. '
|
2017-02-27 12:06:16 +00:00
|
|
|
|
'Skip to file contents'
|
|
|
|
|
|
)
|
|
|
|
|
|
),
|
|
|
|
|
|
(
|
|
|
|
|
|
"""
|
|
|
|
|
|
phone number
|
|
|
|
|
|
+447700900986
|
|
|
|
|
|
""",
|
|
|
|
|
|
(
|
|
|
|
|
|
'The columns in your file need to match the double brackets in your template '
|
2017-05-11 11:22:43 +01:00
|
|
|
|
'Your file is missing a column called ‘name’. '
|
2017-02-27 12:06:16 +00:00
|
|
|
|
'Skip to file contents'
|
|
|
|
|
|
)
|
2017-02-27 14:46:01 +00:00
|
|
|
|
),
|
|
|
|
|
|
(
|
|
|
|
|
|
"+447700900986",
|
|
|
|
|
|
(
|
|
|
|
|
|
'Your file is missing some rows '
|
|
|
|
|
|
'It needs at least one row of data, and columns called ‘name’ and ‘phone number’. '
|
|
|
|
|
|
'Skip to file contents'
|
|
|
|
|
|
)
|
|
|
|
|
|
),
|
|
|
|
|
|
(
|
|
|
|
|
|
"",
|
|
|
|
|
|
(
|
|
|
|
|
|
'Your file is missing some rows '
|
|
|
|
|
|
'It needs at least one row of data, and columns called ‘name’ and ‘phone number’. '
|
|
|
|
|
|
'Skip to file contents'
|
|
|
|
|
|
)
|
|
|
|
|
|
),
|
2017-07-20 15:49:12 +01:00
|
|
|
|
(
|
|
|
|
|
|
"""
|
|
|
|
|
|
phone number, name
|
|
|
|
|
|
+447700900986, example
|
|
|
|
|
|
, example
|
|
|
|
|
|
+447700900986, example
|
|
|
|
|
|
""",
|
|
|
|
|
|
(
|
|
|
|
|
|
'There is a problem with your data '
|
|
|
|
|
|
'You need to enter missing data in 1 row '
|
|
|
|
|
|
'Skip to file contents'
|
|
|
|
|
|
)
|
|
|
|
|
|
),
|
|
|
|
|
|
(
|
|
|
|
|
|
"""
|
|
|
|
|
|
phone number, name
|
|
|
|
|
|
+447700900986, example
|
|
|
|
|
|
+447700900986,
|
|
|
|
|
|
+447700900986, example
|
|
|
|
|
|
""",
|
|
|
|
|
|
(
|
|
|
|
|
|
'There is a problem with your data '
|
|
|
|
|
|
'You need to enter missing data in 1 row '
|
|
|
|
|
|
'Skip to file contents'
|
|
|
|
|
|
)
|
|
|
|
|
|
),
|
2017-02-27 12:06:16 +00:00
|
|
|
|
])
|
|
|
|
|
|
def test_upload_csvfile_with_missing_columns_shows_error(
|
2017-02-16 11:07:26 +00:00
|
|
|
|
logged_in_client,
|
|
|
|
|
|
mocker,
|
|
|
|
|
|
mock_get_service_template_with_placeholders,
|
|
|
|
|
|
mock_s3_upload,
|
|
|
|
|
|
mock_get_users_by_service,
|
|
|
|
|
|
mock_get_detailed_service_for_today,
|
2017-02-17 09:57:58 +00:00
|
|
|
|
service_one,
|
2017-02-16 11:07:26 +00:00
|
|
|
|
fake_uuid,
|
2017-02-27 12:06:16 +00:00
|
|
|
|
file_contents,
|
|
|
|
|
|
expected_error,
|
2017-02-16 11:07:26 +00:00
|
|
|
|
):
|
|
|
|
|
|
|
2017-02-27 12:06:16 +00:00
|
|
|
|
mocker.patch('app.main.views.send.s3download', return_value=file_contents)
|
2017-02-16 11:07:26 +00:00
|
|
|
|
|
|
|
|
|
|
response = logged_in_client.post(
|
2017-02-17 09:57:58 +00:00
|
|
|
|
url_for('main.send_messages', service_id=service_one['id'], template_id=fake_uuid),
|
2017-02-16 11:07:26 +00:00
|
|
|
|
data={'file': (BytesIO(''.encode('utf-8')), 'invalid.csv')},
|
|
|
|
|
|
follow_redirects=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
assert response.status_code == 200
|
|
|
|
|
|
page = BeautifulSoup(response.data.decode('utf-8'), 'html.parser')
|
2017-02-27 12:06:16 +00:00
|
|
|
|
assert ' '.join(page.select('.banner-dangerous')[0].text.split()) == expected_error
|
2017-02-16 11:07:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
2017-02-03 10:42:01 +00:00
|
|
|
|
def test_upload_csv_invalid_extension(
|
2017-02-03 12:07:21 +00:00
|
|
|
|
logged_in_client,
|
2017-02-03 10:42:01 +00:00
|
|
|
|
mock_login,
|
2017-05-22 10:32:22 +01:00
|
|
|
|
service_one,
|
2017-02-03 10:42:01 +00:00
|
|
|
|
mock_get_service_template,
|
|
|
|
|
|
fake_uuid,
|
|
|
|
|
|
):
|
2016-06-17 11:54:01 +01:00
|
|
|
|
|
2017-02-03 12:07:21 +00:00
|
|
|
|
resp = logged_in_client.post(
|
2017-05-22 10:32:22 +01:00
|
|
|
|
url_for('main.send_messages', service_id=service_one['id'], template_id=fake_uuid),
|
2017-02-03 12:07:21 +00:00
|
|
|
|
data={'file': (BytesIO('contents'.encode('utf-8')), 'invalid.txt')},
|
|
|
|
|
|
content_type='multipart/form-data',
|
|
|
|
|
|
follow_redirects=True
|
|
|
|
|
|
)
|
2016-04-29 15:40:35 +01:00
|
|
|
|
|
2017-02-03 12:07:21 +00:00
|
|
|
|
assert resp.status_code == 200
|
|
|
|
|
|
assert "invalid.txt isn’t a spreadsheet that Notify can read" in resp.get_data(as_text=True)
|
2016-04-29 15:40:35 +01:00
|
|
|
|
|
|
|
|
|
|
|
2017-04-04 09:46:57 +01:00
|
|
|
|
def test_upload_valid_csv_shows_file_contents(
|
|
|
|
|
|
logged_in_client,
|
|
|
|
|
|
mocker,
|
|
|
|
|
|
mock_get_service_template_with_placeholders,
|
|
|
|
|
|
mock_s3_upload,
|
|
|
|
|
|
mock_get_users_by_service,
|
|
|
|
|
|
mock_get_detailed_service_for_today,
|
|
|
|
|
|
fake_uuid,
|
|
|
|
|
|
):
|
|
|
|
|
|
|
|
|
|
|
|
mocker.patch('app.main.views.send.s3download', return_value="""
|
|
|
|
|
|
phone number,name,thing,thing,thing
|
|
|
|
|
|
07700900986, Jo, foo, foo, foo
|
|
|
|
|
|
""")
|
|
|
|
|
|
|
|
|
|
|
|
response = logged_in_client.post(
|
2017-05-25 08:31:58 +01:00
|
|
|
|
url_for('main.send_messages', service_id=SERVICE_ONE_ID, template_id=fake_uuid),
|
2017-04-04 09:46:57 +01:00
|
|
|
|
data={'file': (BytesIO(''.encode('utf-8')), 'valid.csv')},
|
|
|
|
|
|
follow_redirects=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
assert response.status_code == 200
|
|
|
|
|
|
page = BeautifulSoup(response.data.decode('utf-8'), 'html.parser')
|
2017-05-25 08:31:58 +01:00
|
|
|
|
assert page.h1.text.strip() == 'Preview of Two week reminder'
|
2017-04-04 09:46:57 +01:00
|
|
|
|
for index, cell in enumerate([
|
2017-05-23 14:21:59 +01:00
|
|
|
|
'<td class="table-field-index"> <span class=""> 2 </span> </td>',
|
2017-04-04 09:46:57 +01:00
|
|
|
|
'<td class="table-field-center-aligned "> <div class=""> 07700900986 </div> </td>',
|
|
|
|
|
|
'<td class="table-field-center-aligned "> <div class=""> Jo </div> </td>',
|
|
|
|
|
|
(
|
|
|
|
|
|
'<td class="table-field-center-aligned "> '
|
|
|
|
|
|
'<div class="table-field-status-default"> '
|
|
|
|
|
|
'<ul class="list list-bullet"> '
|
|
|
|
|
|
'<li>foo</li> <li>foo</li> <li>foo</li> '
|
|
|
|
|
|
'</ul> '
|
|
|
|
|
|
'</div> '
|
|
|
|
|
|
'</td>'
|
|
|
|
|
|
),
|
|
|
|
|
|
]):
|
|
|
|
|
|
assert normalize_spaces(str(page.select('table tbody td')[index])) == cell
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-05-11 10:55:44 +01:00
|
|
|
|
def test_send_test_doesnt_show_file_contents(
|
|
|
|
|
|
logged_in_client,
|
|
|
|
|
|
mocker,
|
2017-05-04 09:30:55 +01:00
|
|
|
|
mock_get_service_template,
|
2017-05-11 10:55:44 +01:00
|
|
|
|
mock_s3_upload,
|
|
|
|
|
|
mock_get_users_by_service,
|
|
|
|
|
|
mock_get_detailed_service_for_today,
|
|
|
|
|
|
service_one,
|
|
|
|
|
|
fake_uuid,
|
|
|
|
|
|
):
|
|
|
|
|
|
|
|
|
|
|
|
mocker.patch('app.main.views.send.s3download', return_value="""
|
2017-05-04 09:30:55 +01:00
|
|
|
|
phone number
|
|
|
|
|
|
07700 900 986
|
2017-05-11 10:55:44 +01:00
|
|
|
|
""")
|
|
|
|
|
|
|
2017-05-04 09:30:55 +01:00
|
|
|
|
response = logged_in_client.get(
|
2017-05-11 10:55:44 +01:00
|
|
|
|
url_for('main.send_test', service_id=service_one['id'], template_id=fake_uuid),
|
|
|
|
|
|
follow_redirects=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
assert response.status_code == 200
|
|
|
|
|
|
page = BeautifulSoup(response.data.decode('utf-8'), 'html.parser')
|
|
|
|
|
|
assert page.select('h1')[0].text.strip() == 'Preview of Two week reminder'
|
|
|
|
|
|
assert len(page.select('table')) == 0
|
|
|
|
|
|
assert len(page.select('.banner-dangerous')) == 0
|
|
|
|
|
|
assert page.select('input[type=submit]')[0]['value'].strip() == 'Send 1 text message'
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-06-26 14:56:14 +01:00
|
|
|
|
@pytest.mark.parametrize('endpoint, template_mock, expected_recipient', [
|
|
|
|
|
|
('main.send_test_step', mock_get_service_template_with_placeholders, '07700 900762'),
|
|
|
|
|
|
('main.send_test_step', mock_get_service_email_template, 'test@user.gov.uk'),
|
|
|
|
|
|
('main.send_test_step', mock_get_service_letter_template, None),
|
|
|
|
|
|
('main.send_one_off_step', mock_get_service_template, None),
|
|
|
|
|
|
('main.send_one_off_step', mock_get_service_email_template, None),
|
|
|
|
|
|
('main.send_one_off_step', mock_get_service_letter_template, None),
|
2017-05-25 08:55:05 +01:00
|
|
|
|
])
|
2017-05-22 11:49:15 +01:00
|
|
|
|
def test_send_test_step_redirects_if_session_not_setup(
|
2017-05-25 09:18:26 +01:00
|
|
|
|
mocker,
|
2017-05-22 11:49:15 +01:00
|
|
|
|
logged_in_client,
|
2017-05-25 09:18:26 +01:00
|
|
|
|
mock_get_detailed_service_for_today,
|
|
|
|
|
|
mock_get_users_by_service,
|
2017-05-22 11:49:15 +01:00
|
|
|
|
fake_uuid,
|
2017-05-25 08:55:05 +01:00
|
|
|
|
endpoint,
|
2017-05-25 09:18:26 +01:00
|
|
|
|
template_mock,
|
2017-06-26 14:56:14 +01:00
|
|
|
|
expected_recipient,
|
2017-05-22 11:49:15 +01:00
|
|
|
|
):
|
2017-05-25 09:18:26 +01:00
|
|
|
|
template_mock(mocker)
|
|
|
|
|
|
mocker.patch('app.main.views.send.get_page_count_for_letter', return_value=99)
|
|
|
|
|
|
|
2017-05-22 11:49:15 +01:00
|
|
|
|
with logged_in_client.session_transaction() as session:
|
2017-06-26 14:56:14 +01:00
|
|
|
|
assert 'recipient' not in session
|
|
|
|
|
|
assert 'placeholders' not in session
|
2017-05-22 11:49:15 +01:00
|
|
|
|
|
|
|
|
|
|
response = logged_in_client.get(
|
2017-05-25 09:18:26 +01:00
|
|
|
|
url_for(endpoint, service_id=SERVICE_ONE_ID, template_id=fake_uuid, step_index=0),
|
2017-05-22 11:49:15 +01:00
|
|
|
|
follow_redirects=True
|
|
|
|
|
|
)
|
|
|
|
|
|
assert response.status_code == 200
|
|
|
|
|
|
|
|
|
|
|
|
with logged_in_client.session_transaction() as session:
|
2017-06-26 14:56:14 +01:00
|
|
|
|
assert session['recipient'] == expected_recipient
|
2017-05-22 11:49:15 +01:00
|
|
|
|
|
|
|
|
|
|
|
2017-06-30 10:55:59 +01:00
|
|
|
|
def test_send_one_off_does_not_send_without_the_correct_permissions(
|
|
|
|
|
|
logged_in_client,
|
|
|
|
|
|
mock_get_service_template,
|
|
|
|
|
|
service_one,
|
|
|
|
|
|
fake_uuid,
|
|
|
|
|
|
):
|
|
|
|
|
|
template_id = fake_uuid
|
|
|
|
|
|
service_one['permissions'] = []
|
|
|
|
|
|
|
|
|
|
|
|
response = logged_in_client.get(url_for(
|
|
|
|
|
|
'.send_one_off',
|
|
|
|
|
|
service_id=service_one['id'],
|
|
|
|
|
|
template_id=template_id),
|
|
|
|
|
|
follow_redirects=True)
|
|
|
|
|
|
page = BeautifulSoup(response.data.decode('utf-8'), 'html.parser')
|
|
|
|
|
|
|
|
|
|
|
|
assert response.status_code == 200
|
2017-07-10 12:25:01 +01:00
|
|
|
|
assert page.select('main p')[0].text.strip() == "Sending text messages has been disabled for your service."
|
2017-06-30 10:55:59 +01:00
|
|
|
|
assert page.select(".page-footer-back-link")[0].text == "Back to the template"
|
|
|
|
|
|
assert page.select(".page-footer-back-link")[0]['href'] == url_for(
|
|
|
|
|
|
'.view_template',
|
|
|
|
|
|
service_id=service_one['id'],
|
|
|
|
|
|
template_id=template_id,
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-06-01 13:29:30 +01:00
|
|
|
|
@pytest.mark.parametrize('template_mock, partial_url, expected_h1, tour_shown', [
|
2017-05-25 13:31:23 +01:00
|
|
|
|
(
|
|
|
|
|
|
mock_get_service_template_with_placeholders,
|
|
|
|
|
|
partial(url_for, 'main.send_test'),
|
2017-06-01 13:03:22 +01:00
|
|
|
|
'Send to one recipient',
|
2017-06-01 13:29:30 +01:00
|
|
|
|
False,
|
2017-05-25 13:31:23 +01:00
|
|
|
|
),
|
|
|
|
|
|
(
|
|
|
|
|
|
mock_get_service_template_with_placeholders,
|
|
|
|
|
|
partial(url_for, 'main.send_one_off'),
|
2017-06-01 13:03:22 +01:00
|
|
|
|
'Send to one recipient',
|
2017-06-01 13:29:30 +01:00
|
|
|
|
False,
|
2017-05-25 13:31:23 +01:00
|
|
|
|
),
|
|
|
|
|
|
(
|
|
|
|
|
|
mock_get_service_template_with_placeholders,
|
|
|
|
|
|
partial(url_for, 'main.send_test', help=1),
|
|
|
|
|
|
'Example text message',
|
2017-06-01 13:29:30 +01:00
|
|
|
|
True,
|
2017-05-25 13:31:23 +01:00
|
|
|
|
),
|
|
|
|
|
|
(
|
|
|
|
|
|
mock_get_service_email_template,
|
|
|
|
|
|
partial(url_for, 'main.send_test', help=1),
|
|
|
|
|
|
'Example text message',
|
2017-06-01 13:29:30 +01:00
|
|
|
|
True,
|
2017-05-25 13:31:23 +01:00
|
|
|
|
),
|
|
|
|
|
|
(
|
|
|
|
|
|
mock_get_service_email_template,
|
|
|
|
|
|
partial(url_for, 'main.send_test'),
|
2017-06-01 13:03:22 +01:00
|
|
|
|
'Send to one recipient',
|
2017-06-01 13:29:30 +01:00
|
|
|
|
False,
|
2017-05-25 13:31:23 +01:00
|
|
|
|
),
|
|
|
|
|
|
(
|
|
|
|
|
|
mock_get_service_email_template,
|
|
|
|
|
|
partial(url_for, 'main.send_one_off'),
|
2017-06-01 13:03:22 +01:00
|
|
|
|
'Send to one recipient',
|
2017-06-01 13:29:30 +01:00
|
|
|
|
False,
|
2017-05-25 13:31:23 +01:00
|
|
|
|
),
|
|
|
|
|
|
(
|
|
|
|
|
|
mock_get_service_letter_template,
|
|
|
|
|
|
partial(url_for, 'main.send_test'),
|
|
|
|
|
|
'Print a test letter',
|
2017-06-01 13:29:30 +01:00
|
|
|
|
False,
|
2017-05-25 13:31:23 +01:00
|
|
|
|
),
|
|
|
|
|
|
(
|
|
|
|
|
|
mock_get_service_letter_template,
|
|
|
|
|
|
partial(url_for, 'main.send_one_off'),
|
|
|
|
|
|
'Print a test letter',
|
2017-06-01 13:29:30 +01:00
|
|
|
|
False,
|
2017-05-25 13:31:23 +01:00
|
|
|
|
),
|
|
|
|
|
|
])
|
|
|
|
|
|
def test_send_one_off_or_test_has_correct_page_titles(
|
|
|
|
|
|
logged_in_client,
|
|
|
|
|
|
service_one,
|
|
|
|
|
|
fake_uuid,
|
|
|
|
|
|
mocker,
|
|
|
|
|
|
template_mock,
|
|
|
|
|
|
partial_url,
|
|
|
|
|
|
expected_h1,
|
2017-06-01 13:29:30 +01:00
|
|
|
|
tour_shown,
|
2017-05-25 13:31:23 +01:00
|
|
|
|
):
|
|
|
|
|
|
|
|
|
|
|
|
template_mock(mocker)
|
|
|
|
|
|
mocker.patch('app.main.views.send.get_page_count_for_letter', return_value=99)
|
|
|
|
|
|
|
|
|
|
|
|
response = logged_in_client.get(
|
|
|
|
|
|
partial_url(service_id=service_one['id'], template_id=fake_uuid, step_index=0),
|
|
|
|
|
|
follow_redirects=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
page = BeautifulSoup(response.data.decode('utf-8'), 'html.parser')
|
|
|
|
|
|
|
|
|
|
|
|
assert response.status_code == 200
|
|
|
|
|
|
assert page.h1.text.strip() == expected_h1
|
|
|
|
|
|
|
2017-06-01 13:29:30 +01:00
|
|
|
|
assert (len(page.select('.banner-tour')) == 1) == tour_shown
|
|
|
|
|
|
|
2017-05-25 13:31:23 +01:00
|
|
|
|
|
2017-05-25 13:31:51 +01:00
|
|
|
|
@pytest.mark.parametrize('template_mock, expected_link_text, expected_link_url', [
|
|
|
|
|
|
(mock_get_service_template, 'Use my phone number', partial(url_for, 'main.send_test')),
|
|
|
|
|
|
(mock_get_service_email_template, 'Use my email address', partial(url_for, 'main.send_test')),
|
|
|
|
|
|
(mock_get_service_letter_template, None, None),
|
|
|
|
|
|
])
|
|
|
|
|
|
def test_send_one_off_has_skip_link(
|
|
|
|
|
|
logged_in_client,
|
|
|
|
|
|
service_one,
|
|
|
|
|
|
fake_uuid,
|
|
|
|
|
|
mock_get_service_email_template,
|
|
|
|
|
|
mocker,
|
|
|
|
|
|
template_mock,
|
|
|
|
|
|
expected_link_text,
|
|
|
|
|
|
expected_link_url,
|
|
|
|
|
|
):
|
|
|
|
|
|
|
|
|
|
|
|
template_mock(mocker)
|
|
|
|
|
|
mocker.patch('app.main.views.send.get_page_count_for_letter', return_value=99)
|
|
|
|
|
|
|
|
|
|
|
|
response = logged_in_client.get(
|
|
|
|
|
|
url_for('main.send_one_off_step', service_id=service_one['id'], template_id=fake_uuid, step_index=0),
|
|
|
|
|
|
follow_redirects=True
|
|
|
|
|
|
)
|
|
|
|
|
|
page = BeautifulSoup(response.data.decode('utf-8'), 'html.parser')
|
|
|
|
|
|
skip_links = page.select('a.top-gutter-4-3')
|
|
|
|
|
|
|
|
|
|
|
|
assert response.status_code == 200
|
|
|
|
|
|
|
|
|
|
|
|
if expected_link_text and expected_link_url:
|
|
|
|
|
|
assert skip_links[0].text.strip() == expected_link_text
|
|
|
|
|
|
assert skip_links[0]['href'] == expected_link_url(
|
|
|
|
|
|
service_id=service_one['id'],
|
|
|
|
|
|
template_id=fake_uuid,
|
|
|
|
|
|
)
|
|
|
|
|
|
else:
|
|
|
|
|
|
assert not skip_links
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-06-26 14:56:14 +01:00
|
|
|
|
@pytest.mark.parametrize('endpoint, expected_redirect, placeholders', [
|
2017-05-25 09:18:26 +01:00
|
|
|
|
(
|
|
|
|
|
|
'main.send_test_step',
|
|
|
|
|
|
'main.send_test',
|
|
|
|
|
|
{'name': 'foo'},
|
|
|
|
|
|
),
|
|
|
|
|
|
(
|
|
|
|
|
|
'main.send_one_off_step',
|
|
|
|
|
|
'main.send_one_off',
|
|
|
|
|
|
{'name': 'foo', 'phone number': '07900900123'},
|
|
|
|
|
|
),
|
2017-05-25 08:55:05 +01:00
|
|
|
|
])
|
2017-05-22 11:49:15 +01:00
|
|
|
|
def test_send_test_redirects_to_end_if_step_out_of_bounds(
|
|
|
|
|
|
logged_in_client,
|
|
|
|
|
|
service_one,
|
|
|
|
|
|
fake_uuid,
|
2017-05-25 08:55:05 +01:00
|
|
|
|
endpoint,
|
2017-06-26 14:56:14 +01:00
|
|
|
|
placeholders,
|
2017-05-25 09:18:26 +01:00
|
|
|
|
expected_redirect,
|
2017-05-22 11:49:15 +01:00
|
|
|
|
):
|
|
|
|
|
|
|
|
|
|
|
|
with logged_in_client.session_transaction() as session:
|
2017-06-26 14:56:14 +01:00
|
|
|
|
session['placeholders'] = placeholders
|
2017-05-22 11:49:15 +01:00
|
|
|
|
|
|
|
|
|
|
response = logged_in_client.get(url_for(
|
2017-05-25 08:55:05 +01:00
|
|
|
|
endpoint,
|
2017-05-22 11:49:15 +01:00
|
|
|
|
service_id=service_one['id'],
|
|
|
|
|
|
template_id=fake_uuid,
|
|
|
|
|
|
step_index=999,
|
|
|
|
|
|
))
|
|
|
|
|
|
|
|
|
|
|
|
assert response.status_code == 302
|
|
|
|
|
|
expected_url = url_for(
|
2017-06-26 14:56:14 +01:00
|
|
|
|
expected_redirect,
|
2017-05-22 11:49:15 +01:00
|
|
|
|
service_id=service_one['id'],
|
2017-06-26 14:56:14 +01:00
|
|
|
|
template_id=fake_uuid,
|
2017-05-22 11:49:15 +01:00
|
|
|
|
_external=True,
|
|
|
|
|
|
)
|
2017-06-26 14:56:14 +01:00
|
|
|
|
assert response.location == expected_url
|
2017-05-22 11:49:15 +01:00
|
|
|
|
|
|
|
|
|
|
|
2017-05-25 08:55:05 +01:00
|
|
|
|
@pytest.mark.parametrize('endpoint, expected_redirect', [
|
|
|
|
|
|
('main.send_test_step', 'main.send_test'),
|
|
|
|
|
|
('main.send_one_off_step', 'main.send_one_off'),
|
|
|
|
|
|
])
|
2017-05-22 11:49:15 +01:00
|
|
|
|
def test_send_test_redirects_to_start_if_you_skip_steps(
|
|
|
|
|
|
logged_in_platform_admin_client,
|
|
|
|
|
|
service_one,
|
|
|
|
|
|
fake_uuid,
|
|
|
|
|
|
mock_get_service_letter_template,
|
|
|
|
|
|
mock_s3_upload,
|
|
|
|
|
|
mock_get_users_by_service,
|
|
|
|
|
|
mock_get_detailed_service_for_today,
|
|
|
|
|
|
mocker,
|
2017-05-25 08:55:05 +01:00
|
|
|
|
endpoint,
|
|
|
|
|
|
expected_redirect,
|
2017-05-22 11:49:15 +01:00
|
|
|
|
):
|
|
|
|
|
|
|
|
|
|
|
|
with logged_in_platform_admin_client.session_transaction() as session:
|
|
|
|
|
|
session['send_test_letter_page_count'] = 1
|
2017-06-26 14:56:14 +01:00
|
|
|
|
session['placeholders'] = {'address_line_1': 'foo'}
|
2017-05-22 11:49:15 +01:00
|
|
|
|
|
|
|
|
|
|
response = logged_in_platform_admin_client.get(url_for(
|
2017-05-25 08:55:05 +01:00
|
|
|
|
endpoint,
|
2017-05-22 11:49:15 +01:00
|
|
|
|
service_id=service_one['id'],
|
|
|
|
|
|
template_id=fake_uuid,
|
|
|
|
|
|
step_index=7, # letter template has 7 placeholders – we’re at the end
|
|
|
|
|
|
))
|
|
|
|
|
|
assert response.status_code == 302
|
|
|
|
|
|
assert response.location == url_for(
|
2017-05-25 08:55:05 +01:00
|
|
|
|
expected_redirect,
|
2017-05-22 11:49:15 +01:00
|
|
|
|
service_id=service_one['id'],
|
|
|
|
|
|
template_id=fake_uuid,
|
|
|
|
|
|
_external=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-05-25 08:55:05 +01:00
|
|
|
|
@pytest.mark.parametrize('endpoint, expected_redirect', [
|
|
|
|
|
|
('main.send_test_step', 'main.send_test'),
|
|
|
|
|
|
('main.send_one_off_step', 'main.send_one_off'),
|
|
|
|
|
|
])
|
2017-05-22 11:49:15 +01:00
|
|
|
|
def test_send_test_redirects_to_start_if_index_out_of_bounds_and_some_placeholders_empty(
|
|
|
|
|
|
logged_in_client,
|
|
|
|
|
|
service_one,
|
|
|
|
|
|
fake_uuid,
|
|
|
|
|
|
mock_get_service_email_template,
|
|
|
|
|
|
mock_s3_download,
|
|
|
|
|
|
mock_get_users_by_service,
|
|
|
|
|
|
mock_get_detailed_service_for_today,
|
2017-05-25 08:55:05 +01:00
|
|
|
|
endpoint,
|
|
|
|
|
|
expected_redirect,
|
2017-05-22 11:49:15 +01:00
|
|
|
|
):
|
|
|
|
|
|
|
|
|
|
|
|
with logged_in_client.session_transaction() as session:
|
2017-06-26 14:56:14 +01:00
|
|
|
|
session['placeholders'] = {'name': 'foo'}
|
2017-05-22 11:49:15 +01:00
|
|
|
|
|
|
|
|
|
|
response = logged_in_client.get(url_for(
|
2017-05-25 08:55:05 +01:00
|
|
|
|
endpoint,
|
2017-05-22 11:49:15 +01:00
|
|
|
|
service_id=service_one['id'],
|
|
|
|
|
|
template_id=fake_uuid,
|
|
|
|
|
|
step_index=999,
|
|
|
|
|
|
))
|
|
|
|
|
|
|
|
|
|
|
|
assert response.status_code == 302
|
|
|
|
|
|
assert response.location == url_for(
|
2017-05-25 08:55:05 +01:00
|
|
|
|
expected_redirect,
|
2017-05-22 11:49:15 +01:00
|
|
|
|
service_id=service_one['id'],
|
|
|
|
|
|
template_id=fake_uuid,
|
|
|
|
|
|
_external=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-05-25 08:55:05 +01:00
|
|
|
|
@pytest.mark.parametrize('endpoint, expected_redirect', [
|
|
|
|
|
|
('main.send_test', 'main.send_test_step'),
|
|
|
|
|
|
('main.send_one_off', 'main.send_one_off_step'),
|
|
|
|
|
|
])
|
2017-06-26 14:56:14 +01:00
|
|
|
|
def _redirects_with_help_argument(
|
2017-05-04 09:30:55 +01:00
|
|
|
|
logged_in_client,
|
2017-06-30 10:55:59 +01:00
|
|
|
|
mocker,
|
2017-05-22 10:32:22 +01:00
|
|
|
|
service_one,
|
|
|
|
|
|
fake_uuid,
|
2017-05-25 08:55:05 +01:00
|
|
|
|
endpoint,
|
|
|
|
|
|
expected_redirect,
|
2017-05-04 09:30:55 +01:00
|
|
|
|
):
|
2017-06-30 10:55:59 +01:00
|
|
|
|
template = {'data': {'template_type': 'sms'}}
|
|
|
|
|
|
mocker.patch('app.service_api_client.get_service_template', return_value=template)
|
|
|
|
|
|
|
2017-05-04 09:30:55 +01:00
|
|
|
|
response = logged_in_client.get(
|
2017-05-25 08:55:05 +01:00
|
|
|
|
url_for(endpoint, service_id=service_one['id'], template_id=fake_uuid, help=1)
|
2017-05-04 09:30:55 +01:00
|
|
|
|
)
|
|
|
|
|
|
assert response.status_code == 302
|
|
|
|
|
|
assert response.location == url_for(
|
2017-05-25 08:55:05 +01:00
|
|
|
|
expected_redirect,
|
2017-05-22 10:32:22 +01:00
|
|
|
|
service_id=service_one['id'],
|
2017-05-04 09:30:55 +01:00
|
|
|
|
template_id=fake_uuid,
|
|
|
|
|
|
step_index=0,
|
|
|
|
|
|
help=1,
|
|
|
|
|
|
_external=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-06-26 17:09:51 +01:00
|
|
|
|
def test_send_test_email_message_without_placeholders_redirects_to_check_page(
|
2017-02-03 12:07:21 +00:00
|
|
|
|
logged_in_client,
|
2016-03-02 17:02:41 +00:00
|
|
|
|
mocker,
|
2017-05-22 10:32:22 +01:00
|
|
|
|
service_one,
|
2016-12-14 10:12:53 +00:00
|
|
|
|
mock_get_service_email_template_without_placeholders,
|
2016-03-03 09:30:30 +00:00
|
|
|
|
mock_s3_upload,
|
2016-04-12 14:19:51 +01:00
|
|
|
|
mock_get_users_by_service,
|
2016-07-25 14:16:34 +01:00
|
|
|
|
mock_get_detailed_service_for_today,
|
2017-05-22 10:32:22 +01:00
|
|
|
|
fake_uuid,
|
2016-03-02 17:02:41 +00:00
|
|
|
|
):
|
2017-06-26 17:09:51 +01:00
|
|
|
|
with logged_in_client.session_transaction() as session:
|
|
|
|
|
|
session['recipient'] = 'foo@bar.com'
|
2016-03-02 17:02:41 +00:00
|
|
|
|
|
2017-02-03 12:07:21 +00:00
|
|
|
|
response = logged_in_client.get(
|
2017-06-26 17:09:51 +01:00
|
|
|
|
url_for('main.send_test', step_index=0, service_id=service_one['id'], template_id=fake_uuid),
|
2017-02-03 12:07:21 +00:00
|
|
|
|
follow_redirects=True
|
|
|
|
|
|
)
|
|
|
|
|
|
assert response.status_code == 200
|
2017-06-26 17:09:51 +01:00
|
|
|
|
page = BeautifulSoup(response.data.decode('utf-8'), 'html.parser')
|
|
|
|
|
|
assert page.select('h1')[0].text.strip() == 'Preview of Two week reminder'
|
2016-03-02 17:02:41 +00:00
|
|
|
|
|
|
|
|
|
|
|
2017-05-04 09:30:55 +01:00
|
|
|
|
def test_send_test_sms_message_with_placeholders_shows_first_field(
|
|
|
|
|
|
logged_in_client,
|
|
|
|
|
|
mocker,
|
|
|
|
|
|
service_one,
|
|
|
|
|
|
mock_login,
|
|
|
|
|
|
mock_get_service,
|
|
|
|
|
|
mock_get_service_template_with_placeholders,
|
|
|
|
|
|
fake_uuid,
|
|
|
|
|
|
):
|
|
|
|
|
|
|
|
|
|
|
|
with logged_in_client.session_transaction() as session:
|
2017-06-26 14:56:14 +01:00
|
|
|
|
assert 'placeholders' not in session
|
2017-05-04 09:30:55 +01:00
|
|
|
|
|
|
|
|
|
|
response = logged_in_client.get(
|
|
|
|
|
|
url_for(
|
|
|
|
|
|
'main.send_test',
|
|
|
|
|
|
service_id=service_one['id'],
|
|
|
|
|
|
template_id=fake_uuid,
|
|
|
|
|
|
),
|
|
|
|
|
|
follow_redirects=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
assert response.status_code == 200
|
|
|
|
|
|
page = BeautifulSoup(response.data.decode('utf-8'), 'html.parser')
|
|
|
|
|
|
|
|
|
|
|
|
assert page.select('label')[0].text.strip() == 'name'
|
|
|
|
|
|
assert page.select('input')[0]['name'] == 'placeholder_value'
|
|
|
|
|
|
assert page.select('.page-footer-back-link')[0]['href'] == url_for(
|
|
|
|
|
|
'main.view_template',
|
|
|
|
|
|
service_id=service_one['id'],
|
|
|
|
|
|
template_id=fake_uuid,
|
|
|
|
|
|
)
|
|
|
|
|
|
with logged_in_client.session_transaction() as session:
|
2017-06-26 14:56:14 +01:00
|
|
|
|
assert session['recipient'] == '07700 900762'
|
2017-05-04 09:30:55 +01:00
|
|
|
|
|
|
|
|
|
|
|
2017-05-16 17:52:19 +01:00
|
|
|
|
def test_send_test_letter_clears_previous_page_cache(
|
|
|
|
|
|
logged_in_platform_admin_client,
|
|
|
|
|
|
mocker,
|
|
|
|
|
|
service_one,
|
|
|
|
|
|
mock_login,
|
|
|
|
|
|
mock_get_service,
|
|
|
|
|
|
mock_get_service_letter_template,
|
|
|
|
|
|
fake_uuid,
|
|
|
|
|
|
):
|
|
|
|
|
|
|
|
|
|
|
|
with logged_in_platform_admin_client.session_transaction() as session:
|
|
|
|
|
|
session['send_test_letter_page_count'] = 'WRONG'
|
|
|
|
|
|
|
|
|
|
|
|
response = logged_in_platform_admin_client.get(url_for(
|
|
|
|
|
|
'main.send_test',
|
|
|
|
|
|
service_id=service_one['id'],
|
|
|
|
|
|
template_id=fake_uuid,
|
|
|
|
|
|
))
|
|
|
|
|
|
assert response.status_code == 302
|
|
|
|
|
|
|
|
|
|
|
|
with logged_in_platform_admin_client.session_transaction() as session:
|
|
|
|
|
|
assert session['send_test_letter_page_count'] is None
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-05-04 09:30:55 +01:00
|
|
|
|
def test_send_test_populates_field_from_session(
|
|
|
|
|
|
logged_in_client,
|
|
|
|
|
|
mocker,
|
|
|
|
|
|
service_one,
|
|
|
|
|
|
mock_login,
|
|
|
|
|
|
mock_get_service,
|
|
|
|
|
|
mock_get_service_template_with_placeholders,
|
|
|
|
|
|
fake_uuid,
|
|
|
|
|
|
):
|
|
|
|
|
|
|
|
|
|
|
|
with logged_in_client.session_transaction() as session:
|
2017-06-26 14:56:14 +01:00
|
|
|
|
session['recipient'] = None
|
|
|
|
|
|
session['placeholders'] = {}
|
|
|
|
|
|
session['placeholders']['name'] = 'Jo'
|
2017-05-04 09:30:55 +01:00
|
|
|
|
|
|
|
|
|
|
response = logged_in_client.get(url_for(
|
|
|
|
|
|
'main.send_test_step',
|
|
|
|
|
|
service_id=service_one['id'],
|
|
|
|
|
|
template_id=fake_uuid,
|
|
|
|
|
|
step_index=0,
|
|
|
|
|
|
))
|
|
|
|
|
|
assert response.status_code == 200
|
|
|
|
|
|
page = BeautifulSoup(response.data.decode('utf-8'), 'html.parser')
|
|
|
|
|
|
|
|
|
|
|
|
assert page.select('input')[0]['value'] == 'Jo'
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-05-16 17:52:19 +01:00
|
|
|
|
def test_send_test_caches_page_count(
|
|
|
|
|
|
logged_in_client,
|
|
|
|
|
|
mocker,
|
|
|
|
|
|
service_one,
|
|
|
|
|
|
mock_login,
|
|
|
|
|
|
mock_get_service,
|
|
|
|
|
|
mock_get_service_letter_template,
|
|
|
|
|
|
fake_uuid,
|
|
|
|
|
|
):
|
|
|
|
|
|
|
|
|
|
|
|
mocker.patch('app.main.views.send.get_page_count_for_letter', return_value=99)
|
|
|
|
|
|
|
|
|
|
|
|
response = logged_in_client.get(
|
|
|
|
|
|
url_for(
|
|
|
|
|
|
'main.send_test',
|
|
|
|
|
|
service_id=service_one['id'],
|
|
|
|
|
|
template_id=fake_uuid,
|
|
|
|
|
|
),
|
|
|
|
|
|
follow_redirects=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
with logged_in_client.session_transaction() as session:
|
|
|
|
|
|
assert session['send_test_letter_page_count'] == 99
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-05-04 09:30:55 +01:00
|
|
|
|
def test_send_test_indicates_optional_address_columns(
|
|
|
|
|
|
logged_in_client,
|
|
|
|
|
|
mocker,
|
|
|
|
|
|
service_one,
|
|
|
|
|
|
mock_login,
|
|
|
|
|
|
mock_get_service,
|
|
|
|
|
|
mock_get_service_letter_template,
|
|
|
|
|
|
fake_uuid,
|
|
|
|
|
|
):
|
|
|
|
|
|
|
|
|
|
|
|
mocker.patch('app.main.views.send.get_page_count_for_letter', return_value=1)
|
|
|
|
|
|
|
|
|
|
|
|
with logged_in_client.session_transaction() as session:
|
2017-06-26 14:56:14 +01:00
|
|
|
|
session['recipient'] = None
|
|
|
|
|
|
session['placeholders'] = {}
|
2017-05-04 09:30:55 +01:00
|
|
|
|
|
|
|
|
|
|
response = logged_in_client.get(url_for(
|
|
|
|
|
|
'main.send_test_step',
|
|
|
|
|
|
service_id=service_one['id'],
|
|
|
|
|
|
template_id=fake_uuid,
|
|
|
|
|
|
step_index=3,
|
|
|
|
|
|
))
|
|
|
|
|
|
assert response.status_code == 200
|
|
|
|
|
|
page = BeautifulSoup(response.data.decode('utf-8'), 'html.parser')
|
|
|
|
|
|
|
|
|
|
|
|
assert normalize_spaces(page.select('label')[0].text) == (
|
|
|
|
|
|
'address line 4 '
|
|
|
|
|
|
'Optional'
|
|
|
|
|
|
)
|
|
|
|
|
|
assert page.select('.page-footer-back-link')[0]['href'] == url_for(
|
|
|
|
|
|
'main.send_test_step',
|
|
|
|
|
|
service_id=service_one['id'],
|
|
|
|
|
|
template_id=fake_uuid,
|
|
|
|
|
|
step_index=2,
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_send_test_allows_empty_optional_address_columns(
|
|
|
|
|
|
logged_in_client,
|
|
|
|
|
|
mocker,
|
|
|
|
|
|
service_one,
|
|
|
|
|
|
mock_login,
|
|
|
|
|
|
mock_get_service,
|
|
|
|
|
|
mock_get_service_letter_template,
|
|
|
|
|
|
fake_uuid,
|
|
|
|
|
|
):
|
|
|
|
|
|
|
|
|
|
|
|
mocker.patch('app.main.views.send.get_page_count_for_letter', return_value=1)
|
|
|
|
|
|
|
|
|
|
|
|
with logged_in_client.session_transaction() as session:
|
2017-06-26 14:56:14 +01:00
|
|
|
|
session['recipient'] = None
|
|
|
|
|
|
session['placeholders'] = {}
|
2017-05-04 09:30:55 +01:00
|
|
|
|
|
|
|
|
|
|
response = logged_in_client.post(
|
|
|
|
|
|
url_for(
|
|
|
|
|
|
'main.send_test_step',
|
|
|
|
|
|
service_id=service_one['id'],
|
|
|
|
|
|
template_id=fake_uuid,
|
|
|
|
|
|
step_index=3,
|
|
|
|
|
|
),
|
|
|
|
|
|
# no data here
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
assert response.status_code == 302
|
|
|
|
|
|
assert response.location == url_for(
|
|
|
|
|
|
'main.send_test_step',
|
|
|
|
|
|
service_id=service_one['id'],
|
|
|
|
|
|
template_id=fake_uuid,
|
|
|
|
|
|
step_index=4,
|
|
|
|
|
|
_external=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-06-26 14:56:14 +01:00
|
|
|
|
def test_send_test_sms_message_puts_submitted_data_in_session(
|
2017-02-03 12:07:21 +00:00
|
|
|
|
logged_in_client,
|
2017-05-22 10:32:22 +01:00
|
|
|
|
service_one,
|
2016-05-05 08:39:36 +01:00
|
|
|
|
mock_get_service_template_with_placeholders,
|
|
|
|
|
|
mock_get_users_by_service,
|
2016-07-25 14:16:34 +01:00
|
|
|
|
mock_get_detailed_service_for_today,
|
2017-05-22 10:32:22 +01:00
|
|
|
|
fake_uuid,
|
2016-05-05 08:39:36 +01:00
|
|
|
|
):
|
2017-05-04 09:30:55 +01:00
|
|
|
|
with logged_in_client.session_transaction() as session:
|
2017-06-26 17:09:51 +01:00
|
|
|
|
session['recipient'] = '07700 900762'
|
2017-06-26 14:56:14 +01:00
|
|
|
|
session['placeholders'] = {}
|
2016-05-05 08:39:36 +01:00
|
|
|
|
|
2017-02-03 12:07:21 +00:00
|
|
|
|
response = logged_in_client.post(
|
|
|
|
|
|
url_for(
|
2017-05-04 09:30:55 +01:00
|
|
|
|
'main.send_test_step',
|
2017-05-22 10:32:22 +01:00
|
|
|
|
service_id=service_one['id'],
|
2017-05-04 09:30:55 +01:00
|
|
|
|
template_id=fake_uuid,
|
|
|
|
|
|
step_index=0,
|
2017-02-03 12:07:21 +00:00
|
|
|
|
),
|
2017-06-26 14:56:14 +01:00
|
|
|
|
data={'placeholder_value': 'Jo'}
|
|
|
|
|
|
)
|
|
|
|
|
|
assert response.status_code == 302
|
|
|
|
|
|
assert response.location == url_for(
|
|
|
|
|
|
'main.check_notification',
|
|
|
|
|
|
service_id=service_one['id'],
|
|
|
|
|
|
template_id=fake_uuid,
|
|
|
|
|
|
_external=True
|
2017-02-03 12:07:21 +00:00
|
|
|
|
)
|
2017-05-04 09:30:55 +01:00
|
|
|
|
|
|
|
|
|
|
with logged_in_client.session_transaction() as session:
|
2017-06-26 14:56:14 +01:00
|
|
|
|
assert session['recipient'] == '07700 900762'
|
|
|
|
|
|
assert session['placeholders']['name'] == 'Jo'
|
2017-05-04 09:30:55 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize('filetype', ['pdf', 'png'])
|
|
|
|
|
|
def test_send_test_works_as_letter_preview(
|
|
|
|
|
|
filetype,
|
|
|
|
|
|
logged_in_platform_admin_client,
|
|
|
|
|
|
mock_get_service_letter_template,
|
|
|
|
|
|
mock_get_users_by_service,
|
|
|
|
|
|
mock_get_detailed_service_for_today,
|
|
|
|
|
|
service_one,
|
|
|
|
|
|
fake_uuid,
|
|
|
|
|
|
mocker,
|
|
|
|
|
|
):
|
2017-06-23 13:35:08 +01:00
|
|
|
|
service_one['permissions'] = ['letter']
|
2017-05-04 09:30:55 +01:00
|
|
|
|
mocker.patch('app.service_api_client.get_service', return_value={"data": service_one})
|
|
|
|
|
|
mocker.patch('app.main.views.send.get_page_count_for_letter', return_value=1)
|
|
|
|
|
|
mocked_preview = mocker.patch(
|
|
|
|
|
|
'app.main.views.send.TemplatePreview.from_utils_template',
|
|
|
|
|
|
return_value='foo'
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
service_id = service_one['id']
|
|
|
|
|
|
template_id = fake_uuid
|
|
|
|
|
|
with logged_in_platform_admin_client.session_transaction() as session:
|
2017-06-26 14:56:14 +01:00
|
|
|
|
session['placeholders'] = {'address_line_1': 'Jo Lastname'}
|
2017-05-04 09:30:55 +01:00
|
|
|
|
response = logged_in_platform_admin_client.get(
|
|
|
|
|
|
url_for(
|
|
|
|
|
|
'main.send_test_preview',
|
|
|
|
|
|
service_id=service_id,
|
|
|
|
|
|
template_id=template_id,
|
|
|
|
|
|
filetype=filetype
|
|
|
|
|
|
)
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
mock_get_service_letter_template.assert_called_with(service_id, template_id)
|
|
|
|
|
|
|
|
|
|
|
|
assert response.status_code == 200
|
|
|
|
|
|
assert response.get_data(as_text=True) == 'foo'
|
|
|
|
|
|
assert mocked_preview.call_args[0][0].id == template_id
|
|
|
|
|
|
assert type(mocked_preview.call_args[0][0]) == LetterImageTemplate
|
|
|
|
|
|
assert mocked_preview.call_args[0][0].values == {'address_line_1': 'Jo Lastname'}
|
|
|
|
|
|
assert mocked_preview.call_args[0][1] == filetype
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_send_test_clears_session(
|
|
|
|
|
|
logged_in_client,
|
|
|
|
|
|
mocker,
|
2017-05-22 10:32:22 +01:00
|
|
|
|
service_one,
|
|
|
|
|
|
fake_uuid,
|
2017-05-04 09:30:55 +01:00
|
|
|
|
):
|
2017-06-30 10:55:59 +01:00
|
|
|
|
template = {'data': {'template_type': 'sms'}}
|
|
|
|
|
|
mocker.patch('app.service_api_client.get_service_template', return_value=template)
|
2017-05-04 09:30:55 +01:00
|
|
|
|
|
|
|
|
|
|
with logged_in_client.session_transaction() as session:
|
2017-06-26 14:56:14 +01:00
|
|
|
|
session['recipient'] = '07700900001'
|
|
|
|
|
|
session['placeholders'] = {'foo': 'bar'}
|
2017-05-04 09:30:55 +01:00
|
|
|
|
|
|
|
|
|
|
response = logged_in_client.get(
|
|
|
|
|
|
url_for(
|
|
|
|
|
|
'main.send_test',
|
2017-05-22 10:32:22 +01:00
|
|
|
|
service_id=service_one['id'],
|
2017-05-04 09:30:55 +01:00
|
|
|
|
template_id=fake_uuid,
|
|
|
|
|
|
),
|
|
|
|
|
|
)
|
|
|
|
|
|
assert response.status_code == 302
|
|
|
|
|
|
|
|
|
|
|
|
with logged_in_client.session_transaction() as session:
|
2017-06-26 17:09:51 +01:00
|
|
|
|
assert session['recipient'] is None
|
2017-06-26 14:56:14 +01:00
|
|
|
|
assert session['placeholders'] == {}
|
2016-05-05 08:39:36 +01:00
|
|
|
|
|
|
|
|
|
|
|
2016-02-18 17:03:32 +00:00
|
|
|
|
def test_download_example_csv(
|
2017-02-03 12:07:21 +00:00
|
|
|
|
logged_in_client,
|
2016-02-18 17:03:32 +00:00
|
|
|
|
mocker,
|
|
|
|
|
|
api_user_active,
|
|
|
|
|
|
mock_login,
|
2016-02-26 12:11:55 +00:00
|
|
|
|
mock_get_service,
|
2016-02-29 17:03:56 +00:00
|
|
|
|
mock_get_service_template,
|
2016-04-12 14:19:51 +01:00
|
|
|
|
mock_has_permissions,
|
|
|
|
|
|
fake_uuid
|
2016-02-18 17:03:32 +00:00
|
|
|
|
):
|
|
|
|
|
|
|
2017-02-03 12:07:21 +00:00
|
|
|
|
response = logged_in_client.get(
|
|
|
|
|
|
url_for('main.get_example_csv', service_id=fake_uuid, template_id=fake_uuid),
|
|
|
|
|
|
follow_redirects=True
|
|
|
|
|
|
)
|
|
|
|
|
|
assert response.status_code == 200
|
|
|
|
|
|
assert response.get_data(as_text=True) == 'phone number\r\n07700 900321\r\n'
|
|
|
|
|
|
assert 'text/csv' in response.headers['Content-Type']
|
2016-02-18 17:03:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
2016-02-22 17:17:18 +00:00
|
|
|
|
def test_upload_csvfile_with_valid_phone_shows_all_numbers(
|
2017-02-03 12:07:21 +00:00
|
|
|
|
logged_in_client,
|
2016-02-26 10:54:06 +00:00
|
|
|
|
mock_get_service_template,
|
2016-04-12 14:19:51 +01:00
|
|
|
|
mock_get_users_by_service,
|
2016-07-25 14:16:34 +01:00
|
|
|
|
mock_get_detailed_service_for_today,
|
2017-05-22 10:32:22 +01:00
|
|
|
|
service_one,
|
|
|
|
|
|
fake_uuid,
|
|
|
|
|
|
mock_s3_upload,
|
|
|
|
|
|
mocker,
|
2016-02-22 17:17:18 +00:00
|
|
|
|
):
|
2016-01-13 22:34:36 +00:00
|
|
|
|
|
2016-03-07 18:47:05 +00:00
|
|
|
|
mocker.patch(
|
|
|
|
|
|
'app.main.views.send.s3download',
|
2016-04-07 14:30:51 +01:00
|
|
|
|
return_value='\n'.join(['phone number'] + [
|
|
|
|
|
|
'07700 9007{0:02d}'.format(final_two) for final_two in range(0, 53)
|
|
|
|
|
|
])
|
2016-03-07 18:47:05 +00:00
|
|
|
|
)
|
2016-01-11 15:00:51 +00:00
|
|
|
|
|
2017-02-03 12:07:21 +00:00
|
|
|
|
response = logged_in_client.post(
|
2017-05-22 10:32:22 +01:00
|
|
|
|
url_for('main.send_messages', service_id=service_one['id'], template_id=fake_uuid),
|
2017-02-03 12:07:21 +00:00
|
|
|
|
data={'file': (BytesIO(''.encode('utf-8')), 'valid.csv')},
|
|
|
|
|
|
content_type='multipart/form-data',
|
|
|
|
|
|
follow_redirects=True
|
|
|
|
|
|
)
|
|
|
|
|
|
with logged_in_client.session_transaction() as sess:
|
|
|
|
|
|
assert sess['upload_data']['template_id'] == fake_uuid
|
|
|
|
|
|
assert sess['upload_data']['original_file_name'] == 'valid.csv'
|
|
|
|
|
|
assert sess['upload_data']['notification_count'] == 53
|
|
|
|
|
|
|
|
|
|
|
|
content = response.get_data(as_text=True)
|
|
|
|
|
|
assert response.status_code == 200
|
|
|
|
|
|
assert '07700 900701' in content
|
|
|
|
|
|
assert '07700 900749' in content
|
|
|
|
|
|
assert '07700 900750' not in content
|
|
|
|
|
|
assert 'Only showing the first 50 rows' in content
|
|
|
|
|
|
|
2017-05-22 10:32:22 +01:00
|
|
|
|
mock_get_detailed_service_for_today.assert_called_once_with(service_one['id'])
|
2016-06-17 11:54:01 +01:00
|
|
|
|
|
2016-01-11 15:00:51 +00:00
|
|
|
|
|
2017-04-26 16:19:49 +01:00
|
|
|
|
@pytest.mark.parametrize('service_mock, should_allow_international', [
|
|
|
|
|
|
(mock_get_service, False),
|
|
|
|
|
|
(mock_get_international_service, True),
|
|
|
|
|
|
])
|
|
|
|
|
|
def test_upload_csvfile_with_international_validates(
|
|
|
|
|
|
mocker,
|
|
|
|
|
|
api_user_active,
|
|
|
|
|
|
logged_in_client,
|
|
|
|
|
|
mock_get_service_template,
|
|
|
|
|
|
mock_s3_upload,
|
|
|
|
|
|
mock_has_permissions,
|
|
|
|
|
|
mock_get_users_by_service,
|
|
|
|
|
|
mock_get_detailed_service_for_today,
|
|
|
|
|
|
fake_uuid,
|
|
|
|
|
|
service_mock,
|
|
|
|
|
|
should_allow_international,
|
|
|
|
|
|
):
|
|
|
|
|
|
|
|
|
|
|
|
service_mock(mocker, api_user_active)
|
|
|
|
|
|
mocker.patch('app.main.views.send.s3download', return_value='')
|
|
|
|
|
|
mock_recipients = mocker.patch(
|
|
|
|
|
|
'app.main.views.send.RecipientCSV',
|
|
|
|
|
|
return_value=RecipientCSV("", template_type="sms"),
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
response = logged_in_client.post(
|
|
|
|
|
|
url_for('main.send_messages', service_id=fake_uuid, template_id=fake_uuid),
|
|
|
|
|
|
data={'file': (BytesIO(''.encode('utf-8')), 'valid.csv')},
|
|
|
|
|
|
content_type='multipart/form-data',
|
|
|
|
|
|
follow_redirects=True,
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
assert response.status_code == 200
|
|
|
|
|
|
assert mock_recipients.call_args[1]['international_sms'] == should_allow_international
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-08-30 09:27:24 +01:00
|
|
|
|
def test_test_message_can_only_be_sent_now(
|
2017-02-03 12:07:21 +00:00
|
|
|
|
logged_in_client,
|
2016-08-30 09:27:24 +01:00
|
|
|
|
mocker,
|
2017-05-22 10:32:22 +01:00
|
|
|
|
service_one,
|
2016-08-30 09:27:24 +01:00
|
|
|
|
mock_get_service_template,
|
|
|
|
|
|
mock_s3_download,
|
|
|
|
|
|
mock_get_users_by_service,
|
|
|
|
|
|
mock_get_detailed_service_for_today,
|
|
|
|
|
|
fake_uuid
|
|
|
|
|
|
):
|
|
|
|
|
|
|
2017-02-03 12:07:21 +00:00
|
|
|
|
with logged_in_client.session_transaction() as session:
|
|
|
|
|
|
session['upload_data'] = {
|
|
|
|
|
|
'original_file_name': 'Test message',
|
|
|
|
|
|
'template_id': fake_uuid,
|
|
|
|
|
|
'notification_count': 1,
|
|
|
|
|
|
'valid': True
|
|
|
|
|
|
}
|
|
|
|
|
|
response = logged_in_client.get(url_for(
|
|
|
|
|
|
'main.check_messages',
|
2017-05-22 10:32:22 +01:00
|
|
|
|
service_id=service_one['id'],
|
2017-02-03 12:07:21 +00:00
|
|
|
|
upload_id=fake_uuid,
|
|
|
|
|
|
template_type='sms',
|
|
|
|
|
|
from_test=True
|
2017-04-26 10:49:51 +01:00
|
|
|
|
))
|
|
|
|
|
|
|
|
|
|
|
|
content = response.get_data(as_text=True)
|
|
|
|
|
|
assert 'name="scheduled_for"' not in content
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_letter_can_only_be_sent_now(
|
|
|
|
|
|
logged_in_client,
|
2017-05-04 09:30:55 +01:00
|
|
|
|
mocker,
|
2017-05-22 10:32:22 +01:00
|
|
|
|
service_one,
|
2017-04-26 10:49:51 +01:00
|
|
|
|
mock_get_service_letter_template,
|
|
|
|
|
|
mock_s3_download,
|
|
|
|
|
|
mock_get_users_by_service,
|
|
|
|
|
|
mock_get_detailed_service_for_today,
|
|
|
|
|
|
fake_uuid,
|
|
|
|
|
|
):
|
|
|
|
|
|
|
2017-05-04 09:30:55 +01:00
|
|
|
|
mocker.patch('app.main.views.send.get_page_count_for_letter', return_value=1)
|
|
|
|
|
|
|
2017-04-26 10:49:51 +01:00
|
|
|
|
with logged_in_client.session_transaction() as session:
|
|
|
|
|
|
session['upload_data'] = {
|
|
|
|
|
|
'original_file_name': 'Test message',
|
|
|
|
|
|
'template_id': fake_uuid,
|
|
|
|
|
|
'notification_count': 1,
|
|
|
|
|
|
'valid': True
|
|
|
|
|
|
}
|
2017-05-04 09:30:55 +01:00
|
|
|
|
|
2017-04-26 10:49:51 +01:00
|
|
|
|
response = logged_in_client.get(url_for(
|
|
|
|
|
|
'main.check_messages',
|
2017-05-22 10:32:22 +01:00
|
|
|
|
service_id=service_one['id'],
|
2017-04-26 10:49:51 +01:00
|
|
|
|
upload_id=fake_uuid,
|
|
|
|
|
|
template_type='letter',
|
|
|
|
|
|
from_test=True
|
2017-02-03 12:07:21 +00:00
|
|
|
|
))
|
2016-08-30 09:27:24 +01:00
|
|
|
|
|
2017-02-03 12:07:21 +00:00
|
|
|
|
content = response.get_data(as_text=True)
|
|
|
|
|
|
assert 'name="scheduled_for"' not in content
|
2016-08-30 09:27:24 +01:00
|
|
|
|
|
|
|
|
|
|
|
2017-05-22 10:32:22 +01:00
|
|
|
|
@pytest.mark.parametrize('when', [
|
|
|
|
|
|
'', '2016-08-25T13:04:21.767198'
|
|
|
|
|
|
])
|
2016-02-22 17:17:18 +00:00
|
|
|
|
def test_create_job_should_call_api(
|
2017-02-03 12:07:21 +00:00
|
|
|
|
logged_in_client,
|
2016-02-22 17:17:18 +00:00
|
|
|
|
service_one,
|
|
|
|
|
|
mock_create_job,
|
|
|
|
|
|
mock_get_job,
|
2016-03-02 15:37:35 +00:00
|
|
|
|
mock_get_notifications,
|
2016-02-29 17:03:56 +00:00
|
|
|
|
mock_get_service_template,
|
2016-05-24 12:34:29 +01:00
|
|
|
|
mocker,
|
2016-08-07 09:17:49 +01:00
|
|
|
|
fake_uuid,
|
|
|
|
|
|
when
|
2016-02-22 17:17:18 +00:00
|
|
|
|
):
|
2016-01-29 12:19:50 +00:00
|
|
|
|
service_id = service_one['id']
|
2016-05-24 12:34:29 +01:00
|
|
|
|
data = mock_get_job(service_one['id'], fake_uuid)['data']
|
|
|
|
|
|
job_id = data['id']
|
|
|
|
|
|
original_file_name = data['original_file_name']
|
|
|
|
|
|
template_id = data['template']
|
|
|
|
|
|
notification_count = data['notification_count']
|
2017-02-03 12:07:21 +00:00
|
|
|
|
with logged_in_client.session_transaction() as session:
|
|
|
|
|
|
session['upload_data'] = {
|
|
|
|
|
|
'original_file_name': original_file_name,
|
|
|
|
|
|
'template_id': template_id,
|
|
|
|
|
|
'notification_count': notification_count,
|
|
|
|
|
|
'valid': True
|
|
|
|
|
|
}
|
|
|
|
|
|
url = url_for('main.start_job', service_id=service_one['id'], upload_id=job_id)
|
|
|
|
|
|
response = logged_in_client.post(url, data={'scheduled_for': when}, follow_redirects=True)
|
2016-08-25 13:27:24 +01:00
|
|
|
|
|
|
|
|
|
|
assert response.status_code == 200
|
|
|
|
|
|
assert original_file_name in response.get_data(as_text=True)
|
|
|
|
|
|
mock_create_job.assert_called_with(
|
|
|
|
|
|
job_id,
|
|
|
|
|
|
service_id,
|
|
|
|
|
|
template_id,
|
|
|
|
|
|
original_file_name,
|
|
|
|
|
|
notification_count,
|
|
|
|
|
|
scheduled_for=when
|
|
|
|
|
|
)
|
2016-03-03 15:26:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
2017-01-20 16:20:37 +00:00
|
|
|
|
def test_can_start_letters_job(
|
2017-02-14 14:06:02 +00:00
|
|
|
|
logged_in_platform_admin_client,
|
2016-11-08 13:10:38 +00:00
|
|
|
|
mock_create_job,
|
2017-02-14 14:06:02 +00:00
|
|
|
|
service_one,
|
2016-11-08 13:10:38 +00:00
|
|
|
|
fake_uuid
|
|
|
|
|
|
):
|
2017-02-14 14:06:02 +00:00
|
|
|
|
|
|
|
|
|
|
with logged_in_platform_admin_client.session_transaction() as session:
|
2016-11-08 13:10:38 +00:00
|
|
|
|
session['upload_data'] = {
|
|
|
|
|
|
'original_file_name': 'example.csv',
|
|
|
|
|
|
'template_id': fake_uuid,
|
|
|
|
|
|
'notification_count': 123,
|
|
|
|
|
|
'valid': True
|
|
|
|
|
|
}
|
2017-02-14 14:06:02 +00:00
|
|
|
|
response = logged_in_platform_admin_client.post(
|
|
|
|
|
|
url_for('main.start_job', service_id=service_one['id'], upload_id=fake_uuid),
|
2016-11-08 13:10:38 +00:00
|
|
|
|
data={}
|
|
|
|
|
|
)
|
2017-01-20 16:20:37 +00:00
|
|
|
|
assert response.status_code == 302
|
2017-07-13 11:28:37 +01:00
|
|
|
|
assert 'just_sent=yes' in response.location
|
2016-11-08 13:10:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
2017-04-10 18:12:00 +01:00
|
|
|
|
@pytest.mark.parametrize('filetype', ['pdf', 'png'])
|
2016-12-20 14:38:34 +00:00
|
|
|
|
def test_should_show_preview_letter_message(
|
2017-04-10 18:12:00 +01:00
|
|
|
|
filetype,
|
2017-02-14 14:06:02 +00:00
|
|
|
|
logged_in_platform_admin_client,
|
2016-12-20 14:38:34 +00:00
|
|
|
|
mock_get_service_letter_template,
|
|
|
|
|
|
mock_get_users_by_service,
|
|
|
|
|
|
mock_get_detailed_service_for_today,
|
2017-02-14 14:06:02 +00:00
|
|
|
|
service_one,
|
2016-12-20 14:38:34 +00:00
|
|
|
|
fake_uuid,
|
|
|
|
|
|
mocker,
|
|
|
|
|
|
):
|
2017-06-23 13:35:08 +01:00
|
|
|
|
service_one['permissions'] = ['letter']
|
2017-02-14 14:06:02 +00:00
|
|
|
|
mocker.patch('app.service_api_client.get_service', return_value={"data": service_one})
|
2017-05-04 09:30:55 +01:00
|
|
|
|
mocker.patch('app.main.views.send.get_page_count_for_letter', return_value=1)
|
2016-12-20 14:38:34 +00:00
|
|
|
|
|
|
|
|
|
|
mocker.patch(
|
|
|
|
|
|
'app.main.views.send.s3download',
|
|
|
|
|
|
return_value='\n'.join(
|
|
|
|
|
|
['address line 1, postcode'] +
|
|
|
|
|
|
['123 street, abc123']
|
|
|
|
|
|
)
|
|
|
|
|
|
)
|
2017-04-10 18:12:00 +01:00
|
|
|
|
mocked_preview = mocker.patch(
|
|
|
|
|
|
'app.main.views.send.TemplatePreview.from_utils_template',
|
|
|
|
|
|
return_value='foo'
|
|
|
|
|
|
)
|
2016-12-20 14:38:34 +00:00
|
|
|
|
|
2017-02-14 14:06:02 +00:00
|
|
|
|
service_id = service_one['id']
|
2016-12-20 14:38:34 +00:00
|
|
|
|
template_id = fake_uuid
|
2017-02-14 14:06:02 +00:00
|
|
|
|
with logged_in_platform_admin_client.session_transaction() as session:
|
2016-12-20 14:38:34 +00:00
|
|
|
|
session['upload_data'] = {
|
|
|
|
|
|
'original_file_name': 'example.csv',
|
|
|
|
|
|
'template_id': fake_uuid,
|
|
|
|
|
|
'notification_count': 1,
|
|
|
|
|
|
'valid': True
|
|
|
|
|
|
}
|
2017-02-14 14:06:02 +00:00
|
|
|
|
response = logged_in_platform_admin_client.get(
|
2017-04-10 18:12:00 +01:00
|
|
|
|
url_for(
|
|
|
|
|
|
'main.check_messages_preview',
|
|
|
|
|
|
service_id=service_id,
|
|
|
|
|
|
template_type='letter',
|
|
|
|
|
|
upload_id=fake_uuid,
|
|
|
|
|
|
filetype=filetype
|
|
|
|
|
|
)
|
2017-02-14 14:06:02 +00:00
|
|
|
|
)
|
2016-12-20 14:38:34 +00:00
|
|
|
|
|
|
|
|
|
|
mock_get_service_letter_template.assert_called_with(service_id, template_id)
|
2017-04-10 18:12:00 +01:00
|
|
|
|
|
|
|
|
|
|
assert response.status_code == 200
|
|
|
|
|
|
assert response.get_data(as_text=True) == 'foo'
|
|
|
|
|
|
assert mocked_preview.call_args[0][0].id == template_id
|
|
|
|
|
|
assert type(mocked_preview.call_args[0][0]) == LetterPreviewTemplate
|
|
|
|
|
|
assert mocked_preview.call_args[0][1] == filetype
|
2016-12-20 14:38:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
2017-04-12 12:12:11 +01:00
|
|
|
|
def test_dont_show_preview_letter_templates_for_bad_filetype(
|
|
|
|
|
|
logged_in_client,
|
|
|
|
|
|
mock_get_service_template,
|
|
|
|
|
|
service_one,
|
|
|
|
|
|
fake_uuid
|
|
|
|
|
|
):
|
|
|
|
|
|
resp = logged_in_client.get(
|
|
|
|
|
|
url_for(
|
|
|
|
|
|
'main.check_messages_preview',
|
|
|
|
|
|
service_id=service_one['id'],
|
|
|
|
|
|
template_type='letter',
|
|
|
|
|
|
upload_id=fake_uuid,
|
|
|
|
|
|
filetype='blah'
|
|
|
|
|
|
)
|
|
|
|
|
|
)
|
|
|
|
|
|
assert resp.status_code == 404
|
|
|
|
|
|
assert mock_get_service_template.called is False
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-03-03 15:26:52 +00:00
|
|
|
|
def test_check_messages_should_revalidate_file_when_uploading_file(
|
2017-02-03 12:07:21 +00:00
|
|
|
|
logged_in_client,
|
2016-03-03 15:26:52 +00:00
|
|
|
|
service_one,
|
|
|
|
|
|
mock_create_job,
|
2016-05-24 12:34:29 +01:00
|
|
|
|
mock_get_job,
|
2016-05-17 09:23:33 +01:00
|
|
|
|
mock_get_service_template_with_placeholders,
|
2016-03-03 15:26:52 +00:00
|
|
|
|
mock_s3_upload,
|
2016-03-03 15:39:15 +00:00
|
|
|
|
mocker,
|
2016-07-25 14:16:34 +01:00
|
|
|
|
mock_get_detailed_service_for_today,
|
2016-05-24 12:34:29 +01:00
|
|
|
|
mock_get_users_by_service,
|
|
|
|
|
|
fake_uuid
|
2016-03-03 15:26:52 +00:00
|
|
|
|
):
|
|
|
|
|
|
|
|
|
|
|
|
service_id = service_one['id']
|
|
|
|
|
|
|
2016-03-07 18:47:05 +00:00
|
|
|
|
mocker.patch(
|
|
|
|
|
|
'app.main.views.send.s3download',
|
2016-03-10 20:03:53 +00:00
|
|
|
|
return_value="""
|
|
|
|
|
|
phone number,name,,,
|
2016-05-17 09:23:33 +01:00
|
|
|
|
+447700900986,,,,
|
|
|
|
|
|
+447700900986,,,,
|
2016-03-10 20:03:53 +00:00
|
|
|
|
"""
|
2016-03-07 18:47:05 +00:00
|
|
|
|
)
|
2016-05-24 12:34:29 +01:00
|
|
|
|
data = mock_get_job(service_one['id'], fake_uuid)['data']
|
2017-02-03 12:07:21 +00:00
|
|
|
|
with logged_in_client.session_transaction() as session:
|
|
|
|
|
|
session['upload_data'] = {'original_file_name': 'invalid.csv',
|
|
|
|
|
|
'template_id': data['template'],
|
|
|
|
|
|
'notification_count': data['notification_count'],
|
|
|
|
|
|
'valid': True}
|
|
|
|
|
|
response = logged_in_client.post(
|
2017-05-22 10:32:22 +01:00
|
|
|
|
url_for('main.start_job', service_id=service_one['id'], upload_id=data['id']),
|
2017-02-03 12:07:21 +00:00
|
|
|
|
data={'file': (BytesIO(''.encode('utf-8')), 'invalid.csv')},
|
|
|
|
|
|
content_type='multipart/form-data',
|
|
|
|
|
|
follow_redirects=True
|
|
|
|
|
|
)
|
|
|
|
|
|
assert response.status_code == 200
|
|
|
|
|
|
assert 'There is a problem with your data' in response.get_data(as_text=True)
|
2016-03-09 12:10:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
2016-11-02 16:53:40 +00:00
|
|
|
|
@pytest.mark.parametrize('route, response_code', [
|
|
|
|
|
|
('main.choose_template', 200),
|
|
|
|
|
|
('main.send_messages', 200),
|
|
|
|
|
|
('main.get_example_csv', 200),
|
|
|
|
|
|
('main.send_test', 302)
|
|
|
|
|
|
])
|
2017-02-03 10:42:01 +00:00
|
|
|
|
def test_route_permissions(
|
|
|
|
|
|
mocker,
|
|
|
|
|
|
app_,
|
2017-02-03 12:07:21 +00:00
|
|
|
|
client,
|
2017-02-03 10:42:01 +00:00
|
|
|
|
api_user_active,
|
|
|
|
|
|
service_one,
|
|
|
|
|
|
mock_get_service_template,
|
|
|
|
|
|
mock_get_service_templates,
|
|
|
|
|
|
mock_get_jobs,
|
|
|
|
|
|
mock_get_notifications,
|
|
|
|
|
|
mock_create_job,
|
|
|
|
|
|
mock_s3_upload,
|
|
|
|
|
|
fake_uuid,
|
|
|
|
|
|
route,
|
|
|
|
|
|
response_code,
|
|
|
|
|
|
):
|
2017-02-03 12:07:21 +00:00
|
|
|
|
validate_route_permission(
|
|
|
|
|
|
mocker,
|
|
|
|
|
|
app_,
|
|
|
|
|
|
"GET",
|
|
|
|
|
|
response_code,
|
|
|
|
|
|
url_for(
|
|
|
|
|
|
route,
|
|
|
|
|
|
service_id=service_one['id'],
|
Merge email, text message + letter templates pages
Right now we have separate pages for email and text message templates.
In the future we will also have a separate page for letter templates.
This commit changes Notify to only have one page for all templates.
What is the problem?
---
The left-hand navigation is getting quite crowded, at 8 items for a
service that can send letters. Research suggests that the number of
objects an average human can hold in working memory is 7 ± 2 [1]. So
we’re at the limit of how many items the navigation should have.
In the future we will need to search/sort/filter templates by attributes
other than type, for example:
- show me the ‘confirmation’ templates
- show me the most recently used templates
- show me all templates containing the placeholder `((ref_no))`
These are hypothetical for now, but these needs (or others) may become
real in the future. At this point pre-filtering the list of templates
by type would restrict what searches a user could do. So by making this
change now we’re in a better position to iterate the design in the
future.
What’s the change?
---
This commit replaces the ‘Email templates’, ‘Text message templates’ and
‘Letter templates’ pages with one page called ‘Templates’.
This new templates page shows all the templates for the service, sorted
by most recently created first (as before).
To add a new template there is a new page with a form asking you what
kind of template you want to create. This is necessary because in the
past we knew what kind of template you wanted to create based on the
kind you were looking at.
What’s the impact of this change on new users?
---
This change alters the onboarding process slightly. We still want to
take people through the empty templates page from the call-to-action on
the dashboard because it helps them understand that to send a message
using Notify you need a template. But because we don’t have separate
pages for emails/text messages we will have to send users through the
extra step of choosing what kind of template to create. This is a bit
clunkier on first use but:
- it still gets the point across
- it takes them through the actual flow they will be using to create new
templates in the future (ie they’re learning how to use Notify, not
just being taken through a special onboarding route)
I’m not too worried about this change in terms of the experience for new
users. Furthermore, by making it now we get to validate whether it’s
causing any problems in the lab research booked for next week.
What’s the impact of this change on current services?
---
Looking at the top 15 services by number of templates[2], most are using
either text messages or emails. So this change would not have a
significant impact on these services because the page will not get any
longer. In other words we wouldn’t be making it worse for them.
Those services who do use both are not using as many templates. The
worst-case scenario is SSCS, who have 16 templates, evenly split between
email and text messages. So they would go from having 8 templates per
page to 16, which is still less than half the number that HMPO or
Digital Marketplace are managing.
References
---
1. https://en.wikipedia.org/wiki/The_Magical_Number_Seven,_Plus_or_Minus_Two
2. Template usage by service
Service name | Template count | Template types
---------------------------------------|----------------|---------------
Her Majesty's Passport Office | 40 | sms
Digital Marketplace | 40 | email
GovWifi-Staging | 19 | sms
GovWifi | 18 | sms
Digital Apprenticeship Service | 16 | email
SSCS | 16 | both
Crown Commercial Service MI Collection | 15 | email
Help with Prison Visits | 12 | both
Digital Future | 12 | email
Export Licensing Service | 11 | email
Civil Money Claims | 9 | both
DVLA Drivers Medical Service | 9 | sms
GOV.UK Notify | 8 | both
Manage your benefit overpayments | 8 | both
Tax Renewals | 8 | both
2017-02-28 12:16:35 +00:00
|
|
|
|
template_id=fake_uuid
|
|
|
|
|
|
),
|
2017-02-03 12:07:21 +00:00
|
|
|
|
['send_texts', 'send_emails', 'send_letters'],
|
|
|
|
|
|
api_user_active,
|
|
|
|
|
|
service_one)
|
2016-03-09 12:10:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
2017-07-03 17:21:44 +01:00
|
|
|
|
@pytest.mark.parametrize('route, response_code, method', [
|
|
|
|
|
|
('main.check_notification', 200, 'GET'),
|
|
|
|
|
|
('main.send_notification', 302, 'POST')
|
|
|
|
|
|
])
|
|
|
|
|
|
def test_route_permissions_send_check_notifications(
|
|
|
|
|
|
mocker,
|
|
|
|
|
|
app_,
|
|
|
|
|
|
client,
|
|
|
|
|
|
api_user_active,
|
|
|
|
|
|
service_one,
|
|
|
|
|
|
mock_send_notification,
|
|
|
|
|
|
mock_get_service_template,
|
|
|
|
|
|
fake_uuid,
|
|
|
|
|
|
route,
|
|
|
|
|
|
response_code,
|
|
|
|
|
|
method
|
|
|
|
|
|
):
|
|
|
|
|
|
with client.session_transaction() as session:
|
|
|
|
|
|
session['recipient'] = '07700900001'
|
|
|
|
|
|
session['placeholders'] = {'name': 'a'}
|
|
|
|
|
|
validate_route_permission_with_client(
|
|
|
|
|
|
mocker,
|
|
|
|
|
|
client,
|
|
|
|
|
|
method,
|
|
|
|
|
|
response_code,
|
|
|
|
|
|
url_for(
|
|
|
|
|
|
route,
|
|
|
|
|
|
service_id=service_one['id'],
|
|
|
|
|
|
template_id=fake_uuid
|
|
|
|
|
|
),
|
|
|
|
|
|
['send_texts', 'send_emails', 'send_letters'],
|
|
|
|
|
|
api_user_active,
|
|
|
|
|
|
service_one)
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-11-02 16:53:40 +00:00
|
|
|
|
@pytest.mark.parametrize('route', [
|
|
|
|
|
|
'main.choose_template',
|
|
|
|
|
|
'main.send_messages',
|
|
|
|
|
|
'main.get_example_csv',
|
|
|
|
|
|
'main.send_test'
|
|
|
|
|
|
])
|
2017-02-03 10:42:01 +00:00
|
|
|
|
def test_route_invalid_permissions(
|
|
|
|
|
|
mocker,
|
|
|
|
|
|
app_,
|
2017-02-03 12:07:21 +00:00
|
|
|
|
client,
|
2017-02-03 10:42:01 +00:00
|
|
|
|
api_user_active,
|
|
|
|
|
|
service_one,
|
|
|
|
|
|
mock_get_service_template,
|
|
|
|
|
|
mock_get_service_templates,
|
|
|
|
|
|
mock_get_jobs,
|
|
|
|
|
|
mock_get_notifications,
|
|
|
|
|
|
mock_create_job,
|
|
|
|
|
|
fake_uuid,
|
|
|
|
|
|
route,
|
|
|
|
|
|
):
|
2017-02-03 12:07:21 +00:00
|
|
|
|
validate_route_permission(
|
|
|
|
|
|
mocker,
|
|
|
|
|
|
app_,
|
|
|
|
|
|
"GET",
|
|
|
|
|
|
403,
|
|
|
|
|
|
url_for(
|
|
|
|
|
|
route,
|
|
|
|
|
|
service_id=service_one['id'],
|
|
|
|
|
|
template_type='sms',
|
|
|
|
|
|
template_id=fake_uuid),
|
|
|
|
|
|
['blah'],
|
|
|
|
|
|
api_user_active,
|
|
|
|
|
|
service_one)
|
2016-03-09 13:51:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
2016-06-24 10:15:20 +01:00
|
|
|
|
@pytest.mark.parametrize(
|
2017-04-07 09:18:00 +01:00
|
|
|
|
'template_mock, extra_args, expected_url',
|
2016-06-24 10:15:20 +01:00
|
|
|
|
[
|
|
|
|
|
|
(
|
2017-04-07 09:18:00 +01:00
|
|
|
|
mock_get_service_template,
|
2016-06-24 10:15:20 +01:00
|
|
|
|
dict(),
|
2017-04-07 09:18:00 +01:00
|
|
|
|
partial(url_for, '.send_messages')
|
|
|
|
|
|
),
|
|
|
|
|
|
(
|
|
|
|
|
|
mock_get_service_template_with_placeholders,
|
|
|
|
|
|
dict(),
|
|
|
|
|
|
partial(url_for, '.send_messages')
|
|
|
|
|
|
),
|
|
|
|
|
|
(
|
|
|
|
|
|
mock_get_service_letter_template, # No placeholders
|
|
|
|
|
|
dict(from_test=True),
|
|
|
|
|
|
partial(url_for, '.send_test')
|
|
|
|
|
|
),
|
|
|
|
|
|
(
|
|
|
|
|
|
mock_get_service_template_with_placeholders,
|
|
|
|
|
|
dict(from_test=True),
|
2016-06-24 10:15:20 +01:00
|
|
|
|
partial(url_for, '.send_test')
|
|
|
|
|
|
)
|
|
|
|
|
|
]
|
|
|
|
|
|
)
|
2016-06-24 10:25:35 +01:00
|
|
|
|
def test_check_messages_back_link(
|
2017-02-03 12:07:21 +00:00
|
|
|
|
logged_in_client,
|
2016-06-24 10:25:35 +01:00
|
|
|
|
api_user_active,
|
|
|
|
|
|
mock_login,
|
|
|
|
|
|
mock_get_user_by_email,
|
|
|
|
|
|
mock_get_users_by_service,
|
|
|
|
|
|
mock_get_service,
|
|
|
|
|
|
mock_has_permissions,
|
2016-07-25 14:16:34 +01:00
|
|
|
|
mock_get_detailed_service_for_today,
|
2016-06-24 10:25:35 +01:00
|
|
|
|
mock_s3_download,
|
|
|
|
|
|
fake_uuid,
|
2017-04-07 09:18:00 +01:00
|
|
|
|
mocker,
|
|
|
|
|
|
template_mock,
|
2016-06-24 10:25:35 +01:00
|
|
|
|
extra_args,
|
|
|
|
|
|
expected_url
|
|
|
|
|
|
):
|
2017-04-07 09:18:00 +01:00
|
|
|
|
template_mock(mocker)
|
2017-02-03 12:07:21 +00:00
|
|
|
|
with logged_in_client.session_transaction() as session:
|
|
|
|
|
|
session['upload_data'] = {'original_file_name': 'valid.csv',
|
|
|
|
|
|
'template_id': fake_uuid,
|
|
|
|
|
|
'notification_count': 1,
|
|
|
|
|
|
'valid': True}
|
|
|
|
|
|
response = logged_in_client.get(url_for(
|
|
|
|
|
|
'main.check_messages',
|
|
|
|
|
|
service_id=fake_uuid,
|
|
|
|
|
|
upload_id=fake_uuid,
|
|
|
|
|
|
template_type='sms',
|
|
|
|
|
|
**extra_args
|
|
|
|
|
|
))
|
|
|
|
|
|
assert response.status_code == 200
|
|
|
|
|
|
page = BeautifulSoup(response.data.decode('utf-8'), 'html.parser')
|
|
|
|
|
|
assert (
|
|
|
|
|
|
page.findAll('a', {'class': 'page-footer-back-link'})[0]['href']
|
|
|
|
|
|
) == expected_url(service_id=fake_uuid, template_id=fake_uuid)
|
2016-06-17 11:54:01 +01:00
|
|
|
|
|
|
|
|
|
|
|
2017-07-03 14:33:49 +01:00
|
|
|
|
def test_shows_link_to_end_tour(
|
|
|
|
|
|
client_request,
|
|
|
|
|
|
mock_get_notification,
|
|
|
|
|
|
fake_uuid,
|
|
|
|
|
|
):
|
|
|
|
|
|
|
|
|
|
|
|
page = client_request.get(
|
|
|
|
|
|
'main.view_notification',
|
|
|
|
|
|
service_id=SERVICE_ONE_ID,
|
|
|
|
|
|
notification_id=fake_uuid,
|
|
|
|
|
|
help=3,
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
assert page.select(".banner-tour a")[0]['href'] == url_for(
|
|
|
|
|
|
'main.go_to_dashboard_after_tour',
|
|
|
|
|
|
service_id=SERVICE_ONE_ID,
|
|
|
|
|
|
example_template_id='5407f4db-51c7-4150-8758-35412d42186a',
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_go_to_dashboard_after_tour_link(
|
2017-02-03 12:07:21 +00:00
|
|
|
|
logged_in_client,
|
2016-07-01 10:49:54 +01:00
|
|
|
|
mocker,
|
|
|
|
|
|
api_user_active,
|
|
|
|
|
|
mock_login,
|
|
|
|
|
|
mock_get_service,
|
|
|
|
|
|
mock_has_permissions,
|
|
|
|
|
|
mock_delete_service_template,
|
|
|
|
|
|
fake_uuid
|
|
|
|
|
|
):
|
|
|
|
|
|
|
2017-02-03 12:07:21 +00:00
|
|
|
|
resp = logged_in_client.get(
|
|
|
|
|
|
url_for('main.go_to_dashboard_after_tour', service_id=fake_uuid, example_template_id=fake_uuid)
|
|
|
|
|
|
)
|
2016-07-01 10:49:54 +01:00
|
|
|
|
|
2017-02-03 12:07:21 +00:00
|
|
|
|
assert resp.status_code == 302
|
|
|
|
|
|
assert resp.location == url_for("main.service_dashboard", service_id=fake_uuid, _external=True)
|
|
|
|
|
|
mock_delete_service_template.assert_called_once_with(fake_uuid, fake_uuid)
|
2016-07-21 15:39:00 +01:00
|
|
|
|
|
|
|
|
|
|
|
2016-08-10 15:55:13 +01:00
|
|
|
|
@pytest.mark.parametrize('num_requested,expected_msg', [
|
2016-07-21 15:39:00 +01:00
|
|
|
|
(0, '‘valid.csv’ contains 100 phone numbers.'),
|
|
|
|
|
|
(1, 'You can still send 49 messages today, but ‘valid.csv’ contains 100 phone numbers.')
|
|
|
|
|
|
], ids=['none_sent', 'some_sent'])
|
|
|
|
|
|
def test_check_messages_shows_too_many_messages_errors(
|
|
|
|
|
|
mocker,
|
2017-02-03 12:07:21 +00:00
|
|
|
|
logged_in_client,
|
2016-07-21 15:39:00 +01:00
|
|
|
|
api_user_active,
|
|
|
|
|
|
mock_login,
|
|
|
|
|
|
mock_get_users_by_service,
|
|
|
|
|
|
mock_get_service,
|
|
|
|
|
|
mock_get_service_template,
|
|
|
|
|
|
mock_has_permissions,
|
|
|
|
|
|
fake_uuid,
|
2016-07-25 14:16:34 +01:00
|
|
|
|
num_requested,
|
2016-08-10 15:55:13 +01:00
|
|
|
|
expected_msg
|
2016-07-21 15:39:00 +01:00
|
|
|
|
):
|
|
|
|
|
|
# csv with 100 phone numbers
|
|
|
|
|
|
mocker.patch('app.main.views.send.s3download', return_value=',\n'.join(
|
|
|
|
|
|
['phone number'] + ([mock_get_users_by_service(None)[0]._mobile_number]*100)
|
|
|
|
|
|
))
|
2016-07-25 14:16:34 +01:00
|
|
|
|
mocker.patch('app.service_api_client.get_detailed_service_for_today', return_value={
|
|
|
|
|
|
'data': {
|
|
|
|
|
|
'statistics': {
|
|
|
|
|
|
'sms': {'requested': num_requested, 'delivered': 0, 'failed': 0},
|
|
|
|
|
|
'email': {'requested': 0, 'delivered': 0, 'failed': 0}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2016-07-21 15:39:00 +01:00
|
|
|
|
})
|
|
|
|
|
|
|
2017-02-03 12:07:21 +00:00
|
|
|
|
with logged_in_client.session_transaction() as session:
|
|
|
|
|
|
session['upload_data'] = {'original_file_name': 'valid.csv',
|
|
|
|
|
|
'template_id': fake_uuid,
|
|
|
|
|
|
'notification_count': 1,
|
|
|
|
|
|
'valid': True}
|
|
|
|
|
|
response = logged_in_client.get(url_for(
|
|
|
|
|
|
'main.check_messages',
|
|
|
|
|
|
service_id=fake_uuid,
|
|
|
|
|
|
template_type='sms',
|
|
|
|
|
|
upload_id=fake_uuid
|
|
|
|
|
|
))
|
2016-07-21 15:39:00 +01:00
|
|
|
|
assert response.status_code == 200
|
|
|
|
|
|
page = BeautifulSoup(response.data.decode('utf-8'), 'html.parser')
|
|
|
|
|
|
assert page.find('h1').text.strip() == 'Too many recipients'
|
|
|
|
|
|
assert page.find('div', class_='banner-dangerous').find('a').text.strip() == 'trial mode'
|
|
|
|
|
|
|
|
|
|
|
|
# remove excess whitespace from element
|
|
|
|
|
|
details = page.find('div', class_='banner-dangerous').findAll('p')[1]
|
|
|
|
|
|
details = ' '.join([line.strip() for line in details.text.split('\n') if line.strip() != ''])
|
2016-08-10 15:55:13 +01:00
|
|
|
|
assert details == expected_msg
|
2016-10-14 10:44:28 +01:00
|
|
|
|
|
|
|
|
|
|
|
2017-01-23 17:05:41 +00:00
|
|
|
|
def test_check_messages_shows_trial_mode_error(
|
|
|
|
|
|
logged_in_client,
|
|
|
|
|
|
mock_get_users_by_service,
|
|
|
|
|
|
mock_get_service,
|
|
|
|
|
|
mock_get_service_template,
|
|
|
|
|
|
mock_has_permissions,
|
|
|
|
|
|
mock_get_detailed_service_for_today,
|
|
|
|
|
|
mocker
|
|
|
|
|
|
):
|
|
|
|
|
|
mocker.patch('app.main.views.send.s3download', return_value=(
|
|
|
|
|
|
'phone number,\n07900900321' # Not in team
|
|
|
|
|
|
))
|
|
|
|
|
|
with logged_in_client.session_transaction() as session:
|
|
|
|
|
|
session['upload_data'] = {'template_id': ''}
|
|
|
|
|
|
response = logged_in_client.get(url_for(
|
|
|
|
|
|
'main.check_messages',
|
|
|
|
|
|
service_id=uuid.uuid4(),
|
|
|
|
|
|
template_type='sms',
|
|
|
|
|
|
upload_id=uuid.uuid4()
|
|
|
|
|
|
))
|
|
|
|
|
|
assert response.status_code == 200
|
|
|
|
|
|
page = BeautifulSoup(response.data.decode('utf-8'), 'html.parser')
|
|
|
|
|
|
assert ' '.join(
|
|
|
|
|
|
page.find('div', class_='banner-dangerous').text.split()
|
|
|
|
|
|
) == (
|
|
|
|
|
|
'You can’t send to this phone number '
|
2017-02-13 15:20:56 +00:00
|
|
|
|
'In trial mode you can only send to yourself and members of your team '
|
|
|
|
|
|
'Skip to file contents'
|
2017-01-23 17:05:41 +00:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-10-14 10:44:28 +01:00
|
|
|
|
def test_check_messages_shows_over_max_row_error(
|
2017-02-03 12:07:21 +00:00
|
|
|
|
logged_in_client,
|
2016-10-14 10:44:28 +01:00
|
|
|
|
api_user_active,
|
|
|
|
|
|
mock_login,
|
|
|
|
|
|
mock_get_users_by_service,
|
|
|
|
|
|
mock_get_service,
|
|
|
|
|
|
mock_get_service_template_with_placeholders,
|
|
|
|
|
|
mock_has_permissions,
|
|
|
|
|
|
mock_get_detailed_service_for_today,
|
|
|
|
|
|
mock_s3_download,
|
|
|
|
|
|
fake_uuid,
|
|
|
|
|
|
mocker
|
|
|
|
|
|
):
|
|
|
|
|
|
mock_recipients = mocker.patch('app.main.views.send.RecipientCSV').return_value
|
|
|
|
|
|
mock_recipients.max_rows = 11111
|
|
|
|
|
|
mock_recipients.__len__.return_value = 99999
|
2016-10-17 10:20:14 +01:00
|
|
|
|
mock_recipients.too_many_rows.return_value = True
|
2016-10-14 10:44:28 +01:00
|
|
|
|
|
2017-02-03 12:07:21 +00:00
|
|
|
|
with logged_in_client.session_transaction() as session:
|
2016-10-14 10:44:28 +01:00
|
|
|
|
session['upload_data'] = {'template_id': fake_uuid}
|
2017-02-03 12:07:21 +00:00
|
|
|
|
response = logged_in_client.get(url_for(
|
2016-10-14 10:44:28 +01:00
|
|
|
|
'main.check_messages',
|
|
|
|
|
|
service_id=fake_uuid,
|
|
|
|
|
|
template_type='sms',
|
|
|
|
|
|
upload_id=fake_uuid
|
|
|
|
|
|
))
|
|
|
|
|
|
assert response.status_code == 200
|
|
|
|
|
|
page = BeautifulSoup(response.data.decode('utf-8'), 'html.parser')
|
|
|
|
|
|
assert ' '.join(
|
|
|
|
|
|
page.find('div', class_='banner-dangerous').text.split()
|
|
|
|
|
|
) == (
|
|
|
|
|
|
'Your file has too many rows '
|
|
|
|
|
|
'Notify can process up to 11,111 rows at once. '
|
2017-02-13 15:20:56 +00:00
|
|
|
|
'Your file has 99,999 rows. '
|
|
|
|
|
|
'Skip to file contents'
|
2016-10-14 10:44:28 +01:00
|
|
|
|
)
|
2017-01-19 14:55:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
2017-06-15 12:44:19 +01:00
|
|
|
|
def test_non_ascii_characters_in_letter_recipients_file_shows_error(
|
2017-06-14 15:31:38 +01:00
|
|
|
|
logged_in_client,
|
2017-06-16 11:45:16 +01:00
|
|
|
|
api_user_active,
|
|
|
|
|
|
mock_login,
|
2017-06-14 15:31:38 +01:00
|
|
|
|
mock_get_users_by_service,
|
|
|
|
|
|
mock_get_service,
|
2017-06-16 11:45:16 +01:00
|
|
|
|
mock_has_permissions,
|
2017-06-14 15:31:38 +01:00
|
|
|
|
mock_get_service_letter_template,
|
|
|
|
|
|
mock_get_detailed_service_for_today,
|
|
|
|
|
|
fake_uuid,
|
|
|
|
|
|
mocker
|
|
|
|
|
|
):
|
2017-06-16 11:45:16 +01:00
|
|
|
|
from tests.conftest import mock_s3_download
|
|
|
|
|
|
mock_s3_download(
|
|
|
|
|
|
mocker,
|
|
|
|
|
|
content=u"""
|
|
|
|
|
|
address line 1,address line 2,address line 3,address line 4,address line 5,address line 6,postcode
|
2017-06-16 13:47:00 +01:00
|
|
|
|
Петя,345 Example Street,,,,,AA1 6BB
|
2017-06-16 11:45:16 +01:00
|
|
|
|
"""
|
|
|
|
|
|
)
|
2017-06-14 15:31:38 +01:00
|
|
|
|
|
2017-06-16 11:51:58 +01:00
|
|
|
|
with logged_in_client.session_transaction() as session:
|
|
|
|
|
|
session['upload_data'] = {'template_id': fake_uuid}
|
|
|
|
|
|
response = logged_in_client.get(url_for(
|
|
|
|
|
|
'main.check_messages',
|
|
|
|
|
|
service_id=fake_uuid,
|
|
|
|
|
|
template_type='letter',
|
|
|
|
|
|
upload_id=fake_uuid
|
|
|
|
|
|
))
|
2017-06-14 15:31:38 +01:00
|
|
|
|
|
|
|
|
|
|
assert response.status_code == 200
|
|
|
|
|
|
page = BeautifulSoup(response.data.decode('utf-8'), 'html.parser')
|
|
|
|
|
|
assert ' '.join(
|
|
|
|
|
|
page.find('div', class_='banner-dangerous').text.split()
|
2017-06-15 10:48:22 +01:00
|
|
|
|
) == (
|
|
|
|
|
|
'There is a problem with your data '
|
|
|
|
|
|
'You need to fix 1 address '
|
|
|
|
|
|
'Skip to file contents'
|
|
|
|
|
|
)
|
2017-06-16 13:47:00 +01:00
|
|
|
|
assert page.find('span', class_='table-field-error-label').text == u'Can’t include П, е, т or я'
|
2017-06-14 15:31:38 +01:00
|
|
|
|
|
|
|
|
|
|
|
2017-06-30 12:33:31 +01:00
|
|
|
|
def test_check_messages_redirects_if_no_upload_data(logged_in_client, service_one):
|
2017-01-19 14:55:22 +00:00
|
|
|
|
response = logged_in_client.get(url_for(
|
|
|
|
|
|
'main.check_messages',
|
2017-02-14 14:06:02 +00:00
|
|
|
|
service_id=service_one['id'],
|
2017-01-19 18:15:33 +00:00
|
|
|
|
template_type='bar',
|
|
|
|
|
|
upload_id='baz'
|
2017-01-19 14:55:22 +00:00
|
|
|
|
))
|
|
|
|
|
|
|
|
|
|
|
|
assert response.status_code == 301
|
2017-06-30 12:33:31 +01:00
|
|
|
|
assert response.location == url_for('main.choose_template', service_id=service_one['id'], _external=True)
|
2017-01-19 18:15:33 +00:00
|
|
|
|
|
|
|
|
|
|
|
2017-06-30 12:33:31 +01:00
|
|
|
|
@pytest.mark.parametrize('existing_session_items', [
|
|
|
|
|
|
{},
|
|
|
|
|
|
{'recipient': '07700900001'},
|
|
|
|
|
|
{'name': 'Jo'}
|
|
|
|
|
|
])
|
|
|
|
|
|
def test_check_notification_redirects_if_session_not_populated(
|
|
|
|
|
|
logged_in_client,
|
|
|
|
|
|
service_one,
|
|
|
|
|
|
fake_uuid,
|
|
|
|
|
|
existing_session_items,
|
|
|
|
|
|
mock_get_service_template_with_placeholders
|
|
|
|
|
|
):
|
|
|
|
|
|
with logged_in_client.session_transaction() as session:
|
|
|
|
|
|
session.update(existing_session_items)
|
2017-01-19 18:15:33 +00:00
|
|
|
|
|
2017-06-30 12:33:31 +01:00
|
|
|
|
resp = logged_in_client.get(url_for(
|
|
|
|
|
|
'main.check_notification',
|
2017-02-14 14:06:02 +00:00
|
|
|
|
service_id=service_one['id'],
|
2017-06-30 12:33:31 +01:00
|
|
|
|
template_id=fake_uuid
|
|
|
|
|
|
))
|
2017-01-19 18:15:33 +00:00
|
|
|
|
|
2017-06-30 12:33:31 +01:00
|
|
|
|
assert resp.location == url_for(
|
|
|
|
|
|
'main.view_template',
|
|
|
|
|
|
service_id=service_one['id'],
|
|
|
|
|
|
template_id=fake_uuid,
|
|
|
|
|
|
_external=True
|
2017-01-19 14:55:22 +00:00
|
|
|
|
)
|
2017-06-26 17:09:51 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize('existing_session_items', [
|
|
|
|
|
|
{},
|
|
|
|
|
|
{'recipient': '07700900001'},
|
|
|
|
|
|
{'name': 'Jo'}
|
|
|
|
|
|
])
|
2017-06-30 12:33:31 +01:00
|
|
|
|
def test_check_notification_redirects_with_help_if_session_not_populated(
|
2017-06-26 17:09:51 +01:00
|
|
|
|
logged_in_client,
|
|
|
|
|
|
service_one,
|
|
|
|
|
|
fake_uuid,
|
|
|
|
|
|
existing_session_items,
|
|
|
|
|
|
mock_get_service_template_with_placeholders
|
|
|
|
|
|
):
|
|
|
|
|
|
with logged_in_client.session_transaction() as session:
|
|
|
|
|
|
session.update(existing_session_items)
|
|
|
|
|
|
|
|
|
|
|
|
resp = logged_in_client.get(url_for(
|
|
|
|
|
|
'main.check_notification',
|
|
|
|
|
|
service_id=service_one['id'],
|
2017-06-30 12:33:31 +01:00
|
|
|
|
template_id=fake_uuid,
|
|
|
|
|
|
help='2'
|
2017-06-26 17:09:51 +01:00
|
|
|
|
))
|
|
|
|
|
|
|
|
|
|
|
|
assert resp.location == url_for(
|
2017-06-30 12:33:31 +01:00
|
|
|
|
'main.send_test',
|
2017-06-26 17:09:51 +01:00
|
|
|
|
service_id=service_one['id'],
|
|
|
|
|
|
template_id=fake_uuid,
|
2017-06-30 12:33:31 +01:00
|
|
|
|
help='2',
|
2017-06-26 17:09:51 +01:00
|
|
|
|
_external=True
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_check_notification_shows_preview(
|
|
|
|
|
|
client_request,
|
|
|
|
|
|
service_one,
|
|
|
|
|
|
fake_uuid,
|
|
|
|
|
|
mock_get_service_template
|
|
|
|
|
|
):
|
|
|
|
|
|
with client_request.session_transaction() as session:
|
|
|
|
|
|
session['recipient'] = '07700900001'
|
|
|
|
|
|
session['placeholders'] = {}
|
|
|
|
|
|
|
|
|
|
|
|
page = client_request.get(
|
|
|
|
|
|
'main.check_notification',
|
|
|
|
|
|
service_id=service_one['id'],
|
|
|
|
|
|
template_id=fake_uuid
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
assert page.h1.text.strip() == 'Preview of Two week reminder'
|
|
|
|
|
|
assert (
|
|
|
|
|
|
page.findAll('a', {'class': 'page-footer-back-link'})[0]['href']
|
|
|
|
|
|
) == url_for('main.view_template', service_id=service_one['id'], template_id=fake_uuid)
|
|
|
|
|
|
|
2017-06-30 11:49:03 +01:00
|
|
|
|
# assert tour not visible
|
|
|
|
|
|
assert not page.select('.banner-tour')
|
|
|
|
|
|
assert page.form.attrs['action'] == url_for(
|
|
|
|
|
|
'main.send_notification',
|
|
|
|
|
|
service_id=service_one['id'],
|
|
|
|
|
|
template_id=fake_uuid,
|
|
|
|
|
|
help='0'
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_check_notification_shows_help(
|
|
|
|
|
|
client_request,
|
|
|
|
|
|
service_one,
|
|
|
|
|
|
fake_uuid,
|
|
|
|
|
|
mock_get_service_template
|
|
|
|
|
|
):
|
|
|
|
|
|
with client_request.session_transaction() as session:
|
|
|
|
|
|
session['recipient'] = '07700900001'
|
|
|
|
|
|
session['placeholders'] = {}
|
|
|
|
|
|
|
|
|
|
|
|
page = client_request.get(
|
|
|
|
|
|
'main.check_notification',
|
|
|
|
|
|
service_id=service_one['id'],
|
|
|
|
|
|
template_id=fake_uuid,
|
|
|
|
|
|
help='2'
|
|
|
|
|
|
)
|
2017-06-30 12:33:31 +01:00
|
|
|
|
assert page.select_one('.banner-tour')
|
2017-06-30 11:49:03 +01:00
|
|
|
|
assert page.form.attrs['action'] == url_for(
|
|
|
|
|
|
'main.send_notification',
|
|
|
|
|
|
service_id=service_one['id'],
|
|
|
|
|
|
template_id=fake_uuid,
|
|
|
|
|
|
help='3'
|
|
|
|
|
|
)
|
2017-06-30 12:33:31 +01:00
|
|
|
|
assert page.select_one('.page-footer-back-link')['href'] == url_for(
|
|
|
|
|
|
'main.send_test',
|
|
|
|
|
|
service_id=service_one['id'],
|
|
|
|
|
|
template_id=fake_uuid,
|
|
|
|
|
|
help='2'
|
|
|
|
|
|
)
|
2017-06-30 11:49:03 +01:00
|
|
|
|
|
2017-06-26 17:09:51 +01:00
|
|
|
|
|
|
|
|
|
|
def test_send_notification_submits_data(
|
|
|
|
|
|
client_request,
|
|
|
|
|
|
service_one,
|
|
|
|
|
|
fake_uuid,
|
|
|
|
|
|
mock_send_notification,
|
|
|
|
|
|
):
|
|
|
|
|
|
with client_request.session_transaction() as session:
|
|
|
|
|
|
session['recipient'] = '07700900001'
|
|
|
|
|
|
session['placeholders'] = {'a': 'b'}
|
|
|
|
|
|
|
|
|
|
|
|
client_request.post(
|
|
|
|
|
|
'main.send_notification',
|
|
|
|
|
|
service_id=service_one['id'],
|
|
|
|
|
|
template_id=fake_uuid
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
mock_send_notification.assert_called_once_with(
|
|
|
|
|
|
service_one['id'],
|
|
|
|
|
|
template_id=fake_uuid,
|
|
|
|
|
|
recipient='07700900001',
|
|
|
|
|
|
personalisation={'a': 'b'}
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_send_notification_clears_session(
|
|
|
|
|
|
client_request,
|
|
|
|
|
|
service_one,
|
|
|
|
|
|
fake_uuid,
|
|
|
|
|
|
mock_send_notification,
|
|
|
|
|
|
):
|
|
|
|
|
|
with client_request.session_transaction() as session:
|
|
|
|
|
|
session['recipient'] = '07700900001'
|
|
|
|
|
|
session['placeholders'] = {'a': 'b'}
|
|
|
|
|
|
|
|
|
|
|
|
client_request.post(
|
|
|
|
|
|
'main.send_notification',
|
|
|
|
|
|
service_id=service_one['id'],
|
|
|
|
|
|
template_id=fake_uuid
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
with client_request.session_transaction() as session:
|
|
|
|
|
|
assert 'recipient' not in session
|
|
|
|
|
|
assert 'placeholders' not in session
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_send_notification_redirects_if_missing_data(
|
|
|
|
|
|
logged_in_client,
|
|
|
|
|
|
service_one,
|
|
|
|
|
|
fake_uuid,
|
|
|
|
|
|
):
|
|
|
|
|
|
with logged_in_client.session_transaction() as session:
|
|
|
|
|
|
session['placeholders'] = {'a': 'b'}
|
|
|
|
|
|
|
|
|
|
|
|
resp = logged_in_client.post(
|
|
|
|
|
|
url_for('main.send_notification', service_id=service_one['id'], template_id=fake_uuid)
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
assert resp.status_code == 302
|
|
|
|
|
|
assert resp.location == url_for(
|
|
|
|
|
|
'.send_one_off',
|
|
|
|
|
|
service_id=service_one['id'],
|
|
|
|
|
|
template_id=fake_uuid,
|
|
|
|
|
|
_external=True
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-06-30 11:49:03 +01:00
|
|
|
|
@pytest.mark.parametrize('extra_args, extra_redirect_args', [
|
|
|
|
|
|
({}, {}),
|
|
|
|
|
|
({'help': '3'}, {'help': '3'})
|
|
|
|
|
|
])
|
2017-06-26 17:09:51 +01:00
|
|
|
|
def test_send_notification_redirects_to_view_page(
|
|
|
|
|
|
logged_in_client,
|
|
|
|
|
|
service_one,
|
|
|
|
|
|
fake_uuid,
|
|
|
|
|
|
mock_send_notification,
|
2017-06-30 11:49:03 +01:00
|
|
|
|
extra_args,
|
|
|
|
|
|
extra_redirect_args
|
2017-06-26 17:09:51 +01:00
|
|
|
|
):
|
|
|
|
|
|
with logged_in_client.session_transaction() as session:
|
|
|
|
|
|
session['recipient'] = '07700900001'
|
|
|
|
|
|
session['placeholders'] = {'a': 'b'}
|
|
|
|
|
|
|
|
|
|
|
|
resp = logged_in_client.post(
|
2017-06-30 11:49:03 +01:00
|
|
|
|
url_for('main.send_notification', service_id=service_one['id'], template_id=fake_uuid, **extra_args)
|
2017-06-26 17:09:51 +01:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
assert resp.status_code == 302
|
|
|
|
|
|
assert resp.location == url_for(
|
|
|
|
|
|
'.view_notification',
|
|
|
|
|
|
service_id=service_one['id'],
|
|
|
|
|
|
notification_id=fake_uuid,
|
2017-06-30 13:09:59 +01:00
|
|
|
|
_external=True,
|
|
|
|
|
|
**extra_redirect_args
|
2017-06-26 17:09:51 +01:00
|
|
|
|
)
|
2017-06-29 15:31:44 +01:00
|
|
|
|
|
|
|
|
|
|
|
2017-06-29 16:06:36 +01:00
|
|
|
|
TRIAL_MODE_MSG = (
|
|
|
|
|
|
'Can’t send to this recipient when service is in trial mode – '
|
|
|
|
|
|
'see https://www.notifications.service.gov.uk/trial-mode'
|
|
|
|
|
|
)
|
|
|
|
|
|
TOO_LONG_MSG = 'Content for template has a character count greater than the limit of 495'
|
|
|
|
|
|
SERVICE_DAILY_LIMIT_MSG = 'Exceeded send limits (1000) for today'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize('exception_msg, expected_h1, expected_err_details', [
|
|
|
|
|
|
(
|
|
|
|
|
|
TRIAL_MODE_MSG,
|
|
|
|
|
|
'You can’t send to this phone number',
|
|
|
|
|
|
'In trial mode you can only send to yourself and members of your team'
|
|
|
|
|
|
),
|
|
|
|
|
|
(
|
|
|
|
|
|
TOO_LONG_MSG,
|
|
|
|
|
|
'Message too long',
|
2017-07-04 09:02:51 +01:00
|
|
|
|
'Text messages can’t be longer than 459 characters. Your message is 554 characters.'
|
2017-06-29 16:06:36 +01:00
|
|
|
|
),
|
|
|
|
|
|
(
|
|
|
|
|
|
SERVICE_DAILY_LIMIT_MSG,
|
|
|
|
|
|
'Daily limit reached',
|
|
|
|
|
|
'You can only send 1000 messages per day in trial mode.'
|
|
|
|
|
|
),
|
|
|
|
|
|
])
|
2017-06-29 15:31:44 +01:00
|
|
|
|
def test_send_notification_shows_error_if_400(
|
|
|
|
|
|
client_request,
|
|
|
|
|
|
service_one,
|
|
|
|
|
|
fake_uuid,
|
|
|
|
|
|
mocker,
|
2017-06-29 16:06:36 +01:00
|
|
|
|
mock_get_service_template_with_placeholders,
|
|
|
|
|
|
exception_msg,
|
|
|
|
|
|
expected_h1,
|
|
|
|
|
|
expected_err_details
|
2017-06-29 15:31:44 +01:00
|
|
|
|
):
|
2017-07-27 16:28:49 +01:00
|
|
|
|
|
|
|
|
|
|
class MockHTTPError(HTTPError):
|
|
|
|
|
|
message = exception_msg
|
|
|
|
|
|
|
2017-06-29 15:31:44 +01:00
|
|
|
|
mocker.patch(
|
|
|
|
|
|
'app.notification_api_client.send_notification',
|
2017-07-27 16:28:49 +01:00
|
|
|
|
side_effect=MockHTTPError(),
|
2017-06-29 15:31:44 +01:00
|
|
|
|
)
|
|
|
|
|
|
with client_request.session_transaction() as session:
|
|
|
|
|
|
session['recipient'] = '07700900001'
|
2017-06-29 16:06:36 +01:00
|
|
|
|
session['placeholders'] = {'name': 'a' * 500}
|
2017-06-29 15:31:44 +01:00
|
|
|
|
|
|
|
|
|
|
page = client_request.post(
|
|
|
|
|
|
'main.send_notification',
|
|
|
|
|
|
service_id=service_one['id'],
|
|
|
|
|
|
template_id=fake_uuid,
|
|
|
|
|
|
_expected_status=200
|
|
|
|
|
|
)
|
|
|
|
|
|
|
2017-07-25 22:57:01 +01:00
|
|
|
|
assert normalize_spaces(page.select('.banner-dangerous h1')[0].text) == expected_h1
|
|
|
|
|
|
assert normalize_spaces(page.select('.banner-dangerous p')[0].text) == expected_err_details
|
2017-06-29 16:06:36 +01:00
|
|
|
|
assert not page.find('input[type=submit]')
|
2017-07-25 23:06:55 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_send_notification_shows_email_error_in_trial_mode(
|
|
|
|
|
|
client_request,
|
|
|
|
|
|
fake_uuid,
|
|
|
|
|
|
mocker,
|
|
|
|
|
|
mock_get_service_email_template,
|
|
|
|
|
|
):
|
2017-07-27 16:28:49 +01:00
|
|
|
|
class MockHTTPError(HTTPError):
|
|
|
|
|
|
message = TRIAL_MODE_MSG
|
|
|
|
|
|
status_code = 400
|
|
|
|
|
|
|
2017-07-25 23:06:55 +01:00
|
|
|
|
mocker.patch(
|
|
|
|
|
|
'app.notification_api_client.send_notification',
|
2017-07-27 16:28:49 +01:00
|
|
|
|
side_effect=MockHTTPError(),
|
2017-07-25 23:06:55 +01:00
|
|
|
|
)
|
|
|
|
|
|
with client_request.session_transaction() as session:
|
|
|
|
|
|
session['recipient'] = 'test@example.com'
|
|
|
|
|
|
session['placeholders'] = {'date': 'foo', 'thing': 'bar'}
|
|
|
|
|
|
|
|
|
|
|
|
page = client_request.post(
|
|
|
|
|
|
'main.send_notification',
|
|
|
|
|
|
service_id=SERVICE_ONE_ID,
|
|
|
|
|
|
template_id=fake_uuid,
|
|
|
|
|
|
_expected_status=200,
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
assert normalize_spaces(page.select('.banner-dangerous h1')[0].text) == (
|
|
|
|
|
|
'You can’t send to this email address'
|
|
|
|
|
|
)
|
|
|
|
|
|
assert normalize_spaces(page.select('.banner-dangerous p')[0].text) == (
|
|
|
|
|
|
'In trial mode you can only send to yourself and members of your team'
|
|
|
|
|
|
)
|