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  */
16 package com.android.framework.externalsharedpermstestapp;
17 
18 import android.bluetooth.BluetoothAdapter;
19 import android.content.Context;
20 import android.location.Location;
21 import android.location.LocationListener;
22 import android.location.LocationManager;
23 import android.os.Bundle;
24 
25 import android.util.Log;
26 
27 import android.test.InstrumentationTestCase;
28 
29 public 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      * */
testRunLocationAndBluetooth()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