File: kiosk_network_state_observer_browsertest.cc

package info (click to toggle)
chromium 139.0.7258.127-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 6,122,068 kB
  • sloc: cpp: 35,100,771; ansic: 7,163,530; javascript: 4,103,002; python: 1,436,920; asm: 946,517; xml: 746,709; pascal: 187,653; perl: 88,691; sh: 88,436; objc: 79,953; sql: 51,488; cs: 44,583; fortran: 24,137; makefile: 22,147; tcl: 15,277; php: 13,980; yacc: 8,984; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (380 lines) | stat: -rw-r--r-- 15,277 bytes parent folder | download | duplicates (6)
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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
// Copyright 2024 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/app_mode/kiosk_network_state_observer.h"

#include <cstddef>
#include <optional>
#include <string>

#include "base/files/file_path.h"
#include "base/strings/strcat.h"
#include "base/strings/string_number_conversions.h"
#include "base/test/test_future.h"
#include "chrome/browser/app_mode/test/fake_origin_test_server_mixin.h"
#include "chrome/browser/ash/app_mode/kiosk_controller.h"
#include "chrome/browser/ash/app_mode/kiosk_system_session.h"
#include "chrome/browser/ash/login/app_mode/test/web_kiosk_base_test.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/common/pref_names.h"
#include "chromeos/ash/components/dbus/shill/fake_shill_simulated_result.h"
#include "chromeos/ash/components/network/network_configuration_handler.h"
#include "chromeos/ash/components/network/network_handler.h"
#include "chromeos/ash/components/network/network_handler_test_helper.h"
#include "chromeos/ash/components/network/network_profile_handler.h"
#include "chromeos/ash/components/network/network_state_handler.h"
#include "chromeos/ash/components/network/network_state_test_helper.h"
#include "content/public/test/browser_test.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/cros_system_api/dbus/shill/dbus-constants.h"

namespace ash {

namespace {

struct WifiInfo {
  std::string service_path;
  std::string wifi_guid;
  std::string wifi_name;
  bool is_active;
  std::optional<std::string> passphrase;
  bool auto_connect = true;
  bool save_credentials = true;
};

const WifiInfo kActiveWifi = {"stub_wifi", "wifi_guid_test",
                              "wifi-test-network",
                              /*is_active=*/true, "test-password"};

const WifiInfo kInactiveWifi = {"stub_wifi2", "wifi_guid_test2",
                                "wifi-test-network2",
                                /*is_active=*/false};

const char kDevicePath[] = "/device/stub_wifi_device";
const char kDeviceName[] = "stub_wifi_device";

bool IsPropertyValueEqualsTo(std::string key,
                             base::Value expected_value,
                             const base::Value::Dict* service_properties) {
  const base::Value* value = service_properties->Find(key);
  return !!value && (*value == expected_value);
}

}  // namespace

class KioskNetworkStateObserverTest : public WebKioskBaseTest {
 public:
  KioskNetworkStateObserverTest() = default;

  KioskNetworkStateObserverTest(const KioskNetworkStateObserverTest&) = delete;
  KioskNetworkStateObserverTest& operator=(
      const KioskNetworkStateObserverTest&) = delete;

  void SetUpOnMainThread() override {
    WebKioskBaseTest::SetUpOnMainThread();
    SetAppInstallUrl(server_mixin_.GetUrl("/title3.html"));
    network_state_test_helper().device_test()->AddDevice(
        kDevicePath, shill::kTypeWifi, kDeviceName);
  }

  void UpdateActiveWiFiCredentialsScopeChangePolicy(bool enable) {
    profile()->GetPrefs()->SetBoolean(
        prefs::kKioskActiveWiFiCredentialsScopeChangeEnabled, enable);
  }

  KioskNetworkStateObserver& network_state_observer() const {
    return kiosk_system_session()->network_state_observer_for_testing();
  }

