/* * 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. */ #define LOG_TAG "light_hidl_hal_test" #include #include #include #include #include #include #include #include using ::android::hardware::light::V2_0::Brightness; using ::android::hardware::light::V2_0::Flash; using ::android::hardware::light::V2_0::ILight; using ::android::hardware::light::V2_0::LightState; using ::android::hardware::light::V2_0::Status; using ::android::hardware::light::V2_0::Type; using ::android::hardware::hidl_vec; using ::android::hardware::Return; using ::android::hardware::Void; using ::android::sp; #define ASSERT_OK(ret) ASSERT_TRUE(ret.isOk()) #define EXPECT_OK(ret) EXPECT_TRUE(ret.isOk()) const static LightState kWhite = { .color = 0xFFFFFFFF, .flashMode = Flash::TIMED, .flashOnMs = 100, .flashOffMs = 50, .brightnessMode = Brightness::USER, }; const static LightState kLowPersistance = { .color = 0xFF123456, .flashMode = Flash::TIMED, .flashOnMs = 100, .flashOffMs = 50, .brightnessMode = Brightness::LOW_PERSISTENCE, }; const static LightState kOff = { .color = 0x00000000, .flashMode = Flash::NONE, .flashOnMs = 0, .flashOffMs = 0, .brightnessMode = Brightness::USER, }; const static std::set kAllTypes = { Type::BACKLIGHT, Type::KEYBOARD, Type::BUTTONS, Type::BATTERY, Type::NOTIFICATIONS, Type::ATTENTION, Type::BLUETOOTH, Type::WIFI }; class LightHidlTest : public testing::TestWithParam { public: virtual void SetUp() override { light = ILight::getService(GetParam()); ASSERT_NE(light, nullptr); LOG(INFO) << "Test is remote " << light->isRemote(); ASSERT_OK(light->getSupportedTypes([this](const hidl_vec &types) { supportedTypes = types; })); } sp light; std::vector supportedTypes; virtual void TearDown() override { for (const Type& type: supportedTypes) { Return ret = light->setLight(type, kOff); EXPECT_OK(ret); EXPECT_EQ(Status::SUCCESS, static_cast(ret)); } // must leave the device in a useable condition if (std::find(supportedTypes.begin(), supportedTypes.end(), Type::BACKLIGHT) != supportedTypes.end()) { Return ret = light->setLight(Type::BACKLIGHT, kWhite); EXPECT_OK(ret); EXPECT_EQ(Status::SUCCESS, static_cast(ret)); } } }; /** * Ensure all lights which are reported as supported work. */ TEST_P(LightHidlTest, TestSupported) { for (const Type& type: supportedTypes) { Return ret = light->setLight(type, kWhite); EXPECT_OK(ret); EXPECT_EQ(Status::SUCCESS, static_cast(ret)); } } /** * Ensure BRIGHTNESS_NOT_SUPPORTED is returned if LOW_PERSISTANCE is not supported. */ TEST_P(LightHidlTest, TestLowPersistance) { for (const Type& type: supportedTypes) { Return ret = light->setLight(type, kLowPersistance); EXPECT_OK(ret); Status status = ret; EXPECT_TRUE(Status::SUCCESS == status || Status::BRIGHTNESS_NOT_SUPPORTED == status); } } /** * Ensure lights which are not supported return LIGHT_NOT_SUPPORTED */ TEST_P(LightHidlTest, TestUnsupported) { std::set unsupportedTypes = kAllTypes; for (const Type& type: supportedTypes) { unsupportedTypes.erase(type); } for (const Type& type: unsupportedTypes) { Return ret = light->setLight(type, kWhite); EXPECT_OK(ret); EXPECT_EQ(Status::LIGHT_NOT_SUPPORTED, static_cast(ret)); } } INSTANTIATE_TEST_SUITE_P( PerInstance, LightHidlTest, testing::ValuesIn(android::hardware::getAllHalInstanceNames(ILight::descriptor)), android::hardware::PrintInstanceNameToString);