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
|
// Copyright (c) 2012 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/shell_integration_win.h"
#include <stddef.h>
#include <vector>
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/files/scoped_temp_dir.h"
#include "base/macros.h"
#include "base/strings/string16.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/utf_string_conversions.h"
#include "base/test/test_shortcut_win.h"
#include "base/win/scoped_com_initializer.h"
#include "base/win/windows_version.h"
#include "chrome/browser/web_applications/web_app.h"
#include "chrome/common/chrome_constants.h"
#include "chrome/common/chrome_paths_internal.h"
#include "chrome/installer/util/browser_distribution.h"
#include "chrome/installer/util/install_util.h"
#include "chrome/installer/util/shell_util.h"
#include "chrome/installer/util/util_constants.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace shell_integration {
namespace win {
namespace {
struct ShortcutTestObject {
base::FilePath path;
base::win::ShortcutProperties properties;
};
class ShellIntegrationWinMigrateShortcutTest : public testing::Test {
protected:
ShellIntegrationWinMigrateShortcutTest() {}
void SetUp() override {
ASSERT_TRUE(temp_dir_.CreateUniqueTempDir());
// A path to a random target.
base::CreateTemporaryFileInDir(temp_dir_.GetPath(), &other_target_);
// This doesn't need to actually have a base name of "chrome.exe".
base::CreateTemporaryFileInDir(temp_dir_.GetPath(), &chrome_exe_);
chrome_app_id_ =
ShellUtil::GetBrowserModelId(BrowserDistribution::GetDistribution(),
true);
base::FilePath default_user_data_dir;
chrome::GetDefaultUserDataDirectory(&default_user_data_dir);
base::FilePath default_profile_path =
default_user_data_dir.AppendASCII(chrome::kInitialProfile);
non_default_user_data_dir_ = base::FilePath(FILE_PATH_LITERAL("root"))
.Append(FILE_PATH_LITERAL("Non Default Data Dir"));
non_default_profile_ = L"NonDefault";
non_default_profile_chrome_app_id_ = GetChromiumModelIdForProfile(
default_user_data_dir.Append(non_default_profile_));
non_default_user_data_dir_chrome_app_id_ = GetChromiumModelIdForProfile(
non_default_user_data_dir_.AppendASCII(chrome::kInitialProfile));
non_default_user_data_dir_and_profile_chrome_app_id_ =
GetChromiumModelIdForProfile(
non_default_user_data_dir_.Append(non_default_profile_));
extension_id_ = L"chromiumexampleappidforunittests";
base::string16 app_name =
base::UTF8ToUTF16(web_app::GenerateApplicationNameFromExtensionId(
base::UTF16ToUTF8(extension_id_)));
extension_app_id_ = GetAppModelIdForProfile(app_name, default_profile_path);
non_default_profile_extension_app_id_ = GetAppModelIdForProfile(
app_name, default_user_data_dir.Append(non_default_profile_));
CreateShortcuts();
}
// Creates a test shortcut corresponding to |shortcut_properties| and resets
// |shortcut_properties| after copying it to an internal structure for later
// verification.
void AddTestShortcutAndResetProperties(
base::win::ShortcutProperties* shortcut_properties) {
ShortcutTestObject shortcut_test_object;
base::FilePath shortcut_path = temp_dir_.GetPath().Append(
L"Shortcut " + base::IntToString16(shortcuts_.size()) +
installer::kLnkExt);
shortcut_test_object.path = shortcut_path;
shortcut_test_object.properties = *shortcut_properties;
shortcuts_.push_back(shortcut_test_object);
ASSERT_TRUE(base::win::CreateOrUpdateShortcutLink(
shortcut_path, *shortcut_properties,
base::win::SHORTCUT_CREATE_ALWAYS));
shortcut_properties->options = 0U;
}
void CreateShortcuts() {
// A temporary object to pass properties to
// AddTestShortcutAndResetProperties().
base::win::ShortcutProperties temp_properties;
// Shortcut 0 doesn't point to chrome.exe and thus should never be migrated.
temp_properties.set_target(other_target_);
temp_properties.set_app_id(L"Dumbo");
ASSERT_NO_FATAL_FAILURE(
AddTestShortcutAndResetProperties(&temp_properties));
// Shortcut 1 points to chrome.exe and thus should be migrated.
temp_properties.set_target(chrome_exe_);
temp_properties.set_app_id(L"Dumbo");
temp_properties.set_dual_mode(false);
ASSERT_NO_FATAL_FAILURE(
AddTestShortcutAndResetProperties(&temp_properties));
// Shortcut 2 points to chrome.exe, but already has the right appid and thus
// should only be migrated if dual_mode is desired.
temp_properties.set_target(chrome_exe_);
temp_properties.set_app_id(chrome_app_id_);
ASSERT_NO_FATAL_FAILURE(
AddTestShortcutAndResetProperties(&temp_properties));
// Shortcut 3 is like shortcut 1, but it's appid is a prefix of the expected
// appid instead of being totally different.
base::string16 chrome_app_id_is_prefix(chrome_app_id_);
chrome_app_id_is_prefix.push_back(L'1');
temp_properties.set_target(chrome_exe_);
temp_properties.set_app_id(chrome_app_id_is_prefix);
ASSERT_NO_FATAL_FAILURE(
AddTestShortcutAndResetProperties(&temp_properties));
// Shortcut 4 is like shortcut 1, but it's appid is of the same size as the
// expected appid.
base::string16 same_size_as_chrome_app_id(chrome_app_id_.size(), L'1');
temp_properties.set_target(chrome_exe_);
temp_properties.set_app_id(same_size_as_chrome_app_id);
ASSERT_NO_FATAL_FAILURE(
AddTestShortcutAndResetProperties(&temp_properties));
// Shortcut 5 doesn't have an app_id, nor is dual_mode even set; they should
// be set as expected upon migration.
temp_properties.set_target(chrome_exe_);
ASSERT_NO_FATAL_FAILURE(
AddTestShortcutAndResetProperties(&temp_properties));
// Shortcut 6 has a non-default profile directory and so should get a non-
// default app id.
temp_properties.set_target(chrome_exe_);
temp_properties.set_app_id(L"Dumbo");
temp_properties.set_arguments(
L"--profile-directory=" + non_default_profile_);
ASSERT_NO_FATAL_FAILURE(
AddTestShortcutAndResetProperties(&temp_properties));
// Shortcut 7 has a non-default user data directory and so should get a non-
// default app id.
temp_properties.set_target(chrome_exe_);
temp_properties.set_app_id(L"Dumbo");
temp_properties.set_arguments(
L"--user-data-dir=\"" + non_default_user_data_dir_.value() + L"\"");
ASSERT_NO_FATAL_FAILURE(
AddTestShortcutAndResetProperties(&temp_properties));
// Shortcut 8 has a non-default user data directory as well as a non-default
// profile directory and so should get a non-default app id.
temp_properties.set_target(chrome_exe_);
temp_properties.set_app_id(L"Dumbo");
temp_properties.set_arguments(
L"--user-data-dir=\"" + non_default_user_data_dir_.value() + L"\" " +
L"--profile-directory=" + non_default_profile_);
ASSERT_NO_FATAL_FAILURE(
AddTestShortcutAndResetProperties(&temp_properties));
// Shortcut 9 is a shortcut to an app and should get an app id for that app
// rather than the chrome app id.
temp_properties.set_target(chrome_exe_);
temp_properties.set_app_id(L"Dumbo");
temp_properties.set_arguments(
L"--app-id=" + extension_id_);
ASSERT_NO_FATAL_FAILURE(
AddTestShortcutAndResetProperties(&temp_properties));
// Shortcut 10 is a shortcut to an app with a non-default profile and should
// get an app id for that app with a non-default app id rather than the
// chrome app id.
temp_properties.set_target(chrome_exe_);
temp_properties.set_app_id(L"Dumbo");
temp_properties.set_arguments(
L"--app-id=" + extension_id_ +
L" --profile-directory=" + non_default_profile_);
ASSERT_NO_FATAL_FAILURE(
AddTestShortcutAndResetProperties(&temp_properties));
// Shortcut 11 points to chrome.exe, already has the right appid, and has
// dual_mode set and thus should only be migrated if dual_mode is being
// cleared.
temp_properties.set_target(chrome_exe_);
temp_properties.set_app_id(chrome_app_id_);
temp_properties.set_dual_mode(true);
ASSERT_NO_FATAL_FAILURE(
AddTestShortcutAndResetProperties(&temp_properties));
// Shortcut 12 is similar to 11 but with dual_mode explicitly set to false.
temp_properties.set_target(chrome_exe_);
temp_properties.set_app_id(chrome_app_id_);
temp_properties.set_dual_mode(false);
ASSERT_NO_FATAL_FAILURE(
AddTestShortcutAndResetProperties(&temp_properties));
}
base::win::ScopedCOMInitializer com_initializer_;
base::ScopedTempDir temp_dir_;
// Test shortcuts.
std::vector<ShortcutTestObject> shortcuts_;
// The path to a fake chrome.exe.
base::FilePath chrome_exe_;
// The path to a random target.
base::FilePath other_target_;
// Chrome's AppUserModelId.
base::string16 chrome_app_id_;
// A profile that isn't the Default profile.
base::string16 non_default_profile_;
// A user data dir that isn't the default.
base::FilePath non_default_user_data_dir_;
// Chrome's AppUserModelId for the non-default profile.
base::string16 non_default_profile_chrome_app_id_;
// Chrome's AppUserModelId for the non-default user data dir.
base::string16 non_default_user_data_dir_chrome_app_id_;
// Chrome's AppUserModelId for the non-default user data dir and non-default
// profile.
base::string16 non_default_user_data_dir_and_profile_chrome_app_id_;
// An example extension id of an example app.
base::string16 extension_id_;
// The app id of the example app for the default profile and user data dir.
base::string16 extension_app_id_;
// The app id of the example app for the non-default profile.
base::string16 non_default_profile_extension_app_id_;
private:
DISALLOW_COPY_AND_ASSIGN(ShellIntegrationWinMigrateShortcutTest);
};
} // namespace
TEST_F(ShellIntegrationWinMigrateShortcutTest, ClearDualModeAndAdjustAppIds) {
if (base::win::GetVersion() < base::win::VERSION_WIN7)
return;
// 9 shortcuts should have their app id updated below and shortcut 11 should
// be migrated away from dual_mode for a total of 10 shortcuts migrated.
EXPECT_EQ(10,
MigrateShortcutsInPathInternal(chrome_exe_, temp_dir_.GetPath()));
// Shortcut 1, 3, 4, 5, 6, 7, 8, 9, and 10 should have had their app_id fixed.
shortcuts_[1].properties.set_app_id(chrome_app_id_);
shortcuts_[3].properties.set_app_id(chrome_app_id_);
shortcuts_[4].properties.set_app_id(chrome_app_id_);
shortcuts_[5].properties.set_app_id(chrome_app_id_);
shortcuts_[6].properties.set_app_id(non_default_profile_chrome_app_id_);
shortcuts_[7].properties.set_app_id(non_default_user_data_dir_chrome_app_id_);
shortcuts_[8].properties.set_app_id(
non_default_user_data_dir_and_profile_chrome_app_id_);
shortcuts_[9].properties.set_app_id(extension_app_id_);
shortcuts_[10].properties.set_app_id(non_default_profile_extension_app_id_);
// No shortcut should still have the dual_mode property.
for (size_t i = 0; i < shortcuts_.size(); ++i)
shortcuts_[i].properties.set_dual_mode(false);
for (size_t i = 0; i < shortcuts_.size(); ++i) {
SCOPED_TRACE(i);
base::win::ValidateShortcut(shortcuts_[i].path, shortcuts_[i].properties);
}
// Make sure shortcuts are not re-migrated.
EXPECT_EQ(0,
MigrateShortcutsInPathInternal(chrome_exe_, temp_dir_.GetPath()));
}
TEST(ShellIntegrationWinTest, GetAppModelIdForProfileTest) {
const base::string16 base_app_id(
BrowserDistribution::GetDistribution()->GetBaseAppId());
// Empty profile path should get chrome::kBrowserAppID
base::FilePath empty_path;
EXPECT_EQ(base_app_id, GetAppModelIdForProfile(base_app_id, empty_path));
// Default profile path should get chrome::kBrowserAppID
base::FilePath default_user_data_dir;
chrome::GetDefaultUserDataDirectory(&default_user_data_dir);
base::FilePath default_profile_path =
default_user_data_dir.AppendASCII(chrome::kInitialProfile);
EXPECT_EQ(base_app_id,
GetAppModelIdForProfile(base_app_id, default_profile_path));
// Non-default profile path should get chrome::kBrowserAppID joined with
// profile info.
base::FilePath profile_path(FILE_PATH_LITERAL("root"));
profile_path = profile_path.Append(FILE_PATH_LITERAL("udd"));
profile_path = profile_path.Append(FILE_PATH_LITERAL("User Data - Test"));
EXPECT_EQ(base_app_id + L".udd.UserDataTest",
GetAppModelIdForProfile(base_app_id, profile_path));
}
} // namespace win
} // namespace shell_integration
|