1/*
2 * Copyright (C) 2010 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 */
16package com.android.framework.externalsharedpermstestapp;
17
18import android.bluetooth.BluetoothAdapter;
19import android.content.Context;
20import android.location.Location;
21import android.location.LocationListener;
22import android.location.LocationManager;
23import android.os.Bundle;
24
25import android.util.Log;
26
27import android.test.InstrumentationTestCase;
28
29public class ExternalSharedPermsTest extends InstrumentationTestCase
30{
31    private static final int REQUEST_ENABLE_BT = 2;
32
33    /** The use of location manager and bluetooth below are simply to simulate an app that
34     *  tries to use them, so we can verify whether permissions are granted and accessible.
35     * */
36    public void testRunLocationAndBluetooth()
37    {
38        LocationManager locationManager = (LocationManager)getInstrumentation().getContext(
39                ).getSystemService(Context.LOCATION_SERVICE);
40        locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0,
41                new LocationListener() {
42                        public void onLocationChanged(Location location) {}
43                        public void onProviderDisabled(String provider) {}
44                        public void onProviderEnabled(String provider) {}
45                        public void onStatusChanged(String provider, int status, Bundle extras) {}
46                }
47        );
48        BluetoothAdapter mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
49
50        if ((mBluetoothAdapter != null) && (!mBluetoothAdapter.isEnabled())) {
51            mBluetoothAdapter.getName();
52        }
53    }
54}
55