mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-04 21:51:43 -04:00
When there is a uniqueness constraint on a DB column you can still have multiple null values. You can’t have multiple empty string values. We are trying to save the domain as empty string when creating or updating a new branding. This means that it’s currently not possible to create or update a branding with no domain, because the uniqueness constraint is violated.
449 lines
13 KiB
Python
449 lines
13 KiB
Python
from io import BytesIO
|
|
from unittest.mock import call
|
|
|
|
import pytest
|
|
from bs4 import BeautifulSoup
|
|
from flask import url_for
|
|
|
|
from app.main.s3_client import LOGO_LOCATION_STRUCTURE, TEMP_TAG
|
|
from tests.conftest import (
|
|
mock_get_email_branding,
|
|
normalize_spaces,
|
|
platform_admin_user,
|
|
)
|
|
|
|
|
|
def test_email_branding_page_shows_full_branding_list(
|
|
logged_in_platform_admin_client,
|
|
mock_get_all_email_branding
|
|
):
|
|
|
|
response = logged_in_platform_admin_client.get(
|
|
url_for('.email_branding')
|
|
)
|
|
|
|
assert response.status_code == 200
|
|
page = BeautifulSoup(response.data.decode('utf-8'), 'html.parser')
|
|
links = page.select('.message-name a')
|
|
brand_names = [normalize_spaces(link.text) for link in links]
|
|
hrefs = [link['href'] for link in links]
|
|
|
|
assert normalize_spaces(
|
|
page.select_one('h1').text
|
|
) == "Email branding"
|
|
|
|
assert page.select_one('.column-three-quarters a')['href'] == url_for('main.create_email_branding')
|
|
|
|
assert brand_names == [
|
|
'org 1', 'org 2', 'org 3', 'org 4', 'org 5'
|
|
]
|
|
assert hrefs == [
|
|
url_for('.update_email_branding', branding_id=1),
|
|
url_for('.update_email_branding', branding_id=2),
|
|
url_for('.update_email_branding', branding_id=3),
|
|
url_for('.update_email_branding', branding_id=4),
|
|
url_for('.update_email_branding', branding_id=5),
|
|
]
|
|
|
|
|
|
def test_edit_email_branding_shows_the_correct_branding_info(
|
|
logged_in_platform_admin_client,
|
|
mock_get_email_branding,
|
|
fake_uuid
|
|
):
|
|
response = logged_in_platform_admin_client.get(
|
|
url_for('.update_email_branding', branding_id=fake_uuid)
|
|
)
|
|
|
|
assert response.status_code == 200
|
|
page = BeautifulSoup(response.data.decode('utf-8'), 'html.parser')
|
|
|
|
assert page.select_one('#logo-img > img')['src'].endswith('/example.png')
|
|
assert page.select_one('#name').attrs.get('value') == 'Organisation name'
|
|
assert page.select_one('#text').attrs.get('value') == 'Organisation text'
|
|
assert page.select_one('#colour').attrs.get('value') == '#f00'
|
|
assert page.select_one('#domain').attrs.get('value') == 'sample.com'
|
|
|
|
|
|
def test_create_email_branding_does_not_show_any_branding_info(
|
|
logged_in_platform_admin_client,
|
|
mock_no_email_branding
|
|
):
|
|
|
|
response = logged_in_platform_admin_client.get(
|
|
url_for('.create_email_branding')
|
|
)
|
|
|
|
assert response.status_code == 200
|
|
page = BeautifulSoup(response.data.decode('utf-8'), 'html.parser')
|
|
|
|
assert page.select_one('#logo-img > img') is None
|
|
assert page.select_one('#name').attrs.get('value') == ''
|
|
assert page.select_one('#text').attrs.get('value') == ''
|
|
assert page.select_one('#colour').attrs.get('value') == ''
|
|
assert page.select_one('#domain').attrs.get('value') == ''
|
|
|
|
|
|
@pytest.mark.parametrize('posted_domain, persisted_domain', [
|
|
('voa.gov.uk', 'voa.gov.uk'),
|
|
('', None),
|
|
])
|
|
def test_create_new_email_branding_without_logo(
|
|
logged_in_platform_admin_client,
|
|
mocker,
|
|
fake_uuid,
|
|
mock_create_email_branding,
|
|
posted_domain,
|
|
persisted_domain,
|
|
):
|
|
data = {
|
|
'logo': None,
|
|
'colour': '#ff0000',
|
|
'text': 'new text',
|
|
'name': 'new name',
|
|
'domain': posted_domain,
|
|
'brand_type': 'org'
|
|
}
|
|
|
|
mock_persist = mocker.patch('app.main.views.email_branding.persist_logo')
|
|
mocker.patch('app.main.views.email_branding.delete_temp_files_created_by')
|
|
|
|
logged_in_platform_admin_client.post(
|
|
url_for('.create_email_branding'),
|
|
content_type='multipart/form-data',
|
|
data=data
|
|
)
|
|
|
|
assert mock_create_email_branding.called
|
|
assert mock_create_email_branding.call_args == call(
|
|
logo=data['logo'],
|
|
name=data['name'],
|
|
text=data['text'],
|
|
colour=data['colour'],
|
|
domain=persisted_domain,
|
|
brand_type=data['brand_type']
|
|
)
|
|
assert mock_persist.call_args_list == []
|
|
|
|
|
|
def test_cant_create_new_email_branding_with_unknown_domain(
|
|
client_request,
|
|
mocker,
|
|
fake_uuid,
|
|
mock_create_email_branding
|
|
):
|
|
mock_persist = mocker.patch('app.main.views.email_branding.persist_logo')
|
|
mocker.patch('app.main.views.email_branding.delete_temp_files_created_by')
|
|
|
|
client_request.login(platform_admin_user(fake_uuid))
|
|
page = client_request.post(
|
|
'.create_email_branding',
|
|
content_type='multipart/form-data',
|
|
_data={
|
|
'logo': None,
|
|
'colour': '#ff0000',
|
|
'text': 'new text',
|
|
'name': 'new name',
|
|
'domain': 'example.gov.uk',
|
|
'brand_type': 'org',
|
|
},
|
|
_expected_status=200,
|
|
)
|
|
|
|
assert mock_create_email_branding.called is False
|
|
assert mock_persist.called is False
|
|
|
|
assert page.select_one('.error-message').text.strip() == (
|
|
'Not a known government domain (you might need to update domains.yml)'
|
|
)
|
|
assert page.select_one('input[name=domain]')['value'] == (
|
|
'example.gov.uk'
|
|
)
|
|
|
|
|
|
@pytest.mark.parametrize('posted_domain, expected_error', [
|
|
(
|
|
'voa.gsi.gov.uk',
|
|
'Not a canonical domain (use voa.gov.uk if appropriate)',
|
|
),
|
|
(
|
|
'hmcts.net',
|
|
'Not a canonical domain (use hmcts.gov.uk if appropriate)',
|
|
),
|
|
(
|
|
'southend.essex.gov.uk',
|
|
'Not an organisation-level domain (use essex.gov.uk if appropriate)',
|
|
),
|
|
pytest.mark.xfail(
|
|
('voa.gov.uk', ''),
|
|
raises=AssertionError
|
|
),
|
|
])
|
|
def test_rejects_non_canonical_domain_when_adding_email_branding(
|
|
client_request,
|
|
mocker,
|
|
fake_uuid,
|
|
mock_create_email_branding,
|
|
posted_domain,
|
|
expected_error,
|
|
):
|
|
mocker.patch('app.main.views.email_branding.persist_logo')
|
|
mocker.patch('app.main.views.email_branding.delete_temp_files_created_by')
|
|
data = {
|
|
'logo': None,
|
|
'colour': '#ff0000',
|
|
'text': 'new text',
|
|
'name': 'new name',
|
|
'domain': posted_domain,
|
|
'brand_type': 'org',
|
|
}
|
|
client_request.login(platform_admin_user(fake_uuid))
|
|
page = client_request.post(
|
|
'.create_email_branding',
|
|
content_type='multipart/form-data',
|
|
_data=data,
|
|
_expected_status=200,
|
|
)
|
|
|
|
assert page.select_one('.error-message').text.strip() == expected_error
|
|
assert mock_create_email_branding.called is False
|
|
|
|
|
|
def test_create_new_email_branding_when_branding_saved(
|
|
logged_in_platform_admin_client,
|
|
mocker,
|
|
mock_create_email_branding,
|
|
fake_uuid
|
|
):
|
|
with logged_in_platform_admin_client.session_transaction() as session:
|
|
user_id = session["user_id"]
|
|
|
|
data = {
|
|
'logo': 'test.png',
|
|
'colour': '#ff0000',
|
|
'text': 'new text',
|
|
'name': 'new name',
|
|
'domain': 'voa.gov.uk',
|
|
'brand_type': 'org_banner'
|
|
}
|
|
|
|
temp_filename = LOGO_LOCATION_STRUCTURE.format(
|
|
temp=TEMP_TAG.format(user_id=user_id),
|
|
unique_id=fake_uuid,
|
|
filename=data['logo']
|
|
)
|
|
|
|
mocker.patch('app.main.views.email_branding.persist_logo', return_value=data['logo'])
|
|
mocker.patch('app.main.views.email_branding.delete_temp_files_created_by')
|
|
|
|
logged_in_platform_admin_client.post(
|
|
url_for('.create_email_branding', logo=temp_filename),
|
|
content_type='multipart/form-data',
|
|
data={
|
|
'colour': data['colour'],
|
|
'name': data['name'],
|
|
'text': data['text'],
|
|
'cdn_url': 'https://static-logos.cdn.com',
|
|
'domain': data['domain'],
|
|
'brand_type': data['brand_type']
|
|
}
|
|
)
|
|
|
|
assert mock_create_email_branding.called
|
|
assert mock_create_email_branding.call_args == call(
|
|
logo=data['logo'],
|
|
name=data['name'],
|
|
text=data['text'],
|
|
colour=data['colour'],
|
|
domain=data['domain'],
|
|
brand_type=data['brand_type']
|
|
)
|
|
|
|
|
|
@pytest.mark.parametrize('endpoint, has_data', [
|
|
('main.create_email_branding', False),
|
|
('main.update_email_branding', True),
|
|
])
|
|
def test_deletes_previous_temp_logo_after_uploading_logo(
|
|
logged_in_platform_admin_client,
|
|
mocker,
|
|
endpoint,
|
|
has_data,
|
|
fake_uuid
|
|
):
|
|
if has_data:
|
|
mock_get_email_branding(mocker, fake_uuid)
|
|
|
|
with logged_in_platform_admin_client.session_transaction() as session:
|
|
user_id = session["user_id"]
|
|
|
|
temp_old_filename = LOGO_LOCATION_STRUCTURE.format(
|
|
temp=TEMP_TAG.format(user_id=user_id),
|
|
unique_id=fake_uuid,
|
|
filename='old_test.png'
|
|
)
|
|
|
|
temp_filename = LOGO_LOCATION_STRUCTURE.format(
|
|
temp=TEMP_TAG.format(user_id=user_id),
|
|
unique_id=fake_uuid,
|
|
filename='test.png'
|
|
)
|
|
|
|
mocked_upload_logo = mocker.patch(
|
|
'app.main.views.email_branding.upload_logo',
|
|
return_value=temp_filename
|
|
)
|
|
|
|
mocked_delete_temp_file = mocker.patch('app.main.views.email_branding.delete_temp_file')
|
|
|
|
logged_in_platform_admin_client.post(
|
|
url_for('main.create_email_branding', logo=temp_old_filename, branding_id=fake_uuid),
|
|
data={'file': (BytesIO(''.encode('utf-8')), 'test.png')},
|
|
content_type='multipart/form-data'
|
|
)
|
|
|
|
assert mocked_upload_logo.called
|
|
assert mocked_delete_temp_file.called
|
|
assert mocked_delete_temp_file.call_args == call(temp_old_filename)
|
|
|
|
|
|
def test_update_existing_branding(
|
|
logged_in_platform_admin_client,
|
|
mocker,
|
|
fake_uuid,
|
|
mock_get_email_branding,
|
|
mock_update_email_branding
|
|
):
|
|
with logged_in_platform_admin_client.session_transaction() as session:
|
|
user_id = session["user_id"]
|
|
|
|
data = {
|
|
'logo': 'test.png',
|
|
'colour': '#0000ff',
|
|
'text': 'new text',
|
|
'name': 'new name',
|
|
'domain': 'voa.gov.uk',
|
|
'brand_type': 'both'
|
|
}
|
|
|
|
temp_filename = LOGO_LOCATION_STRUCTURE.format(
|
|
temp=TEMP_TAG.format(user_id=user_id),
|
|
unique_id=fake_uuid,
|
|
filename=data['logo']
|
|
)
|
|
|
|
mocker.patch('app.main.views.email_branding.persist_logo', return_value=data['logo'])
|
|
mocker.patch('app.main.views.email_branding.delete_temp_files_created_by')
|
|
|
|
logged_in_platform_admin_client.post(
|
|
url_for('.update_email_branding', logo=temp_filename, branding_id=fake_uuid),
|
|
content_type='multipart/form-data',
|
|
data={'colour': data['colour'], 'name': data['name'], 'text': data['text'],
|
|
'cdn_url': 'https://static-logos.cdn.com',
|
|
'domain': data['domain'], 'brand_type': data['brand_type']
|
|
}
|
|
)
|
|
|
|
assert mock_update_email_branding.called
|
|
assert mock_update_email_branding.call_args == call(
|
|
branding_id=fake_uuid,
|
|
logo=data['logo'],
|
|
name=data['name'],
|
|
text=data['text'],
|
|
colour=data['colour'],
|
|
domain=data['domain'],
|
|
brand_type=data['brand_type']
|
|
)
|
|
|
|
|
|
def test_temp_logo_is_shown_after_uploading_logo(
|
|
logged_in_platform_admin_client,
|
|
mocker,
|
|
fake_uuid,
|
|
):
|
|
with logged_in_platform_admin_client.session_transaction() as session:
|
|
user_id = session["user_id"]
|
|
|
|
temp_filename = LOGO_LOCATION_STRUCTURE.format(
|
|
temp=TEMP_TAG.format(user_id=user_id),
|
|
unique_id=fake_uuid,
|
|
filename='test.png'
|
|
)
|
|
|
|
mocker.patch('app.main.views.email_branding.upload_logo', return_value=temp_filename)
|
|
mocker.patch('app.main.views.email_branding.delete_temp_file')
|
|
|
|
response = logged_in_platform_admin_client.post(
|
|
url_for('main.create_email_branding'),
|
|
data={'file': (BytesIO(''.encode('utf-8')), 'test.png')},
|
|
content_type='multipart/form-data',
|
|
follow_redirects=True
|
|
)
|
|
|
|
assert response.status_code == 200
|
|
|
|
page = BeautifulSoup(response.data.decode('utf-8'), 'html.parser')
|
|
|
|
assert page.select_one('#logo-img > img').attrs['src'].endswith(temp_filename)
|
|
|
|
|
|
def test_logo_persisted_when_organisation_saved(
|
|
logged_in_platform_admin_client,
|
|
mock_create_email_branding,
|
|
mocker,
|
|
fake_uuid
|
|
):
|
|
with logged_in_platform_admin_client.session_transaction() as session:
|
|
user_id = session["user_id"]
|
|
|
|
temp_filename = LOGO_LOCATION_STRUCTURE.format(
|
|
temp=TEMP_TAG.format(user_id=user_id), unique_id=fake_uuid, filename='test.png')
|
|
|
|
mocked_upload_logo = mocker.patch('app.main.views.email_branding.upload_logo')
|
|
mocked_persist_logo = mocker.patch('app.main.views.email_branding.persist_logo', return_value='test.png')
|
|
mocked_delete_temp_files_by = mocker.patch('app.main.views.email_branding.delete_temp_files_created_by')
|
|
|
|
resp = logged_in_platform_admin_client.post(
|
|
url_for('.create_email_branding', logo=temp_filename),
|
|
content_type='multipart/form-data'
|
|
)
|
|
assert resp.status_code == 302
|
|
|
|
assert not mocked_upload_logo.called
|
|
assert mocked_persist_logo.called
|
|
assert mocked_delete_temp_files_by.called
|
|
assert mocked_delete_temp_files_by.call_args == call(user_id)
|
|
assert mock_create_email_branding.called
|
|
|
|
|
|
@pytest.mark.parametrize('colour_hex, expected_status_code', [
|
|
('#FF00FF', 302),
|
|
('hello', 200),
|
|
('', 302),
|
|
])
|
|
def test_colour_regex_validation(
|
|
logged_in_platform_admin_client,
|
|
mocker,
|
|
fake_uuid,
|
|
colour_hex,
|
|
expected_status_code,
|
|
mock_create_email_branding
|
|
):
|
|
data = {
|
|
'logo': None,
|
|
'colour': colour_hex,
|
|
'text': 'new text',
|
|
'name': 'new name',
|
|
'domain': 'voa.gov.uk',
|
|
'brand_type': 'org'
|
|
}
|
|
|
|
mocker.patch('app.main.views.email_branding.delete_temp_files_created_by')
|
|
|
|
response = logged_in_platform_admin_client.post(
|
|
url_for('.create_email_branding'),
|
|
content_type='multipart/form-data',
|
|
data=data
|
|
)
|
|
assert response.status_code == expected_status_code
|