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
|
// Copyright 2014 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 "base/bind.h"
#include "base/command_line.h"
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/files/scoped_temp_dir.h"
#include "base/memory/scoped_ptr.h"
#include "base/run_loop.h"
#include "base/test/scoped_path_override.h"
#include "chrome/browser/extensions/test_extension_system.h"
#include "chrome/browser/media_galleries/gallery_watch_manager.h"
#include "chrome/browser/media_galleries/gallery_watch_manager_observer.h"
#include "chrome/browser/media_galleries/media_galleries_preferences.h"
#include "chrome/browser/media_galleries/media_galleries_preferences_factory.h"
#include "chrome/browser/media_galleries/media_galleries_test_util.h"
#include "chrome/test/base/testing_profile.h"
#include "components/storage_monitor/test_storage_monitor.h"
#include "content/public/test/test_browser_thread_bundle.h"
#include "extensions/browser/extension_system.h"
#include "extensions/common/extension.h"
#include "extensions/common/permissions/media_galleries_permission.h"
#include "testing/gtest/include/gtest/gtest.h"
#if defined(OS_CHROMEOS)
#include "chrome/browser/chromeos/login/users/scoped_test_user_manager.h"
#include "chrome/browser/chromeos/settings/cros_settings.h"
#include "chrome/browser/chromeos/settings/device_settings_service.h"
#endif
namespace component_updater {
namespace {
void ConfirmWatch(base::RunLoop* loop, const std::string& error) {
EXPECT_TRUE(error.empty());
loop->Quit();
}
void ExpectWatchError(base::RunLoop* loop,
const std::string& expected_error,
const std::string& error) {
EXPECT_EQ(expected_error, error);
loop->Quit();
}
} // namespace
class GalleryWatchManagerTest : public GalleryWatchManagerObserver,
public testing::Test {
public:
GalleryWatchManagerTest()
: thread_bundle_(content::TestBrowserThreadBundle::IO_MAINLOOP),
profile_(new TestingProfile()),
gallery_prefs_(NULL),
expect_gallery_changed_(false),
expect_gallery_watch_dropped_(false),
pending_loop_(NULL) {}
~GalleryWatchManagerTest() override {}
void SetUp() override {
ASSERT_TRUE(storage_monitor::TestStorageMonitor::CreateAndInstall());
extensions::TestExtensionSystem* extension_system(
static_cast<extensions::TestExtensionSystem*>(
extensions::ExtensionSystem::Get(profile_.get())));
extension_system->CreateExtensionService(
base::CommandLine::ForCurrentProcess(), base::FilePath(), false);
gallery_prefs_ =
MediaGalleriesPreferencesFactory::GetForProfile(profile_.get());
base::RunLoop loop;
gallery_prefs_->EnsureInitialized(loop.QuitClosure());
loop.Run();
std::vector<std::string> read_permissions;
read_permissions.push_back(
extensions::MediaGalleriesPermission::kReadPermission);
extension_ = AddMediaGalleriesApp("read", read_permissions, profile_.get());
manager_.reset(new GalleryWatchManager);
manager_->AddObserver(profile_.get(), this);
}
void TearDown() override {
manager_->RemoveObserver(profile_.get());
manager_.reset();
storage_monitor::TestStorageMonitor::Destroy();
}
protected:
// Create the specified path, and add it to preferences as a gallery.
MediaGalleryPrefId AddGallery(const base::FilePath& path) {
MediaGalleryPrefInfo gallery_info;
EXPECT_FALSE(gallery_prefs_->LookUpGalleryByPath(path, &gallery_info));
MediaGalleryPrefId id =
gallery_prefs_->AddGallery(gallery_info.device_id,
gallery_info.path,
MediaGalleryPrefInfo::kUserAdded,
gallery_info.volume_label,
gallery_info.vendor_name,
gallery_info.model_name,
gallery_info.total_size_in_bytes,
gallery_info.last_attach_time,
0,
0,
0);
EXPECT_NE(kInvalidMediaGalleryPrefId, id);
EXPECT_TRUE(gallery_prefs_->SetGalleryPermissionForExtension(
*extension_, id, true));
return id;
}
TestingProfile* profile() { return profile_.get(); }
GalleryWatchManager* manager() { return manager_.get(); }
extensions::Extension* extension() { return extension_.get(); }
MediaGalleriesPreferences* gallery_prefs() { return gallery_prefs_; }
bool GalleryWatchesSupported() {
return base::FilePathWatcher::RecursiveWatchAvailable();
}
void AddAndConfirmWatch(MediaGalleryPrefId gallery_id) {
base::RunLoop loop;
manager()->AddWatch(profile(),
extension(),
gallery_id,
base::Bind(&ConfirmWatch, base::Unretained(&loop)));
loop.Run();
}
void ExpectGalleryChanged(base::RunLoop* loop) {
expect_gallery_changed_ = true;
pending_loop_ = loop;
}
void ExpectGalleryWatchDropped(base::RunLoop* loop) {
expect_gallery_watch_dropped_ = true;
pending_loop_ = loop;
}
private:
// GalleryWatchManagerObserver implementation.
void OnGalleryChanged(const std::string& extension_id,
MediaGalleryPrefId gallery_id) override {
EXPECT_TRUE(expect_gallery_changed_);
pending_loop_->Quit();
}
void OnGalleryWatchDropped(const std::string& extension_id,
MediaGalleryPrefId gallery_id) override {
EXPECT_TRUE(expect_gallery_watch_dropped_);
pending_loop_->Quit();
}
scoped_ptr<GalleryWatchManager> manager_;
// Needed for extension service & friends to work.
content::TestBrowserThreadBundle thread_bundle_;
scoped_refptr<extensions::Extension> extension_;
EnsureMediaDirectoriesExists mock_gallery_locations_;
#if defined(OS_CHROMEOS)
chromeos::ScopedTestDeviceSettingsService test_device_settings_service_;
chromeos::ScopedTestCrosSettings test_cros_settings_;
chromeos::ScopedTestUserManager test_user_manager_;
#endif
storage_monitor::TestStorageMonitor monitor_;
scoped_ptr<TestingProfile> profile_;
MediaGalleriesPreferences* gallery_prefs_;
bool expect_gallery_changed_;
bool expect_gallery_watch_dropped_;
base::RunLoop* pending_loop_;
DISALLOW_COPY_AND_ASSIGN(GalleryWatchManagerTest);
};
TEST_F(GalleryWatchManagerTest, Basic) {
base::ScopedTempDir temp_dir;
ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
MediaGalleryPrefId id = AddGallery(temp_dir.path());
base::RunLoop loop;
if (GalleryWatchesSupported()) {
manager()->AddWatch(profile(),
extension(),
id,
base::Bind(&ConfirmWatch, base::Unretained(&loop)));
} else {
manager()->AddWatch(
profile(),
extension(),
id,
base::Bind(&ExpectWatchError,
base::Unretained(&loop),
GalleryWatchManager::kCouldNotWatchGalleryError));
}
loop.Run();
}
TEST_F(GalleryWatchManagerTest, AddAndRemoveTwoWatches) {
if (!GalleryWatchesSupported())
return;
EXPECT_TRUE(manager()->GetWatchSet(profile(), extension()->id()).empty());
base::ScopedTempDir temp1;
ASSERT_TRUE(temp1.CreateUniqueTempDir());
MediaGalleryPrefId id1 = AddGallery(temp1.path());
base::ScopedTempDir temp2;
ASSERT_TRUE(temp2.CreateUniqueTempDir());
MediaGalleryPrefId id2 = AddGallery(temp2.path());
// Add first watch and test it was added correctly.
AddAndConfirmWatch(id1);
MediaGalleryPrefIdSet set1 =
manager()->GetWatchSet(profile(), extension()->id());
EXPECT_EQ(1u, set1.size());
EXPECT_TRUE(ContainsKey(set1, id1));
// Test that the second watch was added correctly too.
AddAndConfirmWatch(id2);
MediaGalleryPrefIdSet set2 =
manager()->GetWatchSet(profile(), extension()->id());
EXPECT_EQ(2u, set2.size());
EXPECT_TRUE(ContainsKey(set2, id1));
EXPECT_TRUE(ContainsKey(set2, id2));
// Remove first watch and test that the second is still in there.
manager()->RemoveWatch(profile(), extension()->id(), id1);
MediaGalleryPrefIdSet set3 =
manager()->GetWatchSet(profile(), extension()->id());
EXPECT_EQ(1u, set3.size());
EXPECT_TRUE(ContainsKey(set3, id2));
// Try removing the first watch again and test that it has no effect.
manager()->RemoveWatch(profile(), extension()->id(), id1);
EXPECT_EQ(1u, manager()->GetWatchSet(profile(), extension()->id()).size());
// Remove the second watch and test that the new watch set is empty.
manager()->RemoveWatch(profile(), extension()->id(), id2);
EXPECT_TRUE(manager()->GetWatchSet(profile(), extension()->id()).empty());
}
TEST_F(GalleryWatchManagerTest, RemoveAllWatches) {
if (!GalleryWatchesSupported())
return;
base::ScopedTempDir temp1;
ASSERT_TRUE(temp1.CreateUniqueTempDir());
MediaGalleryPrefId id1 = AddGallery(temp1.path());
base::ScopedTempDir temp2;
ASSERT_TRUE(temp2.CreateUniqueTempDir());
MediaGalleryPrefId id2 = AddGallery(temp2.path());
// Add watches.
AddAndConfirmWatch(id1);
AddAndConfirmWatch(id2);
EXPECT_EQ(2u, manager()->GetWatchSet(profile(), extension()->id()).size());
// RemoveAllWatches using a different extension ID and verify watches remain.
manager()->RemoveAllWatches(profile(), "OtherExtensionId");
EXPECT_EQ(2u, manager()->GetWatchSet(profile(), extension()->id()).size());
// RemoveAllWatches using the correct extension ID and verify watches gone.
manager()->RemoveAllWatches(profile(), extension()->id());
EXPECT_TRUE(manager()->GetWatchSet(profile(), extension()->id()).empty());
}
TEST_F(GalleryWatchManagerTest, DropWatchOnGalleryRemoved) {
if (!GalleryWatchesSupported())
return;
base::ScopedTempDir temp_dir;
ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
MediaGalleryPrefId id = AddGallery(temp_dir.path());
AddAndConfirmWatch(id);
base::RunLoop success_loop;
ExpectGalleryWatchDropped(&success_loop);
gallery_prefs()->EraseGalleryById(id);
success_loop.Run();
}
TEST_F(GalleryWatchManagerTest, DropWatchOnGalleryPermissionRevoked) {
if (!GalleryWatchesSupported())
return;
base::ScopedTempDir temp_dir;
ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
MediaGalleryPrefId id = AddGallery(temp_dir.path());
AddAndConfirmWatch(id);
base::RunLoop success_loop;
ExpectGalleryWatchDropped(&success_loop);
gallery_prefs()->SetGalleryPermissionForExtension(*extension(), id, false);
success_loop.Run();
}
TEST_F(GalleryWatchManagerTest, TestWatchOperation) {
if (!GalleryWatchesSupported())
return;
base::ScopedTempDir temp_dir;
ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
MediaGalleryPrefId id = AddGallery(temp_dir.path());
AddAndConfirmWatch(id);
base::RunLoop success_loop;
ExpectGalleryChanged(&success_loop);
ASSERT_EQ(
4, base::WriteFile(temp_dir.path().AppendASCII("fake file"), "blah", 4));
success_loop.Run();
}
} // namespace component_updater
|