Merge pull request #3672 from alphagov/no-personalisation-broadcast

Don’t allow or highlight personalisation in broadcast templates
This commit is contained in:
Chris Hill-Scott
2020-10-08 15:45:51 +01:00
committed by GitHub
4 changed files with 67 additions and 1 deletions

View File

@@ -399,6 +399,21 @@ def test_should_show_page_for_one_template(
mock_get_service_template.assert_called_with(SERVICE_ONE_ID, template_id, None)
def test_broadcast_template_doesnt_highlight_placeholders(
client_request,
service_one,
mock_get_broadcast_template,
fake_uuid,
):
service_one['permissions'] += ['broadcast']
page = client_request.get(
'.edit_service_template',
service_id=SERVICE_ONE_ID,
template_id=fake_uuid,
)
assert page.select_one('textarea')['data-highlight-placeholders'] == 'false'
def test_caseworker_redirected_to_one_off(
client_request,
mock_get_service_templates,
@@ -2389,3 +2404,40 @@ def test_set_template_sender_escapes_letter_contact_block_names(
radio_text = page.select_one('.govuk-grid-column-three-quarters label[for="sender-1"]').decode_contents()
assert "<script>" in radio_text
assert "<script>" not in radio_text
@pytest.mark.parametrize('template_content', (
'This is a ((test))',
'This ((unsure??might)) be a test',
pytest.param('This is a test', marks=pytest.mark.xfail),
))
@pytest.mark.parametrize('template_type', (
'broadcast',
pytest.param('sms', marks=pytest.mark.xfail),
))
def test_should_not_create_broadcast_template_with_placeholders(
client_request,
service_one,
mock_create_service_template,
mock_update_service_template,
template_content,
template_type,
):
service_one['permissions'] += [template_type]
page = client_request.post(
'.add_service_template',
service_id=SERVICE_ONE_ID,
template_type=template_type,
_data={
'name': 'new name',
'template_content': template_content,
'service': SERVICE_ONE_ID,
},
_expected_status=200,
)
assert normalize_spaces(
page.select_one('.error-message').text
) == (
'You cant use ((double brackets)) to personalise this message'
)
assert mock_create_service_template.called is False