File: per_user_state_manager_chromeos_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 (539 lines) | stat: -rw-r--r-- 20,803 bytes parent folder | download | duplicates (3)
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
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
// Copyright 2021 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/metrics/per_user_state_manager_chromeos.h"

#include "ash/constants/ash_features.h"
#include "base/run_loop.h"
#include "chrome/browser/ash/login/login_manager_test.h"
#include "chrome/browser/ash/login/test/device_state_mixin.h"
#include "chrome/browser/ash/login/test/guest_session_mixin.h"
#include "chrome/browser/ash/login/test/login_manager_mixin.h"
#include "chrome/browser/ash/login/test/oobe_base_test.h"
#include "chrome/browser/ash/login/test/oobe_screen_exit_waiter.h"
#include "chrome/browser/ash/login/test/oobe_screens_utils.h"
#include "chrome/browser/ash/login/test/scoped_policy_update.h"
#include "chrome/browser/ash/login/test/user_policy_mixin.h"
#include "chrome/browser/ash/login/users/fake_chrome_user_manager.h"
#include "chrome/browser/ash/ownership/owner_settings_service_ash_factory.h"
#include "chrome/browser/ash/policy/core/device_policy_cros_browser_test.h"
#include "chrome/browser/ash/policy/test_support/embedded_policy_test_server_mixin.h"
#include "chrome/browser/ash/profiles/profile_helper.h"
#include "chrome/browser/ash/settings/stats_reporting_controller.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/metrics/chrome_metrics_service_accessor.h"
#include "chrome/browser/metrics/chrome_metrics_service_client.h"
#include "chrome/browser/metrics/profile_pref_names.h"
#include "chrome/browser/metrics/testing/metrics_reporting_pref_helper.h"
#include "chrome/browser/policy/profile_policy_connector.h"
#include "chrome/browser/profiles/profile_manager.h"
#include "chrome/browser/ui/ash/login/login_display_host.h"
#include "chrome/browser/ui/webui/ash/login/consolidated_consent_screen_handler.h"
#include "chrome/test/base/mixin_based_in_process_browser_test.h"
#include "chrome/test/base/testing_browser_process.h"
#include "chromeos/ash/components/dbus/session_manager/fake_session_manager_client.h"
#include "chromeos/ash/components/policy/device_policy/cached_device_policy_updater.h"
#include "chromeos/ash/components/policy/device_policy/device_policy_builder.h"
#include "components/metrics/metrics_log_store.h"
#include "components/metrics/metrics_pref_names.h"
#include "components/metrics/metrics_service.h"
#include "components/metrics/metrics_switches.h"
#include "components/ownership/mock_owner_key_util.h"
#include "components/session_manager/core/session_manager.h"
#include "components/user_manager/scoped_user_manager.h"
#include "components/user_manager/user_names.h"
#include "content/public/test/browser_test.h"
#include "google_apis/gaia/gaia_id.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace metrics {

namespace {

using ::testing::Eq;
using ::testing::Ne;

// Create fake test users in order to test different owner and secondary user
// consent flows.
constexpr char kTestUser1[] = "test-user1@gmail.com";
constexpr GaiaId::Literal kTestUser1GaiaId("1111111111");
constexpr char kTestUser2[] = "test-user2@gmail.com";
constexpr GaiaId::Literal kTestUser2GaiaId("2222222222");

}  // namespace

// Use LoginManagerTest to mimic actual Chrome OS users being logged in and
// out.
class ChromeOSPerUserMetricsBrowserTestBase : public ash::LoginManagerTest {
 public:
  ChromeOSPerUserMetricsBrowserTestBase() = default;
  ~ChromeOSPerUserMetricsBrowserTestBase() override = default;

  void SetUpCommandLine(base::CommandLine* command_line) override {
    EnableMetricsRecordingOnlyForTesting(command_line);
    ash::LoginManagerTest::SetUpCommandLine(command_line);
  }

