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
|
// Copyright 2015 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/manifest/manifest_icon_selector.h"
#include <string>
#include <vector>
#include "base/macros.h"
#include "base/strings/utf_string_conversions.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/gfx/screen.h"
#include "ui/gfx/screen_type_delegate.h"
#include "ui/gfx/test/test_screen.h"
class ManifestIconSelectorTest : public testing::Test {
protected:
ManifestIconSelectorTest() {
test_screen_.display()->set_id(0x1337);
test_screen_.display()->set_bounds(gfx::Rect(0, 0, 2560, 1440));
}
~ManifestIconSelectorTest() override {}
GURL FindBestMatchingIconWithMinimum(
const std::vector<content::Manifest::Icon>& icons,
int minimum_icon_size_in_dp) {
return ManifestIconSelector::FindBestMatchingIcon(
icons, GetPreferredIconSizeInDp(),
minimum_icon_size_in_dp, &test_screen_);
}
GURL FindBestMatchingIcon(const std::vector<content::Manifest::Icon>& icons) {
return FindBestMatchingIconWithMinimum(icons, 0);
}
void SetDisplayDeviceScaleFactor(float device_scale_factor) {
test_screen_.display()->set_device_scale_factor(device_scale_factor);
}
int GetPreferredIconSizeInDp() {
return preferred_icon_size_;
}
void SetPreferredIconSizeInDp(int new_size) {
preferred_icon_size_ = new_size;
}
static content::Manifest::Icon CreateIcon(
const std::string& url,
const std::string& type,
double density,
const std::vector<gfx::Size> sizes) {
content::Manifest::Icon icon;
icon.src = GURL(url);
if (!type.empty())
icon.type = base::NullableString16(base::UTF8ToUTF16(type), false);
icon.density = density;
icon.sizes = sizes;
return icon;
}
private:
gfx::test::TestScreen test_screen_;
int preferred_icon_size_ = 48;
DISALLOW_COPY_AND_ASSIGN(ManifestIconSelectorTest);
};
TEST_F(ManifestIconSelectorTest, NoIcons) {
// No icons should return the empty URL.
std::vector<content::Manifest::Icon> icons;
GURL url = FindBestMatchingIcon(icons);
EXPECT_TRUE(url.is_empty());
}
TEST_F(ManifestIconSelectorTest, NoSizes) {
// Icon with no sizes are ignored.
std::vector<content::Manifest::Icon> icons;
icons.push_back(
CreateIcon("http://foo.com/icon.png", "", 1.0, std::vector<gfx::Size>()));
GURL url = FindBestMatchingIcon(icons);
EXPECT_TRUE(url.is_empty());
}
TEST_F(ManifestIconSelectorTest, MIMETypeFiltering) {
// Icons with type specified to a MIME type that isn't a valid image MIME type
// are ignored.
std::vector<gfx::Size> sizes;
sizes.push_back(gfx::Size(1024, 1024));
std::vector<content::Manifest::Icon> icons;
icons.push_back(
CreateIcon("http://foo.com/icon.png", "image/foo_bar", 1.0, sizes));
icons.push_back(CreateIcon("http://foo.com/icon.png", "image/", 1.0, sizes));
icons.push_back(CreateIcon("http://foo.com/icon.png", "image/", 1.0, sizes));
icons.push_back(
CreateIcon("http://foo.com/icon.png", "video/mp4", 1.0, sizes));
GURL url = FindBestMatchingIcon(icons);
EXPECT_TRUE(url.is_empty());
icons.clear();
icons.push_back(
CreateIcon("http://foo.com/icon.png", "image/png", 1.0, sizes));
url = FindBestMatchingIcon(icons);
EXPECT_EQ("http://foo.com/icon.png", url.spec());
icons.clear();
icons.push_back(
CreateIcon("http://foo.com/icon.png", "image/gif", 1.0, sizes));
url = FindBestMatchingIcon(icons);
EXPECT_EQ("http://foo.com/icon.png", url.spec());
icons.clear();
icons.push_back(
CreateIcon("http://foo.com/icon.png", "image/jpeg", 1.0, sizes));
url = FindBestMatchingIcon(icons);
EXPECT_EQ("http://foo.com/icon.png", url.spec());
}
TEST_F(ManifestIconSelectorTest, PreferredSizeOfCurrentDensityIsUsedFirst) {
// This test has three icons each are marked with sizes set to the preferred
// icon size for the associated density.
std::vector<gfx::Size> sizes_1;
sizes_1.push_back(gfx::Size(GetPreferredIconSizeInDp(),
GetPreferredIconSizeInDp()));
std::vector<gfx::Size> sizes_2;
sizes_2.push_back(gfx::Size(GetPreferredIconSizeInDp() * 2,
GetPreferredIconSizeInDp() * 2));
std::vector<gfx::Size> sizes_3;
sizes_3.push_back(gfx::Size(GetPreferredIconSizeInDp() * 3,
GetPreferredIconSizeInDp() * 3));
std::vector<content::Manifest::Icon> icons;
icons.push_back(CreateIcon("http://foo.com/icon_x1.png", "", 1.0, sizes_1));
icons.push_back(CreateIcon("http://foo.com/icon_x2.png", "", 2.0, sizes_2));
icons.push_back(CreateIcon("http://foo.com/icon_x3.png", "", 3.0, sizes_3));
SetDisplayDeviceScaleFactor(1.0f);
GURL url = FindBestMatchingIcon(icons);
EXPECT_EQ("http://foo.com/icon_x1.png", url.spec());
SetDisplayDeviceScaleFactor(2.0f);
url = FindBestMatchingIcon(icons);
EXPECT_EQ("http://foo.com/icon_x2.png", url.spec());
SetDisplayDeviceScaleFactor(3.0f);
url = FindBestMatchingIcon(icons);
EXPECT_EQ("http://foo.com/icon_x3.png", url.spec());
}
TEST_F(ManifestIconSelectorTest, PreferredSizeOfDefaultDensityIsUsedSecond) {
// This test has three icons. The first one is of density zero and is marked
// with three sizes which are the preferred icon size for density 1, 2 and 3.
// The icon for density 2 and 3 have a size set to 1024x1024.
// Regardless of the device scale factor, the icon of density 1 is going to be
// used because it matches the preferred size.
std::vector<gfx::Size> sizes_1;
sizes_1.push_back(gfx::Size(GetPreferredIconSizeInDp(),
GetPreferredIconSizeInDp()));
sizes_1.push_back(gfx::Size(GetPreferredIconSizeInDp() * 2,
GetPreferredIconSizeInDp() * 2));
sizes_1.push_back(gfx::Size(GetPreferredIconSizeInDp() * 3,
GetPreferredIconSizeInDp() * 3));
std::vector<gfx::Size> sizes_2;
sizes_2.push_back(gfx::Size(1024, 1024));
std::vector<gfx::Size> sizes_3;
sizes_3.push_back(gfx::Size(1024, 1024));
std::vector<content::Manifest::Icon> icons;
icons.push_back(CreateIcon("http://foo.com/icon_x1.png", "", 1.0, sizes_1));
icons.push_back(CreateIcon("http://foo.com/icon_x2.png", "", 2.0, sizes_2));
icons.push_back(CreateIcon("http://foo.com/icon_x3.png", "", 3.0, sizes_3));
SetDisplayDeviceScaleFactor(1.0f);
GURL url = FindBestMatchingIcon(icons);
EXPECT_EQ("http://foo.com/icon_x1.png", url.spec());
SetDisplayDeviceScaleFactor(2.0f);
url = FindBestMatchingIcon(icons);
EXPECT_EQ("http://foo.com/icon_x1.png", url.spec());
SetDisplayDeviceScaleFactor(3.0f);
url = FindBestMatchingIcon(icons);
EXPECT_EQ("http://foo.com/icon_x1.png", url.spec());
}
TEST_F(ManifestIconSelectorTest, DeviceDensityFirst) {
// If there is no perfect icon but an icon of the current device density is
// present, it will be picked.
// This test has three icons each are marked with sizes set to the preferred
// icon size for the associated density.
std::vector<gfx::Size> sizes;
sizes.push_back(gfx::Size(1024, 1024));
std::vector<content::Manifest::Icon> icons;
icons.push_back(CreateIcon("http://foo.com/icon_x1.png", "", 1.0, sizes));
icons.push_back(CreateIcon("http://foo.com/icon_x2.png", "", 2.0, sizes));
icons.push_back(CreateIcon("http://foo.com/icon_x3.png", "", 3.0, sizes));
SetDisplayDeviceScaleFactor(1.0f);
GURL url = FindBestMatchingIcon(icons);
EXPECT_EQ("http://foo.com/icon_x1.png", url.spec());
SetDisplayDeviceScaleFactor(2.0f);
url = FindBestMatchingIcon(icons);
EXPECT_EQ("http://foo.com/icon_x2.png", url.spec());
SetDisplayDeviceScaleFactor(3.0f);
url = FindBestMatchingIcon(icons);
EXPECT_EQ("http://foo.com/icon_x3.png", url.spec());
}
TEST_F(ManifestIconSelectorTest, DeviceDensityFallback) {
// If there is no perfect icon but and no icon of the current display density,
// an icon of density 1.0 will be used.
std::vector<gfx::Size> sizes;
sizes.push_back(gfx::Size(1024, 1024));
std::vector<content::Manifest::Icon> icons;
icons.push_back(CreateIcon("http://foo.com/icon_x1.png", "", 1.0, sizes));
icons.push_back(CreateIcon("http://foo.com/icon_x2.png", "", 2.0, sizes));
SetDisplayDeviceScaleFactor(3.0f);
GURL url = FindBestMatchingIcon(icons);
EXPECT_EQ("http://foo.com/icon_x1.png", url.spec());
}
TEST_F(ManifestIconSelectorTest, DeviceDensityMatchRejectsTooSmall) {
// If we have to resort to density matching to find icons, then an icon of
// the correct size has not been found. Make sure that the minimum passed
// is enforced.
std::vector<gfx::Size> sizes_1_2;
std::vector<gfx::Size> sizes_3;
sizes_1_2.push_back(gfx::Size(47, 47));
sizes_3.push_back(gfx::Size(95, 95));
// Set to a value which will not affect the calculations.
SetPreferredIconSizeInDp(1024);
std::vector<content::Manifest::Icon> icons;
icons.push_back(CreateIcon("http://foo.com/icon_x1.png", "", 1.0, sizes_1_2));
icons.push_back(CreateIcon("http://foo.com/icon_x2.png", "", 2.0, sizes_1_2));
icons.push_back(CreateIcon("http://foo.com/icon_x3.png", "", 3.0, sizes_3));
// Nothing matches here because the minimum is 48.
SetDisplayDeviceScaleFactor(1.0f);
GURL url = FindBestMatchingIconWithMinimum(icons, 48);
EXPECT_TRUE(url.is_empty());
// Nothing matches here because the minimum is 48 again.
SetDisplayDeviceScaleFactor(2.0f);
url = FindBestMatchingIconWithMinimum(icons, 48);
EXPECT_TRUE(url.is_empty());
// Nothing matches here as the minimum is 96.
SetDisplayDeviceScaleFactor(3.0f);
url = FindBestMatchingIconWithMinimum(icons, 96);
EXPECT_TRUE(url.is_empty());
}
TEST_F(ManifestIconSelectorTest, IdealVeryCloseToMinimumMatches) {
std::vector<gfx::Size> sizes;
sizes.push_back(gfx::Size(2, 2));
std::vector<content::Manifest::Icon> icons;
icons.push_back(CreateIcon("http://foo.com/icon_x1.png", "", 1.0, sizes));
SetDisplayDeviceScaleFactor(1.0f);
GURL url = FindBestMatchingIconWithMinimum(icons, 1);
EXPECT_EQ("http://foo.com/icon_x1.png", url.spec());
}
TEST_F(ManifestIconSelectorTest, SizeVeryCloseToMinimumMatches) {
std::vector<gfx::Size> sizes;
sizes.push_back(gfx::Size(2, 2));
SetPreferredIconSizeInDp(200);
std::vector<content::Manifest::Icon> icons;
icons.push_back(CreateIcon("http://foo.com/icon_x1.png", "", 1.0, sizes));
SetDisplayDeviceScaleFactor(1.0f);
GURL url = FindBestMatchingIconWithMinimum(icons, 1);
EXPECT_EQ("http://foo.com/icon_x1.png", url.spec());
}
TEST_F(ManifestIconSelectorTest, DoNotUseOtherDensities) {
// If there are only icons of densities that are not the current display
// density or the default density, they are ignored.
std::vector<gfx::Size> sizes;
sizes.push_back(gfx::Size(1024, 1024));
std::vector<content::Manifest::Icon> icons;
icons.push_back(CreateIcon("http://foo.com/icon_x2.png", "", 2.0, sizes));
SetDisplayDeviceScaleFactor(3.0f);
GURL url = FindBestMatchingIcon(icons);
EXPECT_TRUE(url.is_empty());
}
TEST_F(ManifestIconSelectorTest, NotSquareIconsAreIgnored) {
std::vector<gfx::Size> sizes;
sizes.push_back(gfx::Size(1024, 1023));
std::vector<content::Manifest::Icon> icons;
icons.push_back(CreateIcon("http://foo.com/icon.png", "", 1.0, sizes));
GURL url = FindBestMatchingIcon(icons);
EXPECT_TRUE(url.is_empty());
}
TEST_F(ManifestIconSelectorTest, ClosestIconToPreferred) {
// This test verifies ManifestIconSelector::FindBestMatchingIcon by passing
// different icon sizes and checking which one is picked.
// The Device Scale Factor is 1.0 and the preferred icon size is returned by
// GetPreferredIconSizeInDp().
int very_small = GetPreferredIconSizeInDp() / 4;
int small_size = GetPreferredIconSizeInDp() / 2;
int bit_small = GetPreferredIconSizeInDp() - 1;
int bit_big = GetPreferredIconSizeInDp() + 1;
int big = GetPreferredIconSizeInDp() * 2;
int very_big = GetPreferredIconSizeInDp() * 4;
// (very_small, bit_small) => bit_small
{
std::vector<gfx::Size> sizes_1;
sizes_1.push_back(gfx::Size(very_small, very_small));
std::vector<gfx::Size> sizes_2;
sizes_2.push_back(gfx::Size(bit_small, bit_small));
std::vector<content::Manifest::Icon> icons;
icons.push_back(CreateIcon("http://foo.com/icon_no.png", "", 1.0, sizes_1));
icons.push_back(CreateIcon("http://foo.com/icon.png", "", 1.0, sizes_2));
GURL url = FindBestMatchingIcon(icons);
EXPECT_EQ("http://foo.com/icon.png", url.spec());
}
// (very_small, bit_small, smaller) => bit_small
{
std::vector<gfx::Size> sizes_1;
sizes_1.push_back(gfx::Size(very_small, very_small));
std::vector<gfx::Size> sizes_2;
sizes_2.push_back(gfx::Size(bit_small, bit_small));
std::vector<gfx::Size> sizes_3;
sizes_3.push_back(gfx::Size(small_size, small_size));
std::vector<content::Manifest::Icon> icons;
icons.push_back(CreateIcon("http://foo.com/icon_no.png", "", 1.0, sizes_1));
icons.push_back(CreateIcon("http://foo.com/icon.png", "", 1.0, sizes_2));
icons.push_back(CreateIcon("http://foo.com/icon_no.png", "", 1.0, sizes_3));
GURL url = FindBestMatchingIcon(icons);
EXPECT_EQ("http://foo.com/icon.png", url.spec());
}
// (very_big, big) => big
{
std::vector<gfx::Size> sizes_1;
sizes_1.push_back(gfx::Size(very_big, very_big));
std::vector<gfx::Size> sizes_2;
sizes_2.push_back(gfx::Size(big, big));
std::vector<content::Manifest::Icon> icons;
icons.push_back(CreateIcon("http://foo.com/icon_no.png", "", 1.0, sizes_1));
icons.push_back(CreateIcon("http://foo.com/icon.png", "", 1.0, sizes_2));
GURL url = FindBestMatchingIcon(icons);
EXPECT_EQ("http://foo.com/icon.png", url.spec());
}
// (very_big, big, bit_big) => bit_big
{
std::vector<gfx::Size> sizes_1;
sizes_1.push_back(gfx::Size(very_big, very_big));
std::vector<gfx::Size> sizes_2;
sizes_2.push_back(gfx::Size(big, big));
std::vector<gfx::Size> sizes_3;
sizes_3.push_back(gfx::Size(bit_big, bit_big));
std::vector<content::Manifest::Icon> icons;
icons.push_back(CreateIcon("http://foo.com/icon_no.png", "", 1.0, sizes_1));
icons.push_back(CreateIcon("http://foo.com/icon_no.png", "", 1.0, sizes_2));
icons.push_back(CreateIcon("http://foo.com/icon.png", "", 1.0, sizes_3));
GURL url = FindBestMatchingIcon(icons);
EXPECT_EQ("http://foo.com/icon.png", url.spec());
}
// (bit_small, very_big) => very_big
{
std::vector<gfx::Size> sizes_1;
sizes_1.push_back(gfx::Size(bit_small, bit_small));
std::vector<gfx::Size> sizes_2;
sizes_2.push_back(gfx::Size(very_big, very_big));
std::vector<content::Manifest::Icon> icons;
icons.push_back(CreateIcon("http://foo.com/icon_no.png", "", 1.0, sizes_1));
icons.push_back(CreateIcon("http://foo.com/icon.png", "", 1.0, sizes_2));
GURL url = FindBestMatchingIcon(icons);
EXPECT_EQ("http://foo.com/icon.png", url.spec());
}
// (bit_small, bit_big) => bit_big
{
std::vector<gfx::Size> sizes_1;
sizes_1.push_back(gfx::Size(bit_small, bit_small));
std::vector<gfx::Size> sizes_2;
sizes_2.push_back(gfx::Size(bit_big, bit_big));
std::vector<content::Manifest::Icon> icons;
icons.push_back(CreateIcon("http://foo.com/icon_no.png", "", 1.0, sizes_1));
icons.push_back(CreateIcon("http://foo.com/icon.png", "", 1.0, sizes_2));
GURL url = FindBestMatchingIcon(icons);
EXPECT_EQ("http://foo.com/icon.png", url.spec());
}
}
TEST_F(ManifestIconSelectorTest, UseAnyIfNoPreferredSize) {
// 'any' (ie. gfx::Size(0,0)) should be used if there is no icon of a
// preferred size. An icon with the current device scale factor is preferred
// over one with the default density.
// 'any' with preferred size => preferred size
{
std::vector<gfx::Size> sizes_1;
sizes_1.push_back(gfx::Size(GetPreferredIconSizeInDp(),
GetPreferredIconSizeInDp()));
std::vector<gfx::Size> sizes_2;
sizes_2.push_back(gfx::Size(0, 0));
std::vector<content::Manifest::Icon> icons;
icons.push_back(CreateIcon("http://foo.com/icon.png", "", 1.0, sizes_1));
icons.push_back(CreateIcon("http://foo.com/icon_no.png", "", 1.0, sizes_2));
GURL url = FindBestMatchingIcon(icons);
EXPECT_EQ("http://foo.com/icon.png", url.spec());
}
// 'any' with nearly preferred size => any
{
std::vector<gfx::Size> sizes_1;
sizes_1.push_back(gfx::Size(GetPreferredIconSizeInDp() + 1,
GetPreferredIconSizeInDp() + 1));
std::vector<gfx::Size> sizes_2;
sizes_2.push_back(gfx::Size(0, 0));
std::vector<content::Manifest::Icon> icons;
icons.push_back(CreateIcon("http://foo.com/icon_no.png", "", 1.0, sizes_1));
icons.push_back(CreateIcon("http://foo.com/icon.png", "", 1.0, sizes_2));
GURL url = FindBestMatchingIcon(icons);
EXPECT_EQ("http://foo.com/icon.png", url.spec());
}
// 'any' on default density and current density => current density.
{
std::vector<gfx::Size> sizes;
sizes.push_back(gfx::Size(0, 0));
std::vector<content::Manifest::Icon> icons;
icons.push_back(CreateIcon("http://foo.com/icon_no.png", "", 1.0, sizes));
icons.push_back(CreateIcon("http://foo.com/icon.png", "", 3.0, sizes));
SetDisplayDeviceScaleFactor(3.0f);
GURL url = FindBestMatchingIcon(icons);
EXPECT_EQ("http://foo.com/icon.png", url.spec());
}
}
|