summaryrefslogtreecommitdiff
path: root/ir/aidl/vts/VtsHalIrTargetTest.cpp
blob: 3527625ae6c78b8e1250b0b6d09b88a57b90f43d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/*
 * Copyright (C) 2021 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 "ir_aidl_hal_test"

#include <aidl/Gtest.h>
#include <aidl/Vintf.h>
#include <aidl/android/hardware/ir/IConsumerIr.h>
#include <android-base/logging.h>
#include <android/binder_auto_utils.h>
#include <android/binder_manager.h>
#include <gtest/gtest.h>
#include <algorithm>
#include <vector>

using ::aidl::android::hardware::ir::ConsumerIrFreqRange;
using ::aidl::android::hardware::ir::IConsumerIr;
using ::ndk::SpAIBinder;

class ConsumerIrTest : public ::testing::TestWithParam<std::string> {
  public:
    virtual void SetUp() override {
        mIr = IConsumerIr::fromBinder(
                SpAIBinder(AServiceManager_waitForService(GetParam().c_str())));
        ASSERT_NE(mIr, nullptr);
    }

    std::shared_ptr<IConsumerIr> mIr;
};

// Test transmit() for the min and max frequency of every available range
TEST_P(ConsumerIrTest, TransmitTest) {
    std::vector<ConsumerIrFreqRange> ranges;
    const auto& ret = mIr->getCarrierFreqs(&ranges);
    ASSERT_TRUE(ret.isOk());

    if (ranges.size() > 0) {
        uint32_t len = 16;
        std::vector<int32_t> vec;
        vec.resize(len);
        std::fill(vec.begin(), vec.end(), 1000);
        for (auto range = ranges.begin(); range != ranges.end(); range++) {
            EXPECT_TRUE(mIr->transmit(range->minHz, vec).isOk());
            EXPECT_TRUE(mIr->transmit(range->maxHz, vec).isOk());
        }
    }
}

// Test transmit() when called with invalid frequencies
TEST_P(ConsumerIrTest, BadFreqTest) {
    uint32_t len = 16;
    std::vector<int32_t> vec;
    vec.resize(len);
    std::fill(vec.begin(), vec.end(), 1);
    const auto& res = mIr->transmit(-1, vec);
    EXPECT_FALSE(res.isOk());
    EXPECT_EQ(res.getExceptionCode(), EX_UNSUPPORTED_OPERATION);
}

GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST(ConsumerIrTest);
INSTANTIATE_TEST_SUITE_P(
        PerInstance, ConsumerIrTest,
        testing::ValuesIn(android::getAidlHalInstanceNames(IConsumerIr::descriptor)),
        ::android::PrintInstanceNameToString);