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
ash / clipboard / clipboard_history_item_unittest.cc [blame]
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ash/clipboard/clipboard_history_item.h"
#include "ash/clipboard/clipboard_history_util.h"
#include "ash/clipboard/test_support/clipboard_history_item_builder.h"
#include "ash/test/ash_test_base.h"
#include "base/files/file_path.h"
#include "base/strings/string_util.h"
#include "base/test/icu_test_util.h"
#include "base/test/mock_callback.h"
#include "chromeos/crosapi/mojom/clipboard_history.mojom.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/base/clipboard/clipboard_data.h"
#include "ui/base/clipboard/file_info.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/base/models/image_model.h"
#include "ui/gfx/image/image_unittest_util.h"
#include "ui/strings/grit/ui_strings.h"
namespace ash {
namespace {
using ::testing::Bool;
using ::testing::Combine;
using ::testing::Optional;
using ::testing::Values;
using ::testing::WithParamInterface;
struct FormatPair {
ui::ClipboardInternalFormat clipboard_format;
crosapi::mojom::ClipboardHistoryDisplayFormat display_format;
};
} // namespace
using ClipboardHistoryItemTest = AshTestBase;
// Verifies that a callback can be added to an item to run iff the item's
// display image is updated.
TEST_F(ClipboardHistoryItemTest, SetDisplayImageNotifiesCallback) {
// Create a clipboard history item.
ClipboardHistoryItemBuilder builder;
builder.SetFormat(ui::ClipboardInternalFormat::kHtml);
ClipboardHistoryItem item = builder.Build();
EXPECT_EQ(item.display_format(),
crosapi::mojom::ClipboardHistoryDisplayFormat::kHtml);
ASSERT_TRUE(item.display_image().has_value());
EXPECT_EQ(item.display_image().value(),
clipboard_history_util::GetHtmlPreviewPlaceholder());
{
SCOPED_TRACE("Set a callback that is run.");
// Set a callback to be notified when the item's display image is updated.
base::MockCallback<base::RepeatingClosure> callback;
auto subscription = item.AddDisplayImageUpdatedCallback(callback.Get());
EXPECT_CALL(callback, Run());
// Update the item's display image. The callback should be run.
item.SetDisplayImage(
ui::ImageModel::FromImage(gfx::test::CreateImage(100, 50)));
// Verify that the display image was, in fact, updated.
EXPECT_NE(item.display_image().value(),
clipboard_history_util::GetHtmlPreviewPlaceholder());
}
{
SCOPED_TRACE("Set a callback that is not run because the item was copied.");
base::MockCallback<base::RepeatingClosure> callback;
auto subscription = item.AddDisplayImageUpdatedCallback(callback.Get());
EXPECT_CALL(callback, Run()).Times(0);
// Copy the item and update the new item's display image. The callback
// should not be run.
ClipboardHistoryItem copied_item(item);
copied_item.SetDisplayImage(
ui::ImageModel::FromImage(gfx::test::CreateImage(100, 50)));
}
{
SCOPED_TRACE("Set a callback that is not run because the item was moved.");
base::MockCallback<base::RepeatingClosure> callback;
auto subscription = item.AddDisplayImageUpdatedCallback(callback.Get());
EXPECT_CALL(callback, Run()).Times(0);
// Move the item and update the new item's display image. The callback
// should not be run.
ClipboardHistoryItem moved_item(std::move(item));
moved_item.SetDisplayImage(
ui::ImageModel::FromImage(gfx::test::CreateImage(100, 50)));
}
}
TEST_F(ClipboardHistoryItemTest, DisplayText) {
base::test::ScopedRestoreICUDefaultLocale locale("en_US");
// Populate a builder with all the data formats that we expect to handle.
ClipboardHistoryItemBuilder builder;
builder.SetText("Text")
.SetMarkup("HTML with no image or table tags")
.SetRtf("Rtf")
.SetFilenames({ui::FileInfo(base::FilePath("/path/to/File.txt"),
base::FilePath("File.txt")),
ui::FileInfo(base::FilePath("/path/to/Other%20File.txt"),
base::FilePath("Other%20File.txt"))})
.SetBookmarkTitle("Bookmark Title")
.SetPng(gfx::test::CreatePNGBytes(10))
.SetFileSystemData({u"/path/to/Third%20File.txt"})
.SetWebSmartPaste(true);
// PNG data always takes precedence. When we must show text rather than the
// image itself, we display the PNG placeholder text.
EXPECT_EQ(builder.Build().display_text(),
l10n_util::GetStringUTF16(IDS_CLIPBOARD_MENU_IMAGE));
builder.ClearPng();
// In the absence of PNG data, HTML data takes precedence, but we use the
// plain-text format for the label.
EXPECT_EQ(builder.Build().display_text(), u"Text");
builder.ClearText();
// If plain text does not exist, we show a placeholder label.
EXPECT_EQ(builder.Build().display_text(),
l10n_util::GetStringUTF16(IDS_CLIPBOARD_MENU_HTML));
builder.SetText("Text");
builder.ClearMarkup();
// In the absence of HTML data, text data takes precedence.
EXPECT_EQ(builder.Build().display_text(), u"Text");
builder.ClearText();
// In the absence of text data, RTF data takes precedence.
EXPECT_EQ(builder.Build().display_text(),
l10n_util::GetStringUTF16(IDS_CLIPBOARD_MENU_RTF_CONTENT));
builder.ClearRtf();
// In the absence of RTF data, filename data takes precedence.
EXPECT_EQ(builder.Build().display_text(), u"2 files");
builder.ClearFilenames();
// In the absence of filename data, bookmark data takes precedence.
EXPECT_EQ(builder.Build().display_text(), u"Bookmark Title");
builder.ClearBookmarkTitle();
// In the absence of bookmark data, web smart paste data takes precedence.
EXPECT_EQ(builder.Build().display_text(),
l10n_util::GetStringUTF16(IDS_CLIPBOARD_MENU_WEB_SMART_PASTE));
builder.ClearWebSmartPaste();
// In the absence of web smart paste data, file system data takes precedence.
// NOTE: File system data is the only kind of custom data currently supported.
EXPECT_EQ(builder.Build().display_text(), u"Third File.txt");
}
// Base class for tests parameterized by the type of item being tested, based on
// its display format.
class ClipboardHistoryItemDisplayFormatTest
: public ClipboardHistoryItemTest,
public WithParamInterface<FormatPair> {
public:
ClipboardHistoryItemDisplayFormatTest() = default;
ClipboardHistoryItem BuildClipboardHistoryItem() const {
ClipboardHistoryItemBuilder builder;
builder.SetFormat(GetClipboardFormat());
ClipboardHistoryItem item = builder.Build();
EXPECT_EQ(item.display_format(), GetDisplayFormat());
return item;
}
ui::ClipboardInternalFormat GetClipboardFormat() const {
return GetParam().clipboard_format;
}
crosapi::mojom::ClipboardHistoryDisplayFormat GetDisplayFormat() const {
return GetParam().display_format;
}
};
INSTANTIATE_TEST_SUITE_P(
All,
ClipboardHistoryItemDisplayFormatTest,
Values(FormatPair{ui::ClipboardInternalFormat::kText,
crosapi::mojom::ClipboardHistoryDisplayFormat::kText},
FormatPair{ui::ClipboardInternalFormat::kPng,
crosapi::mojom::ClipboardHistoryDisplayFormat::kPng},
FormatPair{ui::ClipboardInternalFormat::kHtml,
crosapi::mojom::ClipboardHistoryDisplayFormat::kHtml},
FormatPair{ui::ClipboardInternalFormat::kFilenames,
crosapi::mojom::ClipboardHistoryDisplayFormat::kFile}));
TEST_P(ClipboardHistoryItemDisplayFormatTest, Icon) {
const auto item = BuildClipboardHistoryItem();
const auto& maybe_icon = item.icon();
ASSERT_TRUE(maybe_icon.has_value());
EXPECT_TRUE(maybe_icon.value().IsVectorIcon());
}
TEST_P(ClipboardHistoryItemDisplayFormatTest, DisplayImage) {
const auto item = BuildClipboardHistoryItem();
const auto& maybe_image = item.display_image();
switch (GetDisplayFormat()) {
case crosapi::mojom::ClipboardHistoryDisplayFormat::kUnknown:
NOTREACHED();
case crosapi::mojom::ClipboardHistoryDisplayFormat::kText:
case crosapi::mojom::ClipboardHistoryDisplayFormat::kFile:
EXPECT_FALSE(maybe_image);
break;
case crosapi::mojom::ClipboardHistoryDisplayFormat::kPng:
ASSERT_TRUE(maybe_image);
EXPECT_TRUE(maybe_image.value().IsImage());
break;
case crosapi::mojom::ClipboardHistoryDisplayFormat::kHtml:
// Because the HTML placeholder image is a static `ImageModel`,
// `maybe_image` might be a vector icon or an image depending on which
// test cases are being run. What we know reliably is that the value of
// `maybe_image` should always be the current placeholder instance.
EXPECT_THAT(
maybe_image,
Optional(clipboard_history_util::GetHtmlPreviewPlaceholder()));
break;
}
}
} // namespace ash