File: manifest_icon_selector_unittest.cc

package info (click to toggle)
chromium 138.0.7204.183-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 6,071,908 kB
  • sloc: cpp: 34,937,088; ansic: 7,176,967; javascript: 4,110,704; python: 1,419,953; asm: 946,768; xml: 739,971; pascal: 187,324; sh: 89,623; perl: 88,663; objc: 79,944; sql: 50,304; cs: 41,786; fortran: 24,137; makefile: 21,806; php: 13,980; tcl: 13,166; yacc: 8,925; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (560 lines) | stat: -rw-r--r-- 21,226 bytes parent folder | download | duplicates (11)
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
// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "third_party/blink/public/common/manifest/manifest_icon_selector.h"

#include <string>
#include <vector>

#include "base/strings/utf_string_conversions.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace blink {

using Purpose = blink::mojom::ManifestImageResource_Purpose;

namespace {
const int kIdealIconSize = 144;
const int kMinimumIconSize = 0;
// The same value as content::ManifestIconDownloader::kMaxWidthToHeightRatio
const int kMaxWidthToHeightRatio = 5;
}  // anonymous namespace

class ManifestIconSelectorTest : public testing::TestWithParam<bool> {
 public:
  ManifestIconSelectorTest() : selects_square_only_(GetParam()) {}
  ~ManifestIconSelectorTest() = default;

 protected:
  blink::Manifest::ImageResource CreateIcon(const std::string& url,
                                            const std::string& type,
                                            const std::vector<gfx::Size> sizes,
                                            Purpose purpose) {
    blink::Manifest::ImageResource icon;
    icon.src = GURL(url);
    icon.type = base::UTF8ToUTF16(type);
    icon.sizes = sizes;
    icon.purpose.push_back(purpose);

    return icon;
  }

  bool selects_square_only() { return selects_square_only_; }

  int width_to_height_ratio() {
    if (selects_square_only_)
      return 1;
    return kMaxWidthToHeightRatio;
  }

  GURL FindBestMatchingIcon(
      const std::vector<blink::Manifest::ImageResource>& icons,
      int ideal_icon_size_in_px,
      int minimum_icon_size_in_px,
      blink::mojom::ManifestImageResource_Purpose purpose) {
    if (selects_square_only_) {
      return ManifestIconSelector::FindBestMatchingSquareIcon(
          icons, ideal_icon_size_in_px, minimum_icon_size_in_px, purpose);
    }
    return ManifestIconSelector::FindBestMatchingIcon(
        icons, ideal_icon_size_in_px, minimum_icon_size_in_px,
        kMaxWidthToHeightRatio, purpose);
  }

 private:
  bool selects_square_only_;
};

TEST_P(ManifestIconSelectorTest, NoIcons) {
  // No icons should return the empty URL.
  std::vector<blink::Manifest::ImageResource> icons;
  GURL url = FindBestMatchingIcon(icons, kIdealIconSize, kMinimumIconSize,
                                  Purpose::ANY);
  EXPECT_TRUE(url.is_empty());
}

TEST_P(ManifestIconSelectorTest, NoSizes) {
  // Icon with no sizes are ignored.
  std::vector<blink::Manifest::ImageResource> icons;
  icons.push_back(CreateIcon("http://foo.com/icon.png", "",
                             std::vector<gfx::Size>(), Purpose::ANY));

  GURL url = FindBestMatchingIcon(icons, kIdealIconSize, kMinimumIconSize,
                                  Purpose::ANY);
  EXPECT_TRUE(url.is_empty());
}

TEST_P(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(width_to_height_ratio() * 1024, 1024));

  std::vector<blink::Manifest::ImageResource> icons;
  icons.push_back(CreateIcon("http://foo.com/icon.png", "image/foo_bar", sizes,
                             Purpose::ANY));
  icons.push_back(
      CreateIcon("http://foo.com/icon.png", "image/", sizes, Purpose::ANY));
  icons.push_back(
      CreateIcon("http://foo.com/icon.png", "image/", sizes, Purpose::ANY));
  icons.push_back(
      CreateIcon("http://foo.com/icon.png", "video/mp4", sizes, Purpose::ANY));

  GURL url = FindBestMatchingIcon(icons, kIdealIconSize, kMinimumIconSize,
                                  Purpose::ANY);
  EXPECT_TRUE(url.is_empty());

  icons.clear();
  icons.push_back(
      CreateIcon("http://foo.com/icon.png", "image/png", sizes, Purpose::ANY));
  url = FindBestMatchingIcon(icons, kIdealIconSize, kMinimumIconSize,
                             Purpose::ANY);
  EXPECT_EQ("http://foo.com/icon.png", url.spec());

  icons.clear();
  icons.push_back(
      CreateIcon("http://foo.com/icon.png", "image/gif", sizes, Purpose::ANY));
  url = FindBestMatchingIcon(icons, kIdealIconSize, kMinimumIconSize,
                             Purpose::ANY);
  EXPECT_EQ("http://foo.com/icon.png", url.spec());

  icons.clear();
  icons.push_back(
      CreateIcon("http://foo.com/icon.png", "image/jpeg", sizes, Purpose::ANY));
  url = FindBestMatchingIcon(icons, kIdealIconSize, kMinimumIconSize,
                             Purpose::ANY);
  EXPECT_EQ("http://foo.com/icon.png", url.spec());
}

TEST_P(ManifestIconSelectorTest, PurposeFiltering) {
  // Icons with purpose specified to non-matching purpose are ignored.
  std::vector<gfx::Size> sizes_48;
  sizes_48.push_back(gfx::Size(width_to_height_ratio() * 48, 48));

  std::vector<gfx::Size> sizes_96;
  sizes_96.push_back(gfx::Size(width_to_height_ratio() * 96, 96));

  std::vector<gfx::Size> sizes_144;
  sizes_144.push_back(gfx::Size(width_to_height_ratio() * 144, 144));

  std::vector<blink::Manifest::ImageResource> icons;
  icons.push_back(CreateIcon("http://foo.com/icon_48.png", "", sizes_48,
                             Purpose::MONOCHROME));
  icons.push_back(
      CreateIcon("http://foo.com/icon_96.png", "", sizes_96, Purpose::ANY));
  icons.push_back(
      CreateIcon("http://foo.com/icon_144.png", "", sizes_144, Purpose::ANY));

  GURL url =
      FindBestMatchingIcon(icons, 48, kMinimumIconSize, Purpose::MONOCHROME);
  EXPECT_EQ("http://foo.com/icon_48.png", url.spec());

  url = FindBestMatchingIcon(icons, 48, kMinimumIconSize, Purpose::ANY);
  EXPECT_EQ("http://foo.com/icon_96.png", url.spec());

  url = FindBestMatchingIcon(icons, 96, kMinimumIconSize, Purpose::MONOCHROME);
  EXPECT_EQ("http://foo.com/icon_48.png", url.spec());

  url = FindBestMatchingIcon(icons, 96, 96, Purpose::MONOCHROME);
  EXPECT_TRUE(url.is_empty());

  url = FindBestMatchingIcon(icons, 144, kMinimumIconSize, Purpose::ANY);
  EXPECT_EQ("http://foo.com/icon_144.png", url.spec());
}

TEST_P(ManifestIconSelectorTest, IdealSizeIsUsedFirst) {
  // Each icon is marked with sizes that match the ideal icon size.
  std::vector<gfx::Size> sizes_48;
  sizes_48.push_back(gfx::Size(width_to_height_ratio() * 48, 48));

  std::vector<gfx::Size> sizes_96;
  sizes_96.push_back(gfx::Size(width_to_height_ratio() * 96, 96));

  std::vector<gfx::Size> sizes_144;
  sizes_144.push_back(gfx::Size(width_to_height_ratio() * 144, 144));

  std::vector<blink::Manifest::ImageResource> icons;
  icons.push_back(
      CreateIcon("http://foo.com/icon_48.png", "", sizes_48, Purpose::ANY));
  icons.push_back(
      CreateIcon("http://foo.com/icon_96.png", "", sizes_96, Purpose::ANY));
  icons.push_back(
      CreateIcon("http://foo.com/icon_144.png", "", sizes_144, Purpose::ANY));

  GURL url = FindBestMatchingIcon(icons, 48, kMinimumIconSize, Purpose::ANY);
  EXPECT_EQ("http://foo.com/icon_48.png", url.spec());

  url = FindBestMatchingIcon(icons, 96, kMinimumIconSize, Purpose::ANY);
  EXPECT_EQ("http://foo.com/icon_96.png", url.spec());

  url = FindBestMatchingIcon(icons, 144, kMinimumIconSize, Purpose::ANY);
  EXPECT_EQ("http://foo.com/icon_144.png", url.spec());
}

TEST_P(ManifestIconSelectorTest, FirstIconWithIdealSizeIsUsedFirst) {
  // This test has three icons. The first icon is going to be used because it
  // contains the ideal size.
  std::vector<gfx::Size> sizes_1;
  sizes_1.push_back(
      gfx::Size(width_to_height_ratio() * kIdealIconSize, kIdealIconSize));
  sizes_1.push_back(gfx::Size(width_to_height_ratio() * kIdealIconSize * 2,
                              kIdealIconSize * 2));
  sizes_1.push_back(gfx::Size(width_to_height_ratio() * kIdealIconSize * 3,
                              kIdealIconSize * 3));

  std::vector<gfx::Size> sizes_2;
  sizes_2.push_back(gfx::Size(width_to_height_ratio() * 1024, 1024));

  std::vector<gfx::Size> sizes_3;
  sizes_3.push_back(gfx::Size(width_to_height_ratio() * 1024, 1024));

  std::vector<blink::Manifest::ImageResource> icons;
  icons.push_back(
      CreateIcon("http://foo.com/icon_x1.png", "", sizes_1, Purpose::ANY));
  icons.push_back(
      CreateIcon("http://foo.com/icon_x2.png", "", sizes_2, Purpose::ANY));
  icons.push_back(
      CreateIcon("http://foo.com/icon_x3.png", "", sizes_3, Purpose::ANY));

  GURL url = FindBestMatchingIcon(icons, kIdealIconSize, kMinimumIconSize,
                                  Purpose::ANY);
  EXPECT_EQ("http://foo.com/icon_x1.png", url.spec());

  url = FindBestMatchingIcon(icons, kIdealIconSize * 2, kMinimumIconSize,
                             Purpose::ANY);
  EXPECT_EQ("http://foo.com/icon_x1.png", url.spec());

  url = FindBestMatchingIcon(icons, kIdealIconSize * 3, kMinimumIconSize,
                             Purpose::ANY);
  EXPECT_EQ("http://foo.com/icon_x1.png", url.spec());
}

TEST_P(ManifestIconSelectorTest, FallbackToSmallestLargerIcon) {
  // If there is no perfect icon, the smallest larger icon will be chosen.
  std::vector<gfx::Size> sizes_1;
  sizes_1.push_back(gfx::Size(width_to_height_ratio() * 90, 90));

  std::vector<gfx::Size> sizes_2;
  sizes_2.push_back(gfx::Size(width_to_height_ratio() * 128, 128));

  std::vector<gfx::Size> sizes_3;
  sizes_3.push_back(gfx::Size(width_to_height_ratio() * 192, 192));

  std::vector<blink::Manifest::ImageResource> icons;
  icons.push_back(
      CreateIcon("http://foo.com/icon_x1.png", "", sizes_1, Purpose::ANY));
  icons.push_back(
      CreateIcon("http://foo.com/icon_x2.png", "", sizes_2, Purpose::ANY));
  icons.push_back(
      CreateIcon("http://foo.com/icon_x3.png", "", sizes_3, Purpose::ANY));

  GURL url = FindBestMatchingIcon(icons, 48, kMinimumIconSize, Purpose::ANY);
  EXPECT_EQ("http://foo.com/icon_x1.png", url.spec());

  url = FindBestMatchingIcon(icons, 96, kMinimumIconSize, Purpose::ANY);
  EXPECT_EQ("http://foo.com/icon_x2.png", url.spec());

  url = FindBestMatchingIcon(icons, 144, kMinimumIconSize, Purpose::ANY);
  EXPECT_EQ("http://foo.com/icon_x3.png", url.spec());
}

