blob: e69a90b6cfce36fe2c7cab9dd8fe9bd62981a238 [file] [log] [blame]
/*
* Copyright (C) 2020 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 com.android.car;
import static org.testng.Assert.assertThrows;
import android.car.Car;
import android.os.Handler;
import androidx.test.ext.junit.runners.AndroidJUnit4;
import androidx.test.platform.app.InstrumentationRegistry;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
/**
* This class contains security permission tests for the {@link CarPermisisonTest}'s public APIs.
*/
@RunWith(AndroidJUnit4.class)
public class CarPublicPermissionTest {
private Car mCar = null;
@Before
public void setUp() throws Exception {
mCar = Car.createCar(
InstrumentationRegistry.getInstrumentation().getTargetContext(), (Handler) null);
}
@After
public void tearDown() {
mCar.disconnect();
}
@Test
public void testGetCarManagerPermissions() throws Exception {
assertThrows(SecurityException.class, () -> mCar.getCarManager(
Car.CAR_DRIVING_STATE_SERVICE));
assertThrows(SecurityException.class, () -> mCar.getCarManager(
Car.CAR_INSTRUMENT_CLUSTER_SERVICE));
assertThrows(SecurityException.class, () -> mCar.getCarManager(Car.CAR_NAVIGATION_SERVICE));
if (mCar.isFeatureEnabled(Car.DIAGNOSTIC_SERVICE)) {
assertThrows(SecurityException.class, () -> mCar.getCarManager(Car.DIAGNOSTIC_SERVICE));
}
if (mCar.isFeatureEnabled(Car.VMS_SUBSCRIBER_SERVICE)) {
assertThrows(SecurityException.class, () -> mCar.getCarManager(
Car.VMS_SUBSCRIBER_SERVICE));
}
assertThrows(SecurityException.class, () -> mCar.getCarManager(Car.TEST_SERVICE));
if (mCar.isFeatureEnabled(Car.STORAGE_MONITORING_SERVICE)) {
assertThrows(SecurityException.class, () -> mCar.getCarManager(
Car.STORAGE_MONITORING_SERVICE));
}
}
}