Update path in URL page

This commit is contained in:
Rebecca Hsieh 2024-01-11 09:45:27 -08:00
parent 28a1e737f5
commit d1db6e2634
No known key found for this signature in database
2 changed files with 15 additions and 15 deletions

View file

@ -76,7 +76,7 @@ urlpatterns = [
), ),
path("health/", views.health), path("health/", views.health),
path("openid/", include("djangooidc.urls")), path("openid/", include("djangooidc.urls")),
path("register/", include((application_urls, APPLICATION_NAMESPACE))), path("request/", include((application_urls, APPLICATION_NAMESPACE))),
path("api/v1/available/", available, name="available"), path("api/v1/available/", available, name="available"),
path("api/v1/get-report/current-federal", get_current_federal, name="get-current-federal"), path("api/v1/get-report/current-federal", get_current_federal, name="get-current-federal"),
path("api/v1/get-report/current-full", get_current_full, name="get-current-full"), path("api/v1/get-report/current-full", get_current_full, name="get-current-full"),

View file

@ -349,7 +349,7 @@ class DomainApplicationTests(TestWithUser, WebTest):
# the post request should return a redirect to the next form in # the post request should return a redirect to the next form in
# the application # the application
self.assertEqual(current_sites_result.status_code, 302) self.assertEqual(current_sites_result.status_code, 302)
self.assertEqual(current_sites_result["Location"], "/register/dotgov_domain/") self.assertEqual(current_sites_result["Location"], "/request/dotgov_domain/")
num_pages_tested += 1 num_pages_tested += 1
# ---- DOTGOV DOMAIN PAGE ---- # ---- DOTGOV DOMAIN PAGE ----
@ -369,7 +369,7 @@ class DomainApplicationTests(TestWithUser, WebTest):
# the post request should return a redirect to the next form in # the post request should return a redirect to the next form in
# the application # the application
self.assertEqual(dotgov_result.status_code, 302) self.assertEqual(dotgov_result.status_code, 302)
self.assertEqual(dotgov_result["Location"], "/register/purpose/") self.assertEqual(dotgov_result["Location"], "/request/purpose/")
num_pages_tested += 1 num_pages_tested += 1
# ---- PURPOSE PAGE ---- # ---- PURPOSE PAGE ----
@ -388,7 +388,7 @@ class DomainApplicationTests(TestWithUser, WebTest):
# the post request should return a redirect to the next form in # the post request should return a redirect to the next form in
# the application # the application
self.assertEqual(purpose_result.status_code, 302) self.assertEqual(purpose_result.status_code, 302)
self.assertEqual(purpose_result["Location"], "/register/your_contact/") self.assertEqual(purpose_result["Location"], "/request/your_contact/")
num_pages_tested += 1 num_pages_tested += 1
# ---- YOUR CONTACT INFO PAGE ---- # ---- YOUR CONTACT INFO PAGE ----
@ -416,7 +416,7 @@ class DomainApplicationTests(TestWithUser, WebTest):
# the post request should return a redirect to the next form in # the post request should return a redirect to the next form in
# the application # the application
self.assertEqual(your_contact_result.status_code, 302) self.assertEqual(your_contact_result.status_code, 302)
self.assertEqual(your_contact_result["Location"], "/register/other_contacts/") self.assertEqual(your_contact_result["Location"], "/request/other_contacts/")
num_pages_tested += 1 num_pages_tested += 1
# ---- OTHER CONTACTS PAGE ---- # ---- OTHER CONTACTS PAGE ----
@ -454,7 +454,7 @@ class DomainApplicationTests(TestWithUser, WebTest):
# the post request should return a redirect to the next form in # the post request should return a redirect to the next form in
# the application # the application
self.assertEqual(other_contacts_result.status_code, 302) self.assertEqual(other_contacts_result.status_code, 302)
self.assertEqual(other_contacts_result["Location"], "/register/anything_else/") self.assertEqual(other_contacts_result["Location"], "/request/anything_else/")
num_pages_tested += 1 num_pages_tested += 1
# ---- ANYTHING ELSE PAGE ---- # ---- ANYTHING ELSE PAGE ----
@ -474,7 +474,7 @@ class DomainApplicationTests(TestWithUser, WebTest):
# the post request should return a redirect to the next form in # the post request should return a redirect to the next form in
# the application # the application
self.assertEqual(anything_else_result.status_code, 302) self.assertEqual(anything_else_result.status_code, 302)
self.assertEqual(anything_else_result["Location"], "/register/requirements/") self.assertEqual(anything_else_result["Location"], "/request/requirements/")
num_pages_tested += 1 num_pages_tested += 1
# ---- REQUIREMENTS PAGE ---- # ---- REQUIREMENTS PAGE ----
@ -494,7 +494,7 @@ class DomainApplicationTests(TestWithUser, WebTest):
# the post request should return a redirect to the next form in # the post request should return a redirect to the next form in
# the application # the application
self.assertEqual(requirements_result.status_code, 302) self.assertEqual(requirements_result.status_code, 302)
self.assertEqual(requirements_result["Location"], "/register/review/") self.assertEqual(requirements_result["Location"], "/request/review/")
num_pages_tested += 1 num_pages_tested += 1
# ---- REVIEW AND FINSIHED PAGES ---- # ---- REVIEW AND FINSIHED PAGES ----
@ -548,7 +548,7 @@ class DomainApplicationTests(TestWithUser, WebTest):
review_result = review_form.submit() review_result = review_form.submit()
self.assertEqual(review_result.status_code, 302) self.assertEqual(review_result.status_code, 302)
self.assertEqual(review_result["Location"], "/register/finished/") self.assertEqual(review_result["Location"], "/request/finished/")
num_pages_tested += 1 num_pages_tested += 1
# following this redirect is a GET request, so include the cookie # following this redirect is a GET request, so include the cookie
@ -629,7 +629,7 @@ class DomainApplicationTests(TestWithUser, WebTest):
# the post request should return a redirect to the federal branch # the post request should return a redirect to the federal branch
# question # question
self.assertEqual(type_result.status_code, 302) self.assertEqual(type_result.status_code, 302)
self.assertEqual(type_result["Location"], "/register/organization_federal/") self.assertEqual(type_result["Location"], "/request/organization_federal/")
# and the step label should appear in the sidebar of the resulting page # and the step label should appear in the sidebar of the resulting page
# but the step label for the elections page should not appear # but the step label for the elections page should not appear
@ -646,7 +646,7 @@ class DomainApplicationTests(TestWithUser, WebTest):
# the post request should return a redirect to the contact # the post request should return a redirect to the contact
# question # question
self.assertEqual(federal_result.status_code, 302) self.assertEqual(federal_result.status_code, 302)
self.assertEqual(federal_result["Location"], "/register/organization_contact/") self.assertEqual(federal_result["Location"], "/request/organization_contact/")
self.app.set_cookie(settings.SESSION_COOKIE_NAME, session_id) self.app.set_cookie(settings.SESSION_COOKIE_NAME, session_id)
contact_page = federal_result.follow() contact_page = federal_result.follow()
self.assertContains(contact_page, "Federal agency") self.assertContains(contact_page, "Federal agency")
@ -683,7 +683,7 @@ class DomainApplicationTests(TestWithUser, WebTest):
# the post request should return a redirect to the elections question # the post request should return a redirect to the elections question
self.assertEqual(type_result.status_code, 302) self.assertEqual(type_result.status_code, 302)
self.assertEqual(type_result["Location"], "/register/organization_election/") self.assertEqual(type_result["Location"], "/request/organization_election/")
# and the step label should appear in the sidebar of the resulting page # and the step label should appear in the sidebar of the resulting page
# but the step label for the elections page should not appear # but the step label for the elections page should not appear
@ -700,7 +700,7 @@ class DomainApplicationTests(TestWithUser, WebTest):
# the post request should return a redirect to the contact # the post request should return a redirect to the contact
# question # question
self.assertEqual(election_result.status_code, 302) self.assertEqual(election_result.status_code, 302)
self.assertEqual(election_result["Location"], "/register/organization_contact/") self.assertEqual(election_result["Location"], "/request/organization_contact/")
self.app.set_cookie(settings.SESSION_COOKIE_NAME, session_id) self.app.set_cookie(settings.SESSION_COOKIE_NAME, session_id)
contact_page = election_result.follow() contact_page = election_result.follow()
self.assertNotContains(contact_page, "Federal agency") self.assertNotContains(contact_page, "Federal agency")
@ -738,7 +738,7 @@ class DomainApplicationTests(TestWithUser, WebTest):
# Should be a link to the organization_federal page # Should be a link to the organization_federal page
self.assertGreater( self.assertGreater(
len(new_page.html.find_all("a", href="/register/organization_federal/")), len(new_page.html.find_all("a", href="/request/organization_federal/")),
0, 0,
) )
@ -785,7 +785,7 @@ class DomainApplicationTests(TestWithUser, WebTest):
# the post request should return a redirect to the # the post request should return a redirect to the
# about your organization page if it was successful. # about your organization page if it was successful.
self.assertEqual(contact_result.status_code, 302) self.assertEqual(contact_result.status_code, 302)
self.assertEqual(contact_result["Location"], "/register/about_your_organization/") self.assertEqual(contact_result["Location"], "/request/about_your_organization/")
def test_application_about_your_organization_special(self): def test_application_about_your_organization_special(self):
"""Special districts have to answer an additional question.""" """Special districts have to answer an additional question."""