Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(296)

Unified Diff: ui/gfx/path_win_unittest.cc

Issue 673623002: Fix regions generation on windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add more tests. Fix windows without mask. Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/gfx/path_win.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/path_win_unittest.cc
diff --git a/ui/gfx/path_win_unittest.cc b/ui/gfx/path_win_unittest.cc
new file mode 100644
index 0000000000000000000000000000000000000000..d059b1955294fd5b06411796152cfc1aaf87401f
--- /dev/null
+++ b/ui/gfx/path_win_unittest.cc
@@ -0,0 +1,98 @@
+// Copyright 2014 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.
+// Copyright (c) 2014 Yandex LLC. All rights reserved.
+// Author: Aleksandr Derbenev <alex-ac@yandex-team.ru>
Wez 2014/10/23 18:50:05 You'll need to remove this, since you're contribut
alex-ac 2014/10/24 07:05:11 Sorry, It's a copy-paste artifact.
+
+#include "base/win/scoped_gdi_object.h"
+#include "skia/ext/skia_utils_win.h"
+#include "testing/gtest/include/gtest/gtest.h"
+#include "third_party/skia/include/core/SkRRect.h"
+#include "ui/gfx/path.h"
+#include "ui/gfx/path_win.h"
+
+namespace {
+
+std::vector<SkIRect> GetRectsFromHRGN(HRGN region) {
Wez 2014/10/23 18:50:05 nit: for readability, suggest blank line between t
alex-ac 2014/10/24 07:05:11 Done.
+ // Determine the size of output buffer required to receive the region.
+ DWORD bytes_size = GetRegionData(region, 0, NULL);
+ CHECK(bytes_size != 0);
Wez 2014/10/23 18:50:05 CHECK_NE, here and below.
alex-ac 2014/10/24 07:05:11 Done.
+ // Fetch the Windows RECTs that comprise the region.
+ std::vector<char> buffer(bytes_size);;
Wez 2014/10/23 18:50:05 nit: duplicate ;
alex-ac 2014/10/24 07:05:10 Done.
+ LPRGNDATA region_data = reinterpret_cast<LPRGNDATA>(buffer.data());
+ DWORD result = GetRegionData(region, bytes_size, region_data);
+ CHECK(result == bytes_size);
+ // Pull out the rectangles into a SkIRect vector to pass to setRects().
Wez 2014/10/23 18:50:05 nit: ... to return to caller.
alex-ac 2014/10/24 07:05:10 Done.
+ const LPRECT rects = reinterpret_cast<LPRECT>(&region_data->Buffer[0]);
+ std::vector<SkIRect> sk_rects(region_data->rdh.nCount);
+ std::transform(rects, rects + region_data->rdh.nCount,
Wez 2014/10/23 18:50:05 nit: why not rects.begin(), rects.end()?
alex-ac 2014/10/24 07:05:10 'rects' is an array it hasn't got begin() and end(
Wez 2014/10/24 23:07:20 Acknowledged.
+ sk_rects.begin(), skia::RECTToSkIRect);
+ return sk_rects;
+}
+
+} // namespace
+
+// Test that rectangle with round corners stil has _round_ corners after
Wez 2014/10/23 18:50:05 nit: why the _emphasis_ on the second round?
alex-ac 2014/10/24 07:05:11 Done.
+// converting from SkPath to the HRGN.
+// Old implementation of the CreateHRGNFromSkPath operates with polygons and
+// can't make round corners.
Wez 2014/10/23 18:50:05 nit: this comment re old implementation adds nothi
alex-ac 2014/10/24 07:05:10 Done.
+TEST(CreateHRGNFromSkPathTest, RoundCornerTest) {
+ const SkIRect rects[] = {
+ { 17, 0, 33, 1},
+ { 12, 1, 38, 2},
+ { 11, 2, 39, 3},
+ { 9, 3, 41, 4},
+ { 8, 4, 42, 5},
+ { 6, 5, 44, 6},
+ { 5, 6, 45, 8},
+ { 4, 8, 46, 9},
+ { 3, 9, 47, 11},
+ { 2, 11, 48, 12},
+ { 1, 12, 49, 17},
+ { 0, 17, 50, 33},
+ { 1, 33, 49, 38},
+ { 2, 38, 48, 39},
+ { 3, 39, 47, 41},
+ { 4, 41, 46, 42},
+ { 5, 42, 45, 44},
+ { 6, 44, 44, 45},
+ { 8, 45, 42, 46},
+ { 9, 46, 41, 47},
+ { 11, 47, 39, 48},
+ { 12, 48, 38, 49},
+ { 17, 49, 33, 50},
+ };
+
+ gfx::Path path;
+ SkRRect rrect;
+ rrect.setRectXY(SkRect::MakeWH(50, 50), 20, 20);
+ path.addRRect(rrect);
+ base::win::ScopedRegion region(gfx::CreateHRGNFromSkPath(path));
+ const std::vector<SkIRect>& region_rects = GetRectsFromHRGN(region);
+ EXPECT_EQ(arraysize(rects), region_rects.size());
+ for (size_t i = 0; i < arraysize(rects) && i < region_rects.size(); ++i)
+ EXPECT_EQ(rects[i], region_rects[i]);
+}
+
+TEST(CreateHRGNFromSkPathTest, NonContiguousPath) {
Wez 2014/10/23 18:50:05 nit: Include a one-line comment to explain what th
alex-ac 2014/10/24 07:05:10 Done.
+ const SkIRect rects[] = {
+ { 0, 0, 50, 50},
+ { 100, 100, 150, 150},
+ };
+
+ gfx::Path path;
+ for (const SkIRect& rect : rects) {
+ path.addRect(SkRect::Make(rect));
+ }
+ base::win::ScopedRegion region(gfx::CreateHRGNFromSkPath(path));
+ const std::vector<SkIRect>& region_rects = GetRectsFromHRGN(region);
+ EXPECT_EQ(arraysize(rects), region_rects.size());
+ for (size_t i = 0; i < arraysize(rects) && i < region_rects.size(); ++i)
+ EXPECT_EQ(rects[i], region_rects[i]);
+}
+
+TEST(CreateHRGNFromSkPathTest, EmptyPath) {
+ gfx::Path path;
+ EXPECT_EQ(NULL, gfx::CreateHRGNFromSkPath(path));
Wez 2014/10/23 18:50:05 This test is wrong; an empty path should return a
alex-ac 2014/10/24 07:05:10 There are many NonClientFrameView implementations
Wez 2014/10/24 23:07:20 There are only actually four calls to the API, tho
+}
+
« no previous file with comments | « ui/gfx/path_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698