1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
|
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ash/system_logs/shill_log_source.h"
#include <memory>
#include "base/functional/bind.h"
#include "base/run_loop.h"
#include "chromeos/ash/components/dbus/shill/shill_clients.h"
#include "content/public/test/browser_task_environment.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace system_logs {
namespace {
constexpr char kNetworkDevices[] = "network_devices";
constexpr char kNetworkServices[] = "network_services";
} // namespace
class ShillLogSourceTest : public ::testing::Test {
public:
ShillLogSourceTest() = default;
~ShillLogSourceTest() override = default;
ShillLogSourceTest(const ShillLogSourceTest&) = delete;
ShillLogSourceTest*& operator=(const ShillLogSourceTest&) = delete;
void SetUp() override { ash::shill_clients::InitializeFakes(); }
void TearDown() override { ash::shill_clients::Shutdown(); }
std::unique_ptr<SystemLogsResponse> Fetch(bool scrub) {
std::unique_ptr<SystemLogsResponse> result;
base::RunLoop run_loop;
source_ = std::make_unique<ShillLogSource>(scrub);
source_->Fetch(base::BindOnce(
[](std::unique_ptr<SystemLogsResponse>* result,
base::OnceClosure quit_closure,
std::unique_ptr<SystemLogsResponse> response) {
*result = std::move(response);
std::move(quit_closure).Run();
},
&result, run_loop.QuitClosure()));
run_loop.Run();
return result;
}
private:
content::BrowserTaskEnvironment task_environment_;
std::unique_ptr<ShillLogSource> source_;
};
constexpr char kNotScrubbedDeviceStart[] = R"("/device/wifi1")";
constexpr char kNotScrubbedDeviceExpected[] = R"("/device/wifi1": {
"Address": "23456789abcd",
"DBus.Object": "/device/wifi1",
"DBus.Service": "org.freedesktop.ModemManager1",
"IPConfigs": {
"ipconfig_v4_path": {
"Address": "100.0.0.1",
"Gateway": "100.0.0.2",
"Method": "ipv4",
"Prefixlen": 1,
"WebProxyAutoDiscoveryUrl": "http://wpad.com/wpad.dat"
},
"ipconfig_v6_path": {
"Address": "0:0:0:0:100:0:0:1",
"Method": "ipv6"
}
},
"Name": "stub_wifi_device1",
"Type": "wifi"
})";
constexpr char kNotScrubbedServiceStart[] = R"("/service/wifi1")";
constexpr char kNotScrubbedServiceExpected[] = R"("/service/wifi1": {
"Connectable": true,
"Device": "/device/wifi1",
"GUID": "wifi1_guid",
"Mode": "managed",
"Name": "wifi1",
"Profile": "/profile/default",
"SSID": "wifi1",
"SecurityClass": "wep",
"State": "online",
"Type": "wifi",
"Visible": true,
"WiFi.HexSSID": "7769666931"
})";
TEST_F(ShillLogSourceTest, NotScrubbed) {
std::unique_ptr<SystemLogsResponse> response = Fetch(/*scrub=*/false);
ASSERT_TRUE(response);
const auto devices_iter = response->find(kNetworkDevices);
EXPECT_NE(devices_iter, response->end());
// Look for the fake wifi device and then compare the strings to easily
// identify any differences if the fake implementation changes.
size_t idx = devices_iter->second.find(kNotScrubbedDeviceStart);
EXPECT_NE(idx, std::string::npos);
EXPECT_EQ(
devices_iter->second.substr(idx, strlen(kNotScrubbedDeviceExpected)),
std::string(kNotScrubbedDeviceExpected));
const auto services_iter = response->find(kNetworkServices);
EXPECT_NE(services_iter, response->end());
// Look for a fake wifi service and then compare the strings to easily
// identify any differences if the fake implementation changes.
idx = services_iter->second.find(kNotScrubbedServiceStart);
EXPECT_NE(idx, std::string::npos);
EXPECT_EQ(
services_iter->second.substr(idx, strlen(kNotScrubbedServiceExpected)),
std::string(kNotScrubbedServiceExpected));
}
constexpr char kScrubbedDeviceStart[] = R"("/device/wifi1")";
constexpr char kScrubbedDeviceExpected[] = R"("/device/wifi1": {
"Address": "*** MASKED ***",
"DBus.Object": "/device/wifi1",
"DBus.Service": "org.freedesktop.ModemManager1",
"IPConfigs": {
"ipconfig_v4_path": {
"Address": "100.0.0.1",
"Gateway": "100.0.0.2",
"Method": "ipv4",
"Prefixlen": 1,
"WebProxyAutoDiscoveryUrl": "http://wpad.com/wpad.dat"
},
"ipconfig_v6_path": {
"Address": "0:0:0:0:100:0:0:1",
"Method": "ipv6"
}
},
"Name": "*** MASKED ***",
"Type": "wifi"
})";
constexpr char kScrubbedServiceStart[] = R"("/service/wifi1")";
constexpr char kScrubbedServiceExpected[] = R"("/service/wifi1": {
"Connectable": true,
"Device": "/device/wifi1",
"GUID": "wifi1_guid",
"Mode": "managed",
"Name": "service_wifi1",
"Profile": "/profile/default",
"SSID": "*** MASKED ***",
"SecurityClass": "wep",
"State": "online",
"Type": "wifi",
"Visible": true,
"WiFi.HexSSID": "*** MASKED ***"
})";
TEST_F(ShillLogSourceTest, Scrubbed) {
std::unique_ptr<SystemLogsResponse> response = Fetch(/*scrub=*/true);
ASSERT_TRUE(response);
const auto devices_iter = response->find(kNetworkDevices);
EXPECT_NE(devices_iter, response->end());
// Look for the fake wifi device and then compare the strings to easily
// identify any differences if the fake implementation changes.
size_t idx = devices_iter->second.find(kScrubbedDeviceStart);
EXPECT_NE(idx, std::string::npos);
EXPECT_EQ(devices_iter->second.substr(idx, strlen(kScrubbedDeviceExpected)),
std::string(kScrubbedDeviceExpected));
const auto services_iter = response->find(kNetworkServices);
EXPECT_NE(services_iter, response->end());
// Look for a fake wifi service and then compare the strings to easily
// identify any differences if the fake implementation changes.
idx = services_iter->second.find(kScrubbedServiceStart);
EXPECT_NE(idx, std::string::npos);
EXPECT_EQ(services_iter->second.substr(idx, strlen(kScrubbedServiceExpected)),
std::string(kScrubbedServiceExpected));
}
} // namespace system_logs
|