Search in sources :

Example 1 with AuthSignUpStep

use of com.amplifyframework.auth.result.step.AuthSignUpStep in project amplify-android by aws-amplify.

the class RxAuthBindingTest method testSignUpSucceeds.

/**
 * Validates that a sign-up result are passed through the binding.
 * @throws InterruptedException If test observer is interrupted while awaiting terminal event
 */
@Test
public void testSignUpSucceeds() throws InterruptedException {
    // Arrange a response from delegate
    String username = RandomString.string();
    String password = RandomString.string();
    AuthSignUpOptions options = AuthSignUpOptions.builder().build();
    // Arrange a result on the result consumer
    AuthCodeDeliveryDetails details = new AuthCodeDeliveryDetails(RandomString.string(), DeliveryMedium.SMS);
    AuthSignUpStep step = AuthSignUpStep.CONFIRM_SIGN_UP_STEP;
    AuthNextSignUpStep nextStep = new AuthNextSignUpStep(step, Collections.emptyMap(), details);
    AuthSignUpResult result = new AuthSignUpResult(false, nextStep, null);
    doAnswer(invocation -> {
        // 0 = username, 1 = pass, 2 = options, 3 = onSuccess, 4 = onFailure
        int positionOfSuccessConsumer = 3;
        Consumer<AuthSignUpResult> onResult = invocation.getArgument(positionOfSuccessConsumer);
        onResult.accept(result);
        return null;
    }).when(delegate).signUp(eq(username), eq(password), eq(options), anyConsumer(), anyConsumer());
    // Act: call the binding
    TestObserver<AuthSignUpResult> observer = auth.signUp(username, password, options).test();
    // Assert: the result was furnished to the Rx Single
    observer.await(TIMEOUT_SECONDS, TimeUnit.SECONDS);
    observer.assertNoErrors().assertValue(result);
}
Also used : AuthSignUpStep(com.amplifyframework.auth.result.step.AuthSignUpStep) AuthCodeDeliveryDetails(com.amplifyframework.auth.AuthCodeDeliveryDetails) AuthNextSignUpStep(com.amplifyframework.auth.result.step.AuthNextSignUpStep) AuthSignUpResult(com.amplifyframework.auth.result.AuthSignUpResult) AuthSignUpOptions(com.amplifyframework.auth.options.AuthSignUpOptions) RandomString(com.amplifyframework.testutils.random.RandomString) Test(org.junit.Test)

Example 2 with AuthSignUpStep

use of com.amplifyframework.auth.result.step.AuthSignUpStep in project amplify-android by aws-amplify.

the class RxAuthBindingTest method testResendSignUpCodeSucceeds.

/**
 * Validates that a successful call to resend the sign-up code will propagate the result
 * back through the binding.
 * @throws InterruptedException If test observer is interrupted while awaiting terminal event
 */
@Test
public void testResendSignUpCodeSucceeds() throws InterruptedException {
    String username = RandomString.string();
    // Arrange a result on the result consumer
    AuthCodeDeliveryDetails details = new AuthCodeDeliveryDetails(RandomString.string(), DeliveryMedium.EMAIL);
    AuthSignUpStep step = AuthSignUpStep.CONFIRM_SIGN_UP_STEP;
    AuthNextSignUpStep nextStep = new AuthNextSignUpStep(step, Collections.emptyMap(), details);
    AuthSignUpResult result = new AuthSignUpResult(false, nextStep, null);
    doAnswer(invocation -> {
        // 0 = username, 1 = onResult, 2 = onFailure
        int positionOfResultConsumer = 1;
        Consumer<AuthSignUpResult> onResult = invocation.getArgument(positionOfResultConsumer);
        onResult.accept(result);
        return null;
    }).when(delegate).resendSignUpCode(eq(username), anyConsumer(), anyConsumer());
    // Act: call the binding
    TestObserver<AuthSignUpResult> observer = auth.resendSignUpCode(username).test();
    // Assert: the result was furnished to the Rx Single
    observer.await(TIMEOUT_SECONDS, TimeUnit.SECONDS);
    observer.assertNoErrors().assertValue(result);
}
Also used : AuthSignUpStep(com.amplifyframework.auth.result.step.AuthSignUpStep) AuthCodeDeliveryDetails(com.amplifyframework.auth.AuthCodeDeliveryDetails) AuthNextSignUpStep(com.amplifyframework.auth.result.step.AuthNextSignUpStep) AuthSignUpResult(com.amplifyframework.auth.result.AuthSignUpResult) RandomString(com.amplifyframework.testutils.random.RandomString) Test(org.junit.Test)

Aggregations

AuthCodeDeliveryDetails (com.amplifyframework.auth.AuthCodeDeliveryDetails)2 AuthSignUpResult (com.amplifyframework.auth.result.AuthSignUpResult)2 AuthNextSignUpStep (com.amplifyframework.auth.result.step.AuthNextSignUpStep)2 AuthSignUpStep (com.amplifyframework.auth.result.step.AuthSignUpStep)2 RandomString (com.amplifyframework.testutils.random.RandomString)2 Test (org.junit.Test)2 AuthSignUpOptions (com.amplifyframework.auth.options.AuthSignUpOptions)1