  void SetUpWifi(WifiInfo wifi_info) {
    network_state_test_helper().service_test()->AddService(
        wifi_info.service_path, wifi_info.wifi_guid, wifi_info.wifi_name,
        shill::kTypeWifi,
        (wifi_info.is_active ? shill::kStateOnline : shill::kStateIdle), true);
    network_state_test_helper().service_test()->SetServiceProperty(
        wifi_info.service_path, shill::kConnectableProperty, base::Value(true));
    network_state_test_helper().service_test()->SetServiceProperty(
        wifi_info.service_path, shill::kProfileProperty,
        base::Value(network_state_test_helper().ProfilePathUser()));

    if (wifi_info.passphrase.has_value()) {
      network_state_test_helper().service_test()->SetServiceProperty(
          wifi_info.service_path, shill::kPassphraseProperty,
          base::Value(wifi_info.passphrase.value()));
      network_state_test_helper().service_test()->SetServiceProperty(
          kActiveWifi.service_path, shill::kSecurityClassProperty,
          base::Value(shill::kSecurityClassPsk));
    }
    network_state_test_helper().service_test()->SetServiceProperty(
        kActiveWifi.service_path, shill::kAutoConnectProperty,
        base::Value(kActiveWifi.auto_connect));
    network_state_test_helper().service_test()->SetServiceProperty(
        kActiveWifi.service_path, shill::kSaveCredentialsProperty,
        base::Value(kActiveWifi.save_credentials));
  }

  void InitializeKiosk() {
    InitializeRegularOnlineKiosk(/*simulate_online=*/false);
    network_state_observer().SetWifiExposureAttemptCallbackForTesting(
        wifi_exposure_attempt_callback_.GetRepeatingCallback());
  }

  bool IsWiFiSuccessfullyExposedToDeviceLevel(WifiInfo wifi) {
    // Taking the value is required here. Otherwise next time this function will
    // not wait for a new callback call.
    if (!wifi_exposure_attempt_callback_.Take()) {
      return false;
    }
    const base::Value::Dict* service_properties =
        network_state_test_helper().service_test()->GetServiceProperties(
            wifi.service_path);
    if (!service_properties) {
      return false;
    }

    return
        // Shared profile means the WiFi is configured on the device level.
        IsPropertyValueEqualsTo(
            shill::kProfileProperty,
            base::Value(NetworkProfileHandler::GetSharedProfilePath()),
            service_properties) &&
        IsPropertyValueEqualsTo(shill::kPassphraseProperty,
                                base::Value(wifi.passphrase.value()),
                                service_properties) &&
        IsPropertyValueEqualsTo(shill::kSecurityClassProperty,
                                base::Value(shill::kSecurityClassPsk),
                                service_properties) &&
        IsPropertyValueEqualsTo(shill::kGuidProperty,
                                base::Value(wifi.wifi_guid),
                                service_properties) &&
        IsPropertyValueEqualsTo(shill::kAutoConnectProperty,
                                base::Value(wifi.auto_connect),
                                service_properties) &&
        IsPropertyValueEqualsTo(shill::kTypeProperty,
                                base::Value(shill::kTypeWifi),
                                service_properties) &&
        IsPropertyValueEqualsTo(shill::kSaveCredentialsProperty,
                                base::Value(wifi.save_credentials),
                                service_properties) &&
        IsPropertyValueEqualsTo(shill::kModeProperty,
                                base::Value(shill::kModeManaged),
                                service_properties);
  }

  void CreateWifiToTriggerObservers(std::string name_suffix) {
    WifiInfo new_wifi =
        WifiInfo(base::StrCat({"ServicePath_", name_suffix}),
                 base::StrCat({"WifiGuid_", name_suffix}),
                 base::StrCat({"WifiNetworkName_", name_suffix}),
                 /*is_active=*/true);
    SetUpWifi(new_wifi);
  }

  void RetryWifiExposureMaxAttempts() {
    for (size_t attempt = 1; attempt <= kMaxWifiExposureAttempts; ++attempt) {
      if (attempt == 1) {
        // First attempt is with newly set up WiFi.
      } else {
        CreateWifiToTriggerObservers(base::NumberToString(attempt));
      }
      // WiFi exposure is failed, but it continues to observe the WiFi changes.
      EXPECT_FALSE(IsWiFiSuccessfullyExposedToDeviceLevel(kActiveWifi));

      if (attempt == kMaxWifiExposureAttempts) {
        // After the last attempt the observation should be stopped.
        EXPECT_FALSE(
            NetworkHandler::Get()->network_state_handler()->HasObserver(
                &network_state_observer()));
      } else {
        EXPECT_TRUE(NetworkHandler::Get()->network_state_handler()->HasObserver(
            &network_state_observer()));
      }
    }
  }

 protected:
  base::test::TestFuture<bool> wifi_exposure_attempt_callback_;

  FakeOriginTestServerMixin server_mixin_{
      &mixin_host_,
      /*origin=*/GURL("https://app.foo.com/"),
      /*path_to_be_served=*/FILE_PATH_LITERAL("chrome/test/data")};
};

IN_PROC_BROWSER_TEST_F(KioskNetworkStateObserverTest, DefaultDisabled) {
  SetUpWifi(kActiveWifi);
  InitializeKiosk();

  // The policy is disabled, so WiFi should not be exposed and we should not
  // observe WiFi changes.
  EXPECT_FALSE(network_state_observer().IsPolicyEnabled());
  EXPECT_FALSE(NetworkHandler::Get()->network_state_handler()->HasObserver(
      &network_state_observer()));
}

IN_PROC_BROWSER_TEST_F(KioskNetworkStateObserverTest, PRE_NoActiveWiFi) {
  SetUpWifi(kActiveWifi);
  InitializeKiosk();
}

IN_PROC_BROWSER_TEST_F(KioskNetworkStateObserverTest, NoActiveWiFi) {
  InitializeKiosk();
  UpdateActiveWiFiCredentialsScopeChangePolicy(true);

  // When policy is enabled, observe active WiFis.
  EXPECT_TRUE(network_state_observer().IsPolicyEnabled());
  EXPECT_TRUE(NetworkHandler::Get()->network_state_handler()->HasObserver(
      &network_state_observer()));
}

IN_PROC_BROWSER_TEST_F(KioskNetworkStateObserverTest, ExposeWiFi) {
  SetUpWifi(kActiveWifi);
  InitializeKiosk();
  UpdateActiveWiFiCredentialsScopeChangePolicy(true);

  EXPECT_TRUE(IsWiFiSuccessfullyExposedToDeviceLevel(kActiveWifi));
}

IN_PROC_BROWSER_TEST_F(KioskNetworkStateObserverTest,
                       PRE_ObserveNetworkChange) {
  SetUpWifi(kActiveWifi);
  InitializeKiosk();
}

IN_PROC_BROWSER_TEST_F(KioskNetworkStateObserverTest, ObserveNetworkChange) {
  InitializeKiosk();
  EXPECT_FALSE(NetworkHandler::Get()->network_state_handler()->HasObserver(
      &network_state_observer()));

  // WiFi is not set up, so `KioskNetworkStateObserver` will not expose any
  // WiFi, but will observe the network change.
  UpdateActiveWiFiCredentialsScopeChangePolicy(true);
  // When the policy is updated, the kiosk observer will try to expose an active
  // WiFi. But since there is no active WiFi, it will call the callback with a
  // result of failed attempt.
  EXPECT_FALSE(IsWiFiSuccessfullyExposedToDeviceLevel(kActiveWifi));
  EXPECT_TRUE(NetworkHandler::Get()->network_state_handler()->HasObserver(
      &network_state_observer()));

  SetUpWifi(kActiveWifi);
  EXPECT_TRUE(IsWiFiSuccessfullyExposedToDeviceLevel(kActiveWifi));
  // After the successful WiFi scope change, stop observing the network.
  EXPECT_FALSE(NetworkHandler::Get()->network_state_handler()->HasObserver(
      &network_state_observer()));
}

IN_PROC_BROWSER_TEST_F(KioskNetworkStateObserverTest,
                       PRE_ExposeOnlyActiveWiFi) {
  SetUpWifi(kActiveWifi);
  InitializeKiosk();
}

IN_PROC_BROWSER_TEST_F(KioskNetworkStateObserverTest, ExposeOnlyActiveWiFi) {
  SetUpWifi(kInactiveWifi);
  InitializeKiosk();
  UpdateActiveWiFiCredentialsScopeChangePolicy(true);

  EXPECT_FALSE(IsWiFiSuccessfullyExposedToDeviceLevel(kActiveWifi));
  const base::Value::Dict* service_properties =
      network_state_test_helper().service_test()->GetServiceProperties(
          kInactiveWifi.service_path);
  ASSERT_NE(service_properties, nullptr);
  // Check that we didn't change the profile for the inactive WiFi.
  EXPECT_TRUE(IsPropertyValueEqualsTo(
      shill::kProfileProperty,
      base::Value(network_state_test_helper().ProfilePathUser()),
      service_properties));

  SetUpWifi(kActiveWifi);
  EXPECT_TRUE(IsWiFiSuccessfullyExposedToDeviceLevel(kActiveWifi));
}

IN_PROC_BROWSER_TEST_F(KioskNetworkStateObserverTest,
                       NoPassphraseMaxWifiExposureAttempts) {
  WifiInfo without_passphrase = kActiveWifi;
  without_passphrase.passphrase = {};
  SetUpWifi(without_passphrase);

  InitializeKiosk();
  UpdateActiveWiFiCredentialsScopeChangePolicy(true);

  // Without passphrase the kiosk observer cannot copy the WiFi configuration,
  // so it will try the maximum number of attempts and them give up on exposing
  // the WiFi.
  RetryWifiExposureMaxAttempts();
}

IN_PROC_BROWSER_TEST_F(KioskNetworkStateObserverTest,
                       TemporaryServiceConfiguredButNotUsable) {
  // On real devices we treat the error callback with
  // `kTemporaryServiceConfiguredButNotUsable` message as success.
  network_state_test_helper().manager_test()->SetSimulateConfigurationResult(
      FakeShillSimulatedResult::kFailure);
  network_state_test_helper().manager_test()->SetSimulateConfigurationError(
      shill::kErrorResultNotFound, kTemporaryServiceConfiguredButNotUsable);

  SetUpWifi(kActiveWifi);
  InitializeKiosk();
  UpdateActiveWiFiCredentialsScopeChangePolicy(true);

  EXPECT_TRUE(wifi_exposure_attempt_callback_.Get());
  // `FakeShillManagerClient::ConfigureService` behavior is different from the
  // real one. It does nothing when `FakeShillSimulatedResult::kFailure` is set,
  // so we cannot check that the WiFi is exposed to the device level. But we can
  // check that we stopped the WiFi change observation, because
  // `KioskNetworkStateObserver` think the WiFi was successfully exposed.
  EXPECT_FALSE(NetworkHandler::Get()->network_state_handler()->HasObserver(
      &network_state_observer()));
}

IN_PROC_BROWSER_TEST_F(KioskNetworkStateObserverTest,
                       ConfigFailureMaxWifiExposureAttempts) {
  network_state_test_helper().manager_test()->SetSimulateConfigurationResult(
      FakeShillSimulatedResult::kFailure);
  SetUpWifi(kActiveWifi);
  InitializeKiosk();
  UpdateActiveWiFiCredentialsScopeChangePolicy(true);

  RetryWifiExposureMaxAttempts();
}

IN_PROC_BROWSER_TEST_F(KioskNetworkStateObserverTest, SuccessfulSecondAttempt) {
  network_state_test_helper().manager_test()->SetSimulateConfigurationResult(
      FakeShillSimulatedResult::kFailure);
  SetUpWifi(kActiveWifi);
  InitializeKiosk();
  UpdateActiveWiFiCredentialsScopeChangePolicy(true);

  EXPECT_FALSE(IsWiFiSuccessfullyExposedToDeviceLevel(kActiveWifi));

  network_state_test_helper().manager_test()->SetSimulateConfigurationResult(
      FakeShillSimulatedResult::kSuccess);

  CreateWifiToTriggerObservers("first");

  EXPECT_TRUE(IsWiFiSuccessfullyExposedToDeviceLevel(kActiveWifi));
  // After the last successful attempt the observation should be stopped.
  EXPECT_FALSE(NetworkHandler::Get()->network_state_handler()->HasObserver(
      &network_state_observer()));
}

IN_PROC_BROWSER_TEST_F(KioskNetworkStateObserverTest,
                       PolicyChangeRespectsPreviousWiFiExposureAttempt) {
  SetUpWifi(kActiveWifi);
  InitializeKiosk();
  UpdateActiveWiFiCredentialsScopeChangePolicy(true);

  EXPECT_TRUE(IsWiFiSuccessfullyExposedToDeviceLevel(kActiveWifi));
  EXPECT_FALSE(NetworkHandler::Get()->network_state_handler()->HasObserver(
      &network_state_observer()));

  UpdateActiveWiFiCredentialsScopeChangePolicy(false);
  UpdateActiveWiFiCredentialsScopeChangePolicy(true);

  // Do not start the WiFi observation because the WiFi was already exposed.
  EXPECT_FALSE(NetworkHandler::Get()->network_state_handler()->HasObserver(
      &network_state_observer()));
}

}  // namespace ash