[email protected] | f9526d1 | 2012-10-18 01:55:03 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #include "content/renderer/disambiguation_popup_helper.h" |
| 6 | |
| 7 | #include "testing/gtest/include/gtest/gtest.h" |
[email protected] | 5c30b5e0 | 2013-05-30 03:46:08 | [diff] [blame] | 8 | #include "third_party/WebKit/public/platform/WebRect.h" |
| 9 | #include "third_party/WebKit/public/platform/WebVector.h" |
tfarina | 3b0452d | 2014-12-31 15:20:09 | [diff] [blame] | 10 | #include "ui/gfx/geometry/rect.h" |
tfarina | ebe974f0 | 2015-01-03 04:25:32 | [diff] [blame] | 11 | #include "ui/gfx/geometry/size.h" |
| 12 | #include "ui/gfx/geometry/size_conversions.h" |
[email protected] | f9526d1 | 2012-10-18 01:55:03 | [diff] [blame] | 13 | |
| 14 | // these constants are copied from the implementation class |
| 15 | namespace { |
| 16 | const float kDisambiguationPopupMaxScale = 5.0; |
| 17 | const float kDisambiguationPopupMinScale = 2.0; |
[email protected] | 0a8d4275e | 2013-01-04 22:21:26 | [diff] [blame] | 18 | } // unnamed namespace |
[email protected] | f9526d1 | 2012-10-18 01:55:03 | [diff] [blame] | 19 | |
| 20 | namespace content { |
| 21 | |
| 22 | class DisambiguationPopupHelperUnittest : public testing::Test { |
| 23 | public: |
| 24 | DisambiguationPopupHelperUnittest() |
[email protected] | 70221f0 | 2013-01-31 22:17:07 | [diff] [blame] | 25 | : kScreenSize_(640, 480) |
| 26 | , kVisibleContentSize_(640, 480) |
| 27 | , kImplScale_(1) { } |
[email protected] | f9526d1 | 2012-10-18 01:55:03 | [diff] [blame] | 28 | protected: |
[email protected] | 70221f0 | 2013-01-31 22:17:07 | [diff] [blame] | 29 | const gfx::Size kScreenSize_; |
| 30 | const gfx::Size kVisibleContentSize_; |
| 31 | const float kImplScale_; |
[email protected] | f9526d1 | 2012-10-18 01:55:03 | [diff] [blame] | 32 | }; |
| 33 | |
| 34 | TEST_F(DisambiguationPopupHelperUnittest, ClipByViewport) { |
| 35 | gfx::Rect tap_rect(1000, 1000, 10, 10); |
[email protected] | 180ef24 | 2013-11-07 06:50:46 | [diff] [blame] | 36 | blink::WebVector<blink::WebRect> target_rects(static_cast<size_t>(1)); |
[email protected] | f9526d1 | 2012-10-18 01:55:03 | [diff] [blame] | 37 | target_rects[0] = gfx::Rect(-20, -20, 10, 10); |
| 38 | |
| 39 | gfx::Rect zoom_rect; |
| 40 | float scale = DisambiguationPopupHelper::ComputeZoomAreaAndScaleFactor( |
[email protected] | 70221f0 | 2013-01-31 22:17:07 | [diff] [blame] | 41 | tap_rect, target_rects, kScreenSize_, kVisibleContentSize_, kImplScale_, |
| 42 | &zoom_rect); |
[email protected] | f9526d1 | 2012-10-18 01:55:03 | [diff] [blame] | 43 | |
[email protected] | 70221f0 | 2013-01-31 22:17:07 | [diff] [blame] | 44 | EXPECT_TRUE(gfx::Rect(kVisibleContentSize_).Contains(zoom_rect)); |
[email protected] | f9526d1 | 2012-10-18 01:55:03 | [diff] [blame] | 45 | EXPECT_LE(kDisambiguationPopupMinScale, scale); |
| 46 | |
[email protected] | 01a15a7 | 2012-11-10 09:34:28 | [diff] [blame] | 47 | gfx::Size scaled_size = ToCeiledSize(ScaleSize(zoom_rect.size(), scale)); |
[email protected] | 70221f0 | 2013-01-31 22:17:07 | [diff] [blame] | 48 | EXPECT_TRUE(gfx::Rect(kScreenSize_).Contains(gfx::Rect(scaled_size))); |
[email protected] | f9526d1 | 2012-10-18 01:55:03 | [diff] [blame] | 49 | } |
| 50 | |
| 51 | TEST_F(DisambiguationPopupHelperUnittest, MiniTarget) { |
| 52 | gfx::Rect tap_rect(-5, -5, 20, 20); |
[email protected] | 180ef24 | 2013-11-07 06:50:46 | [diff] [blame] | 53 | blink::WebVector<blink::WebRect> target_rects(static_cast<size_t>(1)); |
[email protected] | f9526d1 | 2012-10-18 01:55:03 | [diff] [blame] | 54 | target_rects[0] = gfx::Rect(10, 10, 1, 1); |
| 55 | |
| 56 | gfx::Rect zoom_rect; |
| 57 | float scale = DisambiguationPopupHelper::ComputeZoomAreaAndScaleFactor( |
[email protected] | 70221f0 | 2013-01-31 22:17:07 | [diff] [blame] | 58 | tap_rect, target_rects, kScreenSize_, kVisibleContentSize_, kImplScale_, |
| 59 | &zoom_rect); |
[email protected] | f9526d1 | 2012-10-18 01:55:03 | [diff] [blame] | 60 | |
[email protected] | 70221f0 | 2013-01-31 22:17:07 | [diff] [blame] | 61 | EXPECT_TRUE(gfx::Rect(kVisibleContentSize_).Contains(zoom_rect)); |
[email protected] | f9526d1 | 2012-10-18 01:55:03 | [diff] [blame] | 62 | EXPECT_EQ(kDisambiguationPopupMaxScale, scale); |
| 63 | EXPECT_TRUE(zoom_rect.Contains(target_rects[0])); |
| 64 | |
[email protected] | 01a15a7 | 2012-11-10 09:34:28 | [diff] [blame] | 65 | gfx::Size scaled_size = ToCeiledSize(ScaleSize(zoom_rect.size(), scale)); |
[email protected] | 70221f0 | 2013-01-31 22:17:07 | [diff] [blame] | 66 | EXPECT_TRUE(gfx::Rect(kScreenSize_).Contains(gfx::Rect(scaled_size))); |
[email protected] | f9526d1 | 2012-10-18 01:55:03 | [diff] [blame] | 67 | } |
| 68 | |
| 69 | TEST_F(DisambiguationPopupHelperUnittest, LongLinks) { |
| 70 | gfx::Rect tap_rect(10, 10, 20, 20); |
[email protected] | 180ef24 | 2013-11-07 06:50:46 | [diff] [blame] | 71 | blink::WebVector<blink::WebRect> target_rects(static_cast<size_t>(2)); |
[email protected] | f9526d1 | 2012-10-18 01:55:03 | [diff] [blame] | 72 | target_rects[0] = gfx::Rect(15, 15, 1000, 5); |
| 73 | target_rects[1] = gfx::Rect(15, 25, 1000, 5); |
| 74 | |
| 75 | gfx::Rect zoom_rect; |
| 76 | float scale = DisambiguationPopupHelper::ComputeZoomAreaAndScaleFactor( |
[email protected] | 70221f0 | 2013-01-31 22:17:07 | [diff] [blame] | 77 | tap_rect, target_rects, kScreenSize_, kVisibleContentSize_, kImplScale_, |
| 78 | &zoom_rect); |
[email protected] | f9526d1 | 2012-10-18 01:55:03 | [diff] [blame] | 79 | |
[email protected] | 70221f0 | 2013-01-31 22:17:07 | [diff] [blame] | 80 | EXPECT_TRUE(gfx::Rect(kVisibleContentSize_).Contains(zoom_rect)); |
[email protected] | f9526d1 | 2012-10-18 01:55:03 | [diff] [blame] | 81 | EXPECT_EQ(kDisambiguationPopupMaxScale, scale); |
| 82 | EXPECT_TRUE(zoom_rect.Contains(tap_rect)); |
| 83 | |
[email protected] | 01a15a7 | 2012-11-10 09:34:28 | [diff] [blame] | 84 | gfx::Size scaled_size = ToCeiledSize(ScaleSize(zoom_rect.size(), scale)); |
[email protected] | 70221f0 | 2013-01-31 22:17:07 | [diff] [blame] | 85 | EXPECT_TRUE(gfx::Rect(kScreenSize_).Contains(gfx::Rect(scaled_size))); |
[email protected] | f9526d1 | 2012-10-18 01:55:03 | [diff] [blame] | 86 | } |
| 87 | |
[email protected] | 0a8d4275e | 2013-01-04 22:21:26 | [diff] [blame] | 88 | } // namespace content |