Search in sources :

Example 41 with MockContentResolver

use of android.test.mock.MockContentResolver in project android_frameworks_base by ParanoidAndroid.

the class ProviderTestCase method setUp.

@Override
protected void setUp() throws Exception {
    super.setUp();
    mResolver = new MockContentResolver();
    final String filenamePrefix = "test.";
    RenamingDelegatingContext targetContextWrapper = new RenamingDelegatingContext(// The context that most methods are delegated to
    new MockContext(), // The context that file methods are delegated to
    getInstrumentation().getTargetContext(), filenamePrefix);
    mProviderContext = new IsolatedContext(mResolver, targetContextWrapper);
    mProvider = mProviderClass.newInstance();
    mProvider.attachInfoForTesting(mProviderContext, null);
    assertNotNull(mProvider);
    mResolver.addProvider(mProviderAuthority, getProvider());
}
Also used : MockContext(android.test.mock.MockContext) MockContentResolver(android.test.mock.MockContentResolver)

Example 42 with MockContentResolver

use of android.test.mock.MockContentResolver in project android_frameworks_base by ParanoidAndroid.

the class ProviderTestCase2 method newResolverWithContentProviderFromSql.

/**
     * <p>
     *      Creates a new content provider of the same type as that passed to the test case class,
     *      with an authority name set to the authority parameter, and using an SQLite database as
     *      the underlying data source. The SQL statement parameter is used to create the database.
     *      This method also creates a new {@link MockContentResolver} and adds the provider to it.
     * </p>
     * <p>
     *      Both the new provider and the new resolver are put into an {@link IsolatedContext}
     *      that uses the targetContext parameter for file operations and a {@link MockContext}
     *      for everything else. The IsolatedContext prepends the filenamePrefix parameter to
     *      file, database, and directory names.
     * </p>
     * <p>
     *      This is a convenience method for creating a "mock" provider that can contain test data.
     * </p>
     *
     * @param targetContext The context to use as the basis of the IsolatedContext
     * @param filenamePrefix A string that is prepended to file, database, and directory names
     * @param providerClass The type of the provider being tested
     * @param authority The authority string to associated with the test provider
     * @param databaseName The name assigned to the database
     * @param databaseVersion The version assigned to the database
     * @param sql A string containing the SQL statements that are needed to create the desired
     * database and its tables. The format is the same as that generated by the
     * <a href="http://www.sqlite.org/sqlite.html">sqlite3</a> tool's <code>.dump</code> command.
     * @return ContentResolver A new {@link MockContentResolver} linked to the provider
     *
     * @throws IllegalAccessException
     * @throws InstantiationException
     */
public static <T extends ContentProvider> ContentResolver newResolverWithContentProviderFromSql(Context targetContext, String filenamePrefix, Class<T> providerClass, String authority, String databaseName, int databaseVersion, String sql) throws IllegalAccessException, InstantiationException {
    MockContentResolver resolver = new MockContentResolver();
    RenamingDelegatingContext targetContextWrapper = new RenamingDelegatingContext(// The context that most methods are delegated to
    new MockContext(), // The context that file methods are delegated to
    targetContext, filenamePrefix);
    Context context = new IsolatedContext(resolver, targetContextWrapper);
    DatabaseUtils.createDbFromSqlStatements(context, databaseName, databaseVersion, sql);
    T provider = providerClass.newInstance();
    provider.attachInfoForTesting(context, null);
    resolver.addProvider(authority, provider);
    return resolver;
}
Also used : Context(android.content.Context) MockContext(android.test.mock.MockContext) MockContext(android.test.mock.MockContext) MockContentResolver(android.test.mock.MockContentResolver)

Example 43 with MockContentResolver

use of android.test.mock.MockContentResolver in project android_frameworks_base by ParanoidAndroid.

the class ProviderTestCase2 method setUp.

/**
     * Sets up the environment for the test fixture.
     * <p>
     * Creates a new
     * {@link android.test.mock.MockContentResolver}, a new IsolatedContext
     * that isolates the provider's file operations, and a new instance of
     * the provider under test within the isolated environment.
     * </p>
     *
     * @throws Exception
     */
@Override
protected void setUp() throws Exception {
    super.setUp();
    mResolver = new MockContentResolver();
    final String filenamePrefix = "test.";
    RenamingDelegatingContext targetContextWrapper = new RenamingDelegatingContext(// The context that most methods are
    new MockContext2(), // The context that file methods are delegated to
    getContext(), filenamePrefix);
    mProviderContext = new IsolatedContext(mResolver, targetContextWrapper);
    mProvider = mProviderClass.newInstance();
    mProvider.attachInfoForTesting(mProviderContext, null);
    assertNotNull(mProvider);
    mResolver.addProvider(mProviderAuthority, getProvider());
}
Also used : MockContentResolver(android.test.mock.MockContentResolver)

Example 44 with MockContentResolver

use of android.test.mock.MockContentResolver in project android_frameworks_base by ParanoidAndroid.

the class AccountManagerServiceTest method setUp.

@Override
protected void setUp() throws Exception {
    final String filenamePrefix = "test.";
    MockContentResolver resolver = new MockContentResolver();
    RenamingDelegatingContext targetContextWrapper = new RenamingDelegatingContext(// The context that most methods are delegated to
    new MyMockContext(), // The context that file methods are delegated to
    getContext(), filenamePrefix);
    Context context = new IsolatedContext(resolver, targetContextWrapper);
    setContext(context);
    mAms = new MyAccountManagerService(getContext(), new MyMockPackageManager(), new MockAccountAuthenticatorCache());
}
Also used : Context(android.content.Context) IsolatedContext(android.test.IsolatedContext) RenamingDelegatingContext(android.test.RenamingDelegatingContext) MockContext(android.test.mock.MockContext) RenamingDelegatingContext(android.test.RenamingDelegatingContext) MockContentResolver(android.test.mock.MockContentResolver) IsolatedContext(android.test.IsolatedContext)

Example 45 with MockContentResolver

use of android.test.mock.MockContentResolver in project android_frameworks_base by ParanoidAndroid.

the class TestContext method testPurgeActiveSync.

/**
     * Test that we handle the case of a history row being old enough to purge before the
     * correcponding sync is finished. This can happen if the clock changes while we are syncing.
     *
     */
// TODO: this test causes AidlTest to fail. Omit for now
// @SmallTest
public void testPurgeActiveSync() throws Exception {
    final Account account = new Account("a@example.com", "example.type");
    final String authority = "testprovider";
    MockContentResolver mockResolver = new MockContentResolver();
    SyncStorageEngine engine = SyncStorageEngine.newTestInstance(new TestContext(mockResolver, getContext()));
    long time0 = 1000;
    long historyId = engine.insertStartSyncEvent(account, 0, SyncOperation.REASON_PERIODIC, authority, time0, SyncStorageEngine.SOURCE_LOCAL, false, /* initialization */
    null);
    long time1 = time0 + SyncStorageEngine.MILLIS_IN_4WEEKS * 2;
    engine.stopSyncEvent(historyId, time1 - time0, "yay", 0, 0);
}
Also used : Account(android.accounts.Account) MockContentResolver(android.test.mock.MockContentResolver)

Aggregations

MockContentResolver (android.test.mock.MockContentResolver)69 Account (android.accounts.Account)22 MockContext (android.test.mock.MockContext)17 AtomicFile (com.android.internal.os.AtomicFile)16 File (java.io.File)16 FileOutputStream (java.io.FileOutputStream)16 MediumTest (android.test.suitebuilder.annotation.MediumTest)12 Context (android.content.Context)11 ContextWrapper (android.content.ContextWrapper)10 Bundle (android.os.Bundle)7 ContentResolver (android.content.ContentResolver)5 SmallTest (android.test.suitebuilder.annotation.SmallTest)5 Before (org.junit.Before)5 ComponentName (android.content.ComponentName)4 PeriodicSync (android.content.PeriodicSync)3 IsolatedContext (android.test.IsolatedContext)3 ProviderInfo (android.content.pm.ProviderInfo)2 RenamingDelegatingContext (android.test.RenamingDelegatingContext)2 GitHubProvider (io.reark.rxgithubapp.advanced.data.schematicProvider.generated.GitHubProvider)2 ContentProvider (android.content.ContentProvider)1