Skip to content

Commit

Permalink
Merge branch 'main' into phil/PM-11215-build-debug-menu
Browse files Browse the repository at this point in the history
  • Loading branch information
phil-livefront committed Sep 20, 2024
2 parents 899317e + a26d0c7 commit d9d7922
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 2 deletions.
37 changes: 37 additions & 0 deletions BitwardenShared/UI/Auth/AuthRouterTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,43 @@ final class AuthRouterTests: BitwardenTestCase { // swiftlint:disable:this type_
XCTAssertEqual(route, .enterpriseSingleSignOn(email: "[email protected]"))
}

/// `handleAndRoute(_ :)` redirects `.accountBecameActive()` to `.vaultUnlock`
/// when the user profile has no user decryption options.
func test_handleAndRoute_accountBecameActive_noUserDecryptionOptions() async {
let active = Account.fixture(
profile: .fixture(
userDecryptionOptions: nil
)
)
stateService.activeAccount = active

biometricsRepository.biometricUnlockStatus = .success(
.available(.faceID, enabled: true, hasValidIntegrity: false)
)
stateService.isAuthenticated = [
active.profile.userId: true,
]
authRepository.isLockedResult = .success(true)

let route = await subject.handleAndRoute(
.accountBecameActive(
active,
animated: true,
attemptAutomaticBiometricUnlock: true,
didSwitchAccountAutomatically: false
)
)
XCTAssertEqual(
route,
.vaultUnlock(
active,
animated: true,
attemptAutomaticBiometricUnlock: true,
didSwitchAccountAutomatically: false
)
)
}

/// `handleAndRoute(_ :)` redirects `.accountBecameActive()` to `.vaultUnlock` when checking if
/// an account is authenticated fails.
func test_handleAndRoute_accountBecameActive_logout_isAuthenticatedError() async {
Expand Down
4 changes: 2 additions & 2 deletions BitwardenShared/UI/Auth/Extensions/AuthRouter+Redirects.swift
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ extension AuthRouter {
/// - Parameters:
/// - activeAccount: The active account.
/// - animated: If the suggested route can be animated, use this value.
/// - shouldAttemptAutomaticBiometricUnlock: If the route uses automatic bioemtrics unlock,
/// - shouldAttemptAutomaticBiometricUnlock: If the route uses automatic biometrics unlock,
/// this value enables or disables the feature.
/// - shouldAttemptAccountSwitch: Should the application automatically switch accounts for the user?
/// - Returns: A suggested route for the active account with state pre-configured.
Expand Down Expand Up @@ -364,7 +364,7 @@ extension AuthRouter {
return .landingSoftLoggedOut(email: activeAccount.profile.email)
}

let hasMasterPassword = activeAccount.profile.userDecryptionOptions?.hasMasterPassword == true
let hasMasterPassword = activeAccount.profile.userDecryptionOptions?.hasMasterPassword ?? true

if !hasMasterPassword {
let biometricUnlockStatus = try await services.biometricsRepository.getBiometricUnlockStatus()
Expand Down

0 comments on commit d9d7922

Please sign in to comment.