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
|
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/safe_browsing/content/common/visual_utils.h"
#include <array>
#include "base/containers/span.h"
#include "base/test/scoped_feature_list.h"
#include "base/test/test_discardable_memory_allocator.h"
#include "components/safe_browsing/core/common/features.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/skia/include/core/SkColorSpace.h"
#include "third_party/skia/include/private/chromium/SkPMColor.h"
namespace safe_browsing::visual_utils {
namespace {
const SkPMColor kSkPMRed = SkPMColorSetARGB(255, 255, 0, 0);
const SkPMColor kSkPMGreen = SkPMColorSetARGB(255, 0, 255, 0);
const SkPMColor kSkPMBlue = SkPMColorSetARGB(255, 0, 0, 255);
} // namespace
using ::testing::FloatEq;
class VisualUtilsTest : public testing::Test {
protected:
void SetUp() override {
base::DiscardableMemoryAllocator::SetInstance(&test_allocator_);
sk_sp<SkColorSpace> rec2020 = SkColorSpace::MakeRGB(
{2.22222f, 0.909672f, 0.0903276f, 0.222222f, 0.0812429f, 0, 0},
SkNamedGamut::kRec2020);
SkImageInfo bitmap_info = SkImageInfo::MakeN32(
1000, 1000, SkAlphaType::kUnpremul_SkAlphaType, rec2020);
ASSERT_TRUE(bitmap_.tryAllocPixels(bitmap_info));
}
void TearDown() override {
base::DiscardableMemoryAllocator::SetInstance(nullptr);
}
void ExpectPixel(base::span<const unsigned char> pixel,
const VisualFeatures::BlurredImage& image,
size_t row,
size_t col) {
ASSERT_LT(static_cast<int>(row), image.height());
ASSERT_LT(static_cast<int>(col), image.width());
EXPECT_EQ(pixel[0], static_cast<unsigned char>(
image.data()[3 * row * image.width() + 3 * col]))
<< "R component of pixel at row " << row << " and column " << col
<< " is incorrect.";
EXPECT_EQ(pixel[1],
static_cast<unsigned char>(
image.data()[3 * row * image.width() + 3 * col + 1]))
<< "G component of pixel at row " << row << " and column " << col
<< " is incorrect.";
EXPECT_EQ(pixel[2],
static_cast<unsigned char>(
image.data()[3 * row * image.width() + 3 * col + 2]))
<< "B component of pixel at row " << row << " and column " << col
<< " is incorrect.";
}
// A test bitmap to work with. Initialized to be 1000x1000 in the Rec 2020
// color space.
SkBitmap bitmap_;
private:
// A DiscardableMemoryAllocator is needed for certain Skia operations.
base::TestDiscardableMemoryAllocator test_allocator_;
};
TEST_F(VisualUtilsTest, BlurImageWhite) {
VisualFeatures::BlurredImage blurred;
// Draw white over the image
bitmap_.erase(SK_ColorWHITE, SkIRect::MakeXYWH(0, 0, 1000, 1000));
ASSERT_TRUE(GetBlurredImage(bitmap_, &blurred));
constexpr std::array<const unsigned char, 3> kWhite = {0xff, 0xff, 0xff};
#if BUILDFLAG(IS_ANDROID)
ASSERT_EQ(18, blurred.width());
ASSERT_EQ(32, blurred.height());
ASSERT_EQ(3u * 18u * 32u, blurred.data().size());
for (size_t i = 0; i < 32u; i++) {
for (size_t j = 0; i < 18u; i++) {
ExpectPixel(kWhite, blurred, i, j);
}
}
#else
ASSERT_EQ(48, blurred.width());
ASSERT_EQ(48, blurred.height());
ASSERT_EQ(3u * 48u * 48u, blurred.data().size());
for (size_t i = 0; i < 48u; i++) {
for (size_t j = 0; i < 48u; i++) {
ExpectPixel(kWhite, blurred, i, j);
}
}
#endif
}
TEST_F(VisualUtilsTest, BlurImageRed) {
VisualFeatures::BlurredImage blurred;
// Draw red over the image.
for (int x = 0; x < 1000; x++)
for (int y = 0; y < 1000; y++)
*bitmap_.getAddr32(x, y) = kSkPMRed;
ASSERT_TRUE(GetBlurredImage(bitmap_, &blurred));
constexpr std::array<const unsigned char, 3> kRed = {0xff, 0x00, 0x00};
#if BUILDFLAG(IS_ANDROID)
ASSERT_EQ(18, blurred.width());
ASSERT_EQ(32, blurred.height());
ASSERT_EQ(3u * 18u * 32u, blurred.data().size());
for (size_t i = 0; i < 32u; i++) {
for (size_t j = 0; i < 18u; i++) {
ExpectPixel(kRed, blurred, i, j);
}
}
#else
ASSERT_EQ(48, blurred.width());
ASSERT_EQ(48, blurred.height());
ASSERT_EQ(3u * 48u * 48u, blurred.data().size());
for (size_t i = 0; i < 48u; i++) {
for (size_t j = 0; i < 48u; i++) {
ExpectPixel(kRed, blurred, i, j);
}
}
#endif
}
TEST_F(VisualUtilsTest, BlurImageHalfWhiteHalfBlack) {
VisualFeatures::BlurredImage blurred;
// Draw black over half the image.
bitmap_.erase(SK_ColorBLACK, SkIRect::MakeXYWH(0, 0, 1000, 500));
// Draw white over half the image
bitmap_.erase(SK_ColorWHITE, SkIRect::MakeXYWH(0, 500, 1000, 1000));
ASSERT_TRUE(GetBlurredImage(bitmap_, &blurred));
constexpr std::array<const unsigned char, 3> kBlack = {0x00, 0x00, 0x00};
constexpr std::array<const unsigned char, 3> kWhite = {0xff, 0xff, 0xff};
#if BUILDFLAG(IS_ANDROID)
ASSERT_EQ(18, blurred.width());
ASSERT_EQ(32, blurred.height());
ASSERT_EQ(3u * 18u * 32u, blurred.data().size());
// The middle blocks may have been blurred to something between white and
// black, so only verify the first 14 and last 14 rows.
for (size_t i = 0; i < 14u; i++) {
for (size_t j = 0; j < 18u; j++) {
ExpectPixel(kBlack, blurred, i, j);
}
}
for (size_t i = 18u; i < 32u; i++) {
for (size_t j = 0; j < 18u; j++) {
ExpectPixel(kWhite, blurred, i, j);
}
}
#else
ASSERT_EQ(48, blurred.width());
ASSERT_EQ(48, blurred.height());
ASSERT_EQ(3u * 48u * 48u, blurred.data().size());
// The middle blocks may have been blurred to something between white and
// black, so only verify the first 22 and last 22 rows.
for (size_t i = 0; i < 22u; i++) {
for (size_t j = 0; j < 48u; j++) {
ExpectPixel(kBlack, blurred, i, j);
}
}
for (size_t i = 26u; i < 48u; i++) {
for (size_t j = 0; j < 48u; j++) {
ExpectPixel(kWhite, blurred, i, j);
}
}
#endif
}
TEST_F(VisualUtilsTest, BlockMeanAverageOneBlock) {
// Draw black over half the image.
bitmap_.erase(SK_ColorBLACK, SkIRect::MakeXYWH(0, 0, 1000, 500));
// Draw white over half the image
bitmap_.erase(SK_ColorWHITE, SkIRect::MakeXYWH(0, 500, 1000, 1000));
std::unique_ptr<SkBitmap> blocks = BlockMeanAverage(bitmap_, 1000);
ASSERT_EQ(1, blocks->width());
ASSERT_EQ(1, blocks->height());
EXPECT_EQ(blocks->getColor(0, 0), SkColorSetRGB(127, 127, 127));
}
TEST_F(VisualUtilsTest, BlockMeanAveragePartialBlocks) {
// Draw a white, red, green, and blue box with the expected block sizes.
bitmap_.erase(SK_ColorWHITE, SkIRect::MakeXYWH(0, 0, 600, 600));
for (int x = 600; x < 1000; x++)
for (int y = 0; y < 600; y++)
*bitmap_.getAddr32(x, y) = kSkPMRed;
for (int x = 0; x < 600; x++)
for (int y = 600; y < 1000; y++)
*bitmap_.getAddr32(x, y) = kSkPMGreen;
for (int x = 600; x < 1000; x++)
for (int y = 600; y < 1000; y++)
*bitmap_.getAddr32(x, y) = kSkPMBlue;
std::unique_ptr<SkBitmap> blocks = BlockMeanAverage(bitmap_, 600);
ASSERT_EQ(2, blocks->width());
ASSERT_EQ(2, blocks->height());
EXPECT_EQ(blocks->getColor(0, 0), SK_ColorWHITE);
EXPECT_EQ(*blocks->getAddr32(1, 0), kSkPMRed);
EXPECT_EQ(*blocks->getAddr32(0, 1), kSkPMGreen);
EXPECT_EQ(*blocks->getAddr32(1, 1), kSkPMBlue);
}
TEST_F(VisualUtilsTest, NonSquareBlurredImage) {
base::test::ScopedFeatureList feature_list;
feature_list.InitAndEnableFeatureWithParameters(
kVisualFeaturesSizes, {{"phash_width", "108"}, {"phash_height", "192"}});
VisualFeatures::BlurredImage blurred;
// Draw white over the image
bitmap_.erase(SK_ColorWHITE, SkIRect::MakeXYWH(0, 0, 1000, 1000));
ASSERT_TRUE(GetBlurredImage(bitmap_, &blurred));
ASSERT_EQ(18, blurred.width());
ASSERT_EQ(32, blurred.height());
ASSERT_EQ(3u * 18u * 32u, blurred.data().size());
for (size_t i = 0; i < 18u * 32u; i++) {
EXPECT_EQ('\xff', blurred.data()[3 * i]);
EXPECT_EQ('\xff', blurred.data()[3 * i + 1]);
EXPECT_EQ('\xff', blurred.data()[3 * i + 2]);
}
}
} // namespace safe_browsing::visual_utils
|