2017-01-17 15:21:05 +00:00
|
|
|
from datetime import datetime
|
2019-12-03 17:54:57 +00:00
|
|
|
from unittest.mock import call
|
2017-01-17 15:21:05 +00:00
|
|
|
|
2019-12-03 17:54:57 +00:00
|
|
|
import pytest
|
2017-01-17 15:21:05 +00:00
|
|
|
from flask import url_for
|
|
|
|
|
|
2016-05-11 09:43:55 +01:00
|
|
|
import app
|
2019-04-26 16:47:16 +01:00
|
|
|
from app.main.views.providers import add_monthly_traffic
|
2019-12-03 17:54:57 +00:00
|
|
|
from tests.conftest import normalize_spaces
|
2016-05-11 09:43:55 +01:00
|
|
|
|
2022-03-25 11:22:24 +00:00
|
|
|
sms_provider_1 = {
|
|
|
|
|
'id': '6005e192-4738-4962-beec-ebd982d0b03f',
|
|
|
|
|
'active': True,
|
2022-03-25 16:23:10 +00:00
|
|
|
'priority': 20,
|
|
|
|
|
'display_name': 'First Domestic SMS Provider',
|
2022-03-25 11:22:24 +00:00
|
|
|
'identifier': 'first_sms_domestic',
|
|
|
|
|
'notification_type': 'sms',
|
|
|
|
|
'updated_at': datetime(2017, 1, 16, 15, 20, 40).isoformat(),
|
|
|
|
|
'version': 1,
|
|
|
|
|
'created_by_name': 'Test User',
|
|
|
|
|
'supports_international': False,
|
|
|
|
|
'current_month_billable_sms': 5020,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sms_provider_2 = {
|
|
|
|
|
'id': '0bd529cd-a0fd-43e5-80ee-b95ef6b0d51f',
|
|
|
|
|
'active': True,
|
2022-03-25 16:23:10 +00:00
|
|
|
'priority': 10,
|
2022-03-25 11:22:24 +00:00
|
|
|
'display_name': 'Second Domestic SMS Provider',
|
|
|
|
|
'identifier': 'second_sms_domestic',
|
|
|
|
|
'notification_type': 'sms',
|
|
|
|
|
'updated_at': None,
|
|
|
|
|
'version': 1,
|
|
|
|
|
'created_by': None,
|
|
|
|
|
'supports_international': False,
|
|
|
|
|
'current_month_billable_sms': 6891,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
email_provider_1 = {
|
|
|
|
|
'id': '6005e192-4738-4962-beec-ebd982d0b03a',
|
|
|
|
|
'active': True,
|
|
|
|
|
'priority': 1,
|
|
|
|
|
'display_name': 'first_email_provider',
|
|
|
|
|
'identifier': 'first_email',
|
|
|
|
|
'notification_type': 'email',
|
|
|
|
|
'updated_at': None,
|
|
|
|
|
'version': 1,
|
|
|
|
|
'created_by': None,
|
|
|
|
|
'supports_international': False,
|
|
|
|
|
'current_month_billable_sms': 0,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
email_provider_2 = {
|
|
|
|
|
'active': True,
|
|
|
|
|
'priority': 2,
|
|
|
|
|
'display_name': 'second_email_provider',
|
|
|
|
|
'identifier': 'second_email',
|
|
|
|
|
'id': '0bd529cd-a0fd-43e5-80ee-b95ef6b0d51b',
|
|
|
|
|
'notification_type': 'email',
|
|
|
|
|
'updated_at': None,
|
|
|
|
|
'version': 1,
|
|
|
|
|
'created_by': None,
|
|
|
|
|
'supports_international': False,
|
|
|
|
|
'current_month_billable_sms': 0,
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-05 13:53:45 +01:00
|
|
|
sms_provider_intl_1 = {
|
2022-03-25 11:22:24 +00:00
|
|
|
'id': '67c770f5-918e-4afa-a5ff-880b9beb161d',
|
|
|
|
|
'active': False,
|
|
|
|
|
'priority': 10,
|
|
|
|
|
'display_name': 'First International SMS Provider',
|
|
|
|
|
'identifier': 'first_sms_international',
|
|
|
|
|
'notification_type': 'sms',
|
|
|
|
|
'updated_at': None,
|
|
|
|
|
'version': 1,
|
|
|
|
|
'created_by': None,
|
|
|
|
|
'supports_international': True,
|
|
|
|
|
'current_month_billable_sms': 0,
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-05 13:53:45 +01:00
|
|
|
sms_provider_intl_2 = {
|
2022-03-25 11:22:24 +00:00
|
|
|
'id': '67c770f5-918e-4afa-a5ff-880b9beb161d',
|
|
|
|
|
'active': False,
|
|
|
|
|
'priority': 10,
|
|
|
|
|
'display_name': 'Second International SMS Provider',
|
|
|
|
|
'identifier': 'second_sms_international',
|
|
|
|
|
'notification_type': 'sms',
|
|
|
|
|
'updated_at': None,
|
|
|
|
|
'version': 1,
|
|
|
|
|
'created_by': None,
|
|
|
|
|
'supports_international': True,
|
|
|
|
|
'current_month_billable_sms': 0,
|
|
|
|
|
}
|
|
|
|
|
|
2016-05-11 09:43:55 +01:00
|
|
|
|
2022-03-25 11:28:06 +00:00
|
|
|
@pytest.fixture
|
|
|
|
|
def stub_providers():
|
|
|
|
|
return {
|
|
|
|
|
'provider_details': [
|
|
|
|
|
sms_provider_1,
|
|
|
|
|
sms_provider_2,
|
|
|
|
|
email_provider_1,
|
|
|
|
|
email_provider_2,
|
2022-04-05 13:53:45 +01:00
|
|
|
sms_provider_intl_1,
|
|
|
|
|
sms_provider_intl_2,
|
2022-03-25 11:28:06 +00:00
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
|
def stub_provider():
|
|
|
|
|
return {
|
|
|
|
|
'provider_details': sms_provider_1
|
|
|
|
|
}
|
2017-03-02 22:53:51 +00:00
|
|
|
|
2022-03-25 11:28:06 +00:00
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
|
def stub_provider_history():
|
|
|
|
|
return {
|
|
|
|
|
'data': [
|
|
|
|
|
{
|
|
|
|
|
'id': 'f9af1ec7-58ef-4f7d-a6f4-5fe7e48644cb',
|
|
|
|
|
'active': True,
|
|
|
|
|
'priority': 20,
|
|
|
|
|
'display_name': 'Foo',
|
|
|
|
|
'identifier': 'foo',
|
|
|
|
|
'notification_type': 'sms',
|
|
|
|
|
'updated_at': None,
|
|
|
|
|
'version': 2,
|
|
|
|
|
'created_by': {
|
|
|
|
|
'email_address': 'test@foo.bar',
|
|
|
|
|
'name': 'Test User',
|
|
|
|
|
'id': '7cc1dddb-bcbc-4739-8fc1-61bedde3332a'
|
|
|
|
|
},
|
|
|
|
|
'supports_international': False
|
2017-04-25 11:10:59 +01:00
|
|
|
},
|
2022-03-25 11:28:06 +00:00
|
|
|
{
|
|
|
|
|
'id': 'f9af1ec7-58ef-4f7d-a6f4-5fe7e48644cb',
|
|
|
|
|
'active': True,
|
|
|
|
|
'priority': 10,
|
|
|
|
|
'display_name': 'Bar',
|
|
|
|
|
'identifier': 'bar',
|
|
|
|
|
'notification_type': 'sms',
|
|
|
|
|
'updated_at': None,
|
|
|
|
|
'version': 1,
|
|
|
|
|
'created_by': None,
|
|
|
|
|
'supports_international': False
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
2016-05-11 09:43:55 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_should_show_all_providers(
|
2022-01-04 10:56:25 +00:00
|
|
|
client_request,
|
2017-02-03 10:42:01 +00:00
|
|
|
platform_admin_user,
|
|
|
|
|
mocker,
|
2022-03-25 11:28:06 +00:00
|
|
|
stub_providers,
|
2016-05-11 09:43:55 +01:00
|
|
|
):
|
2022-03-25 11:28:06 +00:00
|
|
|
mocker.patch('app.provider_client.get_all_providers', return_value=stub_providers)
|
2016-05-11 09:43:55 +01:00
|
|
|
|
2022-01-04 10:56:25 +00:00
|
|
|
client_request.login(platform_admin_user)
|
|
|
|
|
page = client_request.get('main.view_providers')
|
2016-05-11 09:43:55 +01:00
|
|
|
|
2017-02-03 12:07:21 +00:00
|
|
|
h1 = [header.text.strip() for header in page.find_all('h1')]
|
2016-05-11 09:43:55 +01:00
|
|
|
|
2017-02-03 12:07:21 +00:00
|
|
|
assert 'Providers' in h1
|
2016-05-11 09:43:55 +01:00
|
|
|
|
2017-02-03 12:07:21 +00:00
|
|
|
h2 = [header.text.strip() for header in page.find_all('h2')]
|
2016-05-11 09:43:55 +01:00
|
|
|
|
2017-02-03 12:07:21 +00:00
|
|
|
assert 'Email' in h2
|
|
|
|
|
assert 'SMS' in h2
|
2016-05-11 09:43:55 +01:00
|
|
|
|
2017-02-03 12:07:21 +00:00
|
|
|
tables = page.find_all('table')
|
2017-04-25 11:10:59 +01:00
|
|
|
assert len(tables) == 3
|
2016-05-11 09:43:55 +01:00
|
|
|
|
2017-04-25 11:10:59 +01:00
|
|
|
domestic_sms_table = tables[0]
|
|
|
|
|
domestic_email_table = tables[1]
|
|
|
|
|
international_sms_table = tables[2]
|
2016-05-11 09:43:55 +01:00
|
|
|
|
2017-04-25 11:10:59 +01:00
|
|
|
domestic_sms_first_row = domestic_sms_table.tbody.find_all('tr')[0]
|
|
|
|
|
table_data = domestic_sms_first_row.find_all('td')
|
2016-05-11 09:43:55 +01:00
|
|
|
|
2022-03-25 11:14:01 +00:00
|
|
|
assert table_data[0].find_all("a")[0]['href'] == '/provider/6005e192-4738-4962-beec-ebd982d0b03f'
|
2022-03-25 16:23:10 +00:00
|
|
|
assert table_data[0].text.strip() == "First Domestic SMS Provider"
|
|
|
|
|
assert table_data[1].text.strip() == "20"
|
2019-04-26 16:47:16 +01:00
|
|
|
assert table_data[2].text.strip() == "42"
|
|
|
|
|
assert table_data[3].text.strip() == "True"
|
|
|
|
|
assert table_data[4].text.strip() == "16 January at 3:20pm"
|
|
|
|
|
assert table_data[5].text.strip() == "Test User"
|
2016-05-11 09:43:55 +01:00
|
|
|
|
2017-04-25 11:10:59 +01:00
|
|
|
domestic_sms_second_row = domestic_sms_table.tbody.find_all('tr')[1]
|
|
|
|
|
table_data = domestic_sms_second_row.find_all('td')
|
2016-05-11 09:43:55 +01:00
|
|
|
|
2022-03-25 11:14:01 +00:00
|
|
|
assert table_data[0].find_all("a")[0]['href'] == '/provider/0bd529cd-a0fd-43e5-80ee-b95ef6b0d51f'
|
2017-04-25 11:10:59 +01:00
|
|
|
assert table_data[0].text.strip() == "Second Domestic SMS Provider"
|
2022-03-25 16:23:10 +00:00
|
|
|
assert table_data[1].text.strip() == "10"
|
2019-04-26 16:47:16 +01:00
|
|
|
assert table_data[2].text.strip() == "58"
|
|
|
|
|
assert table_data[3].text.strip() == "True"
|
2017-03-02 22:53:51 +00:00
|
|
|
assert table_data[4].text.strip() == "None"
|
2019-04-26 16:47:16 +01:00
|
|
|
assert table_data[5].text.strip() == "None"
|
2016-05-11 09:43:55 +01:00
|
|
|
|
2017-04-25 11:10:59 +01:00
|
|
|
domestic_email_first_row = domestic_email_table.tbody.find_all('tr')[0]
|
|
|
|
|
domestic_email_table_data = domestic_email_first_row.find_all('td')
|
|
|
|
|
|
|
|
|
|
assert domestic_email_table_data[0].find_all("a")[0]['href'] == '/provider/6005e192-4738-4962-beec-ebd982d0b03a'
|
|
|
|
|
assert domestic_email_table_data[0].text.strip() == "first_email_provider"
|
|
|
|
|
assert domestic_email_table_data[1].text.strip() == "1"
|
|
|
|
|
assert domestic_email_table_data[2].text.strip() == "True"
|
|
|
|
|
assert domestic_email_table_data[3].text.strip() == "None"
|
|
|
|
|
assert domestic_email_table_data[4].text.strip() == "None"
|
|
|
|
|
assert domestic_email_table_data[5].find_all("a")[0]['href'] \
|
|
|
|
|
== '/provider/6005e192-4738-4962-beec-ebd982d0b03a/edit'
|
|
|
|
|
|
|
|
|
|
domestic_email_second_row = domestic_email_table.tbody.find_all('tr')[1]
|
|
|
|
|
domestic_email_table_data = domestic_email_second_row.find_all('td')
|
|
|
|
|
|
|
|
|
|
assert domestic_email_table_data[0].find_all("a")[0]['href'] == '/provider/0bd529cd-a0fd-43e5-80ee-b95ef6b0d51b'
|
|
|
|
|
assert domestic_email_table_data[0].text.strip() == "second_email_provider"
|
|
|
|
|
assert domestic_email_table_data[1].text.strip() == "2"
|
|
|
|
|
assert domestic_email_table_data[2].text.strip() == "True"
|
|
|
|
|
assert domestic_email_table_data[3].text.strip() == "None"
|
|
|
|
|
assert domestic_email_table_data[4].text.strip() == "None"
|
|
|
|
|
assert domestic_email_table_data[5].find_all("a")[0]['href'] \
|
|
|
|
|
== '/provider/0bd529cd-a0fd-43e5-80ee-b95ef6b0d51b/edit'
|
|
|
|
|
|
|
|
|
|
international_sms_first_row = international_sms_table.tbody.find_all('tr')[0]
|
|
|
|
|
table_data = international_sms_first_row.find_all('td')
|
|
|
|
|
|
|
|
|
|
assert table_data[0].find_all("a")[0]['href'] == '/provider/67c770f5-918e-4afa-a5ff-880b9beb161d'
|
|
|
|
|
assert table_data[0].text.strip() == "First International SMS Provider"
|
|
|
|
|
assert table_data[1].text.strip() == "10"
|
|
|
|
|
assert table_data[2].text.strip() == "False"
|
|
|
|
|
assert table_data[3].text.strip() == "None"
|
|
|
|
|
assert table_data[4].text.strip() == "None"
|
2016-05-11 09:43:55 +01:00
|
|
|
|
|
|
|
|
|
2019-04-26 16:47:16 +01:00
|
|
|
def test_add_monthly_traffic():
|
|
|
|
|
domestic_sms_providers = [{
|
|
|
|
|
'identifier': 'mmg',
|
|
|
|
|
'current_month_billable_sms': 27,
|
|
|
|
|
}, {
|
|
|
|
|
'identifier': 'firetext',
|
|
|
|
|
'current_month_billable_sms': 5,
|
|
|
|
|
}, {
|
|
|
|
|
'identifier': 'loadtesting',
|
2019-05-02 09:25:57 +01:00
|
|
|
'current_month_billable_sms': 0,
|
2019-04-26 16:47:16 +01:00
|
|
|
}]
|
|
|
|
|
|
|
|
|
|
add_monthly_traffic(domestic_sms_providers)
|
|
|
|
|
|
|
|
|
|
assert domestic_sms_providers == [{
|
|
|
|
|
'identifier': 'mmg',
|
|
|
|
|
'current_month_billable_sms': 27,
|
|
|
|
|
'monthly_traffic': 84
|
|
|
|
|
}, {
|
|
|
|
|
'identifier': 'firetext',
|
|
|
|
|
'current_month_billable_sms': 5,
|
|
|
|
|
'monthly_traffic': 16
|
|
|
|
|
}, {
|
|
|
|
|
'identifier': 'loadtesting',
|
2019-05-02 09:25:57 +01:00
|
|
|
'current_month_billable_sms': 0,
|
2019-04-26 16:47:16 +01:00
|
|
|
'monthly_traffic': 0
|
|
|
|
|
}]
|
|
|
|
|
|
|
|
|
|
|
2017-03-02 22:53:51 +00:00
|
|
|
def test_should_show_edit_provider_form(
|
2022-01-04 10:56:25 +00:00
|
|
|
client_request,
|
2017-02-03 10:42:01 +00:00
|
|
|
platform_admin_user,
|
|
|
|
|
mocker,
|
2019-11-04 11:07:55 +00:00
|
|
|
fake_uuid,
|
2022-03-25 11:28:06 +00:00
|
|
|
stub_provider
|
2016-05-11 09:43:55 +01:00
|
|
|
):
|
2022-03-25 11:28:06 +00:00
|
|
|
mocker.patch('app.provider_client.get_provider_by_id', return_value=stub_provider)
|
2016-05-11 09:43:55 +01:00
|
|
|
|
2022-01-04 10:56:25 +00:00
|
|
|
client_request.login(platform_admin_user)
|
|
|
|
|
page = client_request.get('main.edit_provider', provider_id=fake_uuid)
|
2016-05-11 09:43:55 +01:00
|
|
|
|
2017-02-03 12:07:21 +00:00
|
|
|
h1 = [header.text.strip() for header in page.find_all('h1')]
|
2016-05-11 09:43:55 +01:00
|
|
|
|
2022-03-25 16:23:10 +00:00
|
|
|
assert 'First Domestic SMS Provider' in h1
|
2016-05-11 09:43:55 +01:00
|
|
|
|
2017-02-03 12:07:21 +00:00
|
|
|
form = [form for form in page.find_all('form')]
|
2016-05-11 09:43:55 +01:00
|
|
|
|
2017-02-03 12:07:21 +00:00
|
|
|
form_elements = [element for element in form[0].find_all('input')]
|
2022-03-25 16:23:10 +00:00
|
|
|
assert form_elements[0]['value'] == '20'
|
2017-02-03 12:07:21 +00:00
|
|
|
assert form_elements[0]['name'] == 'priority'
|
2016-05-11 09:43:55 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_should_show_error_on_bad_provider_priority(
|
2022-01-04 10:56:25 +00:00
|
|
|
client_request,
|
2017-02-03 10:42:01 +00:00
|
|
|
platform_admin_user,
|
|
|
|
|
mocker,
|
2022-03-25 11:28:06 +00:00
|
|
|
stub_provider,
|
2016-05-11 09:43:55 +01:00
|
|
|
):
|
2022-03-25 11:28:06 +00:00
|
|
|
mocker.patch('app.provider_client.get_provider_by_id', return_value=stub_provider)
|
2016-05-11 09:43:55 +01:00
|
|
|
|
2022-01-04 10:56:25 +00:00
|
|
|
client_request.login(platform_admin_user)
|
|
|
|
|
page = client_request.post(
|
|
|
|
|
'main.edit_provider',
|
|
|
|
|
provider_id=stub_provider['provider_details']['id'],
|
|
|
|
|
_data={'priority': "not valid"},
|
|
|
|
|
_expected_status=200,
|
|
|
|
|
)
|
2016-05-11 09:43:55 +01:00
|
|
|
|
2022-01-04 10:56:25 +00:00
|
|
|
assert normalize_spaces(
|
|
|
|
|
page.select_one('.govuk-error-message').text
|
|
|
|
|
) == "Error: Not a valid integer value."
|
2016-05-11 09:43:55 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_should_show_error_on_negative_provider_priority(
|
2022-01-04 10:56:25 +00:00
|
|
|
client_request,
|
2017-02-03 10:42:01 +00:00
|
|
|
platform_admin_user,
|
|
|
|
|
mocker,
|
2022-03-25 11:28:06 +00:00
|
|
|
stub_provider,
|
2016-05-11 09:43:55 +01:00
|
|
|
):
|
2022-03-25 11:28:06 +00:00
|
|
|
mocker.patch('app.provider_client.get_provider_by_id', return_value=stub_provider)
|
2016-05-11 09:43:55 +01:00
|
|
|
|
2022-01-04 10:56:25 +00:00
|
|
|
client_request.login(platform_admin_user)
|
|
|
|
|
page = client_request.post(
|
|
|
|
|
'main.edit_provider',
|
|
|
|
|
provider_id=stub_provider['provider_details']['id'],
|
|
|
|
|
_data={'priority': -1},
|
|
|
|
|
_expected_status=200,
|
|
|
|
|
)
|
2016-05-11 09:43:55 +01:00
|
|
|
|
2022-01-04 10:56:25 +00:00
|
|
|
assert normalize_spaces(
|
|
|
|
|
page.select_one('.govuk-error-message').text
|
|
|
|
|
) == "Error: Must be between 1 and 100"
|
2016-05-11 09:43:55 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_should_show_error_on_too_big_provider_priority(
|
2022-01-04 10:56:25 +00:00
|
|
|
client_request,
|
2017-02-03 10:42:01 +00:00
|
|
|
platform_admin_user,
|
|
|
|
|
mocker,
|
2022-03-25 11:28:06 +00:00
|
|
|
stub_provider,
|
2016-05-11 09:43:55 +01:00
|
|
|
):
|
2022-03-25 11:28:06 +00:00
|
|
|
mocker.patch('app.provider_client.get_provider_by_id', return_value=stub_provider)
|
2016-05-11 09:43:55 +01:00
|
|
|
|
2022-01-04 10:56:25 +00:00
|
|
|
client_request.login(platform_admin_user)
|
|
|
|
|
page = client_request.post(
|
|
|
|
|
'main.edit_provider',
|
|
|
|
|
provider_id=stub_provider['provider_details']['id'],
|
|
|
|
|
_data={'priority': 101},
|
|
|
|
|
_expected_status=200,
|
|
|
|
|
)
|
2016-05-11 09:43:55 +01:00
|
|
|
|
2022-01-04 10:56:25 +00:00
|
|
|
assert normalize_spaces(
|
|
|
|
|
page.select_one('.govuk-error-message').text
|
|
|
|
|
) == "Error: Must be between 1 and 100"
|
2016-05-11 09:43:55 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_should_show_error_on_too_little_provider_priority(
|
2022-01-04 10:56:25 +00:00
|
|
|
client_request,
|
2017-02-03 10:42:01 +00:00
|
|
|
platform_admin_user,
|
|
|
|
|
mocker,
|
2022-03-25 11:28:06 +00:00
|
|
|
stub_provider,
|
2016-05-11 09:43:55 +01:00
|
|
|
):
|
2022-03-25 11:28:06 +00:00
|
|
|
mocker.patch('app.provider_client.get_provider_by_id', return_value=stub_provider)
|
2016-05-11 09:43:55 +01:00
|
|
|
|
2022-01-04 10:56:25 +00:00
|
|
|
client_request.login(platform_admin_user)
|
|
|
|
|
page = client_request.post(
|
|
|
|
|
'main.edit_provider',
|
|
|
|
|
provider_id=stub_provider['provider_details']['id'],
|
|
|
|
|
_data={'priority': 0},
|
|
|
|
|
_expected_status=200,
|
|
|
|
|
)
|
2016-05-11 09:43:55 +01:00
|
|
|
|
2022-01-04 10:56:25 +00:00
|
|
|
assert normalize_spaces(
|
|
|
|
|
page.select_one('.govuk-error-message').text
|
|
|
|
|
) == "Error: Must be between 1 and 100"
|
2016-05-11 09:43:55 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_should_update_provider_priority(
|
2022-01-04 10:56:25 +00:00
|
|
|
client_request,
|
2017-02-03 10:42:01 +00:00
|
|
|
platform_admin_user,
|
|
|
|
|
mocker,
|
2022-03-25 11:28:06 +00:00
|
|
|
stub_provider,
|
2016-05-11 09:43:55 +01:00
|
|
|
):
|
2022-03-25 11:28:06 +00:00
|
|
|
mocker.patch('app.provider_client.get_provider_by_id', return_value=stub_provider)
|
|
|
|
|
mocker.patch('app.provider_client.update_provider', return_value=stub_provider)
|
2016-05-11 09:43:55 +01:00
|
|
|
|
2022-01-04 10:56:25 +00:00
|
|
|
client_request.login(platform_admin_user)
|
|
|
|
|
client_request.post(
|
|
|
|
|
'main.edit_provider',
|
|
|
|
|
provider_id=stub_provider['provider_details']['id'],
|
|
|
|
|
_data={'priority': 2},
|
|
|
|
|
_expected_redirect='http://localhost/providers',
|
|
|
|
|
)
|
2016-05-11 09:43:55 +01:00
|
|
|
|
2017-02-03 12:07:21 +00:00
|
|
|
app.provider_client.update_provider.assert_called_with(stub_provider['provider_details']['id'], 2)
|
2017-03-02 22:53:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_should_show_provider_version_history(
|
2022-01-04 10:56:25 +00:00
|
|
|
client_request,
|
2017-03-02 22:53:51 +00:00
|
|
|
platform_admin_user,
|
2022-03-25 11:28:06 +00:00
|
|
|
mocker,
|
|
|
|
|
stub_provider_history
|
2017-03-02 22:53:51 +00:00
|
|
|
):
|
2022-03-25 11:28:06 +00:00
|
|
|
mocker.patch('app.provider_client.get_provider_versions', return_value=stub_provider_history)
|
2017-03-02 22:53:51 +00:00
|
|
|
|
2022-01-04 10:56:25 +00:00
|
|
|
client_request.login(platform_admin_user)
|
|
|
|
|
page = client_request.get(
|
|
|
|
|
'main.view_provider', provider_id=stub_provider_history['data'][0]['id']
|
|
|
|
|
)
|
2017-03-02 22:53:51 +00:00
|
|
|
|
|
|
|
|
table = page.find('table')
|
|
|
|
|
table_rows = table.find_all('tr')
|
|
|
|
|
table_headings = table_rows[0].find_all('th')
|
|
|
|
|
first_row = table_rows[1].find_all('td')
|
|
|
|
|
second_row = table_rows[2].find_all('td')
|
|
|
|
|
|
|
|
|
|
assert page.find_all('h1')[0].text.strip() == stub_provider_history['data'][0]["display_name"]
|
|
|
|
|
assert len(table_rows) == 3
|
|
|
|
|
|
|
|
|
|
assert table_headings[0].text.strip() == "Version"
|
|
|
|
|
assert table_headings[1].text.strip() == "Last Updated"
|
|
|
|
|
assert table_headings[2].text.strip() == "Updated By"
|
|
|
|
|
assert table_headings[3].text.strip() == "Priority"
|
|
|
|
|
assert table_headings[4].text.strip() == "Active"
|
|
|
|
|
|
|
|
|
|
assert first_row[0].text.strip() == "2"
|
|
|
|
|
assert first_row[1].text.strip() == "None"
|
|
|
|
|
assert first_row[2].text.strip() == "Test User"
|
|
|
|
|
assert first_row[3].text.strip() == "20"
|
|
|
|
|
assert first_row[4].text.strip() == "True"
|
|
|
|
|
|
|
|
|
|
assert second_row[0].text.strip() == "1"
|
|
|
|
|
assert second_row[1].text.strip() == "None"
|
|
|
|
|
assert second_row[2].text.strip() == "None"
|
|
|
|
|
assert second_row[3].text.strip() == "10"
|
|
|
|
|
assert second_row[4].text.strip() == "True"
|
2019-12-03 17:54:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize('posted_number, expected_calls', [
|
|
|
|
|
(
|
|
|
|
|
'10',
|
|
|
|
|
[
|
2022-03-25 16:36:17 +00:00
|
|
|
call(sms_provider_1['id'], 10),
|
|
|
|
|
call(sms_provider_2['id'], 90),
|
2019-12-03 17:54:57 +00:00
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
(
|
|
|
|
|
'80',
|
|
|
|
|
[
|
2022-03-25 16:36:17 +00:00
|
|
|
call(sms_provider_1['id'], 80),
|
|
|
|
|
call(sms_provider_2['id'], 20),
|
2019-12-03 17:54:57 +00:00
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
])
|
|
|
|
|
def test_should_update_priority_of_first_two_sms_providers(
|
|
|
|
|
client_request,
|
|
|
|
|
platform_admin_user,
|
|
|
|
|
mocker,
|
|
|
|
|
posted_number,
|
|
|
|
|
expected_calls,
|
2022-03-25 11:28:06 +00:00
|
|
|
stub_providers,
|
2019-12-03 17:54:57 +00:00
|
|
|
):
|
|
|
|
|
mocker.patch(
|
|
|
|
|
'app.provider_client.get_all_providers',
|
2022-03-25 11:28:06 +00:00
|
|
|
return_value=stub_providers
|
2019-12-03 17:54:57 +00:00
|
|
|
)
|
|
|
|
|
mock_update_provider = mocker.patch(
|
|
|
|
|
'app.provider_client.update_provider'
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
client_request.login(platform_admin_user)
|
|
|
|
|
client_request.post(
|
|
|
|
|
'.edit_sms_provider_ratio',
|
|
|
|
|
_data={
|
|
|
|
|
'ratio': posted_number,
|
|
|
|
|
},
|
|
|
|
|
_expected_redirect=url_for(
|
|
|
|
|
'.edit_sms_provider_ratio',
|
|
|
|
|
_external=True,
|
|
|
|
|
),
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
assert mock_update_provider.call_args_list == expected_calls
|