Home | History | Annotate | Download | only in externalsharedpermsdiffkeytestapp
      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.externalsharedpermsdiffkeytestapp;
     17 
     18 import android.bluetooth.BluetoothAdapter;
     19 import android.content.Context;
     20 import android.os.Bundle;
     21 import android.location.Location;
     22 import android.location.LocationListener;
     23 import android.location.LocationManager;
     24 
     25 import android.test.InstrumentationTestCase;
     26 
     27 public class ExternalSharedPermsDiffKeyTest extends InstrumentationTestCase
     28 {
     29     private static final int REQUEST_ENABLE_BT = 2;
     30 
     31     /** The use of location manager and bluetooth below are simply to simulate an app that
     32      *  tries to use them, so we can verify whether permissions are granted and accessible.
     33      * */
     34     public void testRunBluetoothAndFineLocation()
     35     {
     36         LocationManager locationManager = (LocationManager)getInstrumentation().getContext(
     37                 ).getSystemService(Context.LOCATION_SERVICE);
     38         locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0,
     39                 new LocationListener() {
     40                         public void onLocationChanged(Location location) {}
     41                         public void onProviderDisabled(String provider) {}
     42                         public void onProviderEnabled(String provider) {}
     43                         public void onStatusChanged(String provider, int status, Bundle extras) {}
     44                 }
     45         );
     46         BluetoothAdapter mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
     47 
     48         if ((mBluetoothAdapter != null) && (!mBluetoothAdapter.isEnabled())) {
     49             mBluetoothAdapter.getName();
     50         }
     51         fail("this app was signed by a different cert and should crash/fail to run by now");
     52     }
     53 }
     54