2016-04-12 14:19:51 +01:00
|
|
|
import uuid
|
2017-01-06 17:49:20 +00:00
|
|
|
from datetime import datetime, timedelta, timezone
|
2019-03-25 10:25:05 +00:00
|
|
|
from unittest.mock import patch
|
2019-07-15 13:52:42 +01:00
|
|
|
from urllib.parse import parse_qs, urlparse
|
2019-03-25 10:25:05 +00:00
|
|
|
|
2022-05-27 11:38:07 +01:00
|
|
|
import freezegun
|
2019-03-25 10:25:05 +00:00
|
|
|
import pytest
|
2020-03-06 15:41:13 +00:00
|
|
|
from flask import session as flask_session
|
2016-01-15 15:15:35 +00:00
|
|
|
from flask import url_for
|
2019-03-25 10:25:05 +00:00
|
|
|
from flask.testing import FlaskClient
|
2016-03-18 10:49:22 +00:00
|
|
|
from flask_login import login_user
|
2019-03-25 10:25:05 +00:00
|
|
|
|
Make user API client return JSON, not a model
The data flow of other bits of our application looks like this:
```
API (returns JSON)
⬇
API client (returns a built in type, usually `dict`)
⬇
Model (returns an instance, eg of type `Service`)
⬇
View (returns HTML)
```
The user API client was architected weirdly, in that it returned a model
directly, like this:
```
API (returns JSON)
⬇
API client (returns a model, of type `User`, `InvitedUser`, etc)
⬇
View (returns HTML)
```
This mixing of different layers of the application is bad because it
makes it hard to write model code that doesn’t have circular
dependencies. As our application gets more complicated we will be
relying more on models to manage this complexity, so we should make it
easy, not hard to write them.
It also means that most of our mocking was of the User model, not just
the underlying JSON. So it would have been easy to introduce subtle bugs
to the user model, because it wasn’t being comprehensively tested. A lot
of the changed lines of code in this commit mean changing the tests to
mock only the JSON, which means that the model layer gets implicitly
tested.
For those reasons this commit changes the user API client to return
JSON, not an instance of `User` or other models.
2019-05-23 15:27:35 +01:00
|
|
|
from app.models.user import User
|
2016-01-15 15:15:35 +00:00
|
|
|
|
2022-05-27 11:38:07 +01:00
|
|
|
# Add itsdangerous to the libraries which freezegun ignores to avoid errors.
|
|
|
|
|
# In tests where we freeze time, the code in the test function will get the frozen time but the
|
|
|
|
|
# fixtures will be using the current time. This causes itsdangerous to raise an exception - when
|
|
|
|
|
# the session is decoded it appears to be created in the future.
|
2023-08-25 09:12:23 -07:00
|
|
|
freezegun.configure(extend_ignore_list=["itsdangerous"])
|
2022-05-27 11:38:07 +01:00
|
|
|
|
2016-01-15 15:15:35 +00:00
|
|
|
|
|
|
|
|
class TestClient(FlaskClient):
|
2016-03-30 10:53:15 +01:00
|
|
|
def login(self, user, mocker=None, service=None):
|
2016-01-15 15:15:35 +00:00
|
|
|
# Skipping authentication here and just log them in
|
Make user API client return JSON, not a model
The data flow of other bits of our application looks like this:
```
API (returns JSON)
⬇
API client (returns a built in type, usually `dict`)
⬇
Model (returns an instance, eg of type `Service`)
⬇
View (returns HTML)
```
The user API client was architected weirdly, in that it returned a model
directly, like this:
```
API (returns JSON)
⬇
API client (returns a model, of type `User`, `InvitedUser`, etc)
⬇
View (returns HTML)
```
This mixing of different layers of the application is bad because it
makes it hard to write model code that doesn’t have circular
dependencies. As our application gets more complicated we will be
relying more on models to manage this complexity, so we should make it
easy, not hard to write them.
It also means that most of our mocking was of the User model, not just
the underlying JSON. So it would have been easy to introduce subtle bugs
to the user model, because it wasn’t being comprehensively tested. A lot
of the changed lines of code in this commit mean changing the tests to
mock only the JSON, which means that the model layer gets implicitly
tested.
For those reasons this commit changes the user API client to return
JSON, not an instance of `User` or other models.
2019-05-23 15:27:35 +01:00
|
|
|
model_user = User(user)
|
2016-01-15 15:15:35 +00:00
|
|
|
with self.session_transaction() as session:
|
2023-08-25 09:12:23 -07:00
|
|
|
session["current_session_id"] = model_user.current_session_id
|
|
|
|
|
session["user_id"] = model_user.id
|
2016-03-31 10:26:03 +01:00
|
|
|
if mocker:
|
2023-08-25 09:12:23 -07:00
|
|
|
mocker.patch("app.user_api_client.get_user", return_value=user)
|
2016-03-31 10:26:03 +01:00
|
|
|
if mocker and service:
|
2017-01-30 13:59:43 +00:00
|
|
|
with self.session_transaction() as session:
|
2023-08-25 09:12:23 -07:00
|
|
|
session["service_id"] = service["id"]
|
|
|
|
|
mocker.patch(
|
|
|
|
|
"app.service_api_client.get_service", return_value={"data": service}
|
|
|
|
|
)
|
2018-05-02 10:27:01 +01:00
|
|
|
|
2023-08-25 09:12:23 -07:00
|
|
|
with patch("app.events_api_client.create_event"):
|
Make user API client return JSON, not a model
The data flow of other bits of our application looks like this:
```
API (returns JSON)
⬇
API client (returns a built in type, usually `dict`)
⬇
Model (returns an instance, eg of type `Service`)
⬇
View (returns HTML)
```
The user API client was architected weirdly, in that it returned a model
directly, like this:
```
API (returns JSON)
⬇
API client (returns a model, of type `User`, `InvitedUser`, etc)
⬇
View (returns HTML)
```
This mixing of different layers of the application is bad because it
makes it hard to write model code that doesn’t have circular
dependencies. As our application gets more complicated we will be
relying more on models to manage this complexity, so we should make it
easy, not hard to write them.
It also means that most of our mocking was of the User model, not just
the underlying JSON. So it would have been easy to introduce subtle bugs
to the user model, because it wasn’t being comprehensively tested. A lot
of the changed lines of code in this commit mean changing the tests to
mock only the JSON, which means that the model layer gets implicitly
tested.
For those reasons this commit changes the user API client to return
JSON, not an instance of `User` or other models.
2019-05-23 15:27:35 +01:00
|
|
|
login_user(model_user)
|
2020-03-06 15:41:13 +00:00
|
|
|
with self.session_transaction() as test_session:
|
|
|
|
|
for key, value in flask_session.items():
|
|
|
|
|
test_session[key] = value
|
2016-03-18 16:20:37 +00:00
|
|
|
|
2016-01-15 15:15:35 +00:00
|
|
|
def logout(self, user):
|
2019-07-15 13:52:42 +01:00
|
|
|
self.get(url_for("main.sign_out"))
|
2016-01-15 15:15:35 +00:00
|
|
|
|
|
|
|
|
|
2016-04-12 14:19:51 +01:00
|
|
|
def sample_uuid():
|
|
|
|
|
return "6ce466d0-fd6a-11e5-82f5-e0accb9d11a6"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def generate_uuid():
|
|
|
|
|
return uuid.uuid4()
|
|
|
|
|
|
|
|
|
|
|
2023-08-25 09:12:23 -07:00
|
|
|
def created_by_json(id_, name="", email_address=""):
|
|
|
|
|
return {"id": id_, "name": name, "email_address": email_address}
|
2016-05-24 12:34:29 +01:00
|
|
|
|
|
|
|
|
|
2018-02-19 16:53:29 +00:00
|
|
|
def user_json(
|
2023-08-25 09:12:23 -07:00
|
|
|
id_="1234",
|
|
|
|
|
name="Test User",
|
|
|
|
|
email_address="test@gsa.gov",
|
|
|
|
|
mobile_number="+12028675109",
|
2018-02-19 16:53:29 +00:00
|
|
|
password_changed_at=None,
|
2019-11-01 10:43:01 +00:00
|
|
|
permissions=None,
|
2023-08-25 09:12:23 -07:00
|
|
|
auth_type="sms_auth",
|
2018-02-19 16:53:29 +00:00
|
|
|
failed_login_count=0,
|
2019-06-05 12:14:50 +01:00
|
|
|
logged_in_at=None,
|
2023-08-25 09:12:23 -07:00
|
|
|
state="active",
|
2018-02-19 16:53:29 +00:00
|
|
|
platform_admin=False,
|
2023-08-25 09:12:23 -07:00
|
|
|
current_session_id="1234",
|
2023-07-12 12:09:44 -04:00
|
|
|
organizations=None,
|
2023-08-25 09:12:23 -07:00
|
|
|
services=None,
|
2018-02-19 16:53:29 +00:00
|
|
|
):
|
2019-12-17 10:54:22 +00:00
|
|
|
if permissions is None:
|
2023-08-25 09:12:23 -07:00
|
|
|
permissions = {
|
|
|
|
|
str(generate_uuid()): [
|
|
|
|
|
"view_activity",
|
|
|
|
|
"send_texts",
|
|
|
|
|
"send_emails",
|
|
|
|
|
"manage_users",
|
|
|
|
|
"manage_templates",
|
|
|
|
|
"manage_settings",
|
|
|
|
|
"manage_api_keys",
|
|
|
|
|
]
|
|
|
|
|
}
|
2019-12-17 10:54:22 +00:00
|
|
|
|
|
|
|
|
if services is None:
|
|
|
|
|
services = [str(service_id) for service_id in permissions.keys()]
|
|
|
|
|
|
2018-02-19 16:53:29 +00:00
|
|
|
return {
|
2023-08-25 09:12:23 -07:00
|
|
|
"id": id_,
|
|
|
|
|
"name": name,
|
|
|
|
|
"email_address": email_address,
|
|
|
|
|
"mobile_number": mobile_number,
|
|
|
|
|
"password_changed_at": password_changed_at,
|
|
|
|
|
"permissions": permissions,
|
|
|
|
|
"auth_type": auth_type,
|
|
|
|
|
"failed_login_count": failed_login_count,
|
|
|
|
|
"logged_in_at": logged_in_at
|
|
|
|
|
or datetime.utcnow().strftime("%Y-%m-%d %H:%M:%S.%f"),
|
|
|
|
|
"state": state,
|
|
|
|
|
"platform_admin": platform_admin,
|
|
|
|
|
"current_session_id": current_session_id,
|
|
|
|
|
"organizations": organizations or [],
|
|
|
|
|
"services": services,
|
2018-02-19 16:53:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def invited_user(
|
2023-08-25 09:12:23 -07:00
|
|
|
_id="1234",
|
2018-02-19 16:53:29 +00:00
|
|
|
service=None,
|
2023-08-25 09:12:23 -07:00
|
|
|
from_user="1234",
|
|
|
|
|
email_address="testinviteduser@gsa.gov",
|
2018-02-19 16:53:29 +00:00
|
|
|
permissions=None,
|
2023-08-25 09:12:23 -07:00
|
|
|
status="pending",
|
2019-11-01 10:43:01 +00:00
|
|
|
created_at=None,
|
2023-08-25 09:12:23 -07:00
|
|
|
auth_type="sms_auth",
|
|
|
|
|
organization=None,
|
2018-02-19 16:53:29 +00:00
|
|
|
):
|
|
|
|
|
data = {
|
2023-08-25 09:12:23 -07:00
|
|
|
"id": _id,
|
|
|
|
|
"from_user": from_user,
|
|
|
|
|
"email_address": email_address,
|
|
|
|
|
"status": status,
|
|
|
|
|
"created_at": created_at or datetime.utcnow(),
|
|
|
|
|
"auth_type": auth_type,
|
2018-02-19 16:53:29 +00:00
|
|
|
}
|
|
|
|
|
if service:
|
2023-08-25 09:12:23 -07:00
|
|
|
data["service"] = service
|
2018-02-19 16:53:29 +00:00
|
|
|
if permissions:
|
2023-08-25 09:12:23 -07:00
|
|
|
data["permissions"] = permissions
|
2023-07-12 12:09:44 -04:00
|
|
|
if organization:
|
2023-08-25 09:12:23 -07:00
|
|
|
data["organization"] = organization
|
2018-02-19 16:53:29 +00:00
|
|
|
|
Make user API client return JSON, not a model
The data flow of other bits of our application looks like this:
```
API (returns JSON)
⬇
API client (returns a built in type, usually `dict`)
⬇
Model (returns an instance, eg of type `Service`)
⬇
View (returns HTML)
```
The user API client was architected weirdly, in that it returned a model
directly, like this:
```
API (returns JSON)
⬇
API client (returns a model, of type `User`, `InvitedUser`, etc)
⬇
View (returns HTML)
```
This mixing of different layers of the application is bad because it
makes it hard to write model code that doesn’t have circular
dependencies. As our application gets more complicated we will be
relying more on models to manage this complexity, so we should make it
easy, not hard to write them.
It also means that most of our mocking was of the User model, not just
the underlying JSON. So it would have been easy to introduce subtle bugs
to the user model, because it wasn’t being comprehensively tested. A lot
of the changed lines of code in this commit mean changing the tests to
mock only the JSON, which means that the model layer gets implicitly
tested.
For those reasons this commit changes the user API client to return
JSON, not an instance of `User` or other models.
2019-05-23 15:27:35 +01:00
|
|
|
return data
|
2018-02-19 16:53:29 +00:00
|
|
|
|
|
|
|
|
|
2016-06-01 16:07:43 +01:00
|
|
|
def service_json(
|
2023-08-25 09:12:23 -07:00
|
|
|
id_="1234",
|
|
|
|
|
name="Test Service",
|
2016-10-26 18:37:26 +01:00
|
|
|
users=None,
|
2016-08-11 12:32:38 +01:00
|
|
|
message_limit=1000,
|
2016-11-08 13:17:08 +00:00
|
|
|
active=True,
|
2016-08-11 12:32:38 +01:00
|
|
|
restricted=True,
|
|
|
|
|
email_from=None,
|
|
|
|
|
reply_to_email_address=None,
|
2023-08-25 09:12:23 -07:00
|
|
|
sms_sender="GOVUK",
|
2016-08-08 10:28:40 +01:00
|
|
|
research_mode=False,
|
2018-02-07 10:30:49 +00:00
|
|
|
email_branding=None,
|
2023-08-25 09:12:23 -07:00
|
|
|
branding="govuk",
|
2017-03-02 15:56:28 +00:00
|
|
|
created_at=None,
|
2017-06-21 12:15:53 +01:00
|
|
|
inbound_api=None,
|
2017-12-04 15:07:11 +00:00
|
|
|
service_callback_api=None,
|
2017-11-01 15:36:27 +00:00
|
|
|
permissions=None,
|
2023-08-25 09:12:23 -07:00
|
|
|
organization_type="federal",
|
2017-11-07 11:08:26 +00:00
|
|
|
prefix_sms=True,
|
2018-06-05 10:37:41 +01:00
|
|
|
contact_link=None,
|
2023-07-12 12:09:44 -04:00
|
|
|
organization_id=None,
|
2020-10-21 14:30:35 +01:00
|
|
|
rate_limit=3000,
|
2021-01-15 13:36:12 +00:00
|
|
|
notes=None,
|
2021-01-26 10:41:22 +00:00
|
|
|
billing_contact_email_addresses=None,
|
|
|
|
|
billing_contact_names=None,
|
2021-01-25 12:54:23 +00:00
|
|
|
billing_reference=None,
|
2021-02-15 21:02:37 +00:00
|
|
|
purchase_order_number=None,
|
2016-08-11 12:32:38 +01:00
|
|
|
):
|
2016-10-26 18:37:26 +01:00
|
|
|
if users is None:
|
|
|
|
|
users = []
|
2017-06-05 14:48:24 +01:00
|
|
|
if permissions is None:
|
2023-08-25 09:12:23 -07:00
|
|
|
permissions = ["email", "sms"]
|
2020-01-07 11:44:35 +00:00
|
|
|
if service_callback_api is None:
|
|
|
|
|
service_callback_api = []
|
2017-06-21 12:15:53 +01:00
|
|
|
if inbound_api is None:
|
|
|
|
|
inbound_api = []
|
2016-01-15 15:15:35 +00:00
|
|
|
return {
|
2023-08-25 09:12:23 -07:00
|
|
|
"id": id_,
|
|
|
|
|
"name": name,
|
|
|
|
|
"users": users,
|
|
|
|
|
"message_limit": message_limit,
|
|
|
|
|
"rate_limit": rate_limit,
|
|
|
|
|
"active": active,
|
|
|
|
|
"restricted": restricted,
|
|
|
|
|
"email_from": email_from,
|
|
|
|
|
"reply_to_email_address": reply_to_email_address,
|
|
|
|
|
"sms_sender": sms_sender,
|
|
|
|
|
"research_mode": research_mode,
|
|
|
|
|
"organization_type": organization_type,
|
|
|
|
|
"email_branding": email_branding,
|
|
|
|
|
"branding": branding,
|
|
|
|
|
"created_at": created_at or str(datetime.utcnow()),
|
|
|
|
|
"permissions": permissions,
|
|
|
|
|
"inbound_api": inbound_api,
|
|
|
|
|
"service_callback_api": service_callback_api,
|
|
|
|
|
"prefix_sms": prefix_sms,
|
|
|
|
|
"contact_link": contact_link,
|
|
|
|
|
"volume_email": 111111,
|
|
|
|
|
"volume_sms": 222222,
|
|
|
|
|
"consent_to_research": True,
|
|
|
|
|
"count_as_live": True,
|
|
|
|
|
"organization": organization_id,
|
|
|
|
|
"notes": notes,
|
|
|
|
|
"billing_contact_email_addresses": billing_contact_email_addresses,
|
|
|
|
|
"billing_contact_names": billing_contact_names,
|
|
|
|
|
"billing_reference": billing_reference,
|
|
|
|
|
"purchase_order_number": purchase_order_number,
|
2016-01-15 15:15:35 +00:00
|
|
|
}
|
|
|
|
|
|
2016-01-18 17:35:28 +00:00
|
|
|
|
2023-07-12 12:09:44 -04:00
|
|
|
def organization_json(
|
2023-08-25 09:12:23 -07:00
|
|
|
id_="1234",
|
2019-04-04 11:12:53 +01:00
|
|
|
name=False,
|
2018-02-19 16:53:29 +00:00
|
|
|
users=None,
|
|
|
|
|
active=True,
|
|
|
|
|
created_at=None,
|
2019-02-19 17:26:16 +00:00
|
|
|
services=None,
|
|
|
|
|
email_branding_id=None,
|
|
|
|
|
domains=None,
|
2019-04-04 11:12:53 +01:00
|
|
|
agreement_signed=False,
|
2019-06-18 14:24:29 +01:00
|
|
|
agreement_signed_version=None,
|
2021-10-11 14:58:28 +01:00
|
|
|
agreement_signed_by_id=None,
|
2019-06-18 14:24:29 +01:00
|
|
|
agreement_signed_on_behalf_of_name=None,
|
|
|
|
|
agreement_signed_on_behalf_of_email_address=None,
|
2023-08-25 09:12:23 -07:00
|
|
|
organization_type="federal",
|
2021-02-05 10:52:08 +00:00
|
|
|
notes=None,
|
2021-02-05 10:57:46 +00:00
|
|
|
billing_contact_email_addresses=None,
|
|
|
|
|
billing_contact_names=None,
|
|
|
|
|
billing_reference=None,
|
2023-08-25 09:12:23 -07:00
|
|
|
purchase_order_number=None,
|
2018-02-19 16:53:29 +00:00
|
|
|
):
|
|
|
|
|
if users is None:
|
|
|
|
|
users = []
|
|
|
|
|
if services is None:
|
|
|
|
|
services = []
|
|
|
|
|
return {
|
2023-08-25 09:12:23 -07:00
|
|
|
"id": id_,
|
|
|
|
|
"name": "Test Organization" if name is False else name,
|
|
|
|
|
"active": active,
|
|
|
|
|
"users": users,
|
|
|
|
|
"created_at": created_at or str(datetime.utcnow()),
|
|
|
|
|
"email_branding_id": email_branding_id,
|
|
|
|
|
"organization_type": organization_type,
|
|
|
|
|
"agreement_signed": agreement_signed,
|
|
|
|
|
"agreement_signed_at": None,
|
|
|
|
|
"agreement_signed_by_id": agreement_signed_by_id,
|
|
|
|
|
"agreement_signed_version": agreement_signed_version,
|
|
|
|
|
"agreement_signed_on_behalf_of_name": agreement_signed_on_behalf_of_name,
|
|
|
|
|
"agreement_signed_on_behalf_of_email_address": agreement_signed_on_behalf_of_email_address,
|
|
|
|
|
"domains": domains or [],
|
|
|
|
|
"count_of_live_services": len(services),
|
|
|
|
|
"notes": notes,
|
|
|
|
|
"billing_contact_email_addresses": billing_contact_email_addresses,
|
|
|
|
|
"billing_contact_names": billing_contact_names,
|
|
|
|
|
"billing_reference": billing_reference,
|
|
|
|
|
"purchase_order_number": purchase_order_number,
|
2018-02-19 16:53:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2023-08-25 09:12:23 -07:00
|
|
|
def template_json(
|
|
|
|
|
service_id,
|
|
|
|
|
id_,
|
|
|
|
|
name="sample template",
|
|
|
|
|
type_=None,
|
|
|
|
|
content=None,
|
|
|
|
|
subject=None,
|
|
|
|
|
version=1,
|
|
|
|
|
archived=False,
|
|
|
|
|
process_type="normal",
|
|
|
|
|
redact_personalisation=None,
|
|
|
|
|
reply_to=None,
|
|
|
|
|
reply_to_text=None,
|
|
|
|
|
folder=None,
|
|
|
|
|
):
|
2016-04-14 12:00:55 +01:00
|
|
|
template = {
|
2023-08-25 09:12:23 -07:00
|
|
|
"id": id_,
|
|
|
|
|
"name": name,
|
|
|
|
|
"template_type": type_ or "sms",
|
|
|
|
|
"content": content,
|
|
|
|
|
"service": service_id,
|
|
|
|
|
"version": version,
|
|
|
|
|
"updated_at": datetime.utcnow().strftime("%Y-%m-%d %H:%M:%S.%f"),
|
|
|
|
|
"archived": archived,
|
|
|
|
|
"process_type": process_type,
|
|
|
|
|
"reply_to": reply_to,
|
|
|
|
|
"reply_to_text": reply_to_text,
|
|
|
|
|
"folder": folder,
|
2016-01-19 15:54:12 +00:00
|
|
|
}
|
2017-06-24 17:29:28 +01:00
|
|
|
if content is None:
|
2023-08-25 09:12:23 -07:00
|
|
|
template["content"] = "template content"
|
|
|
|
|
if subject is None and type_ != "sms":
|
|
|
|
|
template["subject"] = "template subject"
|
2016-04-14 12:00:55 +01:00
|
|
|
if subject is not None:
|
2023-08-25 09:12:23 -07:00
|
|
|
template["subject"] = subject
|
2017-06-28 15:26:09 +01:00
|
|
|
if redact_personalisation is not None:
|
2023-08-25 09:12:23 -07:00
|
|
|
template["redact_personalisation"] = redact_personalisation
|
2016-04-14 12:00:55 +01:00
|
|
|
return template
|
2016-01-19 15:54:12 +00:00
|
|
|
|
|
|
|
|
|
2023-08-25 09:12:23 -07:00
|
|
|
def template_version_json(
|
|
|
|
|
service_id, id_, created_by, version=1, created_at=None, **kwargs
|
|
|
|
|
):
|
2016-05-11 11:20:45 +01:00
|
|
|
template = template_json(service_id, id_, **kwargs)
|
2023-08-25 09:12:23 -07:00
|
|
|
template["created_by"] = created_by_json(
|
|
|
|
|
created_by["id"],
|
|
|
|
|
created_by["name"],
|
|
|
|
|
created_by["email_address"],
|
2016-05-24 12:34:29 +01:00
|
|
|
)
|
2016-05-11 11:20:45 +01:00
|
|
|
if created_at is None:
|
2023-08-25 09:12:23 -07:00
|
|
|
created_at = datetime.utcnow().strftime("%Y-%m-%d %H:%M:%S.%f")
|
|
|
|
|
template["created_at"] = created_at
|
|
|
|
|
template["version"] = version
|
2016-05-11 11:20:45 +01:00
|
|
|
return template
|
|
|
|
|
|
|
|
|
|
|
2016-01-21 12:28:05 +00:00
|
|
|
def api_key_json(id_, name, expiry_date=None):
|
2023-08-25 09:12:23 -07:00
|
|
|
return {"id": id_, "name": name, "expiry_date": expiry_date}
|
2016-01-21 12:28:05 +00:00
|
|
|
|
2016-02-26 15:33:17 +00:00
|
|
|
|
2023-08-25 09:12:23 -07:00
|
|
|
def invite_json(
|
|
|
|
|
id_,
|
|
|
|
|
from_user,
|
|
|
|
|
service_id,
|
|
|
|
|
email_address,
|
|
|
|
|
permissions,
|
|
|
|
|
created_at,
|
|
|
|
|
status,
|
|
|
|
|
auth_type,
|
|
|
|
|
folder_permissions,
|
|
|
|
|
):
|
2017-11-13 13:39:31 +00:00
|
|
|
return {
|
2023-08-25 09:12:23 -07:00
|
|
|
"id": id_,
|
|
|
|
|
"from_user": from_user,
|
|
|
|
|
"service": service_id,
|
|
|
|
|
"email_address": email_address,
|
|
|
|
|
"status": status,
|
|
|
|
|
"permissions": permissions,
|
|
|
|
|
"created_at": created_at,
|
|
|
|
|
"auth_type": auth_type,
|
|
|
|
|
"folder_permissions": folder_permissions,
|
2017-11-13 13:39:31 +00:00
|
|
|
}
|
2016-02-26 15:33:17 +00:00
|
|
|
|
|
|
|
|
|
2018-02-19 16:53:29 +00:00
|
|
|
def org_invite_json(id_, invited_by, org_id, email_address, created_at, status):
|
|
|
|
|
return {
|
2023-08-25 09:12:23 -07:00
|
|
|
"id": id_,
|
|
|
|
|
"invited_by": invited_by,
|
|
|
|
|
"organization": org_id,
|
|
|
|
|
"email_address": email_address,
|
|
|
|
|
"status": status,
|
|
|
|
|
"created_at": created_at,
|
2018-02-19 16:53:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2022-01-06 16:18:58 +00:00
|
|
|
def inbound_sms_json():
|
|
|
|
|
return {
|
2023-08-25 09:12:23 -07:00
|
|
|
"has_next": True,
|
|
|
|
|
"data": [
|
|
|
|
|
{
|
|
|
|
|
"user_number": phone_number,
|
|
|
|
|
"notify_number": "+12028675309",
|
|
|
|
|
"content": f"message-{index + 1}",
|
|
|
|
|
"created_at": (
|
|
|
|
|
datetime.utcnow() - timedelta(minutes=60 * hours_ago, seconds=index)
|
|
|
|
|
).isoformat(),
|
|
|
|
|
"id": sample_uuid(),
|
|
|
|
|
}
|
|
|
|
|
for index, hours_ago, phone_number in (
|
|
|
|
|
(0, 1, "+12028675300"),
|
|
|
|
|
(1, 1, "2028675300"),
|
|
|
|
|
(2, 1, "2028675300"),
|
|
|
|
|
(3, 3, "2028675302"),
|
|
|
|
|
(4, 5, "+33(0)1 12345678"), # France
|
|
|
|
|
(5, 7, "+1-202-555-0104"), # USA in one format
|
|
|
|
|
(6, 9, "+12025550104"), # USA in another format
|
|
|
|
|
(7, 9, "+68212345"), # Cook Islands
|
|
|
|
|
)
|
|
|
|
|
],
|
2022-01-06 16:18:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2023-08-25 09:12:23 -07:00
|
|
|
TEST_USER_EMAIL = "test@user.gsa.gov"
|
2016-01-15 15:15:35 +00:00
|
|
|
|
2016-01-18 17:35:28 +00:00
|
|
|
|
2019-11-01 10:43:01 +00:00
|
|
|
def create_test_api_user(state, permissions=None):
|
2023-08-25 09:12:23 -07:00
|
|
|
user_data = {
|
|
|
|
|
"id": 1,
|
|
|
|
|
"name": "Test User",
|
|
|
|
|
"password": "somepassword",
|
|
|
|
|
"email_address": TEST_USER_EMAIL,
|
|
|
|
|
"mobile_number": "+12021234123",
|
|
|
|
|
"state": state,
|
|
|
|
|
"permissions": permissions or {},
|
|
|
|
|
}
|
Make user API client return JSON, not a model
The data flow of other bits of our application looks like this:
```
API (returns JSON)
⬇
API client (returns a built in type, usually `dict`)
⬇
Model (returns an instance, eg of type `Service`)
⬇
View (returns HTML)
```
The user API client was architected weirdly, in that it returned a model
directly, like this:
```
API (returns JSON)
⬇
API client (returns a model, of type `User`, `InvitedUser`, etc)
⬇
View (returns HTML)
```
This mixing of different layers of the application is bad because it
makes it hard to write model code that doesn’t have circular
dependencies. As our application gets more complicated we will be
relying more on models to manage this complexity, so we should make it
easy, not hard to write them.
It also means that most of our mocking was of the User model, not just
the underlying JSON. So it would have been easy to introduce subtle bugs
to the user model, because it wasn’t being comprehensively tested. A lot
of the changed lines of code in this commit mean changing the tests to
mock only the JSON, which means that the model layer gets implicitly
tested.
For those reasons this commit changes the user API client to return
JSON, not an instance of `User` or other models.
2019-05-23 15:27:35 +01:00
|
|
|
return user_data
|
2016-01-19 22:47:42 +00:00
|
|
|
|
|
|
|
|
|
2016-08-26 09:29:34 +01:00
|
|
|
def job_json(
|
|
|
|
|
service_id,
|
|
|
|
|
created_by,
|
|
|
|
|
job_id=None,
|
|
|
|
|
template_id=None,
|
|
|
|
|
template_version=1,
|
2023-08-25 09:12:23 -07:00
|
|
|
template_type="sms",
|
|
|
|
|
template_name="Example template",
|
2016-08-26 09:29:34 +01:00
|
|
|
created_at=None,
|
2023-08-25 09:12:23 -07:00
|
|
|
bucket_name="",
|
2016-08-26 09:29:34 +01:00
|
|
|
original_file_name="thisisatest.csv",
|
|
|
|
|
notification_count=1,
|
|
|
|
|
notifications_sent=1,
|
|
|
|
|
notifications_requested=1,
|
2023-08-25 09:12:23 -07:00
|
|
|
job_status="finished",
|
|
|
|
|
scheduled_for="",
|
2020-01-16 16:58:26 +00:00
|
|
|
processing_started=None,
|
2016-08-26 09:29:34 +01:00
|
|
|
):
|
2016-05-24 12:34:29 +01:00
|
|
|
if job_id is None:
|
|
|
|
|
job_id = str(generate_uuid())
|
|
|
|
|
if template_id is None:
|
2017-06-24 17:12:45 +01:00
|
|
|
template_id = "5d729fbd-239c-44ab-b498-75a985f3198f"
|
2016-05-24 12:34:29 +01:00
|
|
|
if created_at is None:
|
2023-08-25 09:12:23 -07:00
|
|
|
created_at = str(datetime.now(timezone.utc).strftime("%Y-%m-%dT%H:%M:%S.%f%z"))
|
2016-01-29 15:35:35 +00:00
|
|
|
data = {
|
2023-08-25 09:12:23 -07:00
|
|
|
"id": job_id,
|
|
|
|
|
"service": service_id,
|
|
|
|
|
"template": template_id,
|
|
|
|
|
"template_name": template_name,
|
|
|
|
|
"template_version": template_version,
|
|
|
|
|
"template_type": template_type,
|
|
|
|
|
"original_file_name": original_file_name,
|
|
|
|
|
"created_at": created_at,
|
|
|
|
|
"notification_count": notification_count,
|
|
|
|
|
"notifications_sent": notifications_sent,
|
|
|
|
|
"notifications_requested": notifications_requested,
|
|
|
|
|
"job_status": job_status,
|
|
|
|
|
"statistics": [
|
2020-01-08 12:23:09 +00:00
|
|
|
{
|
2023-08-25 09:12:23 -07:00
|
|
|
"status": "blah",
|
|
|
|
|
"count": notifications_requested,
|
2020-01-08 12:23:09 +00:00
|
|
|
}
|
|
|
|
|
],
|
2023-08-25 09:12:23 -07:00
|
|
|
"created_by": created_by_json(
|
|
|
|
|
created_by["id"],
|
|
|
|
|
created_by["name"],
|
|
|
|
|
created_by["email_address"],
|
2016-08-09 10:39:57 +01:00
|
|
|
),
|
|
|
|
|
}
|
2020-01-16 16:58:26 +00:00
|
|
|
if scheduled_for:
|
|
|
|
|
data.update(scheduled_for=scheduled_for)
|
|
|
|
|
if processing_started:
|
|
|
|
|
data.update(processing_started=processing_started)
|
2016-01-29 15:35:35 +00:00
|
|
|
return data
|
2016-03-02 16:15:15 +00:00
|
|
|
|
|
|
|
|
|
2016-07-11 10:49:01 +01:00
|
|
|
def notification_json(
|
|
|
|
|
service_id,
|
|
|
|
|
job=None,
|
|
|
|
|
template=None,
|
2017-10-02 12:34:10 +01:00
|
|
|
to=None,
|
2016-07-11 10:49:01 +01:00
|
|
|
status=None,
|
|
|
|
|
sent_at=None,
|
|
|
|
|
job_row_number=None,
|
|
|
|
|
created_at=None,
|
|
|
|
|
updated_at=None,
|
|
|
|
|
with_links=False,
|
2017-06-24 17:12:45 +01:00
|
|
|
rows=5,
|
|
|
|
|
personalisation=None,
|
2017-07-13 13:05:41 +01:00
|
|
|
template_type=None,
|
2018-03-19 16:12:14 +00:00
|
|
|
reply_to_text=None,
|
|
|
|
|
client_reference=None,
|
2018-09-06 14:41:55 +01:00
|
|
|
created_by_name=None,
|
2016-07-11 10:49:01 +01:00
|
|
|
):
|
2016-03-16 16:57:10 +00:00
|
|
|
if template is None:
|
2017-07-13 13:05:41 +01:00
|
|
|
template = template_json(service_id, str(generate_uuid()), type_=template_type)
|
2017-10-02 12:34:10 +01:00
|
|
|
if to is None:
|
2023-08-25 09:12:23 -07:00
|
|
|
if template_type == "email":
|
|
|
|
|
to = "example@gsa.gov"
|
2017-10-02 12:34:10 +01:00
|
|
|
else:
|
2023-08-25 09:12:23 -07:00
|
|
|
to = "2021234567"
|
2016-03-16 16:57:10 +00:00
|
|
|
if sent_at is None:
|
2016-05-11 11:20:45 +01:00
|
|
|
sent_at = str(datetime.utcnow().time())
|
2016-03-16 16:57:10 +00:00
|
|
|
if created_at is None:
|
2016-09-21 10:13:25 +01:00
|
|
|
created_at = datetime.now(timezone.utc).isoformat()
|
2016-05-10 11:36:49 +01:00
|
|
|
if updated_at is None:
|
2016-05-11 11:20:45 +01:00
|
|
|
updated_at = str((datetime.utcnow() + timedelta(minutes=1)).time())
|
2016-07-11 10:49:01 +01:00
|
|
|
if status is None:
|
2023-08-25 09:12:23 -07:00
|
|
|
status = "delivered"
|
2016-03-16 16:57:10 +00:00
|
|
|
links = {}
|
2017-01-13 11:37:14 +00:00
|
|
|
|
2016-03-16 16:57:10 +00:00
|
|
|
if with_links:
|
|
|
|
|
links = {
|
2023-08-25 09:12:23 -07:00
|
|
|
"prev": "/service/{}/notifications?page=0".format(service_id),
|
|
|
|
|
"next": "/service/{}/notifications?page=1".format(service_id),
|
|
|
|
|
"last": "/service/{}/notifications?page=2".format(service_id),
|
2016-03-16 16:57:10 +00:00
|
|
|
}
|
2017-01-13 11:37:14 +00:00
|
|
|
|
2016-08-22 16:25:35 +01:00
|
|
|
job_payload = None
|
|
|
|
|
if job:
|
2023-08-25 09:12:23 -07:00
|
|
|
job_payload = {"id": job["id"], "original_file_name": job["original_file_name"]}
|
2016-08-22 16:25:35 +01:00
|
|
|
|
2016-03-02 16:15:15 +00:00
|
|
|
data = {
|
2023-08-25 09:12:23 -07:00
|
|
|
"notifications": [
|
|
|
|
|
{
|
|
|
|
|
"id": sample_uuid(),
|
|
|
|
|
"to": to,
|
|
|
|
|
"template": template,
|
|
|
|
|
"job": job_payload,
|
|
|
|
|
"sent_at": sent_at,
|
|
|
|
|
"status": status,
|
|
|
|
|
"created_at": created_at,
|
|
|
|
|
"created_by": None,
|
|
|
|
|
"updated_at": updated_at,
|
|
|
|
|
"job_row_number": job_row_number,
|
|
|
|
|
"service": service_id,
|
|
|
|
|
"template_version": template["version"],
|
|
|
|
|
"personalisation": personalisation or {},
|
|
|
|
|
"notification_type": template_type,
|
|
|
|
|
"reply_to_text": reply_to_text,
|
|
|
|
|
"client_reference": client_reference,
|
2023-09-22 10:05:50 -07:00
|
|
|
"created_by_name": None,
|
2023-08-25 09:12:23 -07:00
|
|
|
}
|
|
|
|
|
for i in range(rows)
|
|
|
|
|
],
|
|
|
|
|
"total": rows,
|
|
|
|
|
"page_size": 50,
|
|
|
|
|
"links": links,
|
2016-03-02 16:15:15 +00:00
|
|
|
}
|
|
|
|
|
return data
|
2016-03-09 12:10:50 +00:00
|
|
|
|
|
|
|
|
|
2016-08-22 16:25:35 +01:00
|
|
|
def single_notification_json(
|
|
|
|
|
service_id,
|
|
|
|
|
job=None,
|
|
|
|
|
template=None,
|
|
|
|
|
status=None,
|
|
|
|
|
sent_at=None,
|
|
|
|
|
created_at=None,
|
2017-09-20 16:02:15 +01:00
|
|
|
updated_at=None,
|
2023-08-25 09:12:23 -07:00
|
|
|
notification_type="sms",
|
2016-08-22 16:25:35 +01:00
|
|
|
):
|
|
|
|
|
if template is None:
|
|
|
|
|
template = template_json(service_id, str(generate_uuid()))
|
|
|
|
|
if sent_at is None:
|
2016-08-24 12:09:38 +01:00
|
|
|
sent_at = str(datetime.utcnow())
|
2016-08-22 16:25:35 +01:00
|
|
|
if created_at is None:
|
2016-08-24 12:09:38 +01:00
|
|
|
created_at = str(datetime.utcnow())
|
2016-08-22 16:25:35 +01:00
|
|
|
if updated_at is None:
|
2016-08-24 12:09:38 +01:00
|
|
|
updated_at = str(datetime.utcnow() + timedelta(minutes=1))
|
2016-08-22 16:25:35 +01:00
|
|
|
if status is None:
|
2023-08-25 09:12:23 -07:00
|
|
|
status = "delivered"
|
2016-08-22 16:25:35 +01:00
|
|
|
job_payload = None
|
|
|
|
|
if job:
|
2023-08-25 09:12:23 -07:00
|
|
|
job_payload = {"id": job["id"], "original_file_name": job["original_file_name"]}
|
2016-08-22 16:25:35 +01:00
|
|
|
|
|
|
|
|
data = {
|
2023-08-25 09:12:23 -07:00
|
|
|
"sent_at": sent_at,
|
|
|
|
|
"to": "2021234567",
|
|
|
|
|
"billable_units": 1,
|
|
|
|
|
"status": status,
|
|
|
|
|
"created_at": created_at,
|
|
|
|
|
"reference": None,
|
|
|
|
|
"updated_at": updated_at,
|
|
|
|
|
"template_version": 5,
|
|
|
|
|
"service": service_id,
|
|
|
|
|
"id": "29441662-17ce-4ffe-9502-fcaed73b2826",
|
|
|
|
|
"template": template,
|
|
|
|
|
"job_row_number": 0,
|
|
|
|
|
"notification_type": notification_type,
|
|
|
|
|
"api_key": None,
|
|
|
|
|
"job": job_payload,
|
|
|
|
|
"sent_by": "mmg",
|
2016-08-22 16:25:35 +01:00
|
|
|
}
|
|
|
|
|
return data
|
|
|
|
|
|
|
|
|
|
|
2023-08-25 09:12:23 -07:00
|
|
|
def validate_route_permission(
|
|
|
|
|
mocker,
|
|
|
|
|
notify_admin,
|
|
|
|
|
method,
|
|
|
|
|
response_code,
|
|
|
|
|
route,
|
|
|
|
|
permissions,
|
|
|
|
|
usr,
|
|
|
|
|
service,
|
|
|
|
|
session=None,
|
|
|
|
|
):
|
|
|
|
|
usr["permissions"][str(service["id"])] = permissions
|
|
|
|
|
usr["services"] = [service["id"]]
|
|
|
|
|
mocker.patch("app.user_api_client.check_verify_code", return_value=(True, ""))
|
|
|
|
|
mocker.patch("app.service_api_client.get_services", return_value={"data": []})
|
|
|
|
|
mocker.patch("app.service_api_client.update_service", return_value=service)
|
2016-03-09 12:10:50 +00:00
|
|
|
mocker.patch(
|
2023-08-25 09:12:23 -07:00
|
|
|
"app.service_api_client.update_service_with_properties", return_value=service
|
|
|
|
|
)
|
|
|
|
|
mocker.patch("app.user_api_client.get_user", return_value=usr)
|
|
|
|
|
mocker.patch("app.user_api_client.get_user_by_email", return_value=usr)
|
|
|
|
|
mocker.patch("app.service_api_client.get_service", return_value={"data": service})
|
|
|
|
|
mocker.patch("app.models.user.Users.client_method", return_value=[usr])
|
|
|
|
|
mocker.patch("app.job_api_client.has_jobs", return_value=False)
|
2021-05-12 14:57:21 +01:00
|
|
|
with notify_admin.test_request_context():
|
|
|
|
|
with notify_admin.test_client() as client:
|
2016-03-09 12:10:50 +00:00
|
|
|
client.login(usr)
|
2020-05-22 12:25:44 +01:00
|
|
|
if session:
|
|
|
|
|
with client.session_transaction() as session_:
|
|
|
|
|
for k, v in session.items():
|
|
|
|
|
session_[k] = v
|
2016-03-09 12:10:50 +00:00
|
|
|
resp = None
|
2023-08-25 09:12:23 -07:00
|
|
|
if method == "GET":
|
2016-03-09 12:10:50 +00:00
|
|
|
resp = client.get(route)
|
2023-08-25 09:12:23 -07:00
|
|
|
elif method == "POST":
|
2016-03-09 12:10:50 +00:00
|
|
|
resp = client.post(route)
|
|
|
|
|
else:
|
|
|
|
|
pytest.fail("Invalid method call {}".format(method))
|
|
|
|
|
if resp.status_code != response_code:
|
|
|
|
|
pytest.fail("Invalid permissions set for endpoint {}".format(route))
|
2016-03-09 13:51:56 +00:00
|
|
|
return resp
|
2017-07-03 17:21:44 +01:00
|
|
|
|
|
|
|
|
|
2023-08-25 09:12:23 -07:00
|
|
|
def validate_route_permission_with_client(
|
|
|
|
|
mocker, client, method, response_code, route, permissions, usr, service
|
|
|
|
|
):
|
|
|
|
|
usr["permissions"][str(service["id"])] = permissions
|
|
|
|
|
mocker.patch("app.user_api_client.check_verify_code", return_value=(True, ""))
|
|
|
|
|
mocker.patch("app.service_api_client.get_services", return_value={"data": []})
|
|
|
|
|
mocker.patch("app.service_api_client.update_service", return_value=service)
|
2017-07-03 17:21:44 +01:00
|
|
|
mocker.patch(
|
2023-08-25 09:12:23 -07:00
|
|
|
"app.service_api_client.update_service_with_properties", return_value=service
|
|
|
|
|
)
|
|
|
|
|
mocker.patch("app.user_api_client.get_user", return_value=usr)
|
|
|
|
|
mocker.patch("app.user_api_client.get_user_by_email", return_value=usr)
|
|
|
|
|
mocker.patch("app.service_api_client.get_service", return_value={"data": service})
|
|
|
|
|
mocker.patch("app.user_api_client.get_users_for_service", return_value=[usr])
|
|
|
|
|
mocker.patch("app.job_api_client.has_jobs", return_value=False)
|
2017-07-03 17:21:44 +01:00
|
|
|
client.login(usr)
|
|
|
|
|
resp = None
|
2023-08-25 09:12:23 -07:00
|
|
|
if method == "GET":
|
2022-01-04 18:33:23 +00:00
|
|
|
resp = client.get_response_from_url(route, _expected_status=response_code)
|
2023-08-25 09:12:23 -07:00
|
|
|
elif method == "POST":
|
2022-01-04 18:33:23 +00:00
|
|
|
resp = client.post_response_from_url(route, _expected_status=response_code)
|
2017-07-03 17:21:44 +01:00
|
|
|
else:
|
|
|
|
|
pytest.fail("Invalid method call {}".format(method))
|
|
|
|
|
if resp.status_code != response_code:
|
|
|
|
|
pytest.fail("Invalid permissions set for endpoint {}".format(route))
|
|
|
|
|
return resp
|
2019-07-15 13:52:42 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
def assert_url_expected(actual, expected):
|
|
|
|
|
actual_parts = urlparse(actual)
|
|
|
|
|
expected_parts = urlparse(expected)
|
|
|
|
|
for attribute in actual_parts._fields:
|
2023-08-25 09:12:23 -07:00
|
|
|
if attribute == "query":
|
2019-07-15 13:52:42 +01:00
|
|
|
# query string ordering can be non-deterministic
|
|
|
|
|
# so we need to parse it first, which gives us a
|
|
|
|
|
# dictionary of keys and values, not a
|
|
|
|
|
# serialized string
|
2023-08-25 09:12:23 -07:00
|
|
|
assert parse_qs(expected_parts.query) == parse_qs(actual_parts.query)
|
2019-07-15 13:52:42 +01:00
|
|
|
else:
|
2023-08-25 09:12:23 -07:00
|
|
|
assert getattr(actual_parts, attribute) == getattr(
|
2019-07-15 13:52:42 +01:00
|
|
|
expected_parts, attribute
|
2023-08-25 09:12:23 -07:00
|
|
|
), ("Expected redirect: {}\n" "Actual redirect: {}").format(
|
|
|
|
|
expected, actual
|
|
|
|
|
)
|
2020-02-17 15:36:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
def find_element_by_tag_and_partial_text(page, tag, string):
|
|
|
|
|
return [e for e in page.find_all(tag) if string in e.text][0]
|