CarInfoManagerTest.java revision 9f6f2546729b204c69195e0908a8ea750e7ce9dd
1/*
2 * Copyright (C) 2015 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.car.test;
17
18import android.car.Car;
19import android.car.CarInfoManager;
20import android.hardware.automotive.vehicle.V2_0.VehicleProperty;
21import android.test.suitebuilder.annotation.MediumTest;
22
23import com.android.car.vehiclehal.VehiclePropValueBuilder;
24
25@MediumTest
26public class CarInfoManagerTest extends MockedCarTestBase {
27    private static final String MAKE_NAME = "ANDROID";
28
29    private CarInfoManager mCarInfoManager;
30
31    @Override
32    protected synchronized void configureMockedHal() {
33        addStaticProperty(VehicleProperty.INFO_MAKE,
34                VehiclePropValueBuilder.newBuilder(VehicleProperty.INFO_MAKE)
35                        .setStringValue(MAKE_NAME)
36                        .build());
37
38    }
39
40    @Override
41    protected void setUp() throws Exception {
42        super.setUp();
43        mCarInfoManager = (CarInfoManager) getCar().getCarManager(Car.INFO_SERVICE);
44    }
45
46    public void testVehicleId() throws Exception {
47        assertNotNull(mCarInfoManager.getVehicleId());
48    }
49
50    public void testManufacturer() throws Exception {
51        assertEquals(MAKE_NAME, mCarInfoManager.getManufacturer());
52    }
53
54    public void testNullItems() throws Exception {
55        assertNull(mCarInfoManager.getModel());
56        assertNull(mCarInfoManager.getModelYear());
57    }
58}
59