blob: c332c10a2ec5cdf61e22047dff4398a3ab59e12f [file] [log] [blame]
/*
* 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 <VtsHalHidlTargetTestBase.h>
#include <android/system/net/netd/1.0/INetd.h>
#include <log/log.h>
using ::android::system::net::netd::V1_0::INetd;
using ::android::hardware::Return;
using ::android::sp;
class NetdHidlTest : public ::testing::VtsHalHidlTargetTestBase {
public:
virtual void SetUp() override {
netd = ::testing::VtsHalHidlTargetTestBase::getService<INetd>();
ASSERT_NE(nullptr, netd.get()) << "Could not get HIDL instance";
}
sp<INetd> netd;
};
// positive test. Ensure netd creates an oem network and returns valid netHandle, and destroys it.
TEST_F(NetdHidlTest, TestCreateAndDestroyOemNetworkOk) {
auto cb = [this](uint64_t netHandle, uint32_t packetMark, INetd::StatusCode status) {
ASSERT_EQ(INetd::StatusCode::OK, status);
ASSERT_NE((uint64_t)0, netHandle);
ASSERT_NE((uint32_t)0, packetMark);
Return<INetd::StatusCode> retStatus = netd->destroyOemNetwork(netHandle);
ASSERT_EQ(INetd::StatusCode::OK, retStatus);
};
Return<void> ret = netd->createOemNetwork(cb);
ASSERT_TRUE(ret.isOk());
}
// negative test. Ensure destroy for invalid OEM network fails appropriately
TEST_F(NetdHidlTest, TestDestroyOemNetworkInvalid) {
const uint64_t nh = 0x6600FACADE;
Return<INetd::StatusCode> retStatus = netd->destroyOemNetwork(nh);
ASSERT_EQ(INetd::StatusCode::INVALID_ARGUMENTS, retStatus);
}
int main(int argc, char** argv) {
::testing::InitGoogleTest(&argc, argv);
int status = RUN_ALL_TESTS();
ALOGE("Test result with status=%d", status);
return status;
}