/* * Copyright (C) 2024 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 "vold_aidl_hal_test" #include #include #include #include #include #include #include #include using ::android::defaultServiceManager; using ::android::sp; using ::android::String16; using ::android::binder::Status; using ::android::system::vold::BnVoldCheckpointListener; using ::android::system::vold::CheckpointingState; using ::android::system::vold::IVold; class VoldAidlTest : public ::testing::TestWithParam { public: sp vold_; void SetUp() final { auto manager = defaultServiceManager(); auto name = GetParam(); auto binder = manager->waitForService(String16(name.data(), name.size())); vold_ = IVold::asInterface(binder); } void TearDown() final {} }; class TestListener : public BnVoldCheckpointListener { public: Status onCheckpointingComplete() final { ++called_; return Status::ok(); } int timesCalled() { return called_; } private: int called_ = 0; }; TEST_P(VoldAidlTest, PostBootAddListener) { auto listener = sp::make(); CheckpointingState state; Status ret = vold_->registerCheckpointListener(listener, &state); ASSERT_EQ(ret.isOk(), true); EXPECT_EQ(state, CheckpointingState::CHECKPOINTING_COMPLETE); EXPECT_EQ(listener->timesCalled(), 0); } GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST(VoldAidlTest); INSTANTIATE_TEST_SUITE_P(PerInstance, VoldAidlTest, testing::ValuesIn(::android::getAidlHalInstanceNames(IVold::descriptor)), android::PrintInstanceNameToString);