
org.robolectric.shadows.ShadowContentProviderClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of framework Show documentation
Show all versions of framework Show documentation
An alternative Android testing framework.
The newest version!
package org.robolectric.shadows;
import android.content.ContentProvider;
import android.content.ContentProviderClient;
import android.content.ContentProviderOperation;
import android.content.ContentProviderResult;
import android.content.ContentResolver;
import android.content.ContentValues;
import android.content.IContentProvider;
import android.content.OperationApplicationException;
import android.content.res.AssetFileDescriptor;
import android.database.Cursor;
import android.net.Uri;
import android.os.Bundle;
import android.os.CancellationSignal;
import android.os.ParcelFileDescriptor;
import android.os.RemoteException;
import java.io.FileNotFoundException;
import java.util.ArrayList;
import org.robolectric.annotation.Implementation;
import org.robolectric.annotation.Implements;
@Implements(ContentProviderClient.class)
public class ShadowContentProviderClient {
private boolean stable;
private boolean released;
private ContentProvider provider;
public void __constructor__(ContentResolver contentResolver, IContentProvider contentProvider, boolean stable) {
this.stable = stable;
}
@Implementation
public Bundle call(String method, String arg, Bundle extras) throws RemoteException {
return provider.call(method, arg, extras);
}
@Implementation
public String getType(Uri uri) throws RemoteException {
return provider.getType(uri);
}
@Implementation
public String[] getStreamTypes(Uri uri, String mimeTypeFilter) {
return provider.getStreamTypes(uri, mimeTypeFilter);
}
@Implementation
public Cursor query(Uri url, String[] projection, String selection, String[] selectionArgs,
String sortOrder) throws RemoteException {
return provider.query(url, projection, selection, selectionArgs, sortOrder);
}
@Implementation
public Cursor query(Uri url, String[] projection, String selection, String[] selectionArgs,
String sortOrder, CancellationSignal cancellationSignal) throws RemoteException {
return provider.query(url, projection, selection, selectionArgs, sortOrder, cancellationSignal);
}
@Implementation
public Uri insert(Uri url, ContentValues initialValues) throws RemoteException {
return provider.insert(url, initialValues);
}
@Implementation
public int bulkInsert(Uri url, ContentValues[] initialValues) throws RemoteException {
return provider.bulkInsert(url, initialValues);
}
@Implementation
public int delete(Uri url, String selection, String[] selectionArgs)
throws RemoteException {
return provider.delete(url, selection, selectionArgs);
}
@Implementation
public int update(Uri url, ContentValues values, String selection, String[] selectionArgs)
throws RemoteException {
return provider.update(url, values, selection, selectionArgs);
}
@Implementation
public ParcelFileDescriptor openFile(Uri url, String mode)
throws RemoteException, FileNotFoundException {
return provider.openFile(url, mode);
}
@Implementation
public AssetFileDescriptor openAssetFile(Uri url, String mode)
throws RemoteException, FileNotFoundException {
return provider.openAssetFile(url, mode);
}
@Implementation
public final AssetFileDescriptor openTypedAssetFileDescriptor(Uri uri,
String mimeType, Bundle opts) throws RemoteException, FileNotFoundException {
return provider.openTypedAssetFile(uri, mimeType, opts);
}
@Implementation
public ContentProviderResult[] applyBatch(ArrayList operations)
throws RemoteException, OperationApplicationException {
return provider.applyBatch(operations);
}
@Implementation
public boolean release() {
synchronized (this) {
if (released) {
throw new IllegalStateException("Already released");
}
released = true;
}
return true;
}
@Implementation
public ContentProvider getLocalContentProvider() {
return ContentProvider.coerceToLocalContentProvider(provider.getIContentProvider());
}
public boolean isStable() {
return stable;
}
public boolean isReleased() {
return released;
}
void setContentProvider(ContentProvider provider) {
this.provider = provider;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy