/* * Copyright (C) 2008 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package android.test; import android.accounts.AccountManager; import android.content.ContextWrapper; import android.content.ContentResolver; import android.content.Intent; import android.content.Context; import android.content.ServiceConnection; import android.content.BroadcastReceiver; import android.content.IntentFilter; import android.content.pm.PackageManager; import android.net.Uri; import android.test.mock.MockAccountManager; import java.io.File; import java.util.ArrayList; import java.util.List; /** * A mock context which prevents its users from talking to the rest of the device while * stubbing enough methods to satify code that tries to talk to other packages. * * @deprecated New tests should be written using the * Android Testing Support Library. */ @Deprecated public class IsolatedContext extends ContextWrapper { private ContentResolver mResolver; private final AccountManager mMockAccountManager; private List mBroadcastIntents = new ArrayList<>(); public IsolatedContext( ContentResolver resolver, Context targetContext) { super(targetContext); mResolver = resolver; mMockAccountManager = MockAccountManager.newMockAccountManager(IsolatedContext.this); } /** Returns the list of intents that were broadcast since the last call to this method. */ public List getAndClearBroadcastIntents() { List intents = mBroadcastIntents; mBroadcastIntents = new ArrayList<>(); return intents; } @Override public ContentResolver getContentResolver() { // We need to return the real resolver so that MailEngine.makeRight can get to the // subscribed feeds provider. TODO: mock out subscribed feeds too. return mResolver; } @Override public boolean bindService(Intent service, ServiceConnection conn, int flags) { return false; } @Override public Intent registerReceiver(BroadcastReceiver receiver, IntentFilter filter) { return null; } @Override public void unregisterReceiver(BroadcastReceiver receiver) { // Ignore } @Override public void sendBroadcast(Intent intent) { mBroadcastIntents.add(intent); } @Override public void sendOrderedBroadcast(Intent intent, String receiverPermission) { mBroadcastIntents.add(intent); } @Override public int checkUriPermission( Uri uri, String readPermission, String writePermission, int pid, int uid, int modeFlags) { return PackageManager.PERMISSION_GRANTED; } @Override public int checkUriPermission(Uri uri, int pid, int uid, int modeFlags) { return PackageManager.PERMISSION_GRANTED; } @Override public Object getSystemService(String name) { if (Context.ACCOUNT_SERVICE.equals(name)) { return mMockAccountManager; } // No other services exist in this context. return null; } @Override public File getFilesDir() { return new File("/dev/null"); } }