Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ea8acc24 authored by Benjamin Schwartz's avatar Benjamin Schwartz Committed by Android (Google) Code Review
Browse files

Merge "Add VTS tests for PowerStats HAL 2.0"

parents 90ef668e 40492c22
Loading
Loading
Loading
Loading
+32 −0
Original line number Original line Diff line number Diff line
// Copyright (C) 2020 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.

cc_test {
    name: "VtsHalPowerStatsTargetTest",
    defaults: [
        "VtsHalTargetTestDefaults",
        "use_libaidlvintf_gtest_helper_static",
    ],
    srcs: ["VtsHalPowerStatsTargetTest.cpp"],
    shared_libs: [
        "libbinder_ndk",
    ],
    static_libs: [
        "android.hardware.powerstats-ndk_platform",
    ],
    test_suites: [
        "general-tests",
        "vts",
    ],
}
+79 −0
Original line number Original line Diff line number Diff line
/*
 * Copyright (C) 2020 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 <aidl/Gtest.h>
#include <aidl/Vintf.h>

#include <aidl/android/hardware/powerstats/IPowerStats.h>
#include <android-base/properties.h>
#include <android/binder_manager.h>
#include <android/binder_process.h>

using aidl::android::hardware::powerstats::EnergyData;
using aidl::android::hardware::powerstats::IPowerStats;
using aidl::android::hardware::powerstats::PowerEntityInfo;
using aidl::android::hardware::powerstats::PowerEntityStateResidencyResult;
using aidl::android::hardware::powerstats::PowerEntityStateSpace;
using aidl::android::hardware::powerstats::RailInfo;
using ndk::SpAIBinder;

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

    std::shared_ptr<IPowerStats> powerstats;
};

TEST_P(PowerStatsAidl, TestGetEnergyData) {
    std::vector<EnergyData> data;
    ASSERT_TRUE(powerstats->getEnergyData({}, &data).isOk());
}

TEST_P(PowerStatsAidl, TestGetPowerEntityInfo) {
    std::vector<PowerEntityInfo> info;
    ASSERT_TRUE(powerstats->getPowerEntityInfo(&info).isOk());
}

TEST_P(PowerStatsAidl, TestGetPowerEntityStateInfo) {
    std::vector<PowerEntityStateSpace> info;
    ASSERT_TRUE(powerstats->getPowerEntityStateInfo({}, &info).isOk());
}

TEST_P(PowerStatsAidl, TestGetPowerEntityStateResidencyData) {
    std::vector<PowerEntityStateResidencyResult> data;
    ASSERT_TRUE(powerstats->getPowerEntityStateResidencyData({}, &data).isOk());
}

TEST_P(PowerStatsAidl, TestGetRailInfo) {
    std::vector<RailInfo> info;
    ASSERT_TRUE(powerstats->getRailInfo(&info).isOk());
}

GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST(PowerStatsAidl);
INSTANTIATE_TEST_SUITE_P(
        PowerStats, PowerStatsAidl,
        testing::ValuesIn(android::getAidlHalInstanceNames(IPowerStats::descriptor)),
        android::PrintInstanceNameToString);

int main(int argc, char** argv) {
    ::testing::InitGoogleTest(&argc, argv);
    ABinderProcess_setThreadPoolMaxThreadCount(1);
    ABinderProcess_startThreadPool();
    return RUN_ALL_TESTS();
}