blob: 15d0e754d52eeea0afb35aad12e3667e0cccd73e [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "extensions/browser/api/system_network/system_network_api.h"
#include "extensions/browser/api_test_utils.h"
#include "extensions/browser/api_unittest.h"
#include "extensions/common/extension_builder.h"
using extensions::api_test_utils::RunFunctionAndReturnSingleResult;
using extensions::api::SystemNetworkGetNetworkInterfacesFunction;
using extensions::api::system_network::NetworkInterface;
namespace extensions {
namespace {
using SystemNetworkApiUnitTest = extensions::ApiUnitTest;
} // namespace
TEST_F(SystemNetworkApiUnitTest, GetNetworkInterfaces) {
scoped_refptr<SystemNetworkGetNetworkInterfacesFunction> socket_function(
new SystemNetworkGetNetworkInterfacesFunction());
scoped_refptr<const Extension> empty_extension(
extensions::ExtensionBuilder("Test").Build());
socket_function->set_extension(empty_extension.get());
socket_function->set_has_callback(true);
std::unique_ptr<base::Value> result(RunFunctionAndReturnSingleResult(
socket_function.get(), "[]", browser_context()));
ASSERT_EQ(base::Value::Type::LIST, result->type());
// All we can confirm is that we have at least one address, but not what it
// is.
base::ListValue* value = static_cast<base::ListValue*>(result.get());
ASSERT_TRUE(value->GetSize() > 0);
for (const auto& network_interface_value : *value) {
NetworkInterface network_interface;
ASSERT_TRUE(NetworkInterface::Populate(network_interface_value,
&network_interface));
LOG(INFO) << "Network interface: address=" << network_interface.address
<< ", name=" << network_interface.name
<< ", prefix length=" << network_interface.prefix_length;
ASSERT_NE(std::string(), network_interface.address);
ASSERT_NE(std::string(), network_interface.name);
ASSERT_LE(0, network_interface.prefix_length);
}
}
} // namespace extensions