blob: 1352ca5688f5c8e9543d3f8d8b8c943970c793b9 [file] [log] [blame]
mike dooleye9529982018-10-17 08:06:10 +02001/*
2 * Copyright (C) 2018 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 */
16
17#define LOG_TAG "SoundTriggerHidlHalTest"
18#include <stdlib.h>
19#include <time.h>
20
21#include <condition_variable>
22#include <mutex>
23
24#include <android/log.h>
25#include <cutils/native_handle.h>
nelsonli4aa11b12019-11-12 14:47:12 +080026#include <gtest/gtest.h>
27#include <hidl/GtestPrinter.h>
28#include <hidl/ServiceManagement.h>
mike dooleye9529982018-10-17 08:06:10 +020029#include <log/log.h>
30
31#include <android/hardware/audio/common/2.0/types.h>
32#include <android/hardware/soundtrigger/2.0/ISoundTriggerHw.h>
33#include <android/hardware/soundtrigger/2.2/ISoundTriggerHw.h>
34
mike dooleye9529982018-10-17 08:06:10 +020035using ::android::sp;
36using ::android::hardware::Return;
37using ::android::hardware::soundtrigger::V2_0::ISoundTriggerHwCallback;
38using ::android::hardware::soundtrigger::V2_0::SoundModelHandle;
39using ::android::hardware::soundtrigger::V2_2::ISoundTriggerHw;
40
mike dooleye9529982018-10-17 08:06:10 +020041// The main test class for Sound Trigger HIDL HAL.
nelsonli4aa11b12019-11-12 14:47:12 +080042class SoundTriggerHidlTest : public ::testing::TestWithParam<std::string> {
mike dooleye9529982018-10-17 08:06:10 +020043 public:
44 void SetUp() override {
nelsonli4aa11b12019-11-12 14:47:12 +080045 mSoundTriggerHal = ISoundTriggerHw::getService(GetParam());
mike dooleye9529982018-10-17 08:06:10 +020046 ASSERT_NE(nullptr, mSoundTriggerHal.get());
47 }
48
49 static void SetUpTestCase() { srand(1234); }
50
51 void TearDown() override {}
52
53 protected:
54 sp<ISoundTriggerHw> mSoundTriggerHal;
55};
56
57/**
58 * Test ISoundTriggerHw::getModelState() method
59 *
60 * Verifies that:
mike dooley74a792e2018-11-07 15:51:56 +010061 * - the implementation returns -ENOSYS with invalid model handle
mike dooleye9529982018-10-17 08:06:10 +020062 *
63 */
nelsonli4aa11b12019-11-12 14:47:12 +080064TEST_P(SoundTriggerHidlTest, GetModelStateInvalidModel) {
mike dooleye9529982018-10-17 08:06:10 +020065 SoundModelHandle handle = 0;
mike dooley74a792e2018-11-07 15:51:56 +010066 Return<int32_t> hidlReturn = mSoundTriggerHal->getModelState(handle);
mike dooleye9529982018-10-17 08:06:10 +020067 EXPECT_TRUE(hidlReturn.isOk());
mike dooley74a792e2018-11-07 15:51:56 +010068 EXPECT_EQ(-ENOSYS, hidlReturn);
mike dooleye9529982018-10-17 08:06:10 +020069}
Dan Shiba4d5322020-07-28 13:09:30 -070070GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST(SoundTriggerHidlTest);
nelsonli4aa11b12019-11-12 14:47:12 +080071INSTANTIATE_TEST_SUITE_P(
72 PerInstance, SoundTriggerHidlTest,
73 testing::ValuesIn(android::hardware::getAllHalInstanceNames(ISoundTriggerHw::descriptor)),
74 android::hardware::PrintInstanceNameToString);