blob: 6c91f4ea555a1d207b7851936357e8fd61f19b04 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.test.mock;
18
19import android.content.ContentProvider;
20import android.content.ContentResolver;
21import android.content.Context;
22import android.content.IContentProvider;
23import android.database.ContentObserver;
24import android.net.Uri;
25
26import com.google.android.collect.Maps;
27
28import java.util.Map;
29
30/**
Joe Malin7d433aa2010-05-31 14:37:28 -070031 * <p>
32 * An extension of {@link android.content.ContentResolver} that is designed for
33 * testing.
34 * </p>
35 * <p>
36 * MockContentResolver overrides Android's normal way of resolving providers by
37 * authority. To have access to a provider based on its authority, users of
38 * MockContentResolver first instantiate the provider and
39 * use {@link MockContentResolver#addProvider(String, ContentProvider)}. Resolution of an
40 * authority occurs entirely within MockContentResolver.
41 * </p>
42 * <p>
43 * Users can also set an authority's entry in the map to null, so that a provider is completely
44 * mocked out.
45 * </p>
Joe Fernandez3aef8e1d2011-12-20 10:38:34 -080046 *
47 * <div class="special reference">
48 * <h3>Developer Guides</h3>
49 * <p>For more information about application testing, read the
50 * <a href="{@docRoot}guide/topics/testing/index.html">Testing</a> developer guide.</p>
51 * </div>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080052 */
Joe Malin7d433aa2010-05-31 14:37:28 -070053
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080054public class MockContentResolver extends ContentResolver {
55 Map<String, ContentProvider> mProviders;
56
Joe Malin7d433aa2010-05-31 14:37:28 -070057 /*
58 * Creates a local map of providers. This map is used instead of the global map when an
59 * API call tries to acquire a provider.
60 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080061 public MockContentResolver() {
62 super(null);
63 mProviders = Maps.newHashMap();
64 }
65
Joe Malin7d433aa2010-05-31 14:37:28 -070066 /**
67 * Adds access to a provider based on its authority
68 *
69 * @param name The authority name associated with the provider.
70 * @param provider An instance of {@link android.content.ContentProvider} or one of its
71 * subclasses, or null.
72 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080073 public void addProvider(String name, ContentProvider provider) {
Joe Malin7d433aa2010-05-31 14:37:28 -070074
75 /*
76 * Maps the authority to the provider locally.
77 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080078 mProviders.put(name, provider);
79 }
80
81 /** @hide */
82 @Override
83 protected IContentProvider acquireProvider(Context context, String name) {
Dianne Hackborncca1f0e2010-09-26 18:34:53 -070084 return acquireExistingProvider(context, name);
85 }
86
87 /** @hide */
88 @Override
89 protected IContentProvider acquireExistingProvider(Context context, String name) {
Joe Malin7d433aa2010-05-31 14:37:28 -070090
91 /*
92 * Gets the content provider from the local map
93 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080094 final ContentProvider provider = mProviders.get(name);
Joe Malin7d433aa2010-05-31 14:37:28 -070095
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080096 if (provider != null) {
97 return provider.getIContentProvider();
98 } else {
99 return null;
100 }
101 }
102
103 /** @hide */
104 @Override
105 public boolean releaseProvider(IContentProvider provider) {
106 return true;
107 }
108
Joe Malin7d433aa2010-05-31 14:37:28 -0700109 /**
110 * Overrides {@link android.content.ContentResolver#notifyChange(Uri, ContentObserver, boolean)
111 * ContentResolver.notifChange(Uri, ContentObserver, boolean)}. All parameters are ignored.
112 * The method hides providers linked to MockContentResolver from other observers in the system.
113 *
114 * @param uri (Ignored) The uri of the content provider.
115 * @param observer (Ignored) The observer that originated the change.
116 * @param syncToNetwork (Ignored) If true, attempt to sync the change to the network.
117 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800118 @Override
Joe Malin7d433aa2010-05-31 14:37:28 -0700119 public void notifyChange(Uri uri,
120 ContentObserver observer,
121 boolean syncToNetwork) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800122 }
123}