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
|
// Copyright 2023 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/scalable_iph/customizable_test_env_browser_test_base.h"
#include "chrome/browser/ash/login/test/device_state_mixin.h"
#include "chrome/browser/ash/login/test/profile_prepared_waiter.h"
#include "chrome/browser/ash/settings/stub_cros_settings_provider.h"
#include "chrome/test/base/mixin_based_in_process_browser_test.h"
#include "chromeos/ash/components/settings/cros_settings_names.h"
namespace ash {
namespace {
constexpr char kOwnerEmail[] = "test@example.com";
}
CustomizableTestEnvBrowserTestBase::TestEnvironment::TestEnvironment(
ash::DeviceStateMixin::State device_state,
UserSessionType user_session_type)
: device_state_(device_state), user_session_type_(user_session_type) {}
// static
std::string
CustomizableTestEnvBrowserTestBase::TestEnvironment::GenerateTestName(
testing::TestParamInfo<CustomizableTestEnvBrowserTestBase::TestEnvironment>
test_param_info) {
const CustomizableTestEnvBrowserTestBase::TestEnvironment& test_environment =
test_param_info.param;
std::string test_name;
switch (test_environment.device_state()) {
case ash::DeviceStateMixin::State::BEFORE_OOBE:
test_name += "BEFORE_OOBE";
break;
case ash::DeviceStateMixin::State::OOBE_COMPLETED_ACTIVE_DIRECTORY_ENROLLED:
test_name += "OOBE_COMPLETED_ACTIVE_DIRECTORY_ENROLLED";
break;
case ash::DeviceStateMixin::State::OOBE_COMPLETED_CLOUD_ENROLLED:
test_name += "OOBE_COMPLETED_CLOUD_ENROLLED";
break;
case ash::DeviceStateMixin::State::OOBE_COMPLETED_CONSUMER_OWNED:
test_name += "OOBE_COMPLETED_CONSUMER_OWNED";
break;
case ash::DeviceStateMixin::State::OOBE_COMPLETED_PERMANENTLY_UNOWNED:
test_name += "OOBE_COMPLETED_PERMANENTLY_UNOWNED";
break;
case ash::DeviceStateMixin::State::OOBE_COMPLETED_UNOWNED:
test_name += "OOBE_COMPLETED_UNOWNED";
break;
case ash::DeviceStateMixin::State::OOBE_COMPLETED_DEMO_MODE:
test_name += "OOBE_COMPLETED_DEMO_MODE";
break;
}
switch (test_environment.user_session_type()) {
case UserSessionType::kRegular:
test_name += "_REGULAR";
break;
case UserSessionType::kRegularNonOwner:
test_name += "_REGULAR_NON_OWNER";
break;
case UserSessionType::kGuest:
test_name += "_GUEST";
break;
case UserSessionType::kChild:
test_name += "_CHILD";
break;
case UserSessionType::kChildOwner:
test_name += "_CHILD_OWNER";
break;
case UserSessionType::kManaged:
test_name += "_MANAGED";
break;
case UserSessionType::kRegularWithOobe:
test_name += "_REGULAR_OOBE";
break;
}
return test_name;
}
CustomizableTestEnvBrowserTestBase::CustomizableTestEnvBrowserTestBase()
: test_environment_(TestEnvironment(
ash::DeviceStateMixin::State::OOBE_COMPLETED_CONSUMER_OWNED,
UserSessionType::kRegular)) {}
CustomizableTestEnvBrowserTestBase::~CustomizableTestEnvBrowserTestBase() =
default;
void CustomizableTestEnvBrowserTestBase::SetUp() {
set_up_called_ = true;
device_state_mixin_ = std::make_unique<ash::DeviceStateMixin>(
&mixin_host_, test_environment_.device_state());
switch (test_environment_.user_session_type()) {
case UserSessionType::kGuest:
guest_session_mixin_ =
std::make_unique<ash::GuestSessionMixin>(&mixin_host_);
break;
case UserSessionType::kChild:
logged_in_user_mixin_ = std::make_unique<ash::LoggedInUserMixin>(
&mixin_host_, /*test_base=*/this, embedded_test_server(),
ash::LoggedInUserMixin::LogInType::kChild);
break;
case UserSessionType::kChildOwner:
logged_in_user_mixin_ = std::make_unique<ash::LoggedInUserMixin>(
&mixin_host_, /*test_base=*/this, embedded_test_server(),
ash::LoggedInUserMixin::LogInType::kChild);
owner_user_email_ = logged_in_user_mixin_->GetAccountId().GetUserEmail();
break;
case UserSessionType::kManaged:
logged_in_user_mixin_ = std::make_unique<ash::LoggedInUserMixin>(
&mixin_host_, /*test_base=*/this, embedded_test_server(),
ash::LoggedInUserMixin::LogInType::kManaged);
// If a device is not enrolled, simulate a case where a device is owned by
// the managed account. This is a managed account on not-enrolled device
// case. Note that an account (i.e. the managed account) cannot be an
// owner of a device if a device is enrolled.
if (test_environment_.device_state() ==
ash::DeviceStateMixin::State::OOBE_COMPLETED_CONSUMER_OWNED) {
owner_user_email_ =
logged_in_user_mixin_->GetAccountId().GetUserEmail();
}
break;
case UserSessionType::kRegular:
logged_in_user_mixin_ = std::make_unique<ash::LoggedInUserMixin>(
&mixin_host_, /*test_base=*/this, embedded_test_server(),
ash::LoggedInUserMixin::LogInType::kConsumer);
owner_user_email_ = logged_in_user_mixin_->GetAccountId().GetUserEmail();
break;
case UserSessionType::kRegularNonOwner:
logged_in_user_mixin_ = std::make_unique<ash::LoggedInUserMixin>(
&mixin_host_, /*test_base=*/this, embedded_test_server(),
ash::LoggedInUserMixin::LogInType::kConsumer);
CHECK(kOwnerEmail !=
logged_in_user_mixin_->GetAccountId().GetUserEmail());
owner_user_email_ = kOwnerEmail;
break;
case UserSessionType::kRegularWithOobe:
logged_in_user_mixin_ = std::make_unique<ash::LoggedInUserMixin>(
&mixin_host_, /*test_base=*/this, embedded_test_server(),
ash::LoggedInUserMixin::LogInType::kConsumer,
/*include_initial_user=*/false);
break;
}
if (!owner_user_email_.empty()) {
scoped_testing_cros_settings_.device_settings()->Set(
ash::kDeviceOwner, base::Value(owner_user_email_));
}
MixinBasedInProcessBrowserTest::SetUp();
}
void CustomizableTestEnvBrowserTestBase::SetUpOnMainThread() {
if (logged_in_user_mixin_) {
base::flat_set<LoggedInUserMixin::LoginDetails> login_details;
switch (test_environment_.user_session_type()) {
case UserSessionType::kChild:
case UserSessionType::kChildOwner:
case UserSessionType::kManaged:
login_details.insert(LoggedInUserMixin::LoginDetails::kNoBrowserLaunch);
break;
case UserSessionType::kRegularWithOobe:
login_details.insert(LoggedInUserMixin::LoginDetails::kNoBrowserLaunch);
login_details.insert(LoggedInUserMixin::LoginDetails::kUserOnboarding);
login_details.insert(
LoggedInUserMixin::LoginDetails::kDontWaitForSession);
break;
default:
break;
}
if (test_environment_.user_session_type() ==
UserSessionType::kRegularWithOobe) {
// For WithOobe session type, we don't wait an active session but a
// profile creation.
test::ProfilePreparedWaiter profile_prepared_waiter(
logged_in_user_mixin_->GetAccountId());
logged_in_user_mixin_->LogInUser(login_details);
profile_prepared_waiter.Wait();
} else {
logged_in_user_mixin_->LogInUser(login_details);
}
}
MixinBasedInProcessBrowserTest::SetUpOnMainThread();
}
void CustomizableTestEnvBrowserTestBase::SetTestEnvironment(
const TestEnvironment& test_environment) {
CHECK(!set_up_called_) << "You are NOT allowed to overwrite test environment "
"after the SetUp call.";
test_environment_ = test_environment;
}
LoginManagerMixin* CustomizableTestEnvBrowserTestBase::GetLoginManagerMixin() {
CHECK(logged_in_user_mixin_)
<< "LoggedInUserMixin is not set up in the current test environment";
return logged_in_user_mixin_->GetLoginManagerMixin();
}
} // namespace ash
|