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
|
// Copyright (c) 2006-2008 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 <string>
#include "base/file_util.h"
#include "chrome/browser/view_ids.h"
#include "chrome/common/chrome_constants.h"
#include "chrome/test/automation/constrained_window_proxy.h"
#include "chrome/test/automation/browser_proxy.h"
#include "chrome/test/automation/tab_proxy.h"
#include "chrome/test/automation/window_proxy.h"
#include "chrome/test/ui/ui_test.h"
#include "chrome/views/event.h"
#include "net/base/net_util.h"
class InteractiveConstrainedWindowTest : public UITest {
protected:
InteractiveConstrainedWindowTest() {
show_window_ = true;
}
};
TEST_F(InteractiveConstrainedWindowTest, TestOpenAndResizeTo) {
scoped_ptr<BrowserProxy> browser(automation()->GetBrowserWindow(0));
ASSERT_TRUE(browser.get());
scoped_ptr<WindowProxy> window(
automation()->GetWindowForBrowser(browser.get()));
ASSERT_TRUE(window.get());
scoped_ptr<TabProxy> tab(browser->GetTab(0));
ASSERT_TRUE(tab.get());
std::wstring filename(test_data_directory_);
file_util::AppendToPath(&filename, L"constrained_files");
file_util::AppendToPath(&filename,
L"constrained_window_onload_resizeto.html");
ASSERT_TRUE(tab->NavigateToURL(net::FilePathToFileURL(filename)));
gfx::Rect tab_view_bounds;
ASSERT_TRUE(window->GetViewBounds(VIEW_ID_TAB_CONTAINER,
&tab_view_bounds, true));
// Simulate a click of the actual link to force user_gesture to be
// true; if we don't, the resulting popup will be constrained, which
// isn't what we want to test.
POINT link_point(tab_view_bounds.CenterPoint().ToPOINT());
ASSERT_TRUE(window->SimulateOSClick(link_point,
ChromeViews::Event::EF_LEFT_BUTTON_DOWN));
ASSERT_TRUE(automation()->WaitForWindowCountToBecome(2, 1000));
scoped_ptr<BrowserProxy> popup_browser(automation()->GetBrowserWindow(1));
scoped_ptr<WindowProxy> popup_window(
automation()->GetWindowForBrowser(popup_browser.get()));
// Make sure we were created with the correct width and height.
gfx::Rect rect;
bool is_timeout = false;
ASSERT_TRUE(popup_window->GetViewBoundsWithTimeout(
VIEW_ID_TAB_CONTAINER, &rect, false, 1000, &is_timeout));
ASSERT_FALSE(is_timeout);
ASSERT_EQ(rect.width(), 300);
ASSERT_EQ(rect.height(), 320);
// Send a click to the popup window to test resizeTo.
ASSERT_TRUE(popup_window->GetViewBounds(VIEW_ID_TAB_CONTAINER,
&tab_view_bounds, true));
POINT popup_link_point(tab_view_bounds.CenterPoint().ToPOINT());
ASSERT_TRUE(popup_window->SimulateOSClick(
popup_link_point, ChromeViews::Event::EF_LEFT_BUTTON_DOWN));
// No idea how to wait here other then sleeping. This timeout used to be lower,
// then we started hitting it before it was done. :(
Sleep(5000);
// The actual content will be LESS than (200, 200) because resizeTo
// deals with a window's outer{Width,Height} instead of its
// inner{Width,Height}.
is_timeout = false;
ASSERT_TRUE(popup_window->GetViewBoundsWithTimeout(
VIEW_ID_TAB_CONTAINER, &rect, false, 1000, &is_timeout));
ASSERT_FALSE(is_timeout);
ASSERT_LT(rect.width(), 200);
ASSERT_LT(rect.height(), 200);
}
|