Files
notifications-api/tests/app/test_commands.py

444 lines
13 KiB
Python
Raw Normal View History

import datetime
2023-08-14 07:21:18 -07:00
import os
2022-03-22 09:46:26 +00:00
import pytest
from app.commands import (
_update_template,
2023-09-21 14:48:10 -07:00
bulk_invite_user_to_service,
create_new_service,
create_test_user,
2023-08-11 11:47:57 -07:00
fix_billable_units,
insert_inbound_numbers_from_file,
2022-03-22 09:46:26 +00:00
populate_annual_billing_with_defaults,
2023-08-10 12:58:52 -07:00
populate_annual_billing_with_the_previous_years_allowance,
2023-08-14 07:41:17 -07:00
populate_organization_agreement_details_from_file,
2023-08-14 07:21:18 -07:00
populate_organizations_from_file,
promote_user_to_platform_admin,
purge_functional_test_data,
update_jobs_archived_flag,
)
from app.dao.inbound_numbers_dao import dao_get_available_inbound_numbers
from app.dao.users_dao import get_user_by_email
from app.enums import (
AuthType,
KeyType,
NotificationStatus,
NotificationType,
OrganizationType,
TemplateType,
)
2023-08-14 07:21:18 -07:00
from app.models import (
AnnualBilling,
Job,
Notification,
Organization,
Service,
2023-08-14 07:21:18 -07:00
Template,
User,
)
2024-05-23 13:59:51 -07:00
from app.utils import utc_now
2023-08-10 12:58:52 -07:00
from tests.app.db import (
create_annual_billing,
create_job,
2023-08-11 11:47:57 -07:00
create_notification,
2023-08-14 07:41:17 -07:00
create_organization,
2023-08-10 12:58:52 -07:00
create_service,
create_template,
2023-08-10 12:58:52 -07:00
)
def test_purge_functional_test_data(notify_db_session, notify_api):
orig_user_count = User.query.count()
notify_api.test_cli_runner().invoke(
2023-08-29 14:54:30 -07:00
create_test_user,
[
"--email",
"somebody+7af2cdb0-7cbc-44dc-a5d0-f817fc6ee94e@fake.gov",
"--mobile_number",
"202-555-5555",
"--password",
"correct horse battery staple",
"--name",
"Fake Humanson",
],
)
user_count = User.query.count()
assert user_count == orig_user_count + 1
2023-08-29 14:54:30 -07:00
notify_api.test_cli_runner().invoke(purge_functional_test_data, ["-u", "somebody"])
# if the email address has a uuid, it is test data so it should be purged and there should be
# zero users. Otherwise, it is real data so there should be one user.
assert User.query.count() == orig_user_count
2023-08-10 12:58:52 -07:00
2023-08-14 07:21:18 -07:00
def test_purge_functional_test_data_bad_mobile(notify_db_session, notify_api):
user_count = User.query.count()
assert user_count == 0
# run the command
2023-08-15 11:44:47 -07:00
command_response = notify_api.test_cli_runner().invoke(
2023-08-29 14:54:30 -07:00
create_test_user,
[
"--email",
"somebody+7af2cdb0-7cbc-44dc-a5d0-f817fc6ee94e@fake.gov",
"--mobile_number",
"555-555-55554444",
"--password",
"correct horse battery staple",
"--name",
"Fake Personson",
],
2023-08-14 07:21:18 -07:00
)
# The bad mobile phone number results in a bad parameter error, leading to a system exit 2 and no entry made in db
2023-08-15 11:44:47 -07:00
assert "SystemExit(2)" in str(command_response)
2023-08-14 07:21:18 -07:00
user_count = User.query.count()
assert user_count == 0
2023-08-10 12:58:52 -07:00
def test_update_jobs_archived_flag(notify_db_session, notify_api):
service = create_service()
sms_template = create_template(service=service, template_type=TemplateType.SMS)
create_job(sms_template)
2024-05-23 13:59:51 -07:00
right_now = utc_now()
tomorrow = right_now + datetime.timedelta(days=1)
right_now = right_now.strftime("%Y-%m-%d")
tomorrow = tomorrow.strftime("%Y-%m-%d")
archived_jobs = Job.query.filter(Job.archived is True).count()
assert archived_jobs == 0
notify_api.test_cli_runner().invoke(
2023-08-29 14:54:30 -07:00
update_jobs_archived_flag,
[
"-e",
tomorrow,
"-s",
right_now,
],
)
jobs = Job.query.all()
assert len(jobs) == 1
for job in jobs:
assert job.archived is True
2023-08-10 12:58:52 -07:00
2023-08-14 07:21:18 -07:00
def test_populate_organizations_from_file(notify_db_session, notify_api):
org_count = Organization.query.count()
assert org_count == 0
file_name = "./tests/app/orgs1.csv"
2023-08-29 14:54:30 -07:00
text = "name|blah|blah|blah|||\n" "foo|Federal|True|'foo.gov'|'foo.gov'||\n"
2023-08-14 07:21:18 -07:00
f = open(file_name, "a")
f.write(text)
f.close()
2023-08-15 11:44:47 -07:00
command_response = notify_api.test_cli_runner().invoke(
2023-08-29 14:54:30 -07:00
populate_organizations_from_file, ["-f", file_name]
2023-08-14 07:21:18 -07:00
)
os.remove(file_name)
2023-08-15 11:44:47 -07:00
print(f"command_response = {command_response}")
2023-08-14 07:21:18 -07:00
org_count = Organization.query.count()
assert org_count == 1
2023-08-29 14:54:30 -07:00
def test_populate_organization_agreement_details_from_file(
notify_db_session, notify_api
):
2023-08-14 07:41:17 -07:00
file_name = "./tests/app/orgs.csv"
org_count = Organization.query.count()
assert org_count == 0
create_organization()
org_count = Organization.query.count()
assert org_count == 1
org = Organization.query.one()
org.agreement_signed = True
notify_db_session.commit()
2023-08-29 14:54:30 -07:00
text = (
"id,agreement_signed_version,agreement_signed_on_behalf_of_name,agreement_signed_at\n"
f"{org.id},1,bob,'2023-01-01 00:00:00'\n"
)
2023-08-14 07:41:17 -07:00
f = open(file_name, "a")
f.write(text)
f.close()
2023-08-15 11:44:47 -07:00
command_response = notify_api.test_cli_runner().invoke(
2023-08-29 14:54:30 -07:00
populate_organization_agreement_details_from_file, ["-f", file_name]
2023-08-14 07:41:17 -07:00
)
2023-08-15 11:44:47 -07:00
print(f"command_response = {command_response}")
2023-08-14 07:41:17 -07:00
org_count = Organization.query.count()
assert org_count == 1
org = Organization.query.one()
2023-08-29 14:54:30 -07:00
assert org.agreement_signed_on_behalf_of_name == "bob"
2023-08-14 07:41:17 -07:00
os.remove(file_name)
2023-09-21 14:48:10 -07:00
def test_bulk_invite_user_to_service(
notify_db_session, notify_api, sample_service, sample_user
):
file_name = "./tests/app/users.csv"
text = (
"service,email_address,from_user,permissions,auth_type,invite_link_host\n"
f"{sample_service.id},someone@fake.gov,{sample_user.id},sms,platform_admin,https://somewhere.fake.gov'\n"
)
f = open(file_name, "a")
f.write(text)
f.close()
command_response = notify_api.test_cli_runner().invoke(
bulk_invite_user_to_service,
[
"-f",
file_name,
"-s",
sample_service.id,
"-u",
sample_user.id,
"-p",
"send_texts",
],
)
print(f"command_response = {command_response}")
assert "okay" in str(command_response)
os.remove(file_name)
def test_create_test_user_command(notify_db_session, notify_api):
# number of users before adding ours
2023-08-14 07:41:17 -07:00
user_count = User.query.count()
# run the command
notify_api.test_cli_runner().invoke(
2023-08-29 14:54:30 -07:00
create_test_user,
[
"--email",
"somebody@fake.gov",
"--mobile_number",
"202-555-5555",
"--password",
"correct horse battery staple",
"--name",
"Fake Personson",
],
)
# there should be one more user
2023-08-14 07:41:17 -07:00
assert User.query.count() == user_count + 1
# that user should be the one we added
2023-08-29 14:54:30 -07:00
user = User.query.filter_by(name="Fake Personson").first()
assert user.email_address == "somebody@fake.gov"
assert user.auth_type == AuthType.SMS
2023-08-29 14:54:30 -07:00
assert user.state == "active"
def test_insert_inbound_numbers_from_file(notify_db_session, notify_api, tmpdir):
numbers_file = tmpdir.join("numbers.txt")
numbers_file.write("07700900373\n07700900473\n07700900375\n\n\n\n")
2023-08-29 14:54:30 -07:00
notify_api.test_cli_runner().invoke(
insert_inbound_numbers_from_file, ["-f", numbers_file]
)
inbound_numbers = dao_get_available_inbound_numbers()
assert len(inbound_numbers) == 3
2023-08-29 14:54:30 -07:00
assert set(x.number for x in inbound_numbers) == {
"07700900373",
"07700900473",
"07700900375",
}
2023-08-29 14:54:30 -07:00
@pytest.mark.parametrize(
"organization_type, expected_allowance",
[(OrganizationType.FEDERAL, 40000), (OrganizationType.STATE, 40000)],
2023-08-29 14:54:30 -07:00
)
2022-03-22 09:46:26 +00:00
def test_populate_annual_billing_with_defaults(
2023-08-29 14:54:30 -07:00
notify_db_session, notify_api, organization_type, expected_allowance
2022-03-22 09:46:26 +00:00
):
2023-08-29 14:54:30 -07:00
service = create_service(
service_name=organization_type,
organization_type=organization_type,
2023-08-29 14:54:30 -07:00
)
2022-03-22 09:46:26 +00:00
notify_api.test_cli_runner().invoke(
2023-08-29 14:54:30 -07:00
populate_annual_billing_with_defaults, ["-y", 2022]
2022-03-22 09:46:26 +00:00
)
results = AnnualBilling.query.filter(
AnnualBilling.financial_year_start == 2022,
2023-08-29 14:54:30 -07:00
AnnualBilling.service_id == service.id,
2022-03-22 09:46:26 +00:00
).all()
assert len(results) == 1
assert results[0].free_sms_fragment_limit == expected_allowance
2023-08-29 14:54:30 -07:00
@pytest.mark.parametrize(
"organization_type, expected_allowance",
[(OrganizationType.FEDERAL, 40000), (OrganizationType.STATE, 40000)],
2023-08-29 14:54:30 -07:00
)
2023-08-10 12:58:52 -07:00
def test_populate_annual_billing_with_the_previous_years_allowance(
2023-08-29 14:54:30 -07:00
notify_db_session, notify_api, organization_type, expected_allowance
2023-08-10 12:58:52 -07:00
):
2023-08-29 14:54:30 -07:00
service = create_service(
service_name=organization_type,
organization_type=organization_type,
2023-08-29 14:54:30 -07:00
)
2023-08-10 12:58:52 -07:00
notify_api.test_cli_runner().invoke(
2023-08-29 14:54:30 -07:00
populate_annual_billing_with_defaults, ["-y", 2022]
2023-08-10 12:58:52 -07:00
)
results = AnnualBilling.query.filter(
AnnualBilling.financial_year_start == 2022,
2023-08-29 14:54:30 -07:00
AnnualBilling.service_id == service.id,
2023-08-10 12:58:52 -07:00
).all()
assert len(results) == 1
assert results[0].free_sms_fragment_limit == expected_allowance
notify_api.test_cli_runner().invoke(
2023-08-29 14:54:30 -07:00
populate_annual_billing_with_the_previous_years_allowance, ["-y", 2023]
2023-08-10 12:58:52 -07:00
)
results = AnnualBilling.query.filter(
AnnualBilling.financial_year_start == 2023,
2023-08-29 14:54:30 -07:00
AnnualBilling.service_id == service.id,
2023-08-10 12:58:52 -07:00
).all()
assert len(results) == 1
assert results[0].free_sms_fragment_limit == expected_allowance
2023-08-11 11:47:57 -07:00
def test_fix_billable_units(notify_db_session, notify_api, sample_template):
create_notification(template=sample_template)
notification = Notification.query.one()
2023-08-14 09:04:06 -07:00
notification.billable_units = 0
notification.notification_type = NotificationType.SMS
notification.status = NotificationStatus.DELIVERED
2023-08-14 09:04:06 -07:00
notification.sent_at = None
notification.key_type = KeyType.NORMAL
2023-08-14 09:04:06 -07:00
notify_db_session.commit()
2023-08-11 11:47:57 -07:00
2023-08-29 14:54:30 -07:00
notify_api.test_cli_runner().invoke(fix_billable_units, [])
2023-08-11 11:47:57 -07:00
notification = Notification.query.one()
assert notification.billable_units == 1
2022-03-22 09:46:26 +00:00
def test_populate_annual_billing_with_defaults_sets_free_allowance_to_zero_if_previous_year_is_zero(
2023-08-29 14:54:30 -07:00
notify_db_session, notify_api
2022-03-22 09:46:26 +00:00
):
service = create_service(organization_type=OrganizationType.FEDERAL)
2023-08-29 14:54:30 -07:00
create_annual_billing(
service_id=service.id, free_sms_fragment_limit=0, financial_year_start=2021
)
2022-03-22 09:46:26 +00:00
notify_api.test_cli_runner().invoke(
2023-08-29 14:54:30 -07:00
populate_annual_billing_with_defaults, ["-y", 2022]
2022-03-22 09:46:26 +00:00
)
results = AnnualBilling.query.filter(
AnnualBilling.financial_year_start == 2022,
2023-08-29 14:54:30 -07:00
AnnualBilling.service_id == service.id,
2022-03-22 09:46:26 +00:00
).all()
assert len(results) == 1
assert results[0].free_sms_fragment_limit == 0
2023-08-29 14:54:30 -07:00
def test_update_template(notify_db_session, email_2fa_code_template):
_update_template(
"299726d2-dba6-42b8-8209-30e1d66ea164",
"Example text message template!",
TemplateType.SMS,
2023-08-29 14:54:30 -07:00
[
"Hi, Im trying out Notify.gov! Today is ((day of week)) and my favorite color is ((color))."
2023-08-29 14:54:30 -07:00
],
"",
)
t = Template.query.all()
assert t[0].name == "Example text message template!"
def test_create_service_command(notify_db_session, notify_api):
notify_api.test_cli_runner().invoke(
create_test_user,
[
"--email",
"somebody@fake.gov",
"--mobile_number",
"202-555-5555",
"--password",
"correct horse battery staple",
"--name",
"Fake Personson",
],
)
user = User.query.first()
service_count = Service.query.count()
# run the command
result = notify_api.test_cli_runner().invoke(
create_new_service,
["-e", "somebody@fake.gov", "-n", "Fake Service", "-c", user.id],
)
print(result)
# there should be one more service
assert Service.query.count() == service_count + 1
# that service should be the one we added
service = Service.query.filter_by(name="Fake Service").first()
assert service.email_from == "somebody@fake.gov"
assert service.restricted is False
assert service.message_limit == 40000
def test_promote_user_to_platform_admin(
notify_db_session, notify_api, sample_user, sample_platform_admin
):
assert sample_user.platform_admin is False
assert sample_platform_admin.platform_admin is True
2023-11-07 07:08:42 -08:00
notify_api.test_cli_runner().invoke(
promote_user_to_platform_admin,
[
"-u",
"notify@digital.fake.gov",
],
)
user = get_user_by_email("notify@digital.fake.gov")
assert user.platform_admin is True
def test_promote_user_to_platform_admin_no_result_found(
notify_db_session, notify_api, sample_user
):
assert sample_user.platform_admin is False
result = notify_api.test_cli_runner().invoke(
promote_user_to_platform_admin,
[
"-u",
"notify@digital.fake.asefasefasefasef",
],
)
assert "NoResultFound" in str(result)
assert sample_user.platform_admin is False