| /* |
| * Copyright (C) 2016 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. |
| */ |
| |
| #include <unordered_map> |
| #include <iostream> |
| |
| #include <utils/SystemClock.h> |
| |
| #include <gtest/gtest.h> |
| |
| #include "vehicle_hal_manager/VehicleHalManager.h" |
| |
| #include "VehicleHalTestUtils.h" |
| |
| namespace android { |
| namespace hardware { |
| namespace vehicle { |
| namespace V2_0 { |
| |
| namespace { |
| |
| using namespace std::placeholders; |
| |
| constexpr char kCarMake[] = "Default Car"; |
| constexpr int kRetriablePropMockedAttempts = 3; |
| |
| class MockedVehicleHal : public VehicleHal { |
| public: |
| MockedVehicleHal() { |
| mConfigs.assign(std::begin(kVehicleProperties), |
| std::end(kVehicleProperties)); |
| } |
| |
| std::vector<VehiclePropConfig> listProperties() override { |
| return mConfigs; |
| } |
| |
| VehiclePropValuePtr get(const VehiclePropValue& requestedPropValue, |
| StatusCode* outStatus) override { |
| *outStatus = StatusCode::OK; |
| VehiclePropValuePtr pValue; |
| VehicleProperty property = requestedPropValue.prop; |
| int32_t areaId = requestedPropValue.areaId; |
| |
| switch (property) { |
| case VehicleProperty::INFO_MAKE: |
| pValue = getValuePool()->obtainString(kCarMake); |
| break; |
| case VehicleProperty::INFO_FUEL_CAPACITY: |
| if (fuelCapacityAttemptsLeft-- > 0) { |
| // Emulate property not ready yet. |
| *outStatus = StatusCode::TRY_AGAIN; |
| } else { |
| pValue = getValuePool()->obtainFloat(42.42); |
| } |
| break; |
| case VehicleProperty::VEHICLE_MAPS_DATA_SERVICE: |
| pValue = getValuePool()->obtainComplex(); |
| pValue->value.int32Values = hidl_vec<int32_t> { 10, 20 }; |
| pValue->value.int64Values = hidl_vec<int64_t> { 30, 40 }; |
| pValue->value.floatValues = hidl_vec<float_t> { 1.1, 2.2 }; |
| pValue->value.bytes = hidl_vec<uint8_t> { 1, 2, 3 }; |
| pValue->value.stringValue = kCarMake; |
| break; |
| default: |
| auto key = makeKey(property, areaId); |
| if (mValues.count(key) == 0) { |
| ALOGW(""); |
| } |
| pValue = getValuePool()->obtain(mValues[key]); |
| } |
| |
| if (*outStatus == StatusCode::OK && pValue.get() != nullptr) { |
| pValue->prop = property; |
| pValue->areaId = areaId; |
| pValue->timestamp = elapsedRealtimeNano(); |
| } |
| |
| return pValue; |
| } |
| |
| StatusCode set(const VehiclePropValue& propValue) override { |
| if (VehicleProperty::MIRROR_FOLD == propValue.prop |
| && mirrorFoldAttemptsLeft-- > 0) { |
| return StatusCode::TRY_AGAIN; |
| } |
| |
| mValues[makeKey(propValue)] = propValue; |
| return StatusCode::OK; |
| } |
| |
| StatusCode subscribe(VehicleProperty property, |
| int32_t areas, |
| float sampleRate) override { |
| return StatusCode::OK; |
| } |
| |
| StatusCode unsubscribe(VehicleProperty property) override { |
| return StatusCode::OK; |
| } |
| |
| void sendPropEvent(recyclable_ptr<VehiclePropValue> value) { |
| doHalEvent(std::move(value)); |
| } |
| |
| void sendHalError(StatusCode error, VehicleProperty property, |
| int32_t areaId) { |
| doHalPropertySetError(error, property, areaId); |
| } |
| |
| public: |
| int fuelCapacityAttemptsLeft = kRetriablePropMockedAttempts; |
| int mirrorFoldAttemptsLeft = kRetriablePropMockedAttempts; |
| |
| private: |
| int64_t makeKey(const VehiclePropValue& v) const { |
| return makeKey(v.prop, v.areaId); |
| } |
| |
| int64_t makeKey(VehicleProperty prop, int32_t area) const { |
| return (static_cast<int64_t>(prop) << 32) | area; |
| } |
| |
| private: |
| std::vector<VehiclePropConfig> mConfigs; |
| std::unordered_map<int64_t, VehiclePropValue> mValues; |
| }; |
| |
| class VehicleHalManagerTest : public ::testing::Test { |
| protected: |
| void SetUp() override { |
| hal.reset(new MockedVehicleHal); |
| manager.reset(new VehicleHalManager(hal.get())); |
| |
| objectPool = hal->getValuePool(); |
| } |
| |
| void TearDown() override { |
| manager.reset(nullptr); |
| hal.reset(nullptr); |
| } |
| public: |
| void invokeGet(VehicleProperty property, int32_t areaId) { |
| VehiclePropValue requestedValue {}; |
| requestedValue.prop = property; |
| requestedValue.areaId = areaId; |
| |
| invokeGet(requestedValue); |
| } |
| |
| void invokeGet(const VehiclePropValue& requestedPropValue) { |
| actualValue = VehiclePropValue {}; // reset previous values |
| |
| StatusCode refStatus; |
| VehiclePropValue refValue; |
| bool called = false; |
| manager->get(requestedPropValue, [&refStatus, &refValue, &called] |
| (StatusCode status, const VehiclePropValue& value) { |
| refStatus = status; |
| refValue = value; |
| called = true; |
| }); |
| ASSERT_TRUE(called) << "callback wasn't called for prop: " |
| << enumToHexString(requestedPropValue.prop); |
| |
| actualValue = refValue; |
| actualStatusCode = refStatus; |
| } |
| |
| public: |
| VehiclePropValue actualValue; |
| StatusCode actualStatusCode; |
| |
| VehiclePropValuePool* objectPool; |
| std::unique_ptr<MockedVehicleHal> hal; |
| std::unique_ptr<VehicleHalManager> manager; |
| }; |
| |
| TEST_F(VehicleHalManagerTest, getPropConfigs) { |
| hidl_vec<VehicleProperty> properties = |
| { VehicleProperty::HVAC_FAN_SPEED, VehicleProperty::INFO_MAKE }; |
| bool called = false; |
| |
| manager->getPropConfigs(properties, |
| [&called] (StatusCode status, |
| const hidl_vec<VehiclePropConfig>& c) { |
| ASSERT_EQ(StatusCode::OK, status); |
| ASSERT_EQ(2u, c.size()); |
| called = true; |
| }); |
| |
| ASSERT_TRUE(called); // Verify callback received. |
| |
| called = false; |
| manager->getPropConfigs({ VehicleProperty::HVAC_FAN_SPEED }, |
| [&called] (StatusCode status, |
| const hidl_vec<VehiclePropConfig>& c) { |
| ASSERT_EQ(StatusCode::OK, status); |
| ASSERT_EQ(1u, c.size()); |
| ASSERT_EQ(toString(kVehicleProperties[1]), toString(c[0])); |
| called = true; |
| }); |
| ASSERT_TRUE(called); // Verify callback received. |
| |
| // TODO(pavelm): add case case when property was not declared. |
| } |
| |
| TEST_F(VehicleHalManagerTest, getAllPropConfigs) { |
| bool called = false; |
| manager->getAllPropConfigs( |
| [&called] (const hidl_vec<VehiclePropConfig>& propConfigs) { |
| ASSERT_EQ(arraysize(kVehicleProperties), propConfigs.size()); |
| |
| for (size_t i = 0; i < propConfigs.size(); i++) { |
| ASSERT_EQ(toString(kVehicleProperties[i]), |
| toString(propConfigs[i])); |
| } |
| called = true; |
| }); |
| ASSERT_TRUE(called); // Verify callback received. |
| } |
| |
| TEST_F(VehicleHalManagerTest, halErrorEvent) { |
| const VehicleProperty PROP = VehicleProperty::DISPLAY_BRIGHTNESS; |
| |
| sp<MockedVehicleCallback> cb = new MockedVehicleCallback(); |
| |
| hidl_vec<SubscribeOptions> options = { |
| SubscribeOptions { |
| .propId = PROP, |
| .flags = SubscribeFlags::DEFAULT |
| }, |
| }; |
| |
| StatusCode res = manager->subscribe(cb, options); |
| ASSERT_EQ(StatusCode::OK, res); |
| |
| hal->sendHalError(StatusCode::TRY_AGAIN, PROP, 0 /* area id*/); |
| } |
| |
| TEST_F(VehicleHalManagerTest, subscribe) { |
| const VehicleProperty PROP = VehicleProperty::DISPLAY_BRIGHTNESS; |
| |
| sp<MockedVehicleCallback> cb = new MockedVehicleCallback(); |
| |
| hidl_vec<SubscribeOptions> options = { |
| SubscribeOptions { |
| .propId = PROP, |
| .flags = SubscribeFlags::DEFAULT |
| } |
| }; |
| |
| StatusCode res = manager->subscribe(cb, options); |
| ASSERT_EQ(StatusCode::OK, res); |
| |
| auto unsubscribedValue = objectPool->obtain(VehiclePropertyType::INT32); |
| unsubscribedValue->prop = VehicleProperty::HVAC_FAN_SPEED; |
| |
| hal->sendPropEvent(std::move(unsubscribedValue)); |
| auto& receivedEnvents = cb->getReceivedEvents(); |
| |
| ASSERT_TRUE(cb->waitForExpectedEvents(0)) << " Unexpected events received: " |
| << receivedEnvents.size() |
| << (receivedEnvents.size() > 0 |
| ? toString(receivedEnvents.front()[0]) : ""); |
| |
| auto subscribedValue = objectPool->obtain(VehiclePropertyType::INT32); |
| subscribedValue->prop = PROP; |
| subscribedValue->value.int32Values[0] = 42; |
| |
| cb->reset(); |
| VehiclePropValue actualValue(*subscribedValue.get()); |
| hal->sendPropEvent(std::move(subscribedValue)); |
| |
| ASSERT_TRUE(cb->waitForExpectedEvents(1)) << "Events received: " |
| << receivedEnvents.size(); |
| |
| ASSERT_EQ(toString(actualValue), |
| toString(cb->getReceivedEvents().front()[0])); |
| } |
| |
| TEST_F(VehicleHalManagerTest, subscribe_WriteOnly) { |
| const VehicleProperty PROP = VehicleProperty::HVAC_SEAT_TEMPERATURE; |
| |
| sp<MockedVehicleCallback> cb = new MockedVehicleCallback(); |
| |
| hidl_vec<SubscribeOptions> options = { |
| SubscribeOptions { |
| .propId = PROP, |
| .flags = SubscribeFlags::HAL_EVENT |
| }, |
| }; |
| |
| StatusCode res = manager->subscribe(cb, options); |
| // Unable to subscribe on Hal Events for write-only properties. |
| ASSERT_EQ(StatusCode::INVALID_ARG, res); |
| |
| |
| options[0].flags = SubscribeFlags::SET_CALL; |
| |
| res = manager->subscribe(cb, options); |
| // OK to subscribe on SET method call for write-only properties. |
| ASSERT_EQ(StatusCode::OK, res); |
| } |
| |
| TEST_F(VehicleHalManagerTest, get_Complex) { |
| invokeGet(VehicleProperty::VEHICLE_MAPS_DATA_SERVICE, 0); |
| |
| ASSERT_EQ(StatusCode::OK, actualStatusCode); |
| ASSERT_EQ(VehicleProperty::VEHICLE_MAPS_DATA_SERVICE, actualValue.prop); |
| |
| ASSERT_EQ(3, actualValue.value.bytes.size()); |
| ASSERT_EQ(1, actualValue.value.bytes[0]); |
| ASSERT_EQ(2, actualValue.value.bytes[1]); |
| ASSERT_EQ(3, actualValue.value.bytes[2]); |
| |
| ASSERT_EQ(2, actualValue.value.int32Values.size()); |
| ASSERT_EQ(10, actualValue.value.int32Values[0]); |
| ASSERT_EQ(20, actualValue.value.int32Values[1]); |
| |
| ASSERT_EQ(2, actualValue.value.floatValues.size()); |
| ASSERT_FLOAT_EQ(1.1, actualValue.value.floatValues[0]); |
| ASSERT_FLOAT_EQ(2.2, actualValue.value.floatValues[1]); |
| |
| ASSERT_EQ(2, actualValue.value.int64Values.size()); |
| ASSERT_FLOAT_EQ(30, actualValue.value.int64Values[0]); |
| ASSERT_FLOAT_EQ(40, actualValue.value.int64Values[1]); |
| |
| ASSERT_STREQ(kCarMake, actualValue.value.stringValue.c_str()); |
| } |
| |
| TEST_F(VehicleHalManagerTest, get_StaticString) { |
| invokeGet(VehicleProperty::INFO_MAKE, 0); |
| |
| ASSERT_EQ(StatusCode::OK, actualStatusCode); |
| ASSERT_EQ(VehicleProperty::INFO_MAKE, actualValue.prop); |
| ASSERT_STREQ(kCarMake, actualValue.value.stringValue.c_str()); |
| } |
| |
| TEST_F(VehicleHalManagerTest, get_NegativeCases) { |
| // Write-only property must fail. |
| invokeGet(VehicleProperty::HVAC_SEAT_TEMPERATURE, 0); |
| ASSERT_EQ(StatusCode::INVALID_ARG, actualStatusCode); |
| |
| // Unknown property must fail. |
| invokeGet(VehicleProperty::MIRROR_Z_MOVE, 0); |
| ASSERT_EQ(StatusCode::INVALID_ARG, actualStatusCode); |
| } |
| |
| TEST_F(VehicleHalManagerTest, get_Retriable) { |
| actualStatusCode = StatusCode::TRY_AGAIN; |
| int attempts = 0; |
| while (StatusCode::TRY_AGAIN == actualStatusCode && ++attempts < 10) { |
| invokeGet(VehicleProperty::INFO_FUEL_CAPACITY, 0); |
| |
| } |
| ASSERT_EQ(StatusCode::OK, actualStatusCode); |
| ASSERT_EQ(kRetriablePropMockedAttempts + 1, attempts); |
| ASSERT_FLOAT_EQ(42.42, actualValue.value.floatValues[0]); |
| } |
| |
| TEST_F(VehicleHalManagerTest, set_Basic) { |
| const auto PROP = VehicleProperty::DISPLAY_BRIGHTNESS; |
| const auto VAL = 7; |
| |
| auto expectedValue = hal->getValuePool()->obtainInt32(VAL); |
| expectedValue->prop = PROP; |
| expectedValue->areaId = 0; |
| |
| actualStatusCode = manager->set(*expectedValue.get()); |
| ASSERT_EQ(StatusCode::OK, actualStatusCode); |
| |
| invokeGet(PROP, 0); |
| ASSERT_EQ(StatusCode::OK, actualStatusCode); |
| ASSERT_EQ(PROP, actualValue.prop); |
| ASSERT_EQ(VAL, actualValue.value.int32Values[0]); |
| } |
| |
| TEST_F(VehicleHalManagerTest, set_DifferentAreas) { |
| const auto PROP = VehicleProperty::HVAC_FAN_SPEED; |
| const auto VAL1 = 1; |
| const auto VAL2 = 2; |
| const auto AREA1 = toInt(VehicleAreaZone::ROW_1_LEFT); |
| const auto AREA2 = toInt(VehicleAreaZone::ROW_1_RIGHT); |
| |
| { |
| auto expectedValue1 = hal->getValuePool()->obtainInt32(VAL1); |
| expectedValue1->prop = PROP; |
| expectedValue1->areaId = AREA1; |
| actualStatusCode = manager->set(*expectedValue1.get()); |
| ASSERT_EQ(StatusCode::OK, actualStatusCode); |
| |
| auto expectedValue2 = hal->getValuePool()->obtainInt32(VAL2); |
| expectedValue2->prop = PROP; |
| expectedValue2->areaId = AREA2; |
| actualStatusCode = manager->set(*expectedValue2.get()); |
| ASSERT_EQ(StatusCode::OK, actualStatusCode); |
| } |
| |
| { |
| invokeGet(PROP, AREA1); |
| ASSERT_EQ(StatusCode::OK, actualStatusCode); |
| ASSERT_EQ(PROP, actualValue.prop); |
| ASSERT_EQ(AREA1, actualValue.areaId); |
| ASSERT_EQ(VAL1, actualValue.value.int32Values[0]); |
| |
| invokeGet(PROP, AREA2); |
| ASSERT_EQ(StatusCode::OK, actualStatusCode); |
| ASSERT_EQ(PROP, actualValue.prop); |
| ASSERT_EQ(AREA2, actualValue.areaId); |
| ASSERT_EQ(VAL2, actualValue.value.int32Values[0]); |
| } |
| } |
| |
| TEST_F(VehicleHalManagerTest, set_Retriable) { |
| const auto PROP = VehicleProperty::MIRROR_FOLD; |
| |
| auto v = hal->getValuePool()->obtainBoolean(true); |
| v->prop = PROP; |
| v->areaId = 0; |
| |
| actualStatusCode = StatusCode::TRY_AGAIN; |
| int attempts = 0; |
| while (StatusCode::TRY_AGAIN == actualStatusCode && ++attempts < 10) { |
| actualStatusCode = manager->set(*v.get()); |
| } |
| |
| ASSERT_EQ(StatusCode::OK, actualStatusCode); |
| ASSERT_EQ(kRetriablePropMockedAttempts + 1, attempts); |
| |
| invokeGet(PROP, 0); |
| ASSERT_EQ(StatusCode::OK, actualStatusCode); |
| ASSERT_TRUE(actualValue.value.int32Values[0]); |
| } |
| |
| TEST(HalClientVectorTest, basic) { |
| HalClientVector clients; |
| sp<IVehicleCallback> callback1 = new MockedVehicleCallback(); |
| |
| sp<HalClient> c1 = new HalClient(callback1, 10, 20); |
| sp<HalClient> c2 = new HalClient(callback1, 10, 20); |
| |
| clients.addOrUpdate(c1); |
| clients.addOrUpdate(c1); |
| clients.addOrUpdate(c2); |
| ASSERT_EQ(2u, clients.size()); |
| ASSERT_FALSE(clients.isEmpty()); |
| ASSERT_LE(0, clients.indexOf(c1)); |
| ASSERT_LE(0, clients.remove(c1)); |
| ASSERT_GT(0, clients.indexOf(c1)); // c1 was already removed |
| ASSERT_GT(0, clients.remove(c1)); // attempt to remove c1 again |
| ASSERT_LE(0, clients.remove(c2)); |
| |
| ASSERT_TRUE(clients.isEmpty()); |
| } |
| |
| } // namespace anonymous |
| |
| } // namespace V2_0 |
| } // namespace vehicle |
| } // namespace hardware |
| } // namespace android |