  void Initialize() {
    // Metrics service must explicitly be told to start recording or nothing
    // will happen.
    g_browser_process->metrics_service()->StartRecordingForTests();

    // Wait for metrics service to finish initializing.
    base::RunLoop().RunUntilIdle();
  }

  // Assumes that a user has logged in.
  void ChangeUserMetricsConsent(bool user_metrics_consent) {
    g_browser_process->metrics_service()->UpdateCurrentUserMetricsConsent(
        user_metrics_consent);
  }

  void CreatedBrowserMainParts(content::BrowserMainParts* parts) override {
    LoginManagerTest::CreatedBrowserMainParts(parts);
    // IsMetricsReportingEnabled() in non-official builds always returns false.
    // Force to check the pref in order to test proper reporting consent.
    ChromeMetricsServiceAccessor::SetForceIsMetricsReportingEnabledPrefLookup(
        true);
  }

  bool GetLocalStateMetricsConsent() const {
    return g_browser_process->local_state()->GetBoolean(
        prefs::kMetricsReportingEnabled);
  }
};

class ChromeOSPerUserRegularUserTest
    : public ChromeOSPerUserMetricsBrowserTestBase,
      public ::testing::WithParamInterface<std::pair<bool, bool>> {
 public:
  ChromeOSPerUserRegularUserTest()
      : owner_key_util_(new ownership::MockOwnerKeyUtil()) {
    login_mixin_.AppendRegularUsers(1);
  }
  ~ChromeOSPerUserRegularUserTest() override = default;

  ash::LoginManagerMixin login_mixin_{&mixin_host_, {}, &fake_gaia_};
  AccountId account_id_{
      AccountId::FromUserEmailGaiaId(kTestUser1, kTestUser1GaiaId)};

 protected:
  void SetUpInProcessBrowserTestFixture() override {
    ChromeOSPerUserMetricsBrowserTestBase::SetUpInProcessBrowserTestFixture();
    owner_consent_ = GetParam().first;
    user_consent_ = GetParam().second;

    // Set the owner parameter.
    policy::CachedDevicePolicyUpdater updater;
    updater.payload().mutable_metrics_enabled()->set_metrics_enabled(
        owner_consent_);
    updater.Commit();

    // Establish ownership of the device.
    ash::OwnerSettingsServiceAshFactory::GetInstance()
        ->SetOwnerKeyUtilForTesting(owner_key_util_);
    owner_key_util_->SetPublicKeyFromPrivateKey(
        *policy_helper_.device_policy()->GetSigningKey());
  }

  scoped_refptr<ownership::MockOwnerKeyUtil> owner_key_util_;
  policy::DevicePolicyCrosTestHelper policy_helper_;
  ash::DeviceStateMixin device_state_{
      &mixin_host_,
      ash::DeviceStateMixin::State::OOBE_COMPLETED_CONSUMER_OWNED};

  bool owner_consent_ = false;
  bool user_consent_ = false;

  FakeGaiaMixin fake_gaia_{&mixin_host_};
};

IN_PROC_BROWSER_TEST_P(ChromeOSPerUserRegularUserTest,
                       MetricsConsentForRegularUser) {
  Initialize();

  LoginUser(account_id_);
  base::RunLoop().RunUntilIdle();

  MetricsLogStore* log_store =
      g_browser_process->metrics_service()->LogStoreForTest();

  // Should be using alternate ongoing log store for regular users regardless of
  // owner consent.
  EXPECT_TRUE(log_store->has_alternate_ongoing_log_store());

  // Secondary user consent is initially disabled until after user consent is
  // given.
  EXPECT_FALSE(GetLocalStateMetricsConsent());

  // Try and toggle user metrics consent to |user_consent_|.
  ChangeUserMetricsConsent(user_consent_);

  // Propagating metrics consent through the services happens async.
  base::RunLoop().RunUntilIdle();

  // User metrics consent is independent of owners consent.
  EXPECT_THAT(GetLocalStateMetricsConsent(), Eq(user_consent_));

  // User-Id will be set if user consent is enabled.
  EXPECT_THAT(
      g_browser_process->metrics_service()->GetCurrentUserId().has_value(),
      Eq(user_consent_));
}

INSTANTIATE_TEST_SUITE_P(MetricsConsentForRegularUser,
                         ChromeOSPerUserRegularUserTest,
                         testing::ValuesIn({
                             std::make_pair(true, true),
                             std::make_pair(true, false),
                             std::make_pair(false, true),
                             std::make_pair(false, false),
                         }));

class ChromeOSPerUserGuestUserWithNoOwnerTest
    : public ChromeOSPerUserMetricsBrowserTestBase,
      public ::testing::WithParamInterface<bool> {
 public:
  ChromeOSPerUserGuestUserWithNoOwnerTest() = default;
  ~ChromeOSPerUserGuestUserWithNoOwnerTest() override = default;

 protected:
  ash::GuestSessionMixin guest_session_{&mixin_host_};
};

IN_PROC_BROWSER_TEST_P(ChromeOSPerUserGuestUserWithNoOwnerTest,
                       MetricsConsentForGuestWithNoOwner) {
  Initialize();

  auto* metrics_service = g_browser_process->metrics_service();
  MetricsLogStore* log_store = metrics_service->LogStoreForTest();

  if (ash::features::IsOobePreConsentMetricsEnabled()) {
    // Consent is set to true for pre-consent during OOBE.
    EXPECT_TRUE(ash::StatsReportingController::Get()->IsEnabled());
    EXPECT_TRUE(GetLocalStateMetricsConsent());
  } else {
    // Device consent should be false if device is not owned.
    EXPECT_FALSE(ash::StatsReportingController::Get()->IsEnabled());
    EXPECT_FALSE(GetLocalStateMetricsConsent());
  }


  bool guest_consent = GetParam();
  ChangeUserMetricsConsent(guest_consent);

  // Propagating metrics consent through the services happens async.
  base::RunLoop().RunUntilIdle();

  // Once consent is set for the first time, log store should be set
  // appropriately. Log store should be the inverse of the first consent since
  // consent means that log store used should be local state.
  // Checks active user profile as current user is the guest.
  EXPECT_EQ(g_browser_process->profile_manager()
                ->GetActiveUserProfile()
                ->GetPrefs()
                ->GetBoolean(prefs::kMetricsUserConsent),
            guest_consent);

  // Secondary users always set ephemeral partition.
  EXPECT_TRUE(log_store->has_alternate_ongoing_log_store());

  // Guests should have a user id if guest consent is set.
  EXPECT_EQ(metrics_service->GetCurrentUserId().has_value(), guest_consent);

  if (ash::features::IsOobePreConsentMetricsEnabled()) {
    // Device settings consent should remain enabled since this is a guest
    // session.
    EXPECT_TRUE(ash::StatsReportingController::Get()->IsEnabled());
  } else {
    // Device settings consent should remain disabled since this is a guest
    // session.
    EXPECT_FALSE(ash::StatsReportingController::Get()->IsEnabled());
  }
}

INSTANTIATE_TEST_SUITE_P(MetricsConsentForGuestWithNoOwner,
                         ChromeOSPerUserGuestUserWithNoOwnerTest,
                         ::testing::Bool());

class ChromeOSPerUserOobeConsentTest : public ash::OobeBaseTest {
 public:
  ChromeOSPerUserOobeConsentTest() = default;

  void SetUpOnMainThread() override {
    ash::LoginDisplayHost::default_host()
        ->GetWizardContext()
        ->is_branded_build = true;

    ash::OobeBaseTest::SetUpOnMainThread();
  }

  ChromeOSPerUserOobeConsentTest(const ChromeOSPerUserOobeConsentTest&) =
      delete;
  ChromeOSPerUserOobeConsentTest& operator=(
      const ChromeOSPerUserOobeConsentTest&) = delete;
  ~ChromeOSPerUserOobeConsentTest() override = default;

  void ValidateCurrentUser(const user_manager::User* user) {}

  void Initialize() {
    // Metrics service must explicitly be told to start recording or nothing
    // will happen.
    g_browser_process->metrics_service()->StartRecordingForTests();

    // Wait for metrics service to finish initializing.
    base::RunLoop().RunUntilIdle();
  }

  // Assumes that a user has logged in.
  void ChangeUserMetricsConsent(bool user_metrics_consent) {
    g_browser_process->metrics_service()->UpdateCurrentUserMetricsConsent(
        user_metrics_consent);
  }

  bool GetLocalStateMetricsConsent() const {
    return g_browser_process->local_state()->GetBoolean(
        prefs::kMetricsReportingEnabled);
  }

  ash::LoginManagerMixin login_manager_mixin_{&mixin_host_, {}, &fake_gaia_};

 private:
  FakeGaiaMixin fake_gaia_{&mixin_host_};
};

IN_PROC_BROWSER_TEST_F(ChromeOSPerUserOobeConsentTest,
                       PRE_OwnerConsentAndRegularSecondaryConsent) {
  // Create and login as device owner.
  auto context = ash::LoginManagerMixin::CreateDefaultUserContext(
      ash::LoginManagerMixin::TestUserInfo(
          AccountId::FromUserEmailGaiaId(kTestUser1, kTestUser1GaiaId)));
  login_manager_mixin_.LoginAsNewRegularUser(context);
  ash::OobeScreenExitWaiter(ash::OobeBaseTest::GetFirstSigninScreen()).Wait();

  // These are enough to test OOBE consent enabled/disabled.
  ash::test::WaitForConsolidatedConsentScreen();

  base::RunLoop().RunUntilIdle();

  if (ash::features::IsOobePreConsentMetricsEnabled()) {
    // Consent is set to true for pre-consent during OOBE.
    EXPECT_TRUE(GetLocalStateMetricsConsent());
  } else {
    // Device owner has not consented to reporting in OOBE flow yet.
    EXPECT_FALSE(GetLocalStateMetricsConsent());
  }

  // Device owner accepted consent.
  ash::test::TapConsolidatedConsentAccept();
  ash::test::WaitForSyncConsentScreen();

  // Device owner has consented to reporting in OOBE.
  EXPECT_TRUE(GetLocalStateMetricsConsent());
}

IN_PROC_BROWSER_TEST_F(ChromeOSPerUserOobeConsentTest,
                       OwnerConsentAndRegularSecondaryConsent) {
  auto context = ash::LoginManagerMixin::CreateDefaultUserContext(
      ash::LoginManagerMixin::TestUserInfo(
          AccountId::FromUserEmailGaiaId(kTestUser2, kTestUser2GaiaId)));
  login_manager_mixin_.LoginAsNewRegularUser(context);
  ash::OobeScreenExitWaiter(ash::OobeBaseTest::GetFirstSigninScreen()).Wait();

  // Secondary user has not consented to reporting in OOBE flow yet.
  EXPECT_FALSE(GetLocalStateMetricsConsent());

  ash::test::WaitForConsolidatedConsentScreen();
  ash::test::TapConsolidatedConsentAccept();
  ash::test::WaitForSyncConsentScreen();

  // Secondary user was able to consent.
  EXPECT_TRUE(GetLocalStateMetricsConsent());

  // Try and disable regular user metrics consent.
  // Propagating metrics consent through the services happens async.
  ChangeUserMetricsConsent(false);
  base::RunLoop().RunUntilIdle();

  // User metrics consent is independent of owners consent.
  // The local state metrics consent represents the current active users
  // consent. Owner consent is managed by |ash::StatsReportingController|.
  EXPECT_TRUE(ash::StatsReportingController::Get()->IsEnabled());
  EXPECT_FALSE(GetLocalStateMetricsConsent());

  // User-Id will not be set if user consent is disabled.
  EXPECT_THAT(
      g_browser_process->metrics_service()->GetCurrentUserId().has_value(),
      Eq(false));
}

// Device owner consent is managed by |ash::StatsReportingController|.
// Test verifies that the |PerUserStateManagerChromeOS| allows control of
// secondary user consent regardless of the owners consent.
IN_PROC_BROWSER_TEST_F(ChromeOSPerUserOobeConsentTest,
                       DeviceOwnerDoesNotUsePerUserConsent) {
  auto context = ash::LoginManagerMixin::CreateDefaultUserContext(
      ash::LoginManagerMixin::TestUserInfo(
          AccountId::FromUserEmailGaiaId(kTestUser1, kTestUser1GaiaId),
          ash::test::kDefaultAuthSetup, user_manager::UserType::kRegular));
  login_manager_mixin_.LoginAsNewRegularUser(context);
  ash::OobeScreenExitWaiter(ash::OobeBaseTest::GetFirstSigninScreen()).Wait();

  if (ash::features::IsOobePreConsentMetricsEnabled()) {
    // Consent is set to true for pre-consent during OOBE.
    EXPECT_TRUE(GetLocalStateMetricsConsent());
  } else {
    // Device owner has not consented to reporting in OOBE flow yet.
    EXPECT_FALSE(GetLocalStateMetricsConsent());
  }

  ash::test::WaitForConsolidatedConsentScreen();
  ash::test::TapConsolidatedConsentAccept();
  ash::test::WaitForSyncConsentScreen();

  // Owner user consented during OOBE.
  EXPECT_TRUE(GetLocalStateMetricsConsent());

  // User-Id is never set for device owner.
  EXPECT_THAT(
      g_browser_process->metrics_service()->GetCurrentUserId().has_value(),
      Eq(false));

  // Try and disable device owner user metrics consent.
  // Device owner should not controller by per user metrics consent.
  // Propagating metrics consent through the services happens async.
  ChangeUserMetricsConsent(false);
  base::RunLoop().RunUntilIdle();

  // Owner consent cannot be updated by ChangeUserMetricsConsent since device
  // owner consent is not controller by per user logic.
  EXPECT_TRUE(GetLocalStateMetricsConsent());

  // User-Id is never set for device owner.
  EXPECT_THAT(
      g_browser_process->metrics_service()->GetCurrentUserId().has_value(),
      Eq(false));
}

class ChromeOSPerUserManagedOobeConsentTest
    : public ash::OobeBaseTest,
      public ::testing::WithParamInterface<bool> {
 public:
  ChromeOSPerUserManagedOobeConsentTest() = default;

  void SetUpOnMainThread() override {
    ash::LoginDisplayHost::default_host()
        ->GetWizardContext()
        ->is_branded_build = true;

    ash::OobeBaseTest::SetUpOnMainThread();

    // Sets ownership.
    device_policy_helper_.InstallOwnerKey();

    // Configure device policy.
    auto* device_policy = device_policy_helper_.device_policy();
    device_policy->payload().mutable_metrics_enabled()->set_metrics_enabled(
        GetParam());
    device_policy_helper_.RefreshDevicePolicy();

    // Wait for device policies to be synced.
    base::RunLoop().RunUntilIdle();
  }

  bool SetUpUserDataDirectory() override {
    base::FilePath local_state_path =
        metrics::SetUpUserDataDirectoryForTesting(true);
    return !local_state_path.empty();
  }

  ChromeOSPerUserManagedOobeConsentTest(
      const ChromeOSPerUserManagedOobeConsentTest&) = delete;
  ChromeOSPerUserManagedOobeConsentTest& operator=(
      const ChromeOSPerUserManagedOobeConsentTest&) = delete;
  ~ChromeOSPerUserManagedOobeConsentTest() override = default;

  void ValidateCurrentUser(const user_manager::User* user) {}

  // Assumes that a user has logged in.
  void ChangeUserMetricsConsent(bool user_metrics_consent) {
    g_browser_process->metrics_service()->UpdateCurrentUserMetricsConsent(
        user_metrics_consent);
  }

  bool GetLocalStateMetricsConsent() const {
    return g_browser_process->local_state()->GetBoolean(
        prefs::kMetricsReportingEnabled);
  }

  void LoginManagedUser() {
    user_policy_mixin_.RequestPolicyUpdate();

    auto context =
        ash::LoginManagerMixin::CreateDefaultUserContext(managed_user_);
    login_mixin_.LoginAndWaitForActiveSession(context);
    EXPECT_EQ(user_manager::UserManager::Get()->GetLoggedInUsers().size(), 1u);
    EXPECT_EQ(session_manager::SessionManager::Get()->session_state(),
              session_manager::SessionState::ACTIVE);
  }

 private:
  FakeGaiaMixin fake_gaia_{&mixin_host_};
  const ash::LoginManagerMixin::TestUserInfo managed_user_{
      AccountId::FromUserEmailGaiaId(kTestUser1, kTestUser1GaiaId)};
  ash::LoginManagerMixin login_mixin_{&mixin_host_,
                                      {managed_user_},
                                      &fake_gaia_};
  ash::UserPolicyMixin user_policy_mixin_{&mixin_host_,
                                          managed_user_.account_id};

  // Policy and device state.
  policy::DevicePolicyCrosTestHelper device_policy_helper_;
  ash::EmbeddedPolicyTestServerMixin policy_test_server_mixin_{&mixin_host_};
  ash::DeviceStateMixin device_state_{
      &mixin_host_,
      ash::DeviceStateMixin::State::OOBE_COMPLETED_CLOUD_ENROLLED};
};

IN_PROC_BROWSER_TEST_P(ChromeOSPerUserManagedOobeConsentTest,
                       ManagedDeviceDoesNotUsePerUserConsent) {
  PerUserStateManagerChromeOS::SetIsManagedForTesting(true);

  auto* metrics_service = g_browser_process->metrics_service();
  MetricsLogStore* log_store = metrics_service->LogStoreForTest();

  // Pre-login state.
  bool policy_consent = GetParam();
  EXPECT_EQ(ash::StatsReportingController::Get()->IsEnabled(), policy_consent);
  EXPECT_EQ(GetLocalStateMetricsConsent(), policy_consent);
  EXPECT_FALSE(log_store->has_alternate_ongoing_log_store());

  LoginManagedUser();
  ash::OobeScreenExitWaiter(ash::OobeBaseTest::GetFirstSigninScreen()).Wait();

  // Post-login state.
  EXPECT_THAT(user_manager::UserManager::Get()->GetActiveUser()->GetType(),
              Eq(user_manager::UserType::kRegular));
  EXPECT_TRUE(log_store->has_alternate_ongoing_log_store());

  // Should still follow policy_consent.
  EXPECT_EQ(GetLocalStateMetricsConsent(), policy_consent);

  // Users should not have a user id since they do not have control over the
  // metrics consent.
  EXPECT_THAT(metrics_service->GetCurrentUserId(), Eq(std::nullopt));

  // Try to change the user consent.
  metrics_service->UpdateCurrentUserMetricsConsent(!policy_consent);

  // Managed device users cannot control metrics consent.
  EXPECT_EQ(GetLocalStateMetricsConsent(), policy_consent);
}

INSTANTIATE_TEST_SUITE_P(ManagedDeviceDoesNotUsePerUserConsent,
                         ChromeOSPerUserManagedOobeConsentTest,
                         ::testing::Bool());

}  // namespace metrics