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
|
// 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 "chrome/browser/chromeos/drive/drive_integration_service.h"
#include "chrome/browser/chromeos/drive/drive_test_util.h"
#include "chrome/browser/chromeos/drive/fake_file_system.h"
#include "chrome/browser/chromeos/file_manager/fileapi_util.h"
#include "chrome/browser/chromeos/file_manager/mount_test_util.cc"
#include "chrome/test/base/testing_browser_process.h"
#include "chrome/test/base/testing_profile.h"
#include "chrome/test/base/testing_profile_manager.h"
#include "components/drive/service/fake_drive_service.h"
#include "components/drive/service/test_util.h"
#include "content/public/browser/storage_partition.h"
#include "content/public/common/file_chooser_file_info.h"
#include "content/public/test/test_browser_thread_bundle.h"
#include "content/public/test/test_utils.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/shell_dialogs/selected_file_info.h"
namespace file_manager {
namespace util {
namespace {
// Passes the |result| to the |output| pointer.
void PassFileChooserFileInfoList(FileChooserFileInfoList* output,
const FileChooserFileInfoList& result) {
*output = result;
}
// Creates the drive integration service for the |profile|.
drive::DriveIntegrationService* CreateDriveIntegrationService(
const base::FilePath temp_dir,
Profile* profile) {
drive::FakeDriveService* const drive_service = new drive::FakeDriveService;
if (!drive::test_util::SetUpTestEntries(drive_service))
return NULL;
return new drive::DriveIntegrationService(
profile,
NULL,
drive_service,
/* default mount name */ "",
temp_dir,
new drive::test_util::FakeFileSystem(drive_service));
}
TEST(FileManagerFileAPIUtilTest,
ConvertSelectedFileInfoListToFileChooserFileInfoList) {
// Prepare the test drive environment.
content::TestBrowserThreadBundle threads;
TestingProfileManager profile_manager(TestingBrowserProcess::GetGlobal());
ASSERT_TRUE(profile_manager.SetUp());
base::ScopedTempDir drive_cache_dir;
ASSERT_TRUE(drive_cache_dir.CreateUniqueTempDir());
drive::DriveIntegrationServiceFactory::FactoryCallback factory_callback(
base::Bind(&CreateDriveIntegrationService, drive_cache_dir.path()));
drive::DriveIntegrationServiceFactory::ScopedFactoryForTest
integration_service_factory_scope(&factory_callback);
// Prepare the test profile.
Profile* const profile = profile_manager.CreateTestingProfile("test-user");
drive::DriveIntegrationService* const service =
drive::DriveIntegrationServiceFactory::GetForProfile(profile);
service->SetEnabled(true);
test_util::WaitUntilDriveMountPointIsAdded(profile);
ASSERT_TRUE(service->IsMounted());
// Obtain the file system context.
content::StoragePartition* const partition =
content::BrowserContext::GetStoragePartitionForSite(
profile, GURL("http://example.com"));
ASSERT_TRUE(partition);
storage::FileSystemContext* const context = partition->GetFileSystemContext();
ASSERT_TRUE(context);
// Prepare the test input.
SelectedFileInfoList selected_info_list;
// Native file.
{
ui::SelectedFileInfo info;
info.file_path = base::FilePath(FILE_PATH_LITERAL("/native/File 1.txt"));
info.local_path = base::FilePath(FILE_PATH_LITERAL("/native/File 1.txt"));
info.display_name = "display_name";
selected_info_list.push_back(info);
}
// Non-native file with cache.
{
ui::SelectedFileInfo info;
info.file_path = base::FilePath(
FILE_PATH_LITERAL("/special/drive-test-user-hash/root/File 1.txt"));
info.local_path = base::FilePath(FILE_PATH_LITERAL("/native/cache/xxx"));
info.display_name = "display_name";
selected_info_list.push_back(info);
}
// Non-native file without.
{
ui::SelectedFileInfo info;
info.file_path = base::FilePath(
FILE_PATH_LITERAL("/special/drive-test-user-hash/root/File 1.txt"));
selected_info_list.push_back(info);
}
// Run the test target.
FileChooserFileInfoList result;
ConvertSelectedFileInfoListToFileChooserFileInfoList(
context,
GURL("http://example.com"),
selected_info_list,
base::Bind(&PassFileChooserFileInfoList, &result));
content::RunAllBlockingPoolTasksUntilIdle();
// Check the result.
ASSERT_EQ(3u, result.size());
EXPECT_EQ(FILE_PATH_LITERAL("/native/File 1.txt"),
result[0].file_path.value());
EXPECT_EQ("display_name", result[0].display_name);
EXPECT_FALSE(result[0].file_system_url.is_valid());
EXPECT_EQ(FILE_PATH_LITERAL("/native/cache/xxx"),
result[1].file_path.value());
EXPECT_EQ("display_name", result[1].display_name);
EXPECT_FALSE(result[1].file_system_url.is_valid());
EXPECT_EQ(FILE_PATH_LITERAL("/special/drive-test-user-hash/root/File 1.txt"),
result[2].file_path.value());
EXPECT_TRUE(result[2].display_name.empty());
EXPECT_TRUE(result[2].file_system_url.is_valid());
const storage::FileSystemURL url =
context->CrackURL(result[2].file_system_url);
EXPECT_EQ(GURL("http://example.com"), url.origin());
EXPECT_EQ(storage::kFileSystemTypeIsolated, url.mount_type());
EXPECT_EQ(storage::kFileSystemTypeDrive, url.type());
EXPECT_EQ(26u, result[2].length);
}
} // namespace
} // namespace util
} // namespace file_manager
|