/* * Copyright (C) 2017 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 "vibrator_hidl_hal_test" #include #include #include #include #include #include using ::android::hardware::vibrator::V1_0::Effect; using ::android::hardware::vibrator::V1_0::EffectStrength; using ::android::hardware::vibrator::V1_0::Status; using ::android::hardware::vibrator::V1_1::Effect_1_1; using ::android::hardware::vibrator::V1_1::IVibrator; using ::android::hardware::Return; using ::android::hardware::Void; using ::android::sp; // Test environment for Vibrator HIDL HAL. class VibratorHidlEnvironment : public ::testing::VtsHalHidlTargetTestEnvBase { public: // get the test environment singleton static VibratorHidlEnvironment* Instance() { static VibratorHidlEnvironment* instance = new VibratorHidlEnvironment; return instance; } virtual void registerTestServices() override { registerTestService(); } private: VibratorHidlEnvironment() {} }; // The main test class for VIBRATOR HIDL HAL 1.1. class VibratorHidlTest_1_1 : public ::testing::VtsHalHidlTargetTestBase { public: virtual void SetUp() override { vibrator = ::testing::VtsHalHidlTargetTestBase::getService( VibratorHidlEnvironment::Instance()->getServiceName()); ASSERT_NE(vibrator, nullptr); } virtual void TearDown() override {} sp vibrator; }; static void validatePerformEffect(Status status, uint32_t lengthMs) { ASSERT_TRUE(status == Status::OK || status == Status::UNSUPPORTED_OPERATION); if (status == Status::OK) { ASSERT_GT(lengthMs, static_cast(0)) << "Effects that return OK must return a non-zero duration"; } else { ASSERT_EQ(lengthMs, static_cast(0)) << "Effects that return UNSUPPORTED_OPERATION must have a duration of zero"; } } TEST_F(VibratorHidlTest_1_1, PerformEffect_1_1) { vibrator->perform_1_1(Effect_1_1::CLICK, EffectStrength::MEDIUM, validatePerformEffect); vibrator->perform_1_1(Effect_1_1::TICK, EffectStrength::STRONG, validatePerformEffect); } int main(int argc, char** argv) { ::testing::AddGlobalTestEnvironment(VibratorHidlEnvironment::Instance()); ::testing::InitGoogleTest(&argc, argv); VibratorHidlEnvironment::Instance()->init(&argc, argv); int status = RUN_ALL_TESTS(); LOG(INFO) << "Test result = " << status; return status; }