blob: bd527d69e75dcb5dea2ec418d23087288877d80b (
plain)
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
|
// 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 "base/file_util.h"
#include "chrome/browser/automation/url_request_mock_http_job.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/test/automation/browser_proxy.h"
#include "chrome/test/ui/ui_test.h"
#include "net/url_request/url_request_unittest.h"
class UnloadTest : public UITest {
public:
void CheckTitle(const std::wstring& expected_title) {
const int kCheckDelayMs = 100;
int max_wait_time = 5000;
while (max_wait_time > 0) {
max_wait_time -= kCheckDelayMs;
Sleep(kCheckDelayMs);
if (expected_title == GetActiveTabTitle())
break;
}
EXPECT_EQ(expected_title, GetActiveTabTitle());
}
void NavigateToUnloadFileUsingTestServer(const std::wstring& test_filename,
const std::wstring& expected_title) {
const wchar_t kDocRoot[] = L"chrome/test/data";
TestServer server(kDocRoot);
std::wstring test_file = L"files/unload/";
file_util::AppendToPath(&test_file, test_filename);
GURL url(server.TestServerPageW(test_file));
NavigateToURL(url);
CheckTitle(expected_title);
}
void NavigateToNolistenersFileTwice() {
NavigateToURL(
URLRequestMockHTTPJob::GetMockUrl(L"unload/nolisteners.html"));
CheckTitle(L"nolisteners");
NavigateToURL(
URLRequestMockHTTPJob::GetMockUrl(L"unload/nolisteners.html"));
CheckTitle(L"nolisteners");
}
void NavigateToNolistenersFileTwiceAsync() {
// TODO(ojan): We hit a DCHECK in RenderViewHost::OnMsgShouldCloseACK
// if we don't sleep here.
Sleep(400);
NavigateToURLAsync(
URLRequestMockHTTPJob::GetMockUrl(L"unload/nolisteners.html"));
Sleep(400);
NavigateToURLAsync(
URLRequestMockHTTPJob::GetMockUrl(L"unload/nolisteners.html"));
Sleep(2000);
CheckTitle(L"nolisteners");
}
};
// Navigate to a page with an infinite unload handler.
// Then two two async crosssite requests to ensure
// we don't get confused and think we're closing the tab.
TEST_F(UnloadTest, CrossSiteInfiniteUnloadAsync) {
// Tests makes no sense in single-process mode since the renderer is hung.
if (CommandLine().HasSwitch(switches::kSingleProcess))
return;
NavigateToUnloadFileUsingTestServer(L"unloadlooping.html", L"unloadlooping");
NavigateToNolistenersFileTwiceAsync();
ASSERT_TRUE(IsBrowserRunning());
}
// Navigate to a page with an infinite unload handler.
// Then two two sync crosssite requests to ensure
// we correctly nav to each one.
TEST_F(UnloadTest, CrossSiteInfiniteUnloadSync) {
// Tests makes no sense in single-process mode since the renderer is hung.
if (CommandLine().HasSwitch(switches::kSingleProcess))
return;
NavigateToUnloadFileUsingTestServer(L"unloadlooping.html", L"unloadlooping");
NavigateToNolistenersFileTwice();
ASSERT_TRUE(IsBrowserRunning());
}
// Navigate to a page with an infinite beforeunload handler.
// Then two two async crosssite requests to ensure
// we don't get confused and think we're closing the tab.
TEST_F(UnloadTest, CrossSiteInfiniteBeforeUnloadAsync) {
// Tests makes no sense in single-process mode since the renderer is hung.
if (CommandLine().HasSwitch(switches::kSingleProcess))
return;
NavigateToUnloadFileUsingTestServer(L"beforeunloadlooping.html",
L"beforeunloadlooping");
NavigateToNolistenersFileTwiceAsync();
ASSERT_TRUE(IsBrowserRunning());
}
// Navigate to a page with an infinite beforeunload handler.
// Then two two sync crosssite requests to ensure
// we correctly nav to each one.
TEST_F(UnloadTest, CrossSiteInfiniteBeforeUnloadSync) {
// Tests makes no sense in single-process mode since the renderer is hung.
if (CommandLine().HasSwitch(switches::kSingleProcess))
return;
NavigateToUnloadFileUsingTestServer(L"beforeunloadlooping.html",
L"beforeunloadlooping");
NavigateToNolistenersFileTwice();
ASSERT_TRUE(IsBrowserRunning());
}
|