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
|
// 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"
namespace {
const int kDefaultIconSize = 144;
GURL FindBestMatchingIconWithMinimum(
const std::vector<content::Manifest::Icon>& icons,
int ideal_icon_size_in_px,
int minimum_icon_size_in_px) {
return ManifestIconSelector::FindBestMatchingIcon(
icons, ideal_icon_size_in_px, minimum_icon_size_in_px);
}
GURL FindBestMatchingIcon(const std::vector<content::Manifest::Icon>& icons,
int ideal_icon_size_in_px) {
return FindBestMatchingIconWithMinimum(icons, ideal_icon_size_in_px, 0);
}
static content::Manifest::Icon CreateIcon(const std::string& url,
const std::string& type,
const std::vector<gfx::Size> sizes) {
content::Manifest::Icon icon;
icon.src = GURL(url);
icon.type = base::UTF8ToUTF16(type);
icon.sizes = sizes;
return icon;
}
} // anonymous namespace
TEST(ManifestIconSelector, NoIcons) {
// No icons should return the empty URL.
std::vector<content::Manifest::Icon> icons;
GURL url = FindBestMatchingIcon(icons, kDefaultIconSize);
EXPECT_TRUE(url.is_empty());
}
TEST(ManifestIconSelector, NoSizes) {
// Icon with no sizes are ignored.
std::vector<content::Manifest::Icon> icons;
icons.push_back(
CreateIcon("http://foo.com/icon.png", "", std::vector<gfx::Size>()));
GURL url = FindBestMatchingIcon(icons, kDefaultIconSize);
EXPECT_TRUE(url.is_empty());
}
TEST(ManifestIconSelector, 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", sizes));
icons.push_back(CreateIcon("http://foo.com/icon.png", "image/", sizes));
icons.push_back(CreateIcon("http://foo.com/icon.png", "image/", sizes));
icons.push_back(CreateIcon("http://foo.com/icon.png", "video/mp4", sizes));
GURL url = FindBestMatchingIcon(icons, kDefaultIconSize);
EXPECT_TRUE(url.is_empty());
icons.clear();
icons.push_back(CreateIcon("http://foo.com/icon.png", "image/png", sizes));
url = FindBestMatchingIcon(icons, kDefaultIconSize);
EXPECT_EQ("http://foo.com/icon.png", url.spec());
icons.clear();
icons.push_back(CreateIcon("http://foo.com/icon.png", "image/gif", sizes));
url = FindBestMatchingIcon(icons, kDefaultIconSize);
EXPECT_EQ("http://foo.com/icon.png", url.spec());
icons.clear();
icons.push_back(CreateIcon("http://foo.com/icon.png", "image/jpeg", sizes));
url = FindBestMatchingIcon(icons, kDefaultIconSize);
EXPECT_EQ("http://foo.com/icon.png", url.spec());
}
TEST(ManifestIconSelector, PreferredSizeIsUsedFirst) {
// Each icon is marked with sizes that match the preferred icon size.
std::vector<gfx::Size> sizes_48;
sizes_48.push_back(gfx::Size(48, 48));
std::vector<gfx::Size> sizes_96;
sizes_96.push_back(gfx::Size(96, 96));
std::vector<gfx::Size> sizes_144;
sizes_144.push_back(gfx::Size(144, 144));
std::vector<content::Manifest::Icon> icons;
icons.push_back(CreateIcon("http://foo.com/icon_48.png", "", sizes_48));
icons.push_back(CreateIcon("http://foo.com/icon_96.png", "", sizes_96));
icons.push_back(CreateIcon("http://foo.com/icon_144.png", "", sizes_144));
GURL url = FindBestMatchingIcon(icons, 48);
EXPECT_EQ("http://foo.com/icon_48.png", url.spec());
url = FindBestMatchingIcon(icons, 96);
EXPECT_EQ("http://foo.com/icon_96.png", url.spec());
url = FindBestMatchingIcon(icons, 144);
EXPECT_EQ("http://foo.com/icon_144.png", url.spec());
}
TEST(ManifestIconSelector, FirstIconWithPreferredSizeIsUsedFirst) {
// This test has three icons. The first icon is going to be used because it
// contains the preferred size.
std::vector<gfx::Size> sizes_1;
sizes_1.push_back(gfx::Size(kDefaultIconSize, kDefaultIconSize));
sizes_1.push_back(gfx::Size(kDefaultIconSize * 2, kDefaultIconSize * 2));
sizes_1.push_back(gfx::Size(kDefaultIconSize * 3, kDefaultIconSize * 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", "", sizes_1));
icons.push_back(CreateIcon("http://foo.com/icon_x2.png", "", sizes_2));
icons.push_back(CreateIcon("http://foo.com/icon_x3.png", "", sizes_3));
GURL url = FindBestMatchingIcon(icons, kDefaultIconSize);
EXPECT_EQ("http://foo.com/icon_x1.png", url.spec());
url = FindBestMatchingIcon(icons, kDefaultIconSize * 2);
EXPECT_EQ("http://foo.com/icon_x1.png", url.spec());
url = FindBestMatchingIcon(icons, kDefaultIconSize * 3);
EXPECT_EQ("http://foo.com/icon_x1.png", url.spec());
}
TEST(ManifestIconSelector, 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(90, 90));
std::vector<gfx::Size> sizes_2;
sizes_2.push_back(gfx::Size(128, 128));
std::vector<gfx::Size> sizes_3;
sizes_3.push_back(gfx::Size(192, 192));
std::vector<content::Manifest::Icon> icons;
icons.push_back(CreateIcon("http://foo.com/icon_x1.png", "", sizes_1));
icons.push_back(CreateIcon("http://foo.com/icon_x2.png", "", sizes_2));
icons.push_back(CreateIcon("http://foo.com/icon_x3.png", "", sizes_3));
GURL url = FindBestMatchingIcon(icons, 48);
EXPECT_EQ("http://foo.com/icon_x1.png", url.spec());
url = FindBestMatchingIcon(icons, 96);
EXPECT_EQ("http://foo.com/icon_x2.png", url.spec());
url = FindBestMatchingIcon(icons, 144);
EXPECT_EQ("http://foo.com/icon_x3.png", url.spec());
}
TEST(ManifestIconSelector, 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(47, 47));
sizes_3.push_back(gfx::Size(95, 95));
std::vector<content::Manifest::Icon> icons;
icons.push_back(CreateIcon("http://foo.com/icon_x1.png", "", sizes_1_2));
icons.push_back(CreateIcon("http://foo.com/icon_x2.png", "", sizes_1_2));
icons.push_back(CreateIcon("http://foo.com/icon_x3.png", "", sizes_3));
// Icon 3 should match.
GURL url = FindBestMatchingIconWithMinimum(icons, 1024, 48);
EXPECT_EQ("http://foo.com/icon_x3.png", url.spec());
// Nothing matches here as the minimum is 96.
url = FindBestMatchingIconWithMinimum(icons, 1024, 96);
EXPECT_TRUE(url.is_empty());
}
TEST(ManifestIconSelector, 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", "", sizes));
GURL url = FindBestMatchingIconWithMinimum(icons, 2, 1);
EXPECT_EQ("http://foo.com/icon_x1.png", url.spec());
}
TEST(ManifestIconSelector, SizeVeryCloseToMinimumMatches) {
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", "", sizes));
GURL url = FindBestMatchingIconWithMinimum(icons, 200, 1);
EXPECT_EQ("http://foo.com/icon_x1.png", url.spec());
}
TEST(ManifestIconSelector, 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", "", sizes));
GURL url = FindBestMatchingIcon(icons, kDefaultIconSize);
EXPECT_TRUE(url.is_empty());
}
TEST(ManifestIconSelector, ClosestIconToPreferred) {
// Ensure ManifestIconSelector::FindBestMatchingIcon selects the closest icon
// to the preferred size when presented with a number of options.
int very_small = kDefaultIconSize / 4;
int small_size = kDefaultIconSize / 2;
int bit_small = kDefaultIconSize - 1;
int bit_big = kDefaultIconSize + 1;
int big = kDefaultIconSize * 2;
int very_big = kDefaultIconSize * 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", "", sizes_1));
icons.push_back(CreateIcon("http://foo.com/icon.png", "", sizes_2));
GURL url = FindBestMatchingIcon(icons, kDefaultIconSize);
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(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_1.png", "", sizes_1));
icons.push_back(CreateIcon("http://foo.com/icon.png", "", sizes_2));
icons.push_back(CreateIcon("http://foo.com/icon_no_2.png", "", sizes_3));
GURL url = FindBestMatchingIcon(icons, kDefaultIconSize);
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", "", sizes_1));
icons.push_back(CreateIcon("http://foo.com/icon.png", "", sizes_2));
GURL url = FindBestMatchingIcon(icons, kDefaultIconSize);
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", "", sizes_1));
icons.push_back(CreateIcon("http://foo.com/icon_no.png", "", sizes_2));
icons.push_back(CreateIcon("http://foo.com/icon.png", "", sizes_3));
GURL url = FindBestMatchingIcon(icons, kDefaultIconSize);
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", "", sizes_1));
icons.push_back(CreateIcon("http://foo.com/icon.png", "", sizes_2));
GURL url = FindBestMatchingIcon(icons, kDefaultIconSize);
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", "", sizes_1));
icons.push_back(CreateIcon("http://foo.com/icon.png", "", sizes_2));
GURL url = FindBestMatchingIcon(icons, kDefaultIconSize);
EXPECT_EQ("http://foo.com/icon.png", url.spec());
}
}
TEST(ManifestIconSelector, UseAnyIfNoPreferredSize) {
// 'any' (ie. gfx::Size(0,0)) should be used if there is no icon of a
// preferred size.
// Icon with 'any' and icon with preferred size => preferred size is chosen.
{
std::vector<gfx::Size> sizes_1;
sizes_1.push_back(gfx::Size(kDefaultIconSize, kDefaultIconSize));
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", "", sizes_1));
icons.push_back(CreateIcon("http://foo.com/icon_no.png", "", sizes_2));
GURL url = FindBestMatchingIcon(icons, kDefaultIconSize);
EXPECT_EQ("http://foo.com/icon.png", url.spec());
}
// Icon with 'any' and icon larger than preferred size => any is chosen.
{
std::vector<gfx::Size> sizes_1;
sizes_1.push_back(gfx::Size(kDefaultIconSize + 1, kDefaultIconSize + 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", "", sizes_1));
icons.push_back(CreateIcon("http://foo.com/icon.png", "", sizes_2));
GURL url = FindBestMatchingIcon(icons, kDefaultIconSize);
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<content::Manifest::Icon> icons;
icons.push_back(CreateIcon("http://foo.com/icon_no1.png", "", sizes));
icons.push_back(CreateIcon("http://foo.com/icon_no2.png", "", sizes));
icons.push_back(CreateIcon("http://foo.com/icon.png", "", sizes));
GURL url = FindBestMatchingIcon(icons, kDefaultIconSize * 3);
EXPECT_EQ("http://foo.com/icon.png", url.spec());
}
}
|