public class

MockContentProvider

extends ContentProvider
java.lang.Object
   ↳ android.content.ContentProvider
     ↳ android.test.mock.MockContentProvider

Class Overview

Mock implementation of ContentProvider. All methods are non-functional and throw UnsupportedOperationException. Tests can extend this class to implement behavior needed for tests.

Summary

Public Constructors
MockContentProvider(Context context)
A constructor accepting a Context instance, which is supposed to be the subclasss of MockContext.
MockContentProvider(Context context, String readPermission, String writePermission, PathPermission[] pathPermissions)
A constructor which initialize four member variables which ContentProvider have internally.
Protected Constructors
MockContentProvider()
A constructor using MockContext instance as a Context in it.
Public Methods
ContentProviderResult[] applyBatch(ArrayList<ContentProviderOperation> operations)
Override this to handle requests to perform a batch of operations, or the default implementation will iterate over the operations and call apply(ContentProvider, ContentProviderResult[], int) on each of them.
void attachInfo(Context context, ProviderInfo info)
After being instantiated, this is called to tell the content provider about itself.
int bulkInsert(Uri uri, ContentValues[] values)
If you're reluctant to implement this manually, please just call super.bulkInsert().
int delete(Uri uri, String selection, String[] selectionArgs)
Implement this to handle requests to delete one or more rows.
String getType(Uri uri)
Implement this to handle requests for the MIME type of the data at the given URI.
Uri insert(Uri uri, ContentValues values)
Implement this to handle requests to insert a new row.
boolean onCreate()
Implement this to initialize your content provider on startup.
Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder)
Implement this to handle query requests from clients.
int update(Uri uri, ContentValues values, String selection, String[] selectionArgs)
Implement this to handle requests to update one or more rows.
[Expand]
Inherited Methods
From class android.content.ContentProvider
From class java.lang.Object
From interface android.content.ComponentCallbacks

Public Constructors

public MockContentProvider (Context context)

Since: API Level 8

A constructor accepting a Context instance, which is supposed to be the subclasss of MockContext.

public MockContentProvider (Context context, String readPermission, String writePermission, PathPermission[] pathPermissions)

Since: API Level 8

A constructor which initialize four member variables which ContentProvider have internally.

Parameters
context A Context object which should be some mock instance (like the instance of MockContext).
readPermission The read permision you want this instance should have in the test, which is available via getReadPermission().
writePermission The write permission you want this instance should have in the test, which is available via getWritePermission().
pathPermissions The PathPermissions you want this instance should have in the test, which is available via getPathPermissions().

Protected Constructors

protected MockContentProvider ()

Since: API Level 8

A constructor using MockContext instance as a Context in it.

Public Methods

public ContentProviderResult[] applyBatch (ArrayList<ContentProviderOperation> operations)

Since: API Level 8

Override this to handle requests to perform a batch of operations, or the default implementation will iterate over the operations and call apply(ContentProvider, ContentProviderResult[], int) on each of them. If all calls to apply(ContentProvider, ContentProviderResult[], int) succeed then a ContentProviderResult array with as many elements as there were operations will be returned. If any of the calls fail, it is up to the implementation how many of the others take effect. This method can be called from multiple threads, as described in Application Fundamentals: Processes and Threads.

Parameters
operations the operations to apply
Returns
  • the results of the applications

public void attachInfo (Context context, ProviderInfo info)

Since: API Level 8

After being instantiated, this is called to tell the content provider about itself.

Parameters
context The context this provider is running in
info Registered information about this content provider

public int bulkInsert (Uri uri, ContentValues[] values)

Since: API Level 8

If you're reluctant to implement this manually, please just call super.bulkInsert().

Parameters
uri The content:// URI of the insertion request.
values An array of sets of column_name/value pairs to add to the database.
Returns
  • The number of values that were inserted.

public int delete (Uri uri, String selection, String[] selectionArgs)

Since: API Level 8

Implement this to handle requests to delete one or more rows. The implementation should apply the selection clause when performing deletion, allowing the operation to affect multiple rows in a directory. As a courtesy, call notifyDelete() after deleting. This method can be called from multiple threads, as described in Application Fundamentals: Processes and Threads.

The implementation is responsible for parsing out a row ID at the end of the URI, if a specific row is being deleted. That is, the client would pass in content://contacts/people/22 and the implementation is responsible for parsing the record number (22) when creating a SQL statement.

Parameters
uri The full URI to query, including a row ID (if a specific record is requested).
selection An optional restriction to apply to rows when deleting.
Returns
  • The number of rows affected.

public String getType (Uri uri)

Since: API Level 8

Implement this to handle requests for the MIME type of the data at the given URI. The returned MIME type should start with vnd.android.cursor.item for a single record, or vnd.android.cursor.dir/ for multiple items. This method can be called from multiple threads, as described in Application Fundamentals: Processes and Threads.

Note that there are no permissions needed for an application to access this information; if your content provider requires read and/or write permissions, or is not exported, all applications can still call this method regardless of their access permissions. This allows them to retrieve the MIME type for a URI when dispatching intents.

Parameters
uri the URI to query.
Returns
  • a MIME type string, or null if there is no type.

public Uri insert (Uri uri, ContentValues values)

Since: API Level 8

Implement this to handle requests to insert a new row. As a courtesy, call notifyChange() after inserting. This method can be called from multiple threads, as described in Application Fundamentals: Processes and Threads.

Parameters
uri The content:// URI of the insertion request.
values A set of column_name/value pairs to add to the database.
Returns
  • The URI for the newly inserted item.

public boolean onCreate ()

Since: API Level 8

Implement this to initialize your content provider on startup. This method is called for all registered content providers on the application main thread at application launch time. It must not perform lengthy operations, or application startup will be delayed.

You should defer nontrivial initialization (such as opening, upgrading, and scanning databases) until the content provider is used (via query(Uri, String[], String, String[], String), insert(Uri, ContentValues), etc). Deferred initialization keeps application startup fast, avoids unnecessary work if the provider turns out not to be needed, and stops database errors (such as a full disk) from halting application launch.

If you use SQLite, SQLiteOpenHelper is a helpful utility class that makes it easy to manage databases, and will automatically defer opening until first use. If you do use SQLiteOpenHelper, make sure to avoid calling getReadableDatabase() or getWritableDatabase() from this method. (Instead, override onOpen(SQLiteDatabase) to initialize the database when it is first opened.)

Returns
  • true if the provider was successfully loaded, false otherwise

public Cursor query (Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder)

Since: API Level 8

Implement this to handle query requests from clients. This method can be called from multiple threads, as described in Application Fundamentals: Processes and Threads.

Example client call:

// Request a specific record.
 Cursor managedCursor = managedQuery(
                ContentUris.withAppendedId(Contacts.People.CONTENT_URI, 2),
                projection,    // Which columns to return.
                null,          // WHERE clause.
                null,          // WHERE clause value substitution
                People.NAME + " ASC");   // Sort order.
Example implementation:

// SQLiteQueryBuilder is a helper class that creates the
        // proper SQL syntax for us.
        SQLiteQueryBuilder qBuilder = new SQLiteQueryBuilder();

        // Set the table we're querying.
        qBuilder.setTables(DATABASE_TABLE_NAME);

        // If the query ends in a specific record number, we're
        // being asked for a specific record, so set the
        // WHERE clause in our query.
        if((URI_MATCHER.match(uri)) == SPECIFIC_MESSAGE){
            qBuilder.appendWhere("_id=" + uri.getPathLeafId());
        }

        // Make the query.
        Cursor c = qBuilder.query(mDb,
                projection,
                selection,
                selectionArgs,
                groupBy,
                having,
                sortOrder);
        c.setNotificationUri(getContext().getContentResolver(), uri);
        return c;

Parameters
uri The URI to query. This will be the full URI sent by the client; if the client is requesting a specific record, the URI will end in a record number that the implementation should parse and add to a WHERE or HAVING clause, specifying that _id value.
projection The list of columns to put into the cursor. If null all columns are included.
selection A selection criteria to apply when filtering rows. If null then all rows are included.
selectionArgs You may include ?s in selection, which will be replaced by the values from selectionArgs, in order that they appear in the selection. The values will be bound as Strings.
sortOrder How the rows in the cursor should be sorted. If null then the provider is free to define the sort order.
Returns
  • a Cursor or null.

public int update (Uri uri, ContentValues values, String selection, String[] selectionArgs)

Since: API Level 8

Implement this to handle requests to update one or more rows. The implementation should update all rows matching the selection to set the columns according to the provided values map. As a courtesy, call notifyChange() after updating. This method can be called from multiple threads, as described in Application Fundamentals: Processes and Threads.

Parameters
uri The URI to query. This can potentially have a record ID if this is an update request for a specific record.
values A Bundle mapping from column names to new column values (NULL is a valid value).
selection An optional filter to match rows to update.
Returns
  • the number of rows affected.