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);
}
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);
}
Aggregations