forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcros_disks_client_unittest.cc
205 lines (184 loc) · 8.83 KB
/
cros_disks_client_unittest.cc
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
// Copyright 2013 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 "chromeos/dbus/cros_disks_client.h"
#include <stdint.h>
#include <memory>
#include "dbus/message.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/cros_system_api/dbus/service_constants.h"
namespace chromeos {
namespace {
const char kMountLabel[] = "/tmp/cros-disks-test";
// Appends a boolean entry to a dictionary of type "a{sv}"
void AppendBoolDictEntry(dbus::MessageWriter* array_writer,
const std::string& key,
bool value) {
dbus::MessageWriter entry_writer(NULL);
array_writer->OpenDictEntry(&entry_writer);
entry_writer.AppendString(key);
entry_writer.AppendVariantOfBool(value);
array_writer->CloseContainer(&entry_writer);
}
// Appends a string entry to a dictionary of type "a{sv}"
void AppendStringDictEntry(dbus::MessageWriter* array_writer,
const std::string& key,
const std::string& value) {
dbus::MessageWriter entry_writer(NULL);
array_writer->OpenDictEntry(&entry_writer);
entry_writer.AppendString(key);
entry_writer.AppendVariantOfString(value);
array_writer->CloseContainer(&entry_writer);
}
} // namespace
TEST(CrosDisksClientTest, DiskInfo) {
const std::string kDeviceFile = "/dev/sdb1";
const bool kDeviceIsDrive = true;
const bool kDeviceIsMediaAvailable = true;
const bool kDeviceIsMounted = true;
const bool kDeviceIsOnBootDevice = true;
const bool kDeviceIsOnRemovableDevice = true;
const bool kDeviceIsReadOnly = true;
const uint32_t kDeviceMediaType = cros_disks::DEVICE_MEDIA_SD;
const std::string kMountPath = "/media/removable/UNTITLED";
const bool kDevicePresentationHide = false;
const uint64_t kDeviceSize = 16005464064;
const std::string kDriveModel = "DriveModel";
const std::string kIdLabel = "UNTITLED";
const std::string kIdUuid = "XXXX-YYYY";
const std::string kNativePath = "/sys/devices/.../sdb/sdb1";
const std::string kProductId = "1234";
const std::string kProductName = "Product Name";
const std::string kVendorId = "0000";
const std::string kVendorName = "Vendor Name";
const std::string kFileSystemType = "exfat";
const bool kIsAutoMountable = true;
// Construct a fake response of GetDeviceProperties().
std::unique_ptr<dbus::Response> response(dbus::Response::CreateEmpty());
{
dbus::MessageWriter writer(response.get());
dbus::MessageWriter array_writer(NULL);
writer.OpenArray("{sv}", &array_writer);
AppendStringDictEntry(&array_writer, cros_disks::kDeviceFile, kDeviceFile);
AppendBoolDictEntry(&array_writer, cros_disks::kDeviceIsDrive,
kDeviceIsDrive);
AppendBoolDictEntry(&array_writer, cros_disks::kDeviceIsMediaAvailable,
kDeviceIsMediaAvailable);
AppendBoolDictEntry(&array_writer, cros_disks::kDeviceIsMounted,
kDeviceIsMounted);
AppendBoolDictEntry(&array_writer, cros_disks::kDeviceIsOnBootDevice,
kDeviceIsOnBootDevice);
AppendBoolDictEntry(&array_writer, cros_disks::kDeviceIsOnRemovableDevice,
kDeviceIsOnRemovableDevice);
AppendBoolDictEntry(&array_writer, cros_disks::kDeviceIsReadOnly,
kDeviceIsReadOnly);
AppendBoolDictEntry(&array_writer, cros_disks::kIsAutoMountable,
kIsAutoMountable);
{
dbus::MessageWriter entry_writer(NULL);
array_writer.OpenDictEntry(&entry_writer);
entry_writer.AppendString(cros_disks::kDeviceMediaType);
entry_writer.AppendVariantOfUint32(kDeviceMediaType);
array_writer.CloseContainer(&entry_writer);
}
{
std::vector<std::string> mounted_paths;
mounted_paths.push_back(kMountPath);
dbus::MessageWriter entry_writer(NULL);
array_writer.OpenDictEntry(&entry_writer);
entry_writer.AppendString(cros_disks::kDeviceMountPaths);
dbus::MessageWriter variant_writer(NULL);
entry_writer.OpenVariant("as", &variant_writer);
variant_writer.AppendArrayOfStrings(mounted_paths);
entry_writer.CloseContainer(&variant_writer);
array_writer.CloseContainer(&entry_writer);
}
AppendBoolDictEntry(&array_writer, cros_disks::kDevicePresentationHide,
kDevicePresentationHide);
{
dbus::MessageWriter entry_writer(NULL);
array_writer.OpenDictEntry(&entry_writer);
entry_writer.AppendString(cros_disks::kDeviceSize);
entry_writer.AppendVariantOfUint64(kDeviceSize);
array_writer.CloseContainer(&entry_writer);
}
AppendStringDictEntry(&array_writer, cros_disks::kDriveModel, kDriveModel);
AppendStringDictEntry(&array_writer, cros_disks::kIdLabel, kIdLabel);
AppendStringDictEntry(&array_writer, cros_disks::kIdUuid, kIdUuid);
AppendStringDictEntry(&array_writer, cros_disks::kNativePath, kNativePath);
AppendStringDictEntry(&array_writer, cros_disks::kProductId, kProductId);
AppendStringDictEntry(&array_writer, cros_disks::kProductName,
kProductName);
AppendStringDictEntry(&array_writer, cros_disks::kVendorId, kVendorId);
AppendStringDictEntry(&array_writer, cros_disks::kVendorName, kVendorName);
AppendStringDictEntry(&array_writer, cros_disks::kFileSystemType,
kFileSystemType);
writer.CloseContainer(&array_writer);
}
// Construct DiskInfo.
DiskInfo result(kDeviceFile, response.get());
EXPECT_EQ(kDeviceFile, result.device_path());
EXPECT_EQ(kDeviceIsDrive, result.is_drive());
EXPECT_EQ(kDeviceIsReadOnly, result.is_read_only());
// Use EXPECT_TRUE(kDevicePresentationHide == result.is_hidden()) instead of
// EXPECT_EQ(kDevicePresentationHide, result.is_hidden()) as gcc 4.7 issues
// the following warning on EXPECT_EQ(false, x), which is turned into an error
// with -Werror=conversion-null:
//
// converting 'false' to pointer type for argument 1 of
// 'char testing::internal::IsNullLiteralHelper(testing::internal::Secret*)'
EXPECT_TRUE(kDevicePresentationHide == result.is_hidden());
EXPECT_EQ(kDeviceIsMediaAvailable, result.has_media());
EXPECT_EQ(kDeviceIsOnBootDevice, result.on_boot_device());
EXPECT_EQ(kDeviceIsOnRemovableDevice, result.on_removable_device());
EXPECT_EQ(kNativePath, result.system_path());
EXPECT_EQ(kDeviceFile, result.file_path());
EXPECT_EQ(kVendorId, result.vendor_id());
EXPECT_EQ(kVendorName, result.vendor_name());
EXPECT_EQ(kProductId, result.product_id());
EXPECT_EQ(kProductName, result.product_name());
EXPECT_EQ(kDriveModel, result.drive_label());
EXPECT_EQ(kIdLabel, result.label());
EXPECT_EQ(kIdUuid, result.uuid());
EXPECT_EQ(kDeviceSize, result.total_size_in_bytes());
EXPECT_EQ(DEVICE_TYPE_SD, result.device_type());
EXPECT_EQ(kMountPath, result.mount_path());
EXPECT_EQ(kFileSystemType, result.file_system_type());
EXPECT_EQ(kIsAutoMountable, result.is_auto_mountable());
}
TEST(CrosDisksClientTest, ComposeMountOptions) {
std::string kExpectedMountLabelOption =
std::string("mountlabel=") + kMountLabel;
std::vector<std::string> rw_mount_options =
CrosDisksClient::ComposeMountOptions({}, kMountLabel,
MOUNT_ACCESS_MODE_READ_WRITE,
REMOUNT_OPTION_MOUNT_NEW_DEVICE);
ASSERT_EQ(2U, rw_mount_options.size());
EXPECT_EQ("rw", rw_mount_options[0]);
EXPECT_EQ(kExpectedMountLabelOption, rw_mount_options[1]);
std::vector<std::string> ro_mount_options =
CrosDisksClient::ComposeMountOptions({}, kMountLabel,
MOUNT_ACCESS_MODE_READ_ONLY,
REMOUNT_OPTION_MOUNT_NEW_DEVICE);
ASSERT_EQ(2U, ro_mount_options.size());
EXPECT_EQ("ro", ro_mount_options[0]);
EXPECT_EQ(kExpectedMountLabelOption, ro_mount_options[1]);
std::vector<std::string> remount_mount_options =
CrosDisksClient::ComposeMountOptions(
{}, kMountLabel, MOUNT_ACCESS_MODE_READ_WRITE,
REMOUNT_OPTION_REMOUNT_EXISTING_DEVICE);
ASSERT_EQ(3U, remount_mount_options.size());
EXPECT_EQ("rw", remount_mount_options[0]);
EXPECT_EQ("remount", remount_mount_options[1]);
EXPECT_EQ(kExpectedMountLabelOption, remount_mount_options[2]);
std::vector<std::string> custom_mount_options =
CrosDisksClient::ComposeMountOptions({"foo", "bar=baz"}, kMountLabel,
MOUNT_ACCESS_MODE_READ_WRITE,
REMOUNT_OPTION_MOUNT_NEW_DEVICE);
ASSERT_EQ(4U, custom_mount_options.size());
EXPECT_EQ("foo", custom_mount_options[0]);
EXPECT_EQ("bar=baz", custom_mount_options[1]);
EXPECT_EQ("rw", custom_mount_options[2]);
EXPECT_EQ(kExpectedMountLabelOption, custom_mount_options[3]);
}
} // namespace chromeos