use of com.amplifyframework.core.async.Cancelable in project amplify-android by aws-amplify.
the class RxAdaptersTest method underlyingCancelIsCalledWhenObservableSubscriptionIsDisposed.
/**
* The {@link Observable} returned by
* {@link CancelableBehaviors#toObservable(CancelableBehaviors.StreamEmitter)}
* is cancelable.
*/
@Test
public void underlyingCancelIsCalledWhenObservableSubscriptionIsDisposed() {
SimpleCancelable cancelable = new SimpleCancelable();
TestObserver<?> observer = CancelableBehaviors.toObservable((onStart, onItem, onError, onComplete) -> cancelable).test();
observer.dispose();
assertTrue(observer.isDisposed());
assertTrue(cancelable.isCanceled());
}
use of com.amplifyframework.core.async.Cancelable in project amplify-android by aws-amplify.
the class RxDataStoreBindingTest method observeFailsWhenCategoryBehaviorDoes.
/**
* The Rx binding for the DataStore's observe behavior is an Observable. It should
* fail with an exception when the DataStore observe method calls back its error consumer.
* @throws InterruptedException If interrupted while test observer is awaiting terminal event
*/
@Test
public void observeFailsWhenCategoryBehaviorDoes() throws InterruptedException {
// Arrange for observer() to callback failure
DataStoreException expectedFailure = new DataStoreException("Expected", "Failure");
doAnswer(invocation -> {
// 0 = clazz, 1 = onStart, 2 = onNext, 3 = onFailure, 4 = onComplete
final int positionOfOnStart = 1;
Consumer<Cancelable> onStart = invocation.getArgument(positionOfOnStart);
onStart.accept(new NoOpCancelable());
final int positionOfOnFailure = 3;
Consumer<DataStoreException> onFailure = invocation.getArgument(positionOfOnFailure);
onFailure.accept(expectedFailure);
// "void"
return null;
}).when(delegate).observe(eq(Model.class), anyConsumer(), anyConsumer(), anyConsumer(), anyAction());
// Act: observe the DataStore via Rx binding
TestObserver<DataStoreItemChange<Model>> observer = rxDataStore.observe(Model.class).test();
// Assert: failure is propagated
observer.await(TIMEOUT_SECONDS, TimeUnit.SECONDS);
observer.assertError(expectedFailure);
verify(delegate).observe(eq(Model.class), anyConsumer(), anyConsumer(), anyConsumer(), anyAction());
}
use of com.amplifyframework.core.async.Cancelable in project amplify-android by aws-amplify.
the class RxDataStoreBindingTest method observeQueryFailsWhenCategoryBehaviorDoes.
/**
* The Rx binding for the DataStore's observeQuery behavior is an Observable. It should
* fail with an exception when the DataStore observe method calls back its error consumer.
* @throws InterruptedException If interrupted while test observer is awaiting terminal event
*/
@Test
public void observeQueryFailsWhenCategoryBehaviorDoes() throws InterruptedException {
// Arrange for observer() to callback failure
DataStoreException expectedFailure = new DataStoreException("Expected", "Failure");
doAnswer(invocation -> {
// 0 = clazz, 1 = options, 2 = start consumer, 3 = item consumer, 4 = failure consumer, 5 = onComplete
final int positionOfOnStart = 3;
Consumer<Cancelable> onStart = invocation.getArgument(positionOfOnStart);
onStart.accept(new NoOpCancelable());
final int positionOfOnFailure = 4;
Consumer<DataStoreException> onFailure = invocation.getArgument(positionOfOnFailure);
onFailure.accept(expectedFailure);
// "void"
return null;
}).when(delegate).observeQuery(eq(Model.class), any(), anyConsumer(), anyConsumer(), anyConsumer(), anyAction());
// Act: observe the DataStore via Rx binding
TestObserver<DataStoreQuerySnapshot<Model>> observer = rxDataStore.observeQuery(Model.class, new ObserveQueryOptions()).test();
// Assert: failure is propagated
observer.await(TIMEOUT_SECONDS, TimeUnit.SECONDS);
observer.assertError(expectedFailure);
verify(delegate).observeQuery(eq(Model.class), any(), anyConsumer(), anyConsumer(), anyConsumer(), anyAction());
}
use of com.amplifyframework.core.async.Cancelable in project amplify-android by aws-amplify.
the class RxDataStoreBindingTest method observeReturnsCategoryBehaviorChanges.
/**
* The Rx binding for observing the DataStore should be an Observable stream
* of DataStore changes. It should emit events whenever they are observed
* on the observe behavior.
*/
@Test
public void observeReturnsCategoryBehaviorChanges() {
// Arrange: observe(Class<?>) will spit out some values from category behavior.
Model model = RandomModel.model();
DataStoreItemChange<Model> changeEvent = DataStoreItemChange.builder().uuid(model.getId()).itemClass(Model.class).item(model).type(Type.CREATE).initiator(Initiator.LOCAL).build();
doAnswer(invocation -> {
// 0 = clazz, 1 = start consumer, 2 = item consumer, 3 = failure consumer, 4 = onComplete
final int positionOfStartConsumer = 1;
Consumer<Cancelable> onStart = invocation.getArgument(positionOfStartConsumer);
onStart.accept(new NoOpCancelable());
final int positionOfValueConsumer = 2;
Consumer<DataStoreItemChange<Model>> onNext = invocation.getArgument(positionOfValueConsumer);
onNext.accept(changeEvent);
// "void"
return null;
}).when(delegate).observe(eq(Model.class), anyConsumer(), anyConsumer(), anyConsumer(), anyAction());
// Act: Observe the DataStore via Rx binding
TestObserver<DataStoreItemChange<Model>> observer = rxDataStore.observe(Model.class).test();
// Assert: event is observed
observer.awaitCount(1).assertValue(changeEvent);
verify(delegate).observe(eq(Model.class), anyConsumer(), anyConsumer(), anyConsumer(), anyAction());
}
use of com.amplifyframework.core.async.Cancelable in project amplify-android by aws-amplify.
the class SynchronousApi method onCreate.
/**
* Subscribe to model creations.
*
* @param apiName One of the configured API endpoints
* @param clazz Class of model for which you want notifications when they're created
* @param <T> The type of model for which creation notifications will be dispatched
* @return An Observable that can be used to observe the subscription data
*/
@SuppressWarnings("CodeBlock2Expr")
@NonNull
public <T extends Model> Observable<GraphQLResponse<T>> onCreate(@NonNull String apiName, @NonNull Class<T> clazz) {
return Observable.create(emitter -> {
Await.<String, ApiException>result(OPERATION_TIMEOUT_MS, (onSubscriptionStarted, onError) -> {
Cancelable cancelable = asyncDelegate.subscribe(apiName, ModelSubscription.onCreate(clazz), onSubscriptionStarted, emitter::onNext, onError, emitter::onComplete);
emitter.setDisposable(AmplifyDisposables.fromCancelable(cancelable));
});
});
}
Aggregations