TEST_P(ManifestIconSelectorTest, FallbackToLargestIconLargerThanMinimum) {
  // When an icon of the correct size has not been found, we fall back to the
  // closest non-matching sizes. 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(width_to_height_ratio() * 47, 47));
  sizes_3.push_back(gfx::Size(width_to_height_ratio() * 95, 95));

  std::vector<blink::Manifest::ImageResource> icons;
  icons.push_back(
      CreateIcon("http://foo.com/icon_x1.png", "", sizes_1_2, Purpose::ANY));
  icons.push_back(
      CreateIcon("http://foo.com/icon_x2.png", "", sizes_1_2, Purpose::ANY));
  icons.push_back(
      CreateIcon("http://foo.com/icon_x3.png", "", sizes_3, Purpose::ANY));

  // Icon 3 should match.
  GURL url = FindBestMatchingIcon(icons, 1024, 48, Purpose::ANY);
  EXPECT_EQ("http://foo.com/icon_x3.png", url.spec());

  // Nothing matches here as the minimum is 96.
  url = FindBestMatchingIcon(icons, 1024, 96, Purpose::ANY);
  EXPECT_TRUE(url.is_empty());
}

TEST_P(ManifestIconSelectorTest, IdealVeryCloseToMinimumMatches) {
  std::vector<gfx::Size> sizes;
  sizes.push_back(gfx::Size(width_to_height_ratio() * 2, 2));

  std::vector<blink::Manifest::ImageResource> icons;
  icons.push_back(
      CreateIcon("http://foo.com/icon_x1.png", "", sizes, Purpose::ANY));

  GURL url = FindBestMatchingIcon(icons, 2, 1, Purpose::ANY);
  EXPECT_EQ("http://foo.com/icon_x1.png", url.spec());
}

TEST_P(ManifestIconSelectorTest, SizeVeryCloseToMinimumMatches) {
  std::vector<gfx::Size> sizes;
  sizes.push_back(gfx::Size(width_to_height_ratio() * 2, 2));

  std::vector<blink::Manifest::ImageResource> icons;
  icons.push_back(
      CreateIcon("http://foo.com/icon_x1.png", "", sizes, Purpose::ANY));

  GURL url = FindBestMatchingIcon(icons, 200, 1, Purpose::ANY);
  EXPECT_EQ("http://foo.com/icon_x1.png", url.spec());
}

TEST_P(ManifestIconSelectorTest, IconsWithInvalidDimensionsAreIgnored) {
  std::vector<gfx::Size> sizes;
  if (selects_square_only()) {
    // Square selector should ignore non-square icons.
    sizes.push_back(gfx::Size(1024, 1023));
  } else {
    // Landscape selector should ignore icons with improper width/height ratio.
    sizes.push_back(gfx::Size((kMaxWidthToHeightRatio + 1) * 1023, 1023));
    // Landscape selector should ignore portrait icons.
    sizes.push_back(gfx::Size(1023, 1024));
  }

  std::vector<blink::Manifest::ImageResource> icons;
  icons.push_back(
      CreateIcon("http://foo.com/icon.png", "", sizes, Purpose::ANY));

  GURL url = FindBestMatchingIcon(icons, kIdealIconSize, kMinimumIconSize,
                                  Purpose::ANY);
  EXPECT_TRUE(url.is_empty());
}

TEST_P(ManifestIconSelectorTest, ClosestIconToIdeal) {
  // Ensure ManifestIconSelector::FindBestMatchingSquareIcon selects the closest
  // icon to the ideal size when presented with a number of options.
  int very_small = kIdealIconSize / 4;
  int small_size = kIdealIconSize / 2;
  int bit_small = kIdealIconSize - 1;
  int bit_big = kIdealIconSize + 1;
  int big = kIdealIconSize * 2;
  int very_big = kIdealIconSize * 4;

  // (very_small, bit_small) => bit_small
  {
    std::vector<gfx::Size> sizes_1;
    sizes_1.push_back(
        gfx::Size(width_to_height_ratio() * very_small, very_small));

    std::vector<gfx::Size> sizes_2;
    sizes_2.push_back(
        gfx::Size(width_to_height_ratio() * bit_small, bit_small));

    std::vector<blink::Manifest::ImageResource> icons;
    icons.push_back(
        CreateIcon("http://foo.com/icon_no.png", "", sizes_1, Purpose::ANY));
    icons.push_back(
        CreateIcon("http://foo.com/icon.png", "", sizes_2, Purpose::ANY));

    GURL url = FindBestMatchingIcon(icons, kIdealIconSize, kMinimumIconSize,
                                    Purpose::ANY);
    EXPECT_EQ("http://foo.com/icon.png", url.spec());
  }

  // (very_small, bit_small, small_size) => bit_small
  {
    std::vector<gfx::Size> sizes_1;
    sizes_1.push_back(
        gfx::Size(width_to_height_ratio() * very_small, very_small));

    std::vector<gfx::Size> sizes_2;
    sizes_2.push_back(
        gfx::Size(width_to_height_ratio() * bit_small, bit_small));

    std::vector<gfx::Size> sizes_3;
    sizes_3.push_back(
        gfx::Size(width_to_height_ratio() * small_size, small_size));

    std::vector<blink::Manifest::ImageResource> icons;
    icons.push_back(
        CreateIcon("http://foo.com/icon_no_1.png", "", sizes_1, Purpose::ANY));
    icons.push_back(
        CreateIcon("http://foo.com/icon.png", "", sizes_2, Purpose::ANY));
    icons.push_back(
        CreateIcon("http://foo.com/icon_no_2.png", "", sizes_3, Purpose::ANY));

    GURL url = FindBestMatchingIcon(icons, kIdealIconSize, kMinimumIconSize,
                                    Purpose::ANY);
    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(width_to_height_ratio() * very_big, very_big));

    std::vector<gfx::Size> sizes_2;
    sizes_2.push_back(gfx::Size(width_to_height_ratio() * big, big));

    std::vector<blink::Manifest::ImageResource> icons;
    icons.push_back(
        CreateIcon("http://foo.com/icon_no.png", "", sizes_1, Purpose::ANY));
    icons.push_back(
        CreateIcon("http://foo.com/icon.png", "", sizes_2, Purpose::ANY));

    GURL url = FindBestMatchingIcon(icons, kIdealIconSize, kMinimumIconSize,
                                    Purpose::ANY);
    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(width_to_height_ratio() * very_big, very_big));

    std::vector<gfx::Size> sizes_2;
    sizes_2.push_back(gfx::Size(width_to_height_ratio() * big, big));

    std::vector<gfx::Size> sizes_3;
    sizes_3.push_back(gfx::Size(width_to_height_ratio() * bit_big, bit_big));

    std::vector<blink::Manifest::ImageResource> icons;
    icons.push_back(
        CreateIcon("http://foo.com/icon_no.png", "", sizes_1, Purpose::ANY));
    icons.push_back(
        CreateIcon("http://foo.com/icon_no.png", "", sizes_2, Purpose::ANY));
    icons.push_back(
        CreateIcon("http://foo.com/icon.png", "", sizes_3, Purpose::ANY));

    GURL url = FindBestMatchingIcon(icons, kIdealIconSize, kMinimumIconSize,
                                    Purpose::ANY);
    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(width_to_height_ratio() * bit_small, bit_small));

    std::vector<gfx::Size> sizes_2;
    sizes_2.push_back(gfx::Size(width_to_height_ratio() * very_big, very_big));

    std::vector<blink::Manifest::ImageResource> icons;
    icons.push_back(
        CreateIcon("http://foo.com/icon_no.png", "", sizes_1, Purpose::ANY));
    icons.push_back(
        CreateIcon("http://foo.com/icon.png", "", sizes_2, Purpose::ANY));

    GURL url = FindBestMatchingIcon(icons, kIdealIconSize, kMinimumIconSize,
                                    Purpose::ANY);
    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(width_to_height_ratio() * bit_small, bit_small));

    std::vector<gfx::Size> sizes_2;
    sizes_2.push_back(gfx::Size(width_to_height_ratio() * bit_big, bit_big));

    std::vector<blink::Manifest::ImageResource> icons;
    icons.push_back(
        CreateIcon("http://foo.com/icon_no.png", "", sizes_1, Purpose::ANY));
    icons.push_back(
        CreateIcon("http://foo.com/icon.png", "", sizes_2, Purpose::ANY));

    GURL url = FindBestMatchingIcon(icons, kIdealIconSize, kMinimumIconSize,
                                    Purpose::ANY);
    EXPECT_EQ("http://foo.com/icon.png", url.spec());
  }
}

TEST_P(ManifestIconSelectorTest, UseAnyIfNoIdealSize) {
  // 'any' (ie. gfx::Size(0,0)) should be used if there is no icon of a
  // ideal size.

  // Icon with 'any' and icon with ideal size => ideal size is chosen.
  {
    std::vector<gfx::Size> sizes_1;
    sizes_1.push_back(
        gfx::Size(width_to_height_ratio() * kIdealIconSize, kIdealIconSize));
    std::vector<gfx::Size> sizes_2;
    sizes_2.push_back(gfx::Size(0, 0));

    std::vector<blink::Manifest::ImageResource> icons;
    icons.push_back(
        CreateIcon("http://foo.com/icon.png", "", sizes_1, Purpose::ANY));
    icons.push_back(
        CreateIcon("http://foo.com/icon_no.png", "", sizes_2, Purpose::ANY));

    GURL url = FindBestMatchingIcon(icons, kIdealIconSize, kMinimumIconSize,
                                    Purpose::ANY);
    EXPECT_EQ("http://foo.com/icon.png", url.spec());
  }

  // Icon with 'any' and icon larger than ideal size => any is chosen.
  {
    std::vector<gfx::Size> sizes_1;
    sizes_1.push_back(gfx::Size(width_to_height_ratio() * (kIdealIconSize + 1),
                                kIdealIconSize + 1));
    std::vector<gfx::Size> sizes_2;
    sizes_2.push_back(gfx::Size(0, 0));

    std::vector<blink::Manifest::ImageResource> icons;
    icons.push_back(
        CreateIcon("http://foo.com/icon_no.png", "", sizes_1, Purpose::ANY));
    icons.push_back(
        CreateIcon("http://foo.com/icon.png", "", sizes_2, Purpose::ANY));

    GURL url = FindBestMatchingIcon(icons, kIdealIconSize, kMinimumIconSize,
                                    Purpose::ANY);
    EXPECT_EQ("http://foo.com/icon.png", url.spec());
  }

  // Multiple icons with 'any' => the last one is chosen.
  {
    std::vector<gfx::Size> sizes;
    sizes.push_back(gfx::Size(0, 0));

    std::vector<blink::Manifest::ImageResource> icons;
    icons.push_back(
        CreateIcon("http://foo.com/icon_no1.png", "", sizes, Purpose::ANY));
    icons.push_back(
        CreateIcon("http://foo.com/icon_no2.png", "", sizes, Purpose::ANY));
    icons.push_back(
        CreateIcon("http://foo.com/icon.png", "", sizes, Purpose::ANY));

    GURL url = FindBestMatchingIcon(icons, kIdealIconSize * 3, kMinimumIconSize,
                                    Purpose::ANY);
    EXPECT_EQ("http://foo.com/icon.png", url.spec());
  }

  // Multiple icons with ideal size => the last one is chosen.
  {
    std::vector<gfx::Size> sizes_1;
    sizes_1.push_back(
        gfx::Size(width_to_height_ratio() * kIdealIconSize, kIdealIconSize));
    std::vector<gfx::Size> sizes_2;
    sizes_2.push_back(
        gfx::Size(width_to_height_ratio() * kIdealIconSize, kIdealIconSize));

    std::vector<blink::Manifest::ImageResource> icons;
    icons.push_back(
        CreateIcon("http://foo.com/icon.png", "", sizes_1, Purpose::ANY));
    icons.push_back(
        CreateIcon("http://foo.com/icon_no.png", "", sizes_2, Purpose::ANY));

    GURL url = FindBestMatchingIcon(icons, kIdealIconSize, kMinimumIconSize,
                                    Purpose::ANY);
    EXPECT_EQ("http://foo.com/icon_no.png", url.spec());
  }
}

INSTANTIATE_TEST_SUITE_P(All,
                         ManifestIconSelectorTest,
                         ::testing::Bool());

}  // namespace blink