use of com.firebase.ui.auth.data.model.Resource in project FirebaseUI-Android by firebase.
the class EmailLinkSendEmailHandlerTest method testSendSignInLinkToEmail_normalFlow_expectFailure.
@Test
@SuppressWarnings("unchecked")
public void testSendSignInLinkToEmail_normalFlow_expectFailure() {
mHandler.getOperation().observeForever(mResponseObserver);
boolean forceSameDevice = true;
ActionCodeSettings actionCodeSettings = ActionCodeSettings.newBuilder().setUrl(URL).build();
when(mMockAuth.sendSignInLinkToEmail(any(String.class), any(ActionCodeSettings.class))).thenReturn(AutoCompleteTask.forFailure(new Exception()));
mHandler.sendSignInLinkToEmail(TestConstants.EMAIL, actionCodeSettings, null, forceSameDevice);
ArgumentCaptor<ActionCodeSettings> acsCaptor = ArgumentCaptor.forClass(ActionCodeSettings.class);
verify(mMockAuth).sendSignInLinkToEmail(eq(TestConstants.EMAIL), acsCaptor.capture());
assertThat(acsCaptor.getValue()).isNotEqualTo(actionCodeSettings);
validateSessionIdAddedToContinueUrl(acsCaptor.getValue(), null, forceSameDevice);
ArgumentCaptor<Resource<String>> captor = ArgumentCaptor.forClass(Resource.class);
InOrder inOrder = inOrder(mResponseObserver);
inOrder.verify(mResponseObserver).onChanged(argThat(ResourceMatchers.isLoading()));
inOrder.verify(mResponseObserver).onChanged(captor.capture());
assertThat(captor.getValue().getState()).isEqualTo(State.FAILURE);
assertThat(captor.getValue().getException()).isNotNull();
}
use of com.firebase.ui.auth.data.model.Resource in project FirebaseUI-Android by firebase.
the class EmailLinkSendEmailHandlerTest method testSendSignInLinkToEmail_normalFlow_expectSuccess.
@Test
@SuppressWarnings("unchecked")
public void testSendSignInLinkToEmail_normalFlow_expectSuccess() {
mHandler.getOperation().observeForever(mResponseObserver);
boolean forceSameDevice = false;
ActionCodeSettings actionCodeSettings = ActionCodeSettings.newBuilder().setUrl(URL).build();
when(mMockAuth.sendSignInLinkToEmail(any(String.class), any(ActionCodeSettings.class))).thenReturn(AutoCompleteTask.forSuccess(null));
mHandler.sendSignInLinkToEmail(TestConstants.EMAIL, actionCodeSettings, null, forceSameDevice);
ArgumentCaptor<ActionCodeSettings> acsCaptor = ArgumentCaptor.forClass(ActionCodeSettings.class);
verify(mMockAuth).sendSignInLinkToEmail(eq(TestConstants.EMAIL), acsCaptor.capture());
assertThat(acsCaptor.getValue()).isNotEqualTo(actionCodeSettings);
validateSessionIdAddedToContinueUrl(acsCaptor.getValue(), null, forceSameDevice);
String email = mPersistenceManager.retrieveSessionRecord(ApplicationProvider.getApplicationContext()).getEmail();
assertThat(email).isNotNull();
assertThat(email).isEqualTo(TestConstants.EMAIL);
ArgumentCaptor<Resource<String>> captor = ArgumentCaptor.forClass(Resource.class);
InOrder inOrder = inOrder(mResponseObserver);
inOrder.verify(mResponseObserver).onChanged(argThat(ResourceMatchers.isLoading()));
inOrder.verify(mResponseObserver).onChanged(captor.capture());
assertThat(captor.getValue().getState()).isEqualTo(State.SUCCESS);
assertThat(captor.getValue().getValue()).isEqualTo(TestConstants.EMAIL);
}
use of com.firebase.ui.auth.data.model.Resource in project FirebaseUI-Android by firebase.
the class LinkingSocialProviderResponseHandlerTest method testSignIn_anonymousUpgradeEnabledWithSameIdp_expectMergeFailure.
@Test
public void testSignIn_anonymousUpgradeEnabledWithSameIdp_expectMergeFailure() {
mHandler.getOperation().observeForever(mResponseObserver);
setupAnonymousUpgrade();
// Fake social response from Google
IdpResponse response = new IdpResponse.Builder(new User.Builder(GoogleAuthProvider.PROVIDER_ID, TestConstants.EMAIL).build()).setToken(TestConstants.TOKEN).build();
mHandler.startSignIn(response);
// Since we are signing in with the same IDP and anonymous upgrade is enabled, a merge
// failure should occur without any RPC calls
AuthCredential credential = GoogleAuthProvider.getCredential(TestConstants.TOKEN, null);
InOrder inOrder = inOrder(mResponseObserver);
inOrder.verify(mResponseObserver).onChanged(argThat(ResourceMatchers.isLoading()));
ArgumentCaptor<Resource<IdpResponse>> resolveCaptor = ArgumentCaptor.forClass(Resource.class);
inOrder.verify(mResponseObserver).onChanged(resolveCaptor.capture());
FirebaseAuthAnonymousUpgradeException e = (FirebaseAuthAnonymousUpgradeException) resolveCaptor.getValue().getException();
GoogleAuthCredential responseCredential = (GoogleAuthCredential) e.getResponse().getCredentialForLinking();
assertThat(responseCredential.getProvider()).isEqualTo(credential.getProvider());
assertThat(responseCredential.getSignInMethod()).isEqualTo(credential.getSignInMethod());
}
use of com.firebase.ui.auth.data.model.Resource in project FirebaseUI-Android by firebase.
the class LinkingSocialProviderResponseHandlerTest method testSignIn_anonymousUpgradeEnabledWithDifferentIdp_expectMergeFailure.
@Test
public void testSignIn_anonymousUpgradeEnabledWithDifferentIdp_expectMergeFailure() {
mHandler.getOperation().observeForever(mResponseObserver);
setupAnonymousUpgrade();
// We're going to fake a sign in with facebook, where the email belongs
// to an existing account with a Google provider.
// We need to link Facebook to this account, and then a merge failure should occur
// so that the developer can handle it.
// Before we can link, they need to sign in with Google to prove they own the account.
// Fake social response from Google
IdpResponse response = new IdpResponse.Builder(new User.Builder(GoogleAuthProvider.PROVIDER_ID, TestConstants.EMAIL).build()).setToken(TestConstants.TOKEN).build();
// Set facebook credential
AuthCredential facebookAuthCredential = FacebookAuthProvider.getCredential(TestConstants.TOKEN);
mHandler.setRequestedSignInCredentialForEmail(facebookAuthCredential, TestConstants.EMAIL);
when(mScratchMockAuth.signInWithCredential(any(GoogleAuthCredential.class))).thenReturn(AutoCompleteTask.forSuccess(FakeAuthResult.INSTANCE));
// Mock linking with Facebook to always work
when(FakeAuthResult.INSTANCE.getUser().linkWithCredential(facebookAuthCredential)).thenReturn(new AutoContinueTask<>(FakeAuthResult.INSTANCE, FakeAuthResult.INSTANCE, true, null));
mHandler.startSignIn(response);
verify(mScratchMockAuth).signInWithCredential(any(GoogleAuthCredential.class));
verify(FakeAuthResult.INSTANCE.getUser()).linkWithCredential(facebookAuthCredential);
InOrder inOrder = inOrder(mResponseObserver);
inOrder.verify(mResponseObserver).onChanged(argThat(ResourceMatchers.isLoading()));
ArgumentCaptor<Resource<IdpResponse>> resolveCaptor = ArgumentCaptor.forClass(Resource.class);
inOrder.verify(mResponseObserver).onChanged(resolveCaptor.capture());
// Merge failure should occur after successful linking
FirebaseAuthAnonymousUpgradeException e = (FirebaseAuthAnonymousUpgradeException) resolveCaptor.getValue().getException();
AuthCredential credential = ProviderUtils.getAuthCredential(response);
GoogleAuthCredential responseCredential = (GoogleAuthCredential) e.getResponse().getCredentialForLinking();
assertThat(responseCredential.getProvider()).isEqualTo(credential.getProvider());
assertThat(responseCredential.getSignInMethod()).isEqualTo(credential.getSignInMethod());
}
use of com.firebase.ui.auth.data.model.Resource in project FirebaseUI-Android by firebase.
the class SocialProviderResponseHandlerTest method testSignInIdp_anonymousUserUpgradeEnabledAndExistingUserWithSameIdp_expectMergeFailure.
@Test
public void testSignInIdp_anonymousUserUpgradeEnabledAndExistingUserWithSameIdp_expectMergeFailure() {
mHandler.getOperation().observeForever(mResultObserver);
setupAnonymousUpgrade();
when(mMockAuth.getCurrentUser().linkWithCredential(any(AuthCredential.class))).thenReturn(AutoCompleteTask.forFailure(new FirebaseAuthUserCollisionException("foo", "bar")));
// Case 1: Anon user signing in with a Google credential that belongs to an existing user.
when(mMockAuth.fetchSignInMethodsForEmail(any(String.class))).thenReturn(AutoCompleteTask.forSuccess(new FakeSignInMethodQueryResult(Arrays.asList(GoogleAuthProvider.GOOGLE_SIGN_IN_METHOD, FacebookAuthProvider.FACEBOOK_SIGN_IN_METHOD))));
IdpResponse response = new IdpResponse.Builder(new User.Builder(GoogleAuthProvider.PROVIDER_ID, TestConstants.EMAIL).build()).setToken(TestConstants.TOKEN).build();
mHandler.startSignIn(response);
verify(mMockAuth.getCurrentUser()).linkWithCredential(any(AuthCredential.class));
InOrder inOrder = inOrder(mResultObserver);
inOrder.verify(mResultObserver).onChanged(argThat(ResourceMatchers.isLoading()));
ArgumentCaptor<Resource<IdpResponse>> resolveCaptor = ArgumentCaptor.forClass(Resource.class);
inOrder.verify(mResultObserver).onChanged(resolveCaptor.capture());
FirebaseAuthAnonymousUpgradeException e = (FirebaseAuthAnonymousUpgradeException) resolveCaptor.getValue().getException();
assertThat(e.getResponse().getCredentialForLinking()).isNotNull();
}
Aggregations