| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2007 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 | |
| 17 | package android.test.mock; |
| 18 | |
| 19 | import android.content.ComponentName; |
| 20 | import android.content.ContentResolver; |
| 21 | import android.content.Context; |
| 22 | import android.content.Intent; |
| 23 | import android.content.IntentFilter; |
| 24 | import android.content.BroadcastReceiver; |
| Dianne Hackborn | fa82f22 | 2009-09-17 15:14:12 -0700 | [diff] [blame] | 25 | import android.content.IntentSender; |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 26 | import android.content.ServiceConnection; |
| 27 | import android.content.SharedPreferences; |
| Dianne Hackborn | 5c1e00b | 2009-06-18 17:10:57 -0700 | [diff] [blame] | 28 | import android.content.pm.ApplicationInfo; |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 29 | import android.content.pm.PackageManager; |
| 30 | import android.content.res.AssetManager; |
| 31 | import android.content.res.Resources; |
| Vasu Nori | 74f170f | 2010-06-01 18:06:18 -0700 | [diff] [blame] | 32 | import android.database.DatabaseErrorHandler; |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 33 | import android.database.sqlite.SQLiteDatabase; |
| 34 | import android.graphics.Bitmap; |
| 35 | import android.graphics.drawable.Drawable; |
| 36 | import android.net.Uri; |
| 37 | import android.os.Bundle; |
| 38 | import android.os.Handler; |
| 39 | import android.os.Looper; |
| 40 | |
| 41 | import java.io.File; |
| 42 | import java.io.FileInputStream; |
| 43 | import java.io.FileNotFoundException; |
| 44 | import java.io.FileOutputStream; |
| 45 | import java.io.IOException; |
| 46 | import java.io.InputStream; |
| 47 | |
| 48 | /** |
| 49 | * A mock {@link android.content.Context} class. All methods are non-functional and throw |
| 50 | * {@link java.lang.UnsupportedOperationException}. You can use this to inject other dependencies, |
| 51 | * mocks, or monitors into the classes you are testing. |
| 52 | */ |
| 53 | public class MockContext extends Context { |
| 54 | |
| 55 | @Override |
| 56 | public AssetManager getAssets() { |
| 57 | throw new UnsupportedOperationException(); |
| 58 | } |
| 59 | |
| 60 | @Override |
| 61 | public Resources getResources() { |
| 62 | throw new UnsupportedOperationException(); |
| 63 | } |
| 64 | |
| 65 | @Override |
| 66 | public PackageManager getPackageManager() { |
| 67 | throw new UnsupportedOperationException(); |
| 68 | } |
| 69 | |
| 70 | @Override |
| 71 | public ContentResolver getContentResolver() { |
| 72 | throw new UnsupportedOperationException(); |
| 73 | } |
| 74 | |
| 75 | @Override |
| 76 | public Looper getMainLooper() { |
| 77 | throw new UnsupportedOperationException(); |
| 78 | } |
| 79 | |
| 80 | @Override |
| 81 | public Context getApplicationContext() { |
| 82 | throw new UnsupportedOperationException(); |
| 83 | } |
| 84 | |
| 85 | @Override |
| 86 | public void setTheme(int resid) { |
| 87 | throw new UnsupportedOperationException(); |
| 88 | } |
| 89 | |
| 90 | @Override |
| 91 | public Resources.Theme getTheme() { |
| 92 | throw new UnsupportedOperationException(); |
| 93 | } |
| 94 | |
| 95 | @Override |
| 96 | public ClassLoader getClassLoader() { |
| 97 | throw new UnsupportedOperationException(); |
| 98 | } |
| 99 | |
| 100 | @Override |
| 101 | public String getPackageName() { |
| 102 | throw new UnsupportedOperationException(); |
| 103 | } |
| 104 | |
| 105 | @Override |
| Dianne Hackborn | 5c1e00b | 2009-06-18 17:10:57 -0700 | [diff] [blame] | 106 | public ApplicationInfo getApplicationInfo() { |
| 107 | throw new UnsupportedOperationException(); |
| 108 | } |
| 109 | |
| 110 | @Override |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 111 | public String getPackageResourcePath() { |
| 112 | throw new UnsupportedOperationException(); |
| 113 | } |
| 114 | |
| Dianne Hackborn | 7f20543 | 2009-07-28 00:13:47 -0700 | [diff] [blame] | 115 | /** @hide */ |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 116 | @Override |
| Joe Onorato | 23ecae3 | 2009-06-10 17:07:15 -0700 | [diff] [blame] | 117 | public File getSharedPrefsFile(String name) { |
| 118 | throw new UnsupportedOperationException(); |
| 119 | } |
| 120 | |
| 121 | @Override |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 122 | public String getPackageCodePath() { |
| 123 | throw new UnsupportedOperationException(); |
| 124 | } |
| 125 | |
| 126 | @Override |
| 127 | public SharedPreferences getSharedPreferences(String name, int mode) { |
| 128 | throw new UnsupportedOperationException(); |
| 129 | } |
| 130 | |
| 131 | @Override |
| 132 | public FileInputStream openFileInput(String name) throws FileNotFoundException { |
| 133 | throw new UnsupportedOperationException(); |
| 134 | } |
| 135 | |
| 136 | @Override |
| 137 | public FileOutputStream openFileOutput(String name, int mode) throws FileNotFoundException { |
| 138 | throw new UnsupportedOperationException(); |
| 139 | } |
| 140 | |
| 141 | @Override |
| 142 | public boolean deleteFile(String name) { |
| 143 | throw new UnsupportedOperationException(); |
| 144 | } |
| 145 | |
| 146 | @Override |
| 147 | public File getFileStreamPath(String name) { |
| 148 | throw new UnsupportedOperationException(); |
| 149 | } |
| 150 | |
| 151 | @Override |
| 152 | public String[] fileList() { |
| 153 | throw new UnsupportedOperationException(); |
| 154 | } |
| 155 | |
| 156 | @Override |
| 157 | public File getFilesDir() { |
| 158 | throw new UnsupportedOperationException(); |
| 159 | } |
| 160 | |
| 161 | @Override |
| Dianne Hackborn | e83cefce | 2010-02-04 17:38:14 -0800 | [diff] [blame] | 162 | public File getExternalFilesDir(String type) { |
| 163 | throw new UnsupportedOperationException(); |
| 164 | } |
| 165 | |
| 166 | @Override |
| Dianne Hackborn | 805fd7e | 2011-01-16 18:30:29 -0800 | [diff] [blame] | 167 | public File getObbDir() { |
| 168 | throw new UnsupportedOperationException(); |
| 169 | } |
| 170 | |
| 171 | @Override |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 172 | public File getCacheDir() { |
| 173 | throw new UnsupportedOperationException(); |
| 174 | } |
| 175 | |
| 176 | @Override |
| Dianne Hackborn | e83cefce | 2010-02-04 17:38:14 -0800 | [diff] [blame] | 177 | public File getExternalCacheDir() { |
| 178 | throw new UnsupportedOperationException(); |
| 179 | } |
| 180 | |
| 181 | @Override |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 182 | public File getDir(String name, int mode) { |
| 183 | throw new UnsupportedOperationException(); |
| 184 | } |
| 185 | |
| 186 | @Override |
| 187 | public SQLiteDatabase openOrCreateDatabase(String file, int mode, |
| 188 | SQLiteDatabase.CursorFactory factory) { |
| 189 | throw new UnsupportedOperationException(); |
| 190 | } |
| 191 | |
| 192 | @Override |
| Vasu Nori | 74f170f | 2010-06-01 18:06:18 -0700 | [diff] [blame] | 193 | public SQLiteDatabase openOrCreateDatabase(String file, int mode, |
| 194 | SQLiteDatabase.CursorFactory factory, DatabaseErrorHandler errorHandler) { |
| 195 | throw new UnsupportedOperationException(); |
| 196 | } |
| 197 | |
| 198 | @Override |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 199 | public File getDatabasePath(String name) { |
| 200 | throw new UnsupportedOperationException(); |
| 201 | } |
| 202 | |
| 203 | @Override |
| 204 | public String[] databaseList() { |
| 205 | throw new UnsupportedOperationException(); |
| 206 | } |
| 207 | |
| 208 | @Override |
| 209 | public boolean deleteDatabase(String name) { |
| 210 | throw new UnsupportedOperationException(); |
| 211 | } |
| 212 | |
| 213 | @Override |
| 214 | public Drawable getWallpaper() { |
| 215 | throw new UnsupportedOperationException(); |
| 216 | } |
| 217 | |
| 218 | @Override |
| 219 | public Drawable peekWallpaper() { |
| 220 | throw new UnsupportedOperationException(); |
| 221 | } |
| 222 | |
| 223 | @Override |
| 224 | public int getWallpaperDesiredMinimumWidth() { |
| 225 | throw new UnsupportedOperationException(); |
| 226 | } |
| 227 | |
| 228 | @Override |
| 229 | public int getWallpaperDesiredMinimumHeight() { |
| 230 | throw new UnsupportedOperationException(); |
| 231 | } |
| 232 | |
| 233 | @Override |
| 234 | public void setWallpaper(Bitmap bitmap) throws IOException { |
| 235 | throw new UnsupportedOperationException(); |
| 236 | } |
| 237 | |
| 238 | @Override |
| 239 | public void setWallpaper(InputStream data) throws IOException { |
| 240 | throw new UnsupportedOperationException(); |
| 241 | } |
| 242 | |
| 243 | @Override |
| 244 | public void clearWallpaper() { |
| 245 | throw new UnsupportedOperationException(); |
| 246 | } |
| 247 | |
| 248 | @Override |
| 249 | public void startActivity(Intent intent) { |
| 250 | throw new UnsupportedOperationException(); |
| 251 | } |
| 252 | |
| 253 | @Override |
| Dianne Hackborn | 621e17d | 2010-11-22 15:59:56 -0800 | [diff] [blame] | 254 | public void startActivities(Intent[] intents) { |
| 255 | throw new UnsupportedOperationException(); |
| 256 | } |
| 257 | |
| 258 | @Override |
| Dianne Hackborn | fa82f22 | 2009-09-17 15:14:12 -0700 | [diff] [blame] | 259 | public void startIntentSender(IntentSender intent, |
| 260 | Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags) |
| 261 | throws IntentSender.SendIntentException { |
| 262 | throw new UnsupportedOperationException(); |
| 263 | } |
| 264 | |
| 265 | @Override |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 266 | public void sendBroadcast(Intent intent) { |
| 267 | throw new UnsupportedOperationException(); |
| 268 | } |
| 269 | |
| Amith Yamasani | 67cf7d3 | 2012-02-16 14:31:23 -0800 | [diff] [blame] | 270 | /** @hide */ |
| 271 | @Override |
| 272 | public void sendBroadcast(Intent intent, int userId) { |
| 273 | throw new UnsupportedOperationException(); |
| 274 | } |
| 275 | |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 276 | @Override |
| 277 | public void sendBroadcast(Intent intent, String receiverPermission) { |
| 278 | throw new UnsupportedOperationException(); |
| 279 | } |
| 280 | |
| 281 | @Override |
| 282 | public void sendOrderedBroadcast(Intent intent, |
| 283 | String receiverPermission) { |
| 284 | throw new UnsupportedOperationException(); |
| 285 | } |
| 286 | |
| 287 | @Override |
| 288 | public void sendOrderedBroadcast(Intent intent, String receiverPermission, |
| 289 | BroadcastReceiver resultReceiver, Handler scheduler, int initialCode, String initialData, |
| 290 | Bundle initialExtras) { |
| 291 | throw new UnsupportedOperationException(); |
| 292 | } |
| 293 | |
| 294 | @Override |
| 295 | public void sendStickyBroadcast(Intent intent) { |
| 296 | throw new UnsupportedOperationException(); |
| 297 | } |
| 298 | |
| 299 | @Override |
| Dianne Hackborn | efa199f | 2009-09-19 12:03:15 -0700 | [diff] [blame] | 300 | public void sendStickyOrderedBroadcast(Intent intent, |
| 301 | BroadcastReceiver resultReceiver, Handler scheduler, int initialCode, String initialData, |
| 302 | Bundle initialExtras) { |
| 303 | throw new UnsupportedOperationException(); |
| 304 | } |
| 305 | |
| 306 | @Override |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 307 | public void removeStickyBroadcast(Intent intent) { |
| 308 | throw new UnsupportedOperationException(); |
| 309 | } |
| 310 | |
| 311 | @Override |
| 312 | public Intent registerReceiver(BroadcastReceiver receiver, IntentFilter filter) { |
| 313 | throw new UnsupportedOperationException(); |
| 314 | } |
| 315 | |
| 316 | @Override |
| 317 | public Intent registerReceiver(BroadcastReceiver receiver, IntentFilter filter, |
| 318 | String broadcastPermission, Handler scheduler) { |
| 319 | throw new UnsupportedOperationException(); |
| 320 | } |
| 321 | |
| 322 | @Override |
| 323 | public void unregisterReceiver(BroadcastReceiver receiver) { |
| 324 | throw new UnsupportedOperationException(); |
| 325 | } |
| 326 | |
| 327 | @Override |
| 328 | public ComponentName startService(Intent service) { |
| 329 | throw new UnsupportedOperationException(); |
| 330 | } |
| 331 | |
| 332 | @Override |
| 333 | public boolean stopService(Intent service) { |
| 334 | throw new UnsupportedOperationException(); |
| 335 | } |
| 336 | |
| 337 | @Override |
| 338 | public boolean bindService(Intent service, ServiceConnection conn, int flags) { |
| 339 | throw new UnsupportedOperationException(); |
| 340 | } |
| 341 | |
| Amith Yamasani | 37ce3a8 | 2012-02-06 12:04:42 -0800 | [diff] [blame] | 342 | /** @hide */ |
| 343 | @Override |
| 344 | public boolean bindService(Intent service, ServiceConnection conn, int flags, int userId) { |
| 345 | throw new UnsupportedOperationException(); |
| 346 | } |
| 347 | |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 348 | @Override |
| 349 | public void unbindService(ServiceConnection conn) { |
| 350 | throw new UnsupportedOperationException(); |
| 351 | } |
| 352 | |
| 353 | @Override |
| 354 | public boolean startInstrumentation(ComponentName className, |
| 355 | String profileFile, Bundle arguments) { |
| 356 | throw new UnsupportedOperationException(); |
| 357 | } |
| 358 | |
| 359 | @Override |
| 360 | public Object getSystemService(String name) { |
| 361 | throw new UnsupportedOperationException(); |
| 362 | } |
| 363 | |
| 364 | @Override |
| 365 | public int checkPermission(String permission, int pid, int uid) { |
| 366 | throw new UnsupportedOperationException(); |
| 367 | } |
| 368 | |
| 369 | @Override |
| 370 | public int checkCallingPermission(String permission) { |
| 371 | throw new UnsupportedOperationException(); |
| 372 | } |
| 373 | |
| 374 | @Override |
| 375 | public int checkCallingOrSelfPermission(String permission) { |
| 376 | throw new UnsupportedOperationException(); |
| 377 | } |
| 378 | |
| 379 | @Override |
| 380 | public void enforcePermission( |
| 381 | String permission, int pid, int uid, String message) { |
| 382 | throw new UnsupportedOperationException(); |
| 383 | } |
| 384 | |
| 385 | @Override |
| 386 | public void enforceCallingPermission(String permission, String message) { |
| 387 | throw new UnsupportedOperationException(); |
| 388 | } |
| 389 | |
| 390 | @Override |
| 391 | public void enforceCallingOrSelfPermission(String permission, String message) { |
| 392 | throw new UnsupportedOperationException(); |
| 393 | } |
| 394 | |
| 395 | @Override |
| 396 | public void grantUriPermission(String toPackage, Uri uri, int modeFlags) { |
| 397 | throw new UnsupportedOperationException(); |
| 398 | } |
| 399 | |
| 400 | @Override |
| 401 | public void revokeUriPermission(Uri uri, int modeFlags) { |
| 402 | throw new UnsupportedOperationException(); |
| 403 | } |
| 404 | |
| 405 | @Override |
| 406 | public int checkUriPermission(Uri uri, int pid, int uid, int modeFlags) { |
| 407 | throw new UnsupportedOperationException(); |
| 408 | } |
| 409 | |
| 410 | @Override |
| 411 | public int checkCallingUriPermission(Uri uri, int modeFlags) { |
| 412 | throw new UnsupportedOperationException(); |
| 413 | } |
| 414 | |
| 415 | @Override |
| 416 | public int checkCallingOrSelfUriPermission(Uri uri, int modeFlags) { |
| 417 | throw new UnsupportedOperationException(); |
| 418 | } |
| 419 | |
| 420 | @Override |
| 421 | public int checkUriPermission(Uri uri, String readPermission, |
| 422 | String writePermission, int pid, int uid, int modeFlags) { |
| 423 | throw new UnsupportedOperationException(); |
| 424 | } |
| 425 | |
| 426 | @Override |
| 427 | public void enforceUriPermission( |
| 428 | Uri uri, int pid, int uid, int modeFlags, String message) { |
| 429 | throw new UnsupportedOperationException(); |
| 430 | } |
| 431 | |
| 432 | @Override |
| 433 | public void enforceCallingUriPermission( |
| 434 | Uri uri, int modeFlags, String message) { |
| 435 | throw new UnsupportedOperationException(); |
| 436 | } |
| 437 | |
| 438 | @Override |
| 439 | public void enforceCallingOrSelfUriPermission( |
| 440 | Uri uri, int modeFlags, String message) { |
| 441 | throw new UnsupportedOperationException(); |
| 442 | } |
| 443 | |
| 444 | public void enforceUriPermission( |
| 445 | Uri uri, String readPermission, String writePermission, |
| 446 | int pid, int uid, int modeFlags, String message) { |
| 447 | throw new UnsupportedOperationException(); |
| 448 | } |
| 449 | |
| 450 | @Override |
| 451 | public Context createPackageContext(String packageName, int flags) |
| 452 | throws PackageManager.NameNotFoundException { |
| 453 | throw new UnsupportedOperationException(); |
| 454 | } |
| Romain Guy | 870e09f | 2009-07-06 16:35:25 -0700 | [diff] [blame] | 455 | |
| 456 | @Override |
| 457 | public boolean isRestricted() { |
| 458 | throw new UnsupportedOperationException(); |
| 459 | } |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 460 | } |