system/hardware/interfaces/net/netd/1.0/vts/functional/VtsHalNetNetdV1_0TargetTest...

79 lines
2.5 KiB
C++
Raw Permalink Normal View History

2025-08-25 08:01:50 +08:00
/*
* Copyright 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 "netd_hidl_test"
#include <android/system/net/netd/1.0/INetd.h>
#include <gtest/gtest.h>
#include <hidl/GtestPrinter.h>
#include <hidl/ServiceManagement.h>
#include <log/log.h>
#include "VtsHalNetNetdTestUtils.h"
using ::android::system::net::netd::V1_0::INetd;
using ::android::hardware::Return;
using ::android::sp;
class NetdHidlTest : public ::testing::TestWithParam<std::string> {
public:
virtual void SetUp() override {
netd = INetd::getService(GetParam());
ASSERT_NE(netd, nullptr) << "Could not get HIDL instance";
}
sp<INetd> netd;
};
// positive test. Ensure netd creates an oem network and returns valid netHandle, and destroys it.
TEST_P(NetdHidlTest, TestCreateAndDestroyOemNetworkOk) {
net_handle_t netHandle;
uint32_t packetMark;
INetd::StatusCode status;
Return<void> ret = netd->createOemNetwork([&](net_handle_t n, uint32_t p, INetd::StatusCode s) {
status = s;
netHandle = n;
packetMark = p;
});
ASSERT_TRUE(ret.isOk());
ASSERT_EQ(INetd::StatusCode::OK, status);
ASSERT_NE(NETWORK_UNSPECIFIED, netHandle);
ASSERT_NE((uint32_t)0, packetMark);
ASSERT_EQ(0, checkNetworkExists(netHandle));
ASSERT_EQ(0, countRulesForFwmark(packetMark));
Return<INetd::StatusCode> retStatus = netd->destroyOemNetwork(netHandle);
ASSERT_EQ(INetd::StatusCode::OK, retStatus);
ASSERT_EQ(-ENONET, checkNetworkExists(netHandle));
}
// negative test. Ensure destroy for invalid OEM network fails appropriately
TEST_P(NetdHidlTest, TestDestroyOemNetworkInvalid) {
const uint64_t nh = 0x6600FACADE;
Return<INetd::StatusCode> retStatus = netd->destroyOemNetwork(nh);
ASSERT_EQ(INetd::StatusCode::INVALID_ARGUMENTS, retStatus);
}
INSTANTIATE_TEST_SUITE_P(
PerInstance, NetdHidlTest,
testing::ValuesIn(android::hardware::getAllHalInstanceNames(INetd::descriptor)),
android::hardware::PrintInstanceNameToString);