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
|
// Copyright 2018 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/ui/views/plugin_vm/plugin_vm_installer_view.h"
#include "base/files/file_util.h"
#include "base/functional/bind.h"
#include "base/memory/raw_ptr.h"
#include "base/task/single_thread_task_runner.h"
#include "base/test/scoped_feature_list.h"
#include "base/threading/thread_restrictions.h"
#include "chrome/browser/ash/plugin_vm/plugin_vm_installer_factory.h"
#include "chrome/browser/ash/plugin_vm/plugin_vm_pref_names.h"
#include "chrome/browser/ash/plugin_vm/plugin_vm_test_helper.h"
#include "chrome/browser/ash/plugin_vm/plugin_vm_util.h"
#include "chrome/browser/ash/settings/scoped_testing_cros_settings.h"
#include "chrome/browser/ash/settings/stub_cros_settings_provider.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/test/test_browser_dialog.h"
#include "chrome/common/chrome_features.h"
#include "chrome/grit/generated_resources.h"
#include "chromeos/ash/components/dbus/concierge/fake_concierge_client.h"
#include "chromeos/ash/components/dbus/debug_daemon/fake_debug_daemon_client.h"
#include "chromeos/ash/components/dbus/vm_plugin_dispatcher/fake_vm_plugin_dispatcher_client.h"
#include "chromeos/ash/components/install_attributes/stub_install_attributes.h"
#include "chromeos/ash/components/settings/cros_settings.h"
#include "components/download/public/background_service/download_metadata.h"
#include "components/download/public/background_service/features.h"
#include "components/prefs/pref_service.h"
#include "components/prefs/scoped_user_pref_update.h"
#include "content/public/browser/network_service_instance.h"
#include "content/public/test/browser_test.h"
#include "content/public/test/test_utils.h"
#include "services/network/test/test_network_connection_tracker.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/base/mojom/dialog_button.mojom.h"
#include "ui/strings/grit/ui_strings.h"
#include "ui/views/test/ax_event_counter.h"
namespace {
const char kZipFile[] = "/downloads/a_zip_file.zip";
const char kZipFileHash[] =
"bb077522e6c6fec07cf863ca44d5701935c4bc36ed12ef154f4cc22df70aec18";
const char kNonMatchingHash[] =
"842841a4c75a55ad050d686f4ea5f77e83ae059877fe9b6946aa63d3d057ed32";
const char kJpgFile[] = "/downloads/image.jpg";
const char kJpgFileHash[] =
"01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b";
} // namespace
// TODO(timloh): This file should only be responsible for testing the
// interactions between the installer UI and the installer backend. We should
// mock out the backend and move the tests for the backend logic out of here.
class PluginVmInstallerViewBrowserTest : public DialogBrowserTest {
public:
PluginVmInstallerViewBrowserTest() = default;
PluginVmInstallerViewBrowserTest(const PluginVmInstallerViewBrowserTest&) =
delete;
PluginVmInstallerViewBrowserTest& operator=(
const PluginVmInstallerViewBrowserTest&) = delete;
void SetUpOnMainThread() override {
ASSERT_TRUE(embedded_test_server()->Start());
fake_concierge_client_ = ash::FakeConciergeClient::Get();
fake_concierge_client_->set_disk_image_progress_signal_connected(true);
fake_vm_plugin_dispatcher_client_ =
static_cast<ash::FakeVmPluginDispatcherClient*>(
ash::VmPluginDispatcherClient::Get());
network_connection_tracker_ =
network::TestNetworkConnectionTracker::CreateInstance();
content::SetNetworkConnectionTrackerForTesting(nullptr);
content::SetNetworkConnectionTrackerForTesting(
network_connection_tracker_.get());
network::TestNetworkConnectionTracker::GetInstance()->SetConnectionType(
network::mojom::ConnectionType::CONNECTION_WIFI);
}
// DialogBrowserTest:
void ShowUi(const std::string& name) override {
plugin_vm::ShowPluginVmInstallerView(browser()->profile());
view_ = PluginVmInstallerView::GetActiveViewForTesting();
}
protected:
bool HasAcceptButton() { return view_->GetOkButton() != nullptr; }
bool HasCancelButton() { return view_->GetCancelButton() != nullptr; }
void AllowPluginVm() {
EnterpriseEnrollDevice();
SetPluginVmPolicies();
// Set correct PluginVmImage preference value.
SetPluginVmImagePref(embedded_test_server()->GetURL(kZipFile).spec(),
kZipFileHash);
auto* installer = plugin_vm::PluginVmInstallerFactory::GetForProfile(
browser()->profile());
installer->SetFreeDiskSpaceForTesting(installer->RequiredFreeDiskSpace());
installer->SkipLicenseCheckForTesting();
}
void SetPluginVmImagePref(std::string url, std::string hash) {
ScopedDictPrefUpdate update(browser()->profile()->GetPrefs(),
plugin_vm::prefs::kPluginVmImage);
base::Value::Dict& plugin_vm_image = update.Get();
plugin_vm_image.Set("url", url);
plugin_vm_image.Set("hash", hash);
}
void WaitForSetupToFinish() {
base::RunLoop run_loop;
view_->SetFinishedCallbackForTesting(
base::BindOnce(&PluginVmInstallerViewBrowserTest::OnSetupFinished,
run_loop.QuitClosure()));
run_loop.Run();
content::RunAllTasksUntilIdle();
}
void CheckSetupFailed() {
EXPECT_TRUE(HasAcceptButton());
EXPECT_TRUE(HasCancelButton());
EXPECT_EQ(view_->GetDialogButtonLabel(ui::mojom::DialogButton::kOk),
l10n_util::GetStringUTF16(IDS_PLUGIN_VM_INSTALLER_RETRY_BUTTON));
EXPECT_EQ(view_->GetTitle(),
l10n_util::GetStringUTF16(IDS_PLUGIN_VM_INSTALLER_ERROR_TITLE));
}
void CheckSetupIsFinishedSuccessfully() {
EXPECT_TRUE(HasAcceptButton());
EXPECT_TRUE(HasCancelButton());
EXPECT_EQ(view_->GetDialogButtonLabel(ui::mojom::DialogButton::kCancel),
l10n_util::GetStringUTF16(IDS_APP_CLOSE));
EXPECT_EQ(view_->GetDialogButtonLabel(ui::mojom::DialogButton::kOk),
l10n_util::GetStringUTF16(IDS_PLUGIN_VM_INSTALLER_LAUNCH_BUTTON));
EXPECT_EQ(view_->GetTitle(), l10n_util::GetStringUTF16(
IDS_PLUGIN_VM_INSTALLER_FINISHED_TITLE));
}
ash::ScopedTestingCrosSettings scoped_testing_cros_settings_;
ash::ScopedStubInstallAttributes scoped_stub_install_attributes_;
std::unique_ptr<network::TestNetworkConnectionTracker>
network_connection_tracker_;
raw_ptr<PluginVmInstallerView, DanglingUntriaged> view_;
raw_ptr<ash::FakeConciergeClient, DanglingUntriaged> fake_concierge_client_;
raw_ptr<ash::FakeVmPluginDispatcherClient, DanglingUntriaged>
fake_vm_plugin_dispatcher_client_;
private:
void EnterpriseEnrollDevice() {
scoped_stub_install_attributes_.Get()->SetCloudManaged("example.com",
"device_id");
}
void SetPluginVmPolicies() {
// User polcies.
browser()->profile()->GetPrefs()->SetBoolean(
plugin_vm::prefs::kPluginVmAllowed, true);
// Device policies.
scoped_testing_cros_settings_.device_settings()->Set(ash::kPluginVmAllowed,
base::Value(true));
}
static void OnSetupFinished(base::OnceClosure quit_closure, bool success) {
base::SingleThreadTaskRunner::GetCurrentDefault()->PostTask(
FROM_HERE, std::move(quit_closure));
}
};
class PluginVmInstallerViewBrowserTestWithFeatureEnabled
: public PluginVmInstallerViewBrowserTest {
public:
PluginVmInstallerViewBrowserTestWithFeatureEnabled() {
feature_list_.InitWithFeaturesAndParameters(
{{features::kPluginVm, {}},
{download::kDownloadServiceFeature, {{"start_up_delay_ms", "0"}}}},
{});
}
private:
base::test::ScopedFeatureList feature_list_;
};
// Test the dialog is actually can be launched.
IN_PROC_BROWSER_TEST_F(PluginVmInstallerViewBrowserTest, InvokeUi_default) {
ShowAndVerifyUi();
}
IN_PROC_BROWSER_TEST_F(PluginVmInstallerViewBrowserTestWithFeatureEnabled,
SetupShouldFinishSuccessfully) {
AllowPluginVm();
plugin_vm::SetupConciergeForSuccessfulDiskImageImport(fake_concierge_client_);
ShowUi("default");
EXPECT_NE(nullptr, view_);
view_->AcceptDialog();
WaitForSetupToFinish();
CheckSetupIsFinishedSuccessfully();
}
IN_PROC_BROWSER_TEST_F(PluginVmInstallerViewBrowserTestWithFeatureEnabled,
SetupShouldFireAccessibilityEvents) {
views::test::AXEventCounter counter(views::AXUpdateNotifier::Get());
AllowPluginVm();
plugin_vm::SetupConciergeForSuccessfulDiskImageImport(fake_concierge_client_);
ShowUi("default");
EXPECT_NE(nullptr, view_);
auto* title_view = view_->GetTitleViewForTesting();
EXPECT_NE(nullptr, title_view);
auto* message_view = view_->GetMessageViewForTesting();
EXPECT_NE(nullptr, message_view);
auto* progress_view = view_->GetDownloadProgressMessageViewForTesting();
EXPECT_NE(nullptr, progress_view);
// Views should only fire property-change events when the property changes;
// not when a value is initialized. As a result, there should not be any
// text-changed accessibility fired as a result of the introductory/set-up
// text being displayed.
EXPECT_EQ(0, counter.GetCount(ax::mojom::Event::kTextChanged, title_view));
EXPECT_EQ(0, counter.GetCount(ax::mojom::Event::kTextChanged, message_view));
EXPECT_EQ(0, counter.GetCount(ax::mojom::Event::kTextChanged, progress_view));
counter.ResetAllCounts();
view_->AcceptDialog();
// Once the installation has been accepted, the message and title labels are
// changed to indicate the installation has begun. Each label should have
// fired an accessibility event for this change. Because the download has not
// started, there should be no event from the download progress label.
EXPECT_EQ(1, counter.GetCount(ax::mojom::Event::kTextChanged, title_view));
EXPECT_EQ(1, counter.GetCount(ax::mojom::Event::kTextChanged, message_view));
EXPECT_EQ(0, counter.GetCount(ax::mojom::Event::kTextChanged, progress_view));
counter.ResetAllCounts();
WaitForSetupToFinish();
// During the installation process, the title remains the same until the
// installation is complete. There should be an accessibility event for the
// title changing to the setup-complete text.
EXPECT_EQ(1, counter.GetCount(ax::mojom::Event::kTextChanged, title_view));
// During the installation process, the message changes three times:
// downloading, configuring, ready to use. Each time there should be an
// accessibility event for the change.
EXPECT_EQ(3, counter.GetCount(ax::mojom::Event::kTextChanged, message_view));
// During the download process, there are periodic updates showing the
// amount downloaded thus far. There are six such updates in this test:
// the first "0 GB" and the next five "0.0 GB". Each time the text changes,
// there should be an accessibility event for the change. Since the text
// changed twice, there should be two updates.
EXPECT_EQ(2, counter.GetCount(ax::mojom::Event::kTextChanged, progress_view));
CheckSetupIsFinishedSuccessfully();
}
IN_PROC_BROWSER_TEST_F(PluginVmInstallerViewBrowserTestWithFeatureEnabled,
SetupShouldFailAsHashesDoNotMatch) {
AllowPluginVm();
// Reset PluginVmImage hash to non-matching.
SetPluginVmImagePref(embedded_test_server()->GetURL(kZipFile).spec(),
kNonMatchingHash);
ShowUi("default");
EXPECT_NE(nullptr, view_);
view_->AcceptDialog();
WaitForSetupToFinish();
CheckSetupFailed();
}
IN_PROC_BROWSER_TEST_F(PluginVmInstallerViewBrowserTestWithFeatureEnabled,
SetupShouldFailAsImportingFails) {
AllowPluginVm();
SetPluginVmImagePref(embedded_test_server()->GetURL(kJpgFile).spec(),
kJpgFileHash);
ShowUi("default");
EXPECT_NE(nullptr, view_);
view_->AcceptDialog();
WaitForSetupToFinish();
CheckSetupFailed();
}
IN_PROC_BROWSER_TEST_F(PluginVmInstallerViewBrowserTestWithFeatureEnabled,
CouldRetryAfterFailedSetup) {
AllowPluginVm();
// Reset PluginVmImage hash to non-matching.
SetPluginVmImagePref(embedded_test_server()->GetURL(kZipFile).spec(),
kNonMatchingHash);
ShowUi("default");
EXPECT_NE(nullptr, view_);
view_->AcceptDialog();
WaitForSetupToFinish();
CheckSetupFailed();
plugin_vm::SetupConciergeForSuccessfulDiskImageImport(fake_concierge_client_);
SetPluginVmImagePref(embedded_test_server()->GetURL(kZipFile).spec(),
kZipFileHash);
// Retry button clicked to retry the download.
view_->AcceptDialog();
WaitForSetupToFinish();
CheckSetupIsFinishedSuccessfully();
}
IN_PROC_BROWSER_TEST_F(
PluginVmInstallerViewBrowserTest,
SetupShouldShowDisallowedMessageIfPluginVmIsNotAllowedToRun) {
ShowUi("default");
EXPECT_NE(nullptr, view_);
view_->AcceptDialog();
std::u16string app_name = l10n_util::GetStringUTF16(IDS_PLUGIN_VM_APP_NAME);
EXPECT_FALSE(HasAcceptButton());
EXPECT_TRUE(HasCancelButton());
EXPECT_EQ(view_->GetTitle(),
l10n_util::GetStringFUTF16(
IDS_PLUGIN_VM_INSTALLER_NOT_ALLOWED_TITLE, app_name));
EXPECT_EQ(
view_->GetMessage(),
l10n_util::GetStringFUTF16(
IDS_PLUGIN_VM_INSTALLER_NOT_ALLOWED_MESSAGE, app_name,
base::NumberToString16(
static_cast<std::underlying_type_t<
plugin_vm::PluginVmInstaller::FailureReason>>(
plugin_vm::PluginVmInstaller::FailureReason::NOT_ALLOWED))));
}
IN_PROC_BROWSER_TEST_F(PluginVmInstallerViewBrowserTestWithFeatureEnabled,
SetupShouldLaunchIfImageAlreadyImported) {
AllowPluginVm();
// Setup concierge and the dispatcher for VM already imported.
vm_tools::concierge::ListVmDisksResponse list_vm_disks_response;
list_vm_disks_response.set_success(true);
auto* image = list_vm_disks_response.add_images();
image->set_name(plugin_vm::kPluginVmName);
image->set_storage_location(vm_tools::concierge::STORAGE_CRYPTOHOME_PLUGINVM);
fake_concierge_client_->set_list_vm_disks_response(list_vm_disks_response);
vm_tools::plugin_dispatcher::ListVmResponse list_vms_response;
list_vms_response.add_vm_info()->set_state(
vm_tools::plugin_dispatcher::VmState::VM_STATE_STOPPED);
fake_vm_plugin_dispatcher_client_->set_list_vms_response(list_vms_response);
fake_vm_plugin_dispatcher_client_->set_start_vm_response(
vm_tools::plugin_dispatcher::StartVmResponse());
ShowUi("default");
EXPECT_NE(nullptr, view_);
view_->AcceptDialog();
WaitForSetupToFinish();
// Installer should be closed.
EXPECT_EQ(nullptr, PluginVmInstallerView::GetActiveViewForTesting());
}
|