Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Display banner to enable 2FA when setting up VBBA #12424

Merged
merged 13 commits into from
Dec 1, 2022
Merged

Conversation

MonilBhavsar
Copy link
Contributor

@MonilBhavsar MonilBhavsar commented Nov 3, 2022

Details

  • Display 2FA prompt when adding bank account during verification and validation steps.
  • Redirects user to olddot, once 2FA setup is completed, redirects them back to newdot.

Fixed Issues

https://github.com/Expensify/Expensify/issues/238668
PROPOSAL: N/A

Tests

Let user have 2FA disabled
Tests with https://github.com/Expensify/Web-Expensify/pull/35394.

  1. Checkout that branch
  2. Run app
  3. Change the URL to http://localhost:8080/bank-account
  4. Go till Validation step and confirm the 2FA prompt
  5. Click on secure account and confirm it redirects to olddot, enables 2FA.
  6. Finish the setup and confirm it redirects back to newdot and this time it has no prompt
  7. Go to olddot and disable 2FA
  8. I manually changed account state, to go through validation state and confirmed the 2FA prompt there
  • Verify that no errors appear in the JS console

QA Steps

Prerequisite: User should have 2FA disabled in olddot > Settings > Accounts

  1. Start the process of setting up bank account in VERIFYING state
  2. Go till Verifying state and confirm the 2FA prompt as in screenshot
  3. Click on "Secure Account" and confirm you're redirected to olddot and 2FA modal is open.
  4. Finish the 2FA setup. Upon clicking Finish, confirm you're redirected back to newdot
  5. Confirm this time there is not any 2FA prompt.

Now,

  1. Disable 2FA from olddot
  2. Go to bank account setup again. Can go to URL staging.new.expensify.com/bank-account/
  3. Wait till Bank account is verified and you go to validation step and see the inputs to enter 3 amounts
  4. Confirm 2FA prompt as in screenshot
  5. Click on "Secure Account" and confirm you're redirected to olddot and 2FA modal is open.
  6. Finish the 2FA setup. Upon clicking Finish, confirm you're redirected back to newdot
  7. Confirm this time there is not any 2FA prompt.
  • Verify that no errors appear in the JS console

