mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-06-10 06:24:45 +02:00
Fix failing test
This commit is contained in:
parent
dc7c782050
commit
0a3c3ec9f5
2 changed files with 25 additions and 9 deletions
|
@ -11,7 +11,7 @@ from registrar.models import Contact, DomainApplication, Domain
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
# nosec because this use of mark_safe does not introduce a cross-site scripting
|
# no sec because this use of mark_safe does not introduce a cross-site scripting
|
||||||
# vulnerability because there is no untrusted content inside. It is
|
# vulnerability because there is no untrusted content inside. It is
|
||||||
# only being used to pass a specific HTML entity into a template.
|
# only being used to pass a specific HTML entity into a template.
|
||||||
REQUIRED_SUFFIX = mark_safe( # nosec
|
REQUIRED_SUFFIX = mark_safe( # nosec
|
||||||
|
@ -145,12 +145,18 @@ class OrganizationContactForm(RegistrarForm):
|
||||||
federal_agency = self.cleaned_data.get("federal_agency", None)
|
federal_agency = self.cleaned_data.get("federal_agency", None)
|
||||||
# need the application object to know if this is federal
|
# need the application object to know if this is federal
|
||||||
if self.application is None:
|
if self.application is None:
|
||||||
# hmm, no saved application object?
|
# hmm, no saved application object?, default require the agency
|
||||||
raise ValueError("Form has no active application object.")
|
if not federal_agency:
|
||||||
|
# no answer was selected
|
||||||
|
raise forms.ValidationError(
|
||||||
|
"Please select your federal agency.", code="required"
|
||||||
|
)
|
||||||
if self.application.is_federal:
|
if self.application.is_federal:
|
||||||
if not federal_agency:
|
if not federal_agency:
|
||||||
# no answer was selected
|
# no answer was selected
|
||||||
raise forms.ValidationError("Please select your federal agency.", code="required")
|
raise forms.ValidationError(
|
||||||
|
"Please select your federal agency.", code="required"
|
||||||
|
)
|
||||||
return federal_agency
|
return federal_agency
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -51,6 +51,8 @@ class TestWithUser(TestCase):
|
||||||
)
|
)
|
||||||
|
|
||||||
def tearDown(self):
|
def tearDown(self):
|
||||||
|
# delete any applications too
|
||||||
|
DomainApplication.objects.all().delete()
|
||||||
self.user.delete()
|
self.user.delete()
|
||||||
|
|
||||||
|
|
||||||
|
@ -103,11 +105,6 @@ class DomainApplicationTests(TestWithUser, WebTest):
|
||||||
self.app.set_user(self.user.username)
|
self.app.set_user(self.user.username)
|
||||||
self.TITLES = ApplicationWizard.TITLES
|
self.TITLES = ApplicationWizard.TITLES
|
||||||
|
|
||||||
def tearDown(self):
|
|
||||||
# delete any applications we made so that users can be deleted
|
|
||||||
DomainApplication.objects.all().delete()
|
|
||||||
super().tearDown()
|
|
||||||
|
|
||||||
def test_application_form_empty_submit(self):
|
def test_application_form_empty_submit(self):
|
||||||
# 302 redirect to the first form
|
# 302 redirect to the first form
|
||||||
page = self.app.get(reverse("application:")).follow()
|
page = self.app.get(reverse("application:")).follow()
|
||||||
|
@ -185,6 +182,10 @@ class DomainApplicationTests(TestWithUser, WebTest):
|
||||||
self.app.set_cookie(settings.SESSION_COOKIE_NAME, session_id)
|
self.app.set_cookie(settings.SESSION_COOKIE_NAME, session_id)
|
||||||
org_contact_page = federal_result.follow()
|
org_contact_page = federal_result.follow()
|
||||||
org_contact_form = org_contact_page.form
|
org_contact_form = org_contact_page.form
|
||||||
|
# federal agency so we have to fill in federal_agency
|
||||||
|
org_contact_form[
|
||||||
|
"organization_contact-federal_agency"
|
||||||
|
] = "General Services Administration"
|
||||||
org_contact_form["organization_contact-organization_name"] = "Testorg"
|
org_contact_form["organization_contact-organization_name"] = "Testorg"
|
||||||
org_contact_form["organization_contact-address_line1"] = "address 1"
|
org_contact_form["organization_contact-address_line1"] = "address 1"
|
||||||
org_contact_form["organization_contact-address_line2"] = "address 2"
|
org_contact_form["organization_contact-address_line2"] = "address 2"
|
||||||
|
@ -220,6 +221,7 @@ class DomainApplicationTests(TestWithUser, WebTest):
|
||||||
|
|
||||||
# ---- AUTHORIZING OFFICIAL PAGE ----
|
# ---- AUTHORIZING OFFICIAL PAGE ----
|
||||||
# Follow the redirect to the next form page
|
# Follow the redirect to the next form page
|
||||||
|
self.app.set_cookie(settings.SESSION_COOKIE_NAME, session_id)
|
||||||
ao_page = org_contact_result.follow()
|
ao_page = org_contact_result.follow()
|
||||||
ao_form = ao_page.form
|
ao_form = ao_page.form
|
||||||
ao_form["authorizing_official-first_name"] = "Testy ATO"
|
ao_form["authorizing_official-first_name"] = "Testy ATO"
|
||||||
|
@ -251,6 +253,7 @@ class DomainApplicationTests(TestWithUser, WebTest):
|
||||||
|
|
||||||
# ---- CURRENT SITES PAGE ----
|
# ---- CURRENT SITES PAGE ----
|
||||||
# Follow the redirect to the next form page
|
# Follow the redirect to the next form page
|
||||||
|
self.app.set_cookie(settings.SESSION_COOKIE_NAME, session_id)
|
||||||
current_sites_page = ao_result.follow()
|
current_sites_page = ao_result.follow()
|
||||||
current_sites_form = current_sites_page.form
|
current_sites_form = current_sites_page.form
|
||||||
current_sites_form["current_sites-current_site"] = "www.city.com"
|
current_sites_form["current_sites-current_site"] = "www.city.com"
|
||||||
|
@ -276,6 +279,7 @@ class DomainApplicationTests(TestWithUser, WebTest):
|
||||||
|
|
||||||
# ---- DOTGOV DOMAIN PAGE ----
|
# ---- DOTGOV DOMAIN PAGE ----
|
||||||
# Follow the redirect to the next form page
|
# Follow the redirect to the next form page
|
||||||
|
self.app.set_cookie(settings.SESSION_COOKIE_NAME, session_id)
|
||||||
dotgov_page = current_sites_result.follow()
|
dotgov_page = current_sites_result.follow()
|
||||||
dotgov_form = dotgov_page.form
|
dotgov_form = dotgov_page.form
|
||||||
dotgov_form["dotgov_domain-requested_domain"] = "city"
|
dotgov_form["dotgov_domain-requested_domain"] = "city"
|
||||||
|
@ -302,6 +306,7 @@ class DomainApplicationTests(TestWithUser, WebTest):
|
||||||
|
|
||||||
# ---- PURPOSE PAGE ----
|
# ---- PURPOSE PAGE ----
|
||||||
# Follow the redirect to the next form page
|
# Follow the redirect to the next form page
|
||||||
|
self.app.set_cookie(settings.SESSION_COOKIE_NAME, session_id)
|
||||||
purpose_page = dotgov_result.follow()
|
purpose_page = dotgov_result.follow()
|
||||||
purpose_form = purpose_page.form
|
purpose_form = purpose_page.form
|
||||||
purpose_form["purpose-purpose"] = "For all kinds of things."
|
purpose_form["purpose-purpose"] = "For all kinds of things."
|
||||||
|
@ -325,6 +330,7 @@ class DomainApplicationTests(TestWithUser, WebTest):
|
||||||
|
|
||||||
# ---- YOUR CONTACT INFO PAGE ----
|
# ---- YOUR CONTACT INFO PAGE ----
|
||||||
# Follow the redirect to the next form page
|
# Follow the redirect to the next form page
|
||||||
|
self.app.set_cookie(settings.SESSION_COOKIE_NAME, session_id)
|
||||||
your_contact_page = purpose_result.follow()
|
your_contact_page = purpose_result.follow()
|
||||||
your_contact_form = your_contact_page.form
|
your_contact_form = your_contact_page.form
|
||||||
|
|
||||||
|
@ -357,6 +363,7 @@ class DomainApplicationTests(TestWithUser, WebTest):
|
||||||
|
|
||||||
# ---- OTHER CONTACTS PAGE ----
|
# ---- OTHER CONTACTS PAGE ----
|
||||||
# Follow the redirect to the next form page
|
# Follow the redirect to the next form page
|
||||||
|
self.app.set_cookie(settings.SESSION_COOKIE_NAME, session_id)
|
||||||
other_contacts_page = your_contact_result.follow()
|
other_contacts_page = your_contact_result.follow()
|
||||||
other_contacts_form = other_contacts_page.form
|
other_contacts_form = other_contacts_page.form
|
||||||
|
|
||||||
|
@ -396,6 +403,7 @@ class DomainApplicationTests(TestWithUser, WebTest):
|
||||||
|
|
||||||
# ---- SECURITY EMAIL PAGE ----
|
# ---- SECURITY EMAIL PAGE ----
|
||||||
# Follow the redirect to the next form page
|
# Follow the redirect to the next form page
|
||||||
|
self.app.set_cookie(settings.SESSION_COOKIE_NAME, session_id)
|
||||||
security_email_page = other_contacts_result.follow()
|
security_email_page = other_contacts_result.follow()
|
||||||
security_email_form = security_email_page.form
|
security_email_form = security_email_page.form
|
||||||
|
|
||||||
|
@ -420,6 +428,7 @@ class DomainApplicationTests(TestWithUser, WebTest):
|
||||||
|
|
||||||
# ---- ANYTHING ELSE PAGE ----
|
# ---- ANYTHING ELSE PAGE ----
|
||||||
# Follow the redirect to the next form page
|
# Follow the redirect to the next form page
|
||||||
|
self.app.set_cookie(settings.SESSION_COOKIE_NAME, session_id)
|
||||||
anything_else_page = security_email_result.follow()
|
anything_else_page = security_email_result.follow()
|
||||||
anything_else_form = anything_else_page.form
|
anything_else_form = anything_else_page.form
|
||||||
|
|
||||||
|
@ -444,6 +453,7 @@ class DomainApplicationTests(TestWithUser, WebTest):
|
||||||
|
|
||||||
# ---- REQUIREMENTS PAGE ----
|
# ---- REQUIREMENTS PAGE ----
|
||||||
# Follow the redirect to the next form page
|
# Follow the redirect to the next form page
|
||||||
|
self.app.set_cookie(settings.SESSION_COOKIE_NAME, session_id)
|
||||||
requirements_page = anything_else_result.follow()
|
requirements_page = anything_else_result.follow()
|
||||||
requirements_form = requirements_page.form
|
requirements_form = requirements_page.form
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue