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
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
|
// 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/base_paths.h"
#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/media_folder_finder.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/browser/media_galleries/media_scan_manager.h"
#include "chrome/browser/media_galleries/media_scan_manager_observer.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 {
class MockMediaFolderFinder : MediaFolderFinder {
public:
typedef base::Callback<void(MediaFolderFinderResultsCallback)>
FindFoldersStartedCallback;
static MediaFolderFinder* CreateMockMediaFolderFinder(
const FindFoldersStartedCallback& started_callback,
const base::Closure destruction_callback,
const MediaFolderFinderResultsCallback& callback) {
return new MockMediaFolderFinder(started_callback, destruction_callback,
callback);
}
MockMediaFolderFinder(
const FindFoldersStartedCallback& started_callback,
const base::Closure destruction_callback,
const MediaFolderFinderResultsCallback& callback)
: MediaFolderFinder(callback),
started_callback_(started_callback),
destruction_callback_(destruction_callback),
callback_(callback) {
}
virtual ~MockMediaFolderFinder() {
destruction_callback_.Run();
}
virtual void StartScan() OVERRIDE {
started_callback_.Run(callback_);
}
private:
FindFoldersStartedCallback started_callback_;
base::Closure destruction_callback_;
MediaFolderFinderResultsCallback callback_;
DISALLOW_COPY_AND_ASSIGN(MockMediaFolderFinder);
};
} // namespace
class TestMediaScanManager : public MediaScanManager {
public:
typedef base::Callback<MediaFolderFinder*(
const MediaFolderFinder::MediaFolderFinderResultsCallback&)>
MediaFolderFinderFactory;
explicit TestMediaScanManager(const MediaFolderFinderFactory& factory) {
SetMediaFolderFinderFactory(factory);
}
virtual ~TestMediaScanManager() {}
private:
DISALLOW_COPY_AND_ASSIGN(TestMediaScanManager);
};
class MediaScanManagerTest : public MediaScanManagerObserver,
public testing::Test {
public:
MediaScanManagerTest()
: find_folders_start_count_(0),
find_folders_destroy_count_(0),
find_folders_success_(false),
expected_gallery_count_(0),
profile_(new TestingProfile()) {}
virtual ~MediaScanManagerTest() {
EXPECT_EQ(find_folders_start_count_, find_folders_destroy_count_);
}
virtual 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(
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());
ASSERT_TRUE(test_results_dir_.CreateUniqueTempDir());
MockMediaFolderFinder::FindFoldersStartedCallback started_callback =
base::Bind(&MediaScanManagerTest::OnFindFoldersStarted,
base::Unretained(this));
base::Closure destruction_callback =
base::Bind(&MediaScanManagerTest::OnFindFoldersDestroyed,
base::Unretained(this));
TestMediaScanManager::MediaFolderFinderFactory factory =
base::Bind(&MockMediaFolderFinder::CreateMockMediaFolderFinder,
started_callback, destruction_callback);
media_scan_manager_.reset(new TestMediaScanManager(factory));
media_scan_manager_->AddObserver(profile_.get(), this);
}
virtual void TearDown() OVERRIDE {
media_scan_manager_->RemoveObserver(profile_.get());
media_scan_manager_.reset();
storage_monitor::TestStorageMonitor::Destroy();
}
// Create a test folder in the test specific scoped temp dir and return the
// final path in |full_path|.
void MakeTestFolder(const std::string& root_relative_path,
base::FilePath* full_path) {
ASSERT_TRUE(test_results_dir_.IsValid());
*full_path =
test_results_dir_.path().AppendASCII(root_relative_path);
ASSERT_TRUE(base::CreateDirectory(*full_path));
}
// Create the specified path, and add it to preferences as a gallery.
MediaGalleryPrefId AddGallery(const std::string& rel_path,
MediaGalleryPrefInfo::Type type,
int audio_count,
int image_count,
int video_count) {
base::FilePath full_path;
MakeTestFolder(rel_path, &full_path);
MediaGalleryPrefInfo gallery_info;
gallery_prefs_->LookUpGalleryByPath(full_path, &gallery_info);
return gallery_prefs_->AddGallery(gallery_info.device_id,
gallery_info.path,
type,
gallery_info.volume_label,
gallery_info.vendor_name,
gallery_info.model_name,
gallery_info.total_size_in_bytes,
gallery_info.last_attach_time,
audio_count, image_count, video_count);
}
void SetFindFoldersResults(
bool success,
const MediaFolderFinder::MediaFolderFinderResults& results) {
find_folders_success_ = success;
find_folders_results_ = results;
}
void SetExpectedScanResults(int gallery_count,
const MediaGalleryScanResult& file_counts) {
expected_gallery_count_ = gallery_count;
expected_file_counts_ = file_counts;
}
void StartScan() {
media_scan_manager_->StartScan(
profile_.get(), extension_.get(), true /* user_gesture */);
}
MediaGalleriesPreferences* gallery_prefs() {
return gallery_prefs_;
}
const MediaGalleriesPrefInfoMap& known_galleries() const {
return gallery_prefs_->known_galleries();
}
size_t gallery_count() const {
return known_galleries().size();
}
extensions::Extension* extension() {
return extension_.get();
}
int FindFoldersStartCount() {
return find_folders_start_count_;
}
int FindFolderDestroyCount() {
return find_folders_destroy_count_;
}
void CheckFileCounts(MediaGalleryPrefId pref_id, int audio_count,
int image_count, int video_count) {
if (!ContainsKey(known_galleries(), pref_id)) {
EXPECT_TRUE(false);
return;
}
MediaGalleriesPrefInfoMap::const_iterator pref_info =
known_galleries().find(pref_id);
EXPECT_EQ(audio_count, pref_info->second.audio_count);
EXPECT_EQ(image_count, pref_info->second.image_count);
EXPECT_EQ(video_count, pref_info->second.video_count);
}
// MediaScanManagerObserver implementation.
virtual void OnScanFinished(
const std::string& extension_id,
int gallery_count,
const MediaGalleryScanResult& file_counts) OVERRIDE {
EXPECT_EQ(extension_->id(), extension_id);
EXPECT_EQ(expected_gallery_count_, gallery_count);
EXPECT_EQ(expected_file_counts_.audio_count, file_counts.audio_count);
EXPECT_EQ(expected_file_counts_.image_count, file_counts.image_count);
EXPECT_EQ(expected_file_counts_.video_count, file_counts.video_count);
}
protected:
// So derived tests can access ...::FindContainerScanResults().
MediaFolderFinder::MediaFolderFinderResults FindContainerScanResults(
const MediaFolderFinder::MediaFolderFinderResults& found_folders,
const std::vector<base::FilePath>& sensitive_locations) {
return MediaScanManager::FindContainerScanResults(found_folders,
sensitive_locations);
}
private:
void OnFindFoldersStarted(
MediaFolderFinder::MediaFolderFinderResultsCallback callback) {
find_folders_start_count_++;
callback.Run(find_folders_success_, find_folders_results_);
}
void OnFindFoldersDestroyed() {
find_folders_destroy_count_++;
}
scoped_ptr<TestMediaScanManager> media_scan_manager_;
int find_folders_start_count_;
int find_folders_destroy_count_;
bool find_folders_success_;
MediaFolderFinder::MediaFolderFinderResults find_folders_results_;
int expected_gallery_count_;
MediaGalleryScanResult expected_file_counts_;
base::ScopedTempDir test_results_dir_;
// 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_;
DISALLOW_COPY_AND_ASSIGN(MediaScanManagerTest);
};
TEST_F(MediaScanManagerTest, SingleResult) {
size_t galleries_before = gallery_count();
MediaGalleryScanResult file_counts;
file_counts.audio_count = 1;
file_counts.image_count = 2;
file_counts.video_count = 3;
base::FilePath path;
MakeTestFolder("found_media_folder", &path);
MediaFolderFinder::MediaFolderFinderResults found_folders;
found_folders[path] = file_counts;
SetFindFoldersResults(true, found_folders);
SetExpectedScanResults(1 /*gallery_count*/, file_counts);
StartScan();
base::RunLoop().RunUntilIdle();
EXPECT_EQ(1, FindFolderDestroyCount());
EXPECT_EQ(galleries_before + 1, gallery_count());
}
// Generally test that it includes directories with sufficient density
// and excludes others.
//
// A/ - NOT included
// A/B/ - NOT included
// A/B/C/files
// A/D/ - NOT included
// A/D/E/files
// A/D/F/files
// A/D/G/files
// A/D/H/
// A/H/ - included in results
// A/H/I/files
// A/H/J/files
TEST_F(MediaScanManagerTest, MergeRedundant) {
base::FilePath path;
MediaFolderFinder::MediaFolderFinderResults found_folders;
std::vector<base::FilePath> sensitive_locations;
std::vector<base::FilePath> expected_folders;
MediaGalleryScanResult file_counts;
file_counts.audio_count = 1;
file_counts.image_count = 2;
file_counts.video_count = 3;
MakeTestFolder("A", &path);
MakeTestFolder("A/B", &path);
MakeTestFolder("A/B/C", &path);
found_folders[path] = file_counts;
// Not dense enough.
MakeTestFolder("A/D", &path);
MakeTestFolder("A/D/E", &path);
found_folders[path] = file_counts;
MakeTestFolder("A/D/F", &path);
found_folders[path] = file_counts;
MakeTestFolder("A/D/G", &path);
found_folders[path] = file_counts;
MakeTestFolder("A/D/H", &path);
// Dense enough to be reported.
MakeTestFolder("A/H", &path);
expected_folders.push_back(path);
MakeTestFolder("A/H/I", &path);
found_folders[path] = file_counts;
MakeTestFolder("A/H/J", &path);
found_folders[path] = file_counts;
MediaFolderFinder::MediaFolderFinderResults results =
FindContainerScanResults(found_folders, sensitive_locations);
EXPECT_EQ(expected_folders.size(), results.size());
for (std::vector<base::FilePath>::const_iterator it =
expected_folders.begin();
it != expected_folders.end();
++it) {
EXPECT_TRUE(results.find(*it) != results.end());
}
}
// Make sure intermediates are not included.
//
// A/ - included in results
// A/B1/ - NOT included
// A/B1/B2/files
// A/C1/ - NOT included
// A/C1/C2/files
TEST_F(MediaScanManagerTest, MergeRedundantNoIntermediates) {
base::FilePath path;
MediaFolderFinder::MediaFolderFinderResults found_folders;
std::vector<base::FilePath> sensitive_locations;
std::vector<base::FilePath> expected_folders;
MediaGalleryScanResult file_counts;
file_counts.audio_count = 1;
file_counts.image_count = 2;
file_counts.video_count = 3;
MakeTestFolder("A", &path);
expected_folders.push_back(path);
MakeTestFolder("A/B1", &path);
MakeTestFolder("A/B1/B2", &path);
found_folders[path] = file_counts;
MakeTestFolder("A/C1", &path);
MakeTestFolder("A/C1/C2", &path);
found_folders[path] = file_counts;
// Make "home dir" not dense enough.
MakeTestFolder("D", &path);
MediaFolderFinder::MediaFolderFinderResults results =
FindContainerScanResults(found_folders, sensitive_locations);
EXPECT_EQ(expected_folders.size(), results.size());
for (std::vector<base::FilePath>::const_iterator it =
expected_folders.begin();
it != expected_folders.end();
++it) {
EXPECT_TRUE(results.find(*it) != results.end());
}
}
// Make sure "A/" only gets a count of 1, from "A/D/",
// not 2 from "A/D/H/" and "A/D/I/".
//
// A/ - NOT included
// A/D/ - included in results
// A/D/E/files
// A/D/F/files
// A/D/G/files
// A/D/H/files
// A/D/I/ - NOT included
// A/D/I/J/files
TEST_F(MediaScanManagerTest, MergeRedundantVerifyNoOvercount) {
base::FilePath path;
MediaFolderFinder::MediaFolderFinderResults found_folders;
std::vector<base::FilePath> sensitive_locations;
std::vector<base::FilePath> expected_folders;
MediaGalleryScanResult file_counts;
file_counts.audio_count = 1;
file_counts.image_count = 2;
file_counts.video_count = 3;
MakeTestFolder("A", &path);
MakeTestFolder("A/D", &path);
expected_folders.push_back(path);
MakeTestFolder("A/D/E", &path);
found_folders[path] = file_counts;
MakeTestFolder("A/D/F", &path);
found_folders[path] = file_counts;
MakeTestFolder("A/D/G", &path);
found_folders[path] = file_counts;
MakeTestFolder("A/D/H", &path);
found_folders[path] = file_counts;
MakeTestFolder("A/D/I", &path);
MakeTestFolder("A/D/I/J", &path);
found_folders[path] = file_counts;
MediaFolderFinder::MediaFolderFinderResults results =
FindContainerScanResults(found_folders, sensitive_locations);
EXPECT_EQ(expected_folders.size(), results.size());
for (std::vector<base::FilePath>::const_iterator it =
expected_folders.begin();
it != expected_folders.end();
++it) {
EXPECT_TRUE(results.find(*it) != results.end());
}
}
// Make sure that sensistive directories are pruned.
//
// A/ - NOT included
// A/B/ - sensitive
// A/C/ - included in results
// A/C/G/files
// A/C/H/files
// A/D/ - included in results
// A/D/I/files
// A/D/J/files
// A/E/ - included in results
// A/E/K/files
// A/E/L/files
// A/F/ - included in results
// A/F/M/files
// A/F/N/files
TEST_F(MediaScanManagerTest, MergeRedundantWithSensitive) {
base::FilePath path;
MediaFolderFinder::MediaFolderFinderResults found_folders;
std::vector<base::FilePath> sensitive_locations;
std::vector<base::FilePath> expected_folders;
MediaGalleryScanResult file_counts;
file_counts.audio_count = 1;
file_counts.image_count = 2;
file_counts.video_count = 3;
MakeTestFolder("A", &path);
MakeTestFolder("A/B", &path);
sensitive_locations.push_back(path);
MakeTestFolder("A/C", &path);
expected_folders.push_back(path);
MakeTestFolder("A/C/G", &path);
found_folders[path] = file_counts;
MakeTestFolder("A/C/H", &path);
found_folders[path] = file_counts;
MakeTestFolder("A/D", &path);
expected_folders.push_back(path);
MakeTestFolder("A/D/I", &path);
found_folders[path] = file_counts;
MakeTestFolder("A/D/J", &path);
found_folders[path] = file_counts;
MakeTestFolder("A/E", &path);
expected_folders.push_back(path);
MakeTestFolder("A/E/K", &path);
found_folders[path] = file_counts;
MakeTestFolder("A/E/L", &path);
found_folders[path] = file_counts;
MakeTestFolder("A/F", &path);
expected_folders.push_back(path);
MakeTestFolder("A/F/M", &path);
found_folders[path] = file_counts;
MakeTestFolder("A/F/N", &path);
found_folders[path] = file_counts;
MediaFolderFinder::MediaFolderFinderResults results =
FindContainerScanResults(found_folders, sensitive_locations);
EXPECT_EQ(expected_folders.size(), results.size());
for (std::vector<base::FilePath>::const_iterator it =
expected_folders.begin();
it != expected_folders.end();
++it) {
EXPECT_TRUE(results.find(*it) != results.end());
}
}
TEST_F(MediaScanManagerTest, Containers) {
MediaGalleryScanResult file_counts;
file_counts.audio_count = 1;
base::FilePath path;
std::set<base::FilePath> expected_galleries;
std::set<base::FilePath> bad_galleries;
MediaFolderFinder::MediaFolderFinderResults found_folders;
size_t galleries_before = gallery_count();
// Should manifest as a gallery in result1.
MakeTestFolder("dir1/result1", &path);
expected_galleries.insert(path);
found_folders[path] = file_counts;
// Should manifest as a gallery in dir2.
MakeTestFolder("dir2/result2", &path);
bad_galleries.insert(path);
found_folders[path] = file_counts;
MakeTestFolder("dir2/result3", &path);
bad_galleries.insert(path);
found_folders[path] = file_counts;
expected_galleries.insert(path.DirName());
// Should manifest as a two galleries: result4 and result5.
MakeTestFolder("dir3/other", &path);
bad_galleries.insert(path);
MakeTestFolder("dir3/result4", &path);
expected_galleries.insert(path);
found_folders[path] = file_counts;
MakeTestFolder("dir3/result5", &path);
expected_galleries.insert(path);
found_folders[path] = file_counts;
// Should manifest as a gallery in dir4.
MakeTestFolder("dir4/other", &path);
bad_galleries.insert(path);
MakeTestFolder("dir4/result6", &path);
bad_galleries.insert(path);
found_folders[path] = file_counts;
MakeTestFolder("dir4/result7", &path);
bad_galleries.insert(path);
found_folders[path] = file_counts;
MakeTestFolder("dir4/result8", &path);
bad_galleries.insert(path);
found_folders[path] = file_counts;
MakeTestFolder("dir4/result9", &path);
bad_galleries.insert(path);
found_folders[path] = file_counts;
expected_galleries.insert(path.DirName());
SetFindFoldersResults(true, found_folders);
file_counts.audio_count = 9;
SetExpectedScanResults(5 /*gallery_count*/, file_counts);
StartScan();
base::RunLoop().RunUntilIdle();
EXPECT_EQ(1, FindFolderDestroyCount());
EXPECT_EQ(galleries_before + 5, gallery_count());
std::set<base::FilePath> found_galleries;
for (MediaGalleriesPrefInfoMap::const_iterator it = known_galleries().begin();
it != known_galleries().end();
++it) {
found_galleries.insert(it->second.AbsolutePath());
DCHECK(!ContainsKey(bad_galleries, it->second.AbsolutePath()));
}
for (std::set<base::FilePath>::const_iterator it = expected_galleries.begin();
it != expected_galleries.end();
++it) {
DCHECK(ContainsKey(found_galleries, *it));
}
}
TEST_F(MediaScanManagerTest, UpdateExistingScanResults) {
size_t galleries_before = gallery_count();
MediaGalleryPrefId ungranted_scan =
AddGallery("uscan", MediaGalleryPrefInfo::kScanResult, 1, 0, 0);
MediaGalleryPrefId granted_scan =
AddGallery("gscan", MediaGalleryPrefInfo::kScanResult, 0, 2, 0);
gallery_prefs()->SetGalleryPermissionForExtension(*extension(), granted_scan,
true);
EXPECT_EQ(galleries_before + 2, gallery_count());
// Run once with no scan results. "uscan" should go away and "gscan" should
// have its scan counts updated.
MediaFolderFinder::MediaFolderFinderResults found_folders;
SetFindFoldersResults(true, found_folders);
MediaGalleryScanResult file_counts;
SetExpectedScanResults(0 /*gallery_count*/, file_counts);
StartScan();
base::RunLoop().RunUntilIdle();
EXPECT_EQ(1, FindFolderDestroyCount());
EXPECT_EQ(galleries_before + 1, gallery_count());
CheckFileCounts(granted_scan, 0, 0, 0);
MediaGalleryPrefId id =
AddGallery("uscan", MediaGalleryPrefInfo::kScanResult, 1, 1, 1);
EXPECT_NE(id, ungranted_scan);
ungranted_scan = id;
// Add scan results near the existing scan results.
file_counts.audio_count = 0;
file_counts.image_count = 0;
file_counts.video_count = 7;
base::FilePath path;
MakeTestFolder("uscan", &path);
found_folders[path] = file_counts;
file_counts.video_count = 11;
MakeTestFolder("gscan/dir1", &path);
found_folders[path] = file_counts;
MakeTestFolder("junk", &path);
SetFindFoldersResults(true, found_folders);
file_counts.video_count = 7;
SetExpectedScanResults(1 /*gallery_count*/, file_counts);
StartScan();
base::RunLoop().RunUntilIdle();
EXPECT_EQ(2, FindFolderDestroyCount());
EXPECT_EQ(galleries_before + 2, gallery_count());
CheckFileCounts(granted_scan, 0, 0, 11);
// The new scan result should be one more than it's previous id.
CheckFileCounts(ungranted_scan + 1, 0, 0, 7);
}
TEST_F(MediaScanManagerTest, UpdateExistingCounts) {
size_t galleries_before = gallery_count();
MediaGalleryPrefId auto_id =
AddGallery("auto", MediaGalleryPrefInfo::kAutoDetected, 1, 0, 0);
MediaGalleryPrefId user_id =
AddGallery("user", MediaGalleryPrefInfo::kUserAdded, 0, 2, 0);
MediaGalleryPrefId scan_id =
AddGallery("scan", MediaGalleryPrefInfo::kScanResult, 0, 0, 3);
// Grant permission so this one isn't removed and readded.
gallery_prefs()->SetGalleryPermissionForExtension(*extension(), scan_id,
true);
CheckFileCounts(auto_id, 1, 0, 0);
CheckFileCounts(user_id, 0, 2, 0);
CheckFileCounts(scan_id, 0, 0, 3);
MediaFolderFinder::MediaFolderFinderResults found_folders;
MediaGalleryScanResult file_counts;
file_counts.audio_count = 4;
base::FilePath path;
MakeTestFolder("auto/dir1", &path);
found_folders[path] = file_counts;
file_counts.audio_count = 6;
MakeTestFolder("scan", &path);
found_folders[path] = file_counts;
MakeTestFolder("junk", &path);
file_counts.audio_count = 5;
MakeTestFolder("user/dir2", &path);
found_folders[path] = file_counts;
SetFindFoldersResults(true, found_folders);
file_counts.audio_count = 0;
SetExpectedScanResults(0 /*gallery_count*/, file_counts);
StartScan();
base::RunLoop().RunUntilIdle();
EXPECT_EQ(1, FindFolderDestroyCount());
EXPECT_EQ(galleries_before + 3, gallery_count());
CheckFileCounts(auto_id, 4, 0, 0);
CheckFileCounts(user_id, 5, 0, 0);
CheckFileCounts(scan_id, 6, 0, 0);
EXPECT_EQ(1U, found_folders.erase(path));
SetFindFoldersResults(true, found_folders);
SetExpectedScanResults(0 /*gallery_count*/, file_counts);
StartScan();
base::RunLoop().RunUntilIdle();
EXPECT_EQ(2, FindFolderDestroyCount());
EXPECT_EQ(galleries_before + 3, gallery_count());
CheckFileCounts(auto_id, 4, 0, 0);
CheckFileCounts(user_id, 0, 0, 0);
CheckFileCounts(scan_id, 6, 0, 0);
}
TEST_F(MediaScanManagerTest, Graylist) {
size_t galleries_before = gallery_count();
MediaGalleryScanResult file_counts;
file_counts.audio_count = 1;
file_counts.image_count = 2;
file_counts.video_count = 3;
base::FilePath path;
MakeTestFolder("found_media_folder", &path);
base::ScopedPathOverride scoped_fake_home_dir_override(base::DIR_HOME, path);
const size_t kGalleriesAdded = 3;
MediaFolderFinder::MediaFolderFinderResults found_folders;
MakeTestFolder("found_media_folder/dir1", &path);
found_folders[path] = file_counts;
MakeTestFolder("found_media_folder/dir2", &path);
found_folders[path] = file_counts;
MakeTestFolder("found_media_folder/dir3", &path);
found_folders[path] = file_counts;
SetFindFoldersResults(true, found_folders);
file_counts.audio_count *= kGalleriesAdded;
file_counts.image_count *= kGalleriesAdded;
file_counts.video_count *= kGalleriesAdded;
SetExpectedScanResults(kGalleriesAdded, file_counts);
StartScan();
base::RunLoop().RunUntilIdle();
EXPECT_EQ(1, FindFolderDestroyCount());
EXPECT_EQ(galleries_before + kGalleriesAdded, gallery_count());
}
|