PR Author Checklist

  • I linked the correct issue in the ### Fixed Issues section above
  • I wrote clear testing steps that cover the changes made in this PR
    • I added steps for local testing in the Tests section
    • I added steps for the expected offline behavior in the Offline steps section
    • I added steps for Staging and/or Production testing in the QA steps section
    • I added steps to cover failure scenarios (i.e. verify an input displays the correct error message if the entered data is not correct)
    • I turned off my network connection and tested it while offline to ensure it matches the expected behavior (i.e. verify the default avatar icon is displayed if app is offline)
    • I tested this PR with a High Traffic account against the staging or production API to ensure there are no regressions (e.g. long loading states that impact usability).
  • I included screenshots or videos for tests on all platforms
  • I ran the tests on all platforms & verified they passed on:
    • iOS / native
    • Android / native
    • iOS / Safari
    • Android / Chrome
    • MacOS / Chrome
    • MacOS / Desktop
  • I verified there are no console errors (if there's a console error not related to the PR, report it or open an issue for it to be fixed)
  • I followed proper code patterns (see Reviewing the code)
    • I verified that any callback methods that were added or modified are named for what the method does and never what callback they handle (i.e. toggleReport and not onIconClick)
    • I verified that comments were added to code that is not self explanatory
    • I verified that any new or modified comments were clear, correct English, and explained "why" the code was doing something instead of only explaining "what" the code was doing.
    • I verified any copy / text shown in the product was added in all src/languages/* files
    • I verified any copy / text that was added to the app is correct English and approved by marketing by adding the Waiting for Copy label for a copy review on the original GH to get the correct copy.
    • I verified proper file naming conventions were followed for any new files or renamed files. All non-platform specific files are named after what they export and are not named "index.js". All platform-specific files are named for the platform the code supports as outlined in the README.
    • I verified the JSDocs style guidelines (in STYLE.md) were followed
  • If a new code pattern is added I verified it was agreed to be used by multiple Expensify engineers
  • I followed the guidelines as stated in the Review Guidelines
  • I tested other components that can be impacted by my changes (i.e. if the PR modifies a shared library or component like Avatar, I verified the components using Avatar are working as expected)
  • I verified all code is DRY (the PR doesn't include any logic written more than once, with the exception of tests)
  • I verified any variables that can be defined as constants (ie. in CONST.js or at the top of the file that uses the constant) are defined as such
  • I verified that if a function's arguments changed that all usages have also been updated correctly
  • If a new component is created I verified that:
    • A similar component doesn't exist in the codebase
    • All props are defined accurately and each prop has a /** comment above it */
    • The file is named correctly
    • The component has a clear name that is non-ambiguous and the purpose of the component can be inferred from the name alone
    • The only data being stored in the state is data necessary for rendering and nothing else
    • For Class Components, any internal methods passed to components event handlers are bound to this properly so there are no scoping issues (i.e. for onClick={this.submit} the method this.submit should be bound to this in the constructor)
    • Any internal methods bound to this are necessary to be bound (i.e. avoid this.submit = this.submit.bind(this); if this.submit is never passed to a component event handler like onClick)
    • All JSX used for rendering exists in the render method
    • The component has the minimum amount of code necessary for its purpose, and it is broken down into smaller components in order to separate concerns and functions
  • If a new CSS style is added I verified that:
    • A similar style doesn't already exist
    • The style can't be created with an existing StyleUtils function (i.e. StyleUtils.getBackgroundAndBorderStyle(themeColors.componentBG)
  • If the PR modifies a generic component, I tested and verified that those changes do not break usages of that component in the rest of the App (i.e. if a shared library or component like Avatar is modified, I verified that Avatar is working as expected in all cases)
  • If the PR modifies a component related to any of the existing Storybook stories, I tested and verified all stories for that component are still working as expected.
  • I have checked off every checkbox in the PR author checklist, including those that don't apply to this PR.

Screenshots/Videos

Web Screenshot 2022-12-01 at 5 43 31 PM Screenshot 2022-12-01 at 5 46 15 PM
Mobile Web - Chrome
Mobile Web - Safari
Desktop Screenshot 2022-12-01 at 5 50 33 PM Screenshot 2022-12-01 at 5 51 00 PM
iOS
Android

@MonilBhavsar MonilBhavsar requested a review from a team as a code owner November 3, 2022 10:32
@MonilBhavsar MonilBhavsar self-assigned this Nov 3, 2022
@melvin-bot melvin-bot bot requested review from pecanoro and rushatgabhane and removed request for a team November 3, 2022 10:33
@MonilBhavsar MonilBhavsar changed the title Display banner to enable 2FA when setting up VBBA [HOLD] Display banner to enable 2FA when setting up VBBA Nov 3, 2022
@MonilBhavsar
Copy link
Contributor Author

Please hold reviewing for now. Was supposed to be draft. Need to update some things

@MonilBhavsar
Copy link
Contributor Author

This is ready for review now 👍

shawnborton
shawnborton previously approved these changes Nov 9, 2022
@rushatgabhane
Copy link
Member

@MonilBhavsar looks like we have some lint errors

@MonilBhavsar
Copy link
Contributor Author

@rushatgabhane fixed

@rushatgabhane
Copy link
Member

rushatgabhane commented Nov 11, 2022

struggling with test steps as getting to validation step is internal only (dummy data doesn't work)

trying to figure out a workaround

@rushatgabhane
Copy link
Member

Go till Validation step and confirm the 2FA prompt
Click on secure account and confirm it redirects to olddot, enables 2FA

@MonilBhavsar sorry but I don't think this flow can be tested externally.

@pecanoro all yours!

@MonilBhavsar
Copy link
Contributor Author

@rushatgabhane are you getting to validation and verification step now?
You'll be able to test redirection on staging after deployment (few hours)

@rushatgabhane
Copy link
Member

rushatgabhane commented Nov 15, 2022

@MonilBhavsar not quite. I tried uploading a dummy passport

I can't proceed after -

image

@MonilBhavsar MonilBhavsar changed the title [HOLD] Display banner to enable 2FA when setting up VBBA Display banner to enable 2FA when setting up VBBA Nov 16, 2022
@MonilBhavsar
Copy link
Contributor Author

Ah I see, doesn't the test bank account skip onfido flow?

@MonilBhavsar
Copy link
Contributor Author

Also this is off HOLD

@rushatgabhane
Copy link
Member

rushatgabhane commented Nov 16, 2022

test bank account skip onfido flow

Ahhh, I don't have any details about the test bank account. Maybe you could help me with that?

@MonilBhavsar
Copy link
Contributor Author

I asked but as per the discussion, @pecanoro you'll need to test it

@pecanoro
Copy link
Contributor

Sorry for the delay, I will test this tomorrow, can you in the meantime solve the conflicts, please?

@pecanoro
Copy link
Contributor

Ok, I will try retest everything again now that we solved the deploy blocker.


const propTypes = {
...withLocalizePropTypes,

/** Bank account currently in setup */
reimbursementAccount: reimbursementAccountPropTypes,

account: PropTypes.shape({
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The guidelines mention: "All props are defined accurately and each prop has a /** comment above it */"

@pecanoro
Copy link
Contributor

You also need to merge with main so you can retest the PR after all the changes.

@pecanoro
Copy link
Contributor

pecanoro commented Dec 1, 2022

Ok, I completed the checklist, it works pretty well. Please address the comment, update the screenshots after merging with main and I will merge it tomorrow!!

@pecanoro
Copy link
Contributor

pecanoro commented Dec 1, 2022

@MonilBhavsar Something that is not fully working for me but it might just my emulator is opening the link from mobile safari to set up 2FA on oldDot, it's not redirecting. Can you check?

@MonilBhavsar
Copy link
Contributor Author

You'll need to go to Settings > Safari > and disable "block pop-ups"

@MonilBhavsar
Copy link
Contributor Author

Addressed reviews and merged main

@MonilBhavsar
Copy link
Contributor Author

Updated screenshots with dark theme cc @shawnborton

@shawnborton
Copy link
Contributor

Looks good!

@pecanoro
Copy link
Contributor

pecanoro commented Dec 1, 2022

@rushatgabhane Ready for your final review and I will merge after!!

Copy link
Member

@rushatgabhane rushatgabhane left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@pecanoro good to merge!

@pecanoro pecanoro merged commit 76bfce3 into main Dec 1, 2022
@pecanoro pecanoro deleted the monil-VBA2FASetup branch December 1, 2022 19:17
@OSBotify
Copy link
Contributor

OSBotify commented Dec 1, 2022

✋ This PR was not deployed to staging yet because QA is ongoing. It will be automatically deployed to staging after the next production release.

@OSBotify
Copy link
Contributor

OSBotify commented Dec 2, 2022

🚀 Deployed to staging by @pecanoro in version: 1.2.36-0 🚀

platform result
🤖 android 🤖 success ✅
🖥 desktop 🖥 success ✅
🍎 iOS 🍎 success ✅
🕸 web 🕸 success ✅

@francoisl
Copy link
Contributor

Hey @MonilBhavsar, @mvtglobally / @kavimuru and I were unable to QA this on staging, and with different errors. After enabling 2FA, they get redirected back to the "Connect Bank Account Page" (see #13326 (comment)), whereas the NewDot shows a loading spinner forever for me, on mWeb iOS & Android:

Screen.Recording.2022-12-07.at.9.34.44.AM.mov

Any idea what could be going on?

@OSBotify
Copy link
Contributor

OSBotify commented Dec 8, 2022

🚀 Deployed to production by @francoisl in version: 1.2.36-4 🚀

platform result
🤖 android 🤖 success ✅
🖥 desktop 🖥 success ✅
🍎 iOS 🍎 success ✅
🕸 web 🕸 success ✅

@MonilBhavsar
Copy link
Contributor Author

I'm also seeing this issue on web. Looks like something has changed. I think we'll need to specify the route more specifically.

icon: Expensicons.Shield,
shouldShowRightIcon: true,
iconRight: Expensicons.NewWindow,
iconFill: themeColors.success,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👋 Heads-up that this has caused a small visual issue in #20932
This icon wasn't changing color on hover, since we were overriding its color with iconFill prop

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants