Search in sources :

Example 6 with DeleteQuery

use of com.pushtorefresh.storio3.contentresolver.queries.DeleteQuery in project storio by pushtorefresh.

the class PreparedDeleteByQueryTest method shouldWrapExceptionIntoStorIOExceptionSingle.

@Test
public void shouldWrapExceptionIntoStorIOExceptionSingle() {
    final StorIOSQLite storIOSQLite = mock(StorIOSQLite.class);
    final StorIOSQLite.LowLevel lowLevel = mock(StorIOSQLite.LowLevel.class);
    when(storIOSQLite.lowLevel()).thenReturn(lowLevel);
    // noinspection unchecked
    final DeleteResolver<DeleteQuery> deleteResolver = mock(DeleteResolver.class);
    when(deleteResolver.performDelete(same(storIOSQLite), any(DeleteQuery.class))).thenThrow(new IllegalStateException("test exception"));
    final TestObserver<DeleteResult> testObserver = new TestObserver<DeleteResult>();
    new PreparedDeleteByQuery.Builder(storIOSQLite, DeleteQuery.builder().table("test_table").build()).withDeleteResolver(deleteResolver).prepare().asRxSingle().subscribe(testObserver);
    testObserver.awaitTerminalEvent();
    testObserver.assertNoValues();
    testObserver.assertError(StorIOException.class);
    // noinspection ThrowableResultOfMethodCallIgnored
    StorIOException expected = (StorIOException) testObserver.errors().get(0);
    IllegalStateException cause = (IllegalStateException) expected.getCause();
    assertThat(cause).hasMessage("test exception");
    verify(deleteResolver).performDelete(same(storIOSQLite), any(DeleteQuery.class));
    verify(storIOSQLite).defaultRxScheduler();
    verify(storIOSQLite).interceptors();
    verifyNoMoreInteractions(storIOSQLite, lowLevel, deleteResolver);
}
Also used : StorIOException(com.pushtorefresh.storio3.StorIOException) DeleteQuery(com.pushtorefresh.storio3.sqlite.queries.DeleteQuery) StorIOSQLite(com.pushtorefresh.storio3.sqlite.StorIOSQLite) TestObserver(io.reactivex.observers.TestObserver) Test(org.junit.Test)

Example 7 with DeleteQuery

use of com.pushtorefresh.storio3.contentresolver.queries.DeleteQuery in project storio by pushtorefresh.

the class DefaultDeleteResolver method performDelete.

/**
 * {@inheritDoc}
 */
@NonNull
@Override
public DeleteResult performDelete(@NonNull StorIOContentResolver storIOContentResolver, @NonNull T object) {
    final DeleteQuery deleteQuery = mapToDeleteQuery(object);
    final int numberOfRowsDeleted = storIOContentResolver.lowLevel().delete(deleteQuery);
    return DeleteResult.newInstance(numberOfRowsDeleted, deleteQuery.uri());
}
Also used : DeleteQuery(com.pushtorefresh.storio3.contentresolver.queries.DeleteQuery) NonNull(android.support.annotation.NonNull)

Example 8 with DeleteQuery

use of com.pushtorefresh.storio3.contentresolver.queries.DeleteQuery in project storio by pushtorefresh.

the class DefaultDeleteResolver method performDelete.

/**
 * {@inheritDoc}
 */
@NonNull
@Override
public DeleteResult performDelete(@NonNull StorIOSQLite storIOSQLite, @NonNull T object) {
    final DeleteQuery deleteQuery = mapToDeleteQuery(object);
    final int numberOfRowsDeleted = storIOSQLite.lowLevel().delete(deleteQuery);
    return DeleteResult.newInstance(numberOfRowsDeleted, deleteQuery.table(), deleteQuery.affectsTags());
}
Also used : DeleteQuery(com.pushtorefresh.storio3.sqlite.queries.DeleteQuery) NonNull(android.support.annotation.NonNull)

Example 9 with DeleteQuery

use of com.pushtorefresh.storio3.contentresolver.queries.DeleteQuery in project storio by pushtorefresh.

the class DeleteOperationDesignTest method deleteByQueryFlowable.

@Test
public void deleteByQueryFlowable() {
    final DeleteQuery deleteQuery = DeleteQuery.builder().uri(mock(Uri.class)).where("some_field = ?").whereArgs("someValue").build();
    Flowable<DeleteResult> deleteResultFlowable = storIOContentResolver().delete().byQuery(deleteQuery).prepare().asRxFlowable(BackpressureStrategy.MISSING);
}
Also used : DeleteQuery(com.pushtorefresh.storio3.contentresolver.queries.DeleteQuery) DeleteResult(com.pushtorefresh.storio3.contentresolver.operations.delete.DeleteResult) Test(org.junit.Test)

Example 10 with DeleteQuery

use of com.pushtorefresh.storio3.contentresolver.queries.DeleteQuery in project storio by pushtorefresh.

the class DefaultDeleteResolverTest method performDelete.

@Test
public void performDelete() {
    final StorIOSQLite storIOSQLite = mock(StorIOSQLite.class);
    final StorIOSQLite.LowLevel lowLevel = mock(StorIOSQLite.LowLevel.class);
    final String testTable = "test_table";
    final Set<String> testTags = singleton("test_tag");
    final DeleteQuery deleteQuery = DeleteQuery.builder().table(testTable).affectsTags(testTags).build();
    when(storIOSQLite.lowLevel()).thenReturn(lowLevel);
    when(lowLevel.delete(deleteQuery)).thenReturn(1);
    final TestItem testItem = new TestItem();
    final DefaultDeleteResolver<TestItem> defaultDeleteResolver = new DefaultDeleteResolver<TestItem>() {

        @NonNull
        @Override
        public DeleteQuery mapToDeleteQuery(@NonNull TestItem testItem) {
            return deleteQuery;
        }
    };
    final DeleteResult deleteResult = defaultDeleteResolver.performDelete(storIOSQLite, testItem);
    verify(lowLevel).delete(any(DeleteQuery.class));
    verify(lowLevel).delete(deleteQuery);
    assertThat(deleteResult.numberOfRowsDeleted()).isEqualTo(1);
    assertThat(deleteResult.affectedTables()).isEqualTo(singleton(testTable));
    assertThat(deleteResult.affectedTags()).isEqualTo(testTags);
}
Also used : NonNull(android.support.annotation.NonNull) DeleteQuery(com.pushtorefresh.storio3.sqlite.queries.DeleteQuery) StorIOSQLite(com.pushtorefresh.storio3.sqlite.StorIOSQLite) Test(org.junit.Test)

Aggregations

Test (org.junit.Test)11 DeleteQuery (com.pushtorefresh.storio3.sqlite.queries.DeleteQuery)7 DeleteQuery (com.pushtorefresh.storio3.contentresolver.queries.DeleteQuery)6 StorIOSQLite (com.pushtorefresh.storio3.sqlite.StorIOSQLite)6 NonNull (android.support.annotation.NonNull)4 StorIOException (com.pushtorefresh.storio3.StorIOException)4 DeleteResult (com.pushtorefresh.storio3.contentresolver.operations.delete.DeleteResult)3 TestObserver (io.reactivex.observers.TestObserver)2 Uri (android.net.Uri)1 StorIOContentResolver (com.pushtorefresh.storio3.contentresolver.StorIOContentResolver)1 Changes (com.pushtorefresh.storio3.sqlite.Changes)1 Completable (io.reactivex.Completable)1 TestSubscriber (io.reactivex.subscribers.TestSubscriber)1