-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DPC-4204 AO fails email check (#2264)
## 🎫 Ticket https://jira.cms.gov/browse/DPC_4204 ## 🛠 Changes - Logout button added to BadInvitationComponent - IDP environment variables moved to ApplicationController as used in multiple controllers - logout and logged_out routes added to LoginDotGovController to handle logout and return from IdP - Failed PII match text updated ## ℹ️ Context Matches designs ## 🧪 Validation Manual and automated testing
- Loading branch information
1 parent
8199a33
commit 13afb2c
Showing
9 changed files
with
58 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -224,7 +224,7 @@ | |
stub_user_info(overrides: { 'email' => '[email protected]' }) | ||
get "/organizations/#{org.id}/invitations/#{invitation.id}/accept" | ||
expect(response).to be_forbidden | ||
expect(response.body).to include(I18n.t('verification.pii_mismatch_status')) | ||
expect(response.body).to include(CGI.escapeHTML(I18n.t('verification.pii_mismatch_status'))) | ||
end | ||
context :server_error do | ||
it 'should show server error page' do | ||
|
@@ -517,7 +517,7 @@ | |
stub_user_info(overrides: { 'email' => '[email protected]' }) | ||
get "/organizations/#{org.id}/invitations/#{cd_invite.id}/confirm_cd" | ||
expect(response).to be_forbidden | ||
expect(response.body).to include(I18n.t('verification.pii_mismatch_status')) | ||
expect(response.body).to include(CGI.escapeHTML(I18n.t('verification.pii_mismatch_status'))) | ||
expect(response.body).to_not include(confirm_organization_invitation_path(org, cd_invite)) | ||
end | ||
it 'should render error page if given_name not match' do | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters