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
|
// Copyright (c) 2009 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/message_loop.h"
#include "chrome/browser/browser.h"
#include "chrome/browser/renderer_host/render_process_host.h"
#include "chrome/browser/renderer_host/web_cache_manager.h"
#include "chrome/browser/tab_contents/tab_contents.h"
#include "chrome/test/in_process_browser_test.h"
#include "chrome/test/ui_test_utils.h"
#include "testing/gtest/include/gtest/gtest.h"
class WebCacheManagerBrowserTest : public InProcessBrowserTest {
};
// Regression test for http://crbug.com/12362. If a renderer crashes and the
// user navigates to another tab and back, the browser doesn't crash.
// TODO(jam): http://crbug.com/15288 disabled because it fails on the build bot.
IN_PROC_BROWSER_TEST_F(WebCacheManagerBrowserTest, DISABLED_CrashOnceOnly) {
GURL url(ui_test_utils::GetTestUrl(L"google", L"google.html"));
ui_test_utils::NavigateToURL(browser(), url);
browser()->NewTab();
ui_test_utils::NavigateToURL(browser(), url);
TabContents* tab = browser()->GetTabContentsAt(0);
ASSERT_TRUE(tab != NULL);
base::KillProcess(
tab->process()->GetHandle(), base::PROCESS_END_KILLED_BY_USER, true);
browser()->SelectTabContentsAt(0, true);
browser()->NewTab();
ui_test_utils::NavigateToURL(browser(), url);
browser()->SelectTabContentsAt(0, true);
browser()->NewTab();
ui_test_utils::NavigateToURL(browser(), url);
// We would have crashed at the above line with the bug.
browser()->SelectTabContentsAt(0, true);
browser()->CloseTab();
browser()->SelectTabContentsAt(0, true);
browser()->CloseTab();
browser()->SelectTabContentsAt(0, true);
browser()->CloseTab();
ui_test_utils::NavigateToURL(browser(), url);
EXPECT_EQ(
WebCacheManager::GetInstance()->active_renderers_.size(), 1U);
EXPECT_EQ(
WebCacheManager::GetInstance()->inactive_renderers_.size(), 0U);
EXPECT_EQ(
WebCacheManager::GetInstance()->stats_.size(), 1U);
}
|