blob: c2b193eb9dbbe14a6560cae9b3cc123bbc2e2e24 [file] [log] [blame]
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/chrome_browser_main_win.h"
#include "chrome/browser/browser_process.h"
#include "chrome/common/pref_names.h"
#include "chrome/test/base/in_process_browser_test.h"
#include "components/prefs/pref_service.h"
#include "components/version_info/version_info.h"
#include "content/public/test/browser_test.h"
#include "content/public/test/test_utils.h"
using ChromeBrowserMainWinTest = InProcessBrowserTest;
IN_PROC_BROWSER_TEST_F(ChromeBrowserMainWinTest, PRE_ShortcutsAreMigratedOnce) {
// Wait for all startup tasks to run.
content::RunAllTasksUntilIdle();
// Confirm that shortcuts were migrated.
const std::string last_version_migrated =
g_browser_process->local_state()->GetString(
prefs::kShortcutMigrationVersion);
EXPECT_EQ(last_version_migrated, version_info::GetVersionNumber());
// Set the version back as far as kLastVersionNeedingMigration and ensure it's
// not migrated again.
g_browser_process->local_state()->SetString(prefs::kShortcutMigrationVersion,
"86.0.4231.0");
}
IN_PROC_BROWSER_TEST_F(ChromeBrowserMainWinTest, ShortcutsAreMigratedOnce) {
content::RunAllTasksUntilIdle();
// Confirm that shortcuts weren't migrated when marked as having last been
// migrated in kLastVersionNeedingMigration+.
const std::string last_version_migrated =
g_browser_process->local_state()->GetString(
prefs::kShortcutMigrationVersion);
EXPECT_EQ(last_version_migrated, "86.0.4231.0");
}