Skip to content

Commit

Permalink
[CCAP-645] - implements temporary-provider-response-confirmation (#1118)
Browse files Browse the repository at this point in the history
  • Loading branch information
analoo authored Feb 5, 2025
1 parent ed64ba8 commit 9d58669
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 82 deletions.
10 changes: 0 additions & 10 deletions src/main/resources/flows-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -640,16 +640,6 @@ flow:
nextScreens:
- name: registration-contact-info
registration-contact-info:
nextScreens:
# Temporary until we have a way to download PDF in providerresponse flow
# Confirmation code is needed to DL PDF since its how we get the family submission
# TODO: change this when we've figured out above comments and delete the temporary-provider-response-confirmation-code-fix screen
- name: temporary-provider-response-confirmation-code-fix
# - name: registration-info-review
temporary-provider-response-confirmation-code-fix:
crossFieldValidationAction: ValidateConfirmationCodeAndSaveId
afterSaveAction: CheckClientSubmissionForProvider
onPostAction: GenerateDummyClientSubmissionForDev
nextScreens:
- name: registration-info-review
registration-info-review:
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -83,12 +83,6 @@ void BasicInfoFlow() {
testPage.enter("providerResponseContactEmail", "[email protected]");
testPage.clickContinue();

// Temporary Confirmation Code
// TODO - Remove this when we have a solution for downloading the PDF in the provider response flow
assertThat(testPage.getTitle()).isEqualTo(getEnMessage("provider-response-confirmation-code.title"));
testPage.enter("providerResponseFamilyShortCode", CONF_CODE);
testPage.clickContinue();

// registration-info-review
assertThat(testPage.getTitle()).isEqualTo(getEnMessage("provider-response-info-review.title"));
assertThat(testPage.findElementTextById("provider-full-name")).isEqualTo("ProviderFirst ProviderLast");
Expand Down Expand Up @@ -188,13 +182,8 @@ void LicenseExemptInProviderHomeFlow() {
testPage.enter("providerResponseContactEmail", "[email protected]");
testPage.clickContinue();

// Temporary Confirmation Code
// TODO - Remove this when we have a solution for downloading the PDF in the provider response flow
assertThat(testPage.getTitle()).isEqualTo(getEnMessage("provider-response-confirmation-code.title"));
testPage.enter("providerResponseFamilyShortCode", CONF_CODE);
testPage.clickContinue();

// registration-info-review
assertThat(testPage.getTitle()).isEqualTo(getEnMessage("provider-response-info-review.title"));
testPage.clickContinue();

// registration-home-provider-ssn
Expand Down Expand Up @@ -439,13 +428,8 @@ void LicenseExemptInChildHomeFlow() {
testPage.enter("providerResponseContactEmail", "[email protected]");
testPage.clickContinue();

// Temporary Confirmation Code
// TODO - Remove this when we have a solution for downloading the PDF in the provider response flow
assertThat(testPage.getTitle()).isEqualTo(getEnMessage("provider-response-confirmation-code.title"));
testPage.enter("providerResponseFamilyShortCode", CONF_CODE);
testPage.clickContinue();

// registration-info-review
assertThat(testPage.getTitle()).isEqualTo(getEnMessage("provider-response-info-review.title"));
testPage.clickContinue();

// registration-home-provider-ssn
Expand Down Expand Up @@ -602,13 +586,8 @@ void LicensedChildCareHomeFlow() {
testPage.enter("providerResponseContactEmail", "[email protected]");
testPage.clickContinue();

// Temporary Confirmation Code
// TODO - Remove this when we have a solution for downloading the PDF in the provider response flow
assertThat(testPage.getTitle()).isEqualTo(getEnMessage("provider-response-confirmation-code.title"));
testPage.enter("providerResponseFamilyShortCode", CONF_CODE);
testPage.clickContinue();

// registration-info-review
assertThat(testPage.getTitle()).isEqualTo(getEnMessage("provider-response-info-review.title"));
testPage.clickContinue();

// registration-home-provider-ssn
Expand Down Expand Up @@ -761,13 +740,8 @@ void LicensedChildCareCenterFlow() {
testPage.enter("providerResponseContactEmail", "[email protected]");
testPage.clickContinue();

// Temporary Confirmation Code
// TODO - Remove this when we have a solution for downloading the PDF in the provider response flow
assertThat(testPage.getTitle()).isEqualTo(getEnMessage("provider-response-confirmation-code.title"));
testPage.enter("providerResponseFamilyShortCode", CONF_CODE);
testPage.clickContinue();

// registration-info-review
assertThat(testPage.getTitle()).isEqualTo(getEnMessage("provider-response-info-review.title"));
testPage.clickContinue();

//registration-tax-id.title
Expand Down Expand Up @@ -902,13 +876,8 @@ void LicensedGroupChildCareHomeFlow() {
testPage.enter("providerResponseContactEmail", "[email protected]");
testPage.clickContinue();

// Temporary Confirmation Code
// TODO - Remove this when we have a solution for downloading the PDF in the provider response flow
assertThat(testPage.getTitle()).isEqualTo(getEnMessage("provider-response-confirmation-code.title"));
testPage.enter("providerResponseFamilyShortCode", CONF_CODE);
testPage.clickContinue();

// registration-info-review
assertThat(testPage.getTitle()).isEqualTo(getEnMessage("provider-response-info-review.title"));
testPage.clickContinue();

// registration-home-provider-ssn
Expand Down Expand Up @@ -1074,12 +1043,6 @@ void LicenseExemptChildCareCenter() {
testPage.enter("providerResponseContactEmail", "[email protected]");
testPage.clickContinue();

// Temporary Confirmation Code
// TODO - Remove this when we have a solution for downloading the PDF in the provider response flow
assertThat(testPage.getTitle()).isEqualTo(getEnMessage("provider-response-confirmation-code.title"));
testPage.enter("providerResponseFamilyShortCode", CONF_CODE);
testPage.clickContinue();

// registration-info-review
assertThat(testPage.getTitle()).isEqualTo(getEnMessage("provider-response-info-review.title"));
assertThat(testPage.findElementTextById("provider-full-name")).isEqualTo("ProviderFirst ProviderLast");
Expand Down

0 comments on commit 9d58669

Please sign in to comment.