| // 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/web_applications/test/profile_test_helper.h" |
| |
| #include <vector> |
| |
| #include "base/notreached.h" |
| #include "build/build_config.h" |
| |
| #if BUILDFLAG(IS_CHROMEOS) |
| #include "ash/constants/ash_switches.h" |
| #include "components/account_id/account_id.h" |
| #include "components/user_manager/user_names.h" |
| #endif |
| |
| std::string TestProfileTypeToString( |
| const ::testing::TestParamInfo<TestProfileParam>& info) { |
| std::string result; |
| switch (info.param.profile_type) { |
| case TestProfileType::kRegular: |
| result = "Regular"; |
| break; |
| case TestProfileType::kIncognito: |
| result = "Incognito"; |
| break; |
| case TestProfileType::kGuest: |
| result = "Guest"; |
| break; |
| } |
| return result; |
| } |
| |
| void ConfigureCommandLineForGuestMode(base::CommandLine* command_line) { |
| #if BUILDFLAG(IS_CHROMEOS) |
| command_line->AppendSwitch(ash::switches::kGuestSession); |
| command_line->AppendSwitch(::switches::kIncognito); |
| command_line->AppendSwitchASCII(ash::switches::kLoginProfile, "hash"); |
| command_line->AppendSwitchASCII( |
| ash::switches::kLoginUser, user_manager::GuestAccountId().GetUserEmail()); |
| #else |
| NOTREACHED(); |
| #endif |
| } |