blob: 8283019a10ec4713ad981226a4363702c0e32857 [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
Jeff Sharkey1307f422019-11-13 13:03:10 -070019import android.annotation.NonNull;
20import android.annotation.Nullable;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080021import android.content.ContentProvider;
22import android.content.ContentResolver;
23import android.content.Context;
24import android.content.IContentProvider;
25import android.database.ContentObserver;
26import android.net.Uri;
27
Paul Duffin8c5a24d2017-05-10 13:30:16 +010028import java.util.HashMap;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080029import java.util.Map;
30
31/**
Joe Malin7d433aa2010-05-31 14:37:28 -070032 * <p>
33 * An extension of {@link android.content.ContentResolver} that is designed for
34 * testing.
35 * </p>
36 * <p>
37 * MockContentResolver overrides Android's normal way of resolving providers by
38 * authority. To have access to a provider based on its authority, users of
39 * MockContentResolver first instantiate the provider and
40 * use {@link MockContentResolver#addProvider(String, ContentProvider)}. Resolution of an
41 * authority occurs entirely within MockContentResolver.
42 * </p>
43 * <p>
44 * Users can also set an authority's entry in the map to null, so that a provider is completely
45 * mocked out.
46 * </p>
Joe Fernandez3aef8e1d2011-12-20 10:38:34 -080047 *
48 * <div class="special reference">
49 * <h3>Developer Guides</h3>
50 * <p>For more information about application testing, read the
51 * <a href="{@docRoot}guide/topics/testing/index.html">Testing</a> developer guide.</p>
52 * </div>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080053 */
54public class MockContentResolver extends ContentResolver {
55 Map<String, ContentProvider> mProviders;
56
Jeff Sharkey66a017b2013-01-17 18:18:22 -080057 /**
58 * Creates a local map of providers. This map is used instead of the global
59 * map when an API call tries to acquire a provider.
Joe Malin7d433aa2010-05-31 14:37:28 -070060 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080061 public MockContentResolver() {
Jeff Sharkey66a017b2013-01-17 18:18:22 -080062 this(null);
63 }
64
65 /**
66 * Creates a local map of providers. This map is used instead of the global
67 * map when an API call tries to acquire a provider.
68 */
69 public MockContentResolver(Context context) {
70 super(context);
Paul Duffin8c5a24d2017-05-10 13:30:16 +010071 mProviders = new HashMap<>();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080072 }
73
Joe Malin7d433aa2010-05-31 14:37:28 -070074 /**
75 * Adds access to a provider based on its authority
76 *
77 * @param name The authority name associated with the provider.
78 * @param provider An instance of {@link android.content.ContentProvider} or one of its
79 * subclasses, or null.
80 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080081 public void addProvider(String name, ContentProvider provider) {
Joe Malin7d433aa2010-05-31 14:37:28 -070082
83 /*
84 * Maps the authority to the provider locally.
85 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080086 mProviders.put(name, provider);
87 }
88
89 /** @hide */
90 @Override
91 protected IContentProvider acquireProvider(Context context, String name) {
Dianne Hackborncca1f0e2010-09-26 18:34:53 -070092 return acquireExistingProvider(context, name);
93 }
94
95 /** @hide */
96 @Override
97 protected IContentProvider acquireExistingProvider(Context context, String name) {
Joe Malin7d433aa2010-05-31 14:37:28 -070098
99 /*
100 * Gets the content provider from the local map
101 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800102 final ContentProvider provider = mProviders.get(name);
Joe Malin7d433aa2010-05-31 14:37:28 -0700103
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800104 if (provider != null) {
105 return provider.getIContentProvider();
106 } else {
107 return null;
108 }
109 }
110
111 /** @hide */
112 @Override
113 public boolean releaseProvider(IContentProvider provider) {
114 return true;
115 }
116
Dianne Hackborn652b6d12012-05-09 18:18:40 -0700117 /** @hide */
118 @Override
119 protected IContentProvider acquireUnstableProvider(Context c, String name) {
120 return acquireProvider(c, name);
121 }
122
123 /** @hide */
124 @Override
125 public boolean releaseUnstableProvider(IContentProvider icp) {
126 return releaseProvider(icp);
127 }
128
Dianne Hackborn6ae8d182012-05-23 13:12:42 -0700129 /** @hide */
130 @Override
131 public void unstableProviderDied(IContentProvider icp) {
132 }
133
Joe Malin7d433aa2010-05-31 14:37:28 -0700134 /**
Jeff Sharkey1307f422019-11-13 13:03:10 -0700135 * Overrides the behavior from the parent class to completely ignore any
136 * content notifications sent to this object. This effectively hides clients
137 * from observers elsewhere in the system.
Joe Malin7d433aa2010-05-31 14:37:28 -0700138 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800139 @Override
Jeff Sharkey1307f422019-11-13 13:03:10 -0700140 public void notifyChange(@NonNull Uri uri, @Nullable ContentObserver observer) {
141 }
142
143 /**
144 * Overrides the behavior from the parent class to completely ignore any
145 * content notifications sent to this object. This effectively hides clients
146 * from observers elsewhere in the system.
147 *
148 * @deprecated callers should consider migrating to
149 * {@link #notifyChange(Uri, ContentObserver, int)}, as it
150 * offers support for many more options than just
151 * {@link #NOTIFY_SYNC_TO_NETWORK}.
152 */
153 @Override
154 @Deprecated
155 public void notifyChange(@NonNull Uri uri, @Nullable ContentObserver observer,
Joe Malin7d433aa2010-05-31 14:37:28 -0700156 boolean syncToNetwork) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800157 }
Jeff Sharkey1307f422019-11-13 13:03:10 -0700158
159 /**
160 * Overrides the behavior from the parent class to completely ignore any
161 * content notifications sent to this object. This effectively hides clients
162 * from observers elsewhere in the system.
163 */
164 @Override
165 public void notifyChange(@NonNull Uri uri, @Nullable ContentObserver observer,
166 @NotifyFlags int flags) {
167 }
168
169 /**
170 * Overrides the behavior from the parent class to completely ignore any
171 * content notifications sent to this object. This effectively hides clients
172 * from observers elsewhere in the system.
173 */
174 @Override
175 public void notifyChange(@NonNull Iterable<Uri> uris, @Nullable ContentObserver observer,
176 @NotifyFlags int flags) {
177 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800178}