summaryrefslogtreecommitdiffstats
path: root/chrome/browser/browser_about_handler_unittest.cc
blob: 9b305509eabd53b7e1318776c195aec09a127864 (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
120
// Copyright (c) 2011 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/basictypes.h"
#include "base/memory/scoped_ptr.h"
#include "chrome/browser/browser_about_handler.h"
#include "chrome/common/about_handler.h"
#include "chrome/common/url_constants.h"
#include "chrome/test/testing_browser_process_test.h"
#include "chrome/test/testing_profile.h"
#include "content/browser/browser_thread.h"
#include "googleurl/src/gurl.h"
#include "testing/gtest/include/gtest/gtest.h"

typedef TestingBrowserProcessTest BrowserAboutHandlerTest;

TEST_F(BrowserAboutHandlerTest, WillHandleBrowserAboutURL) {
  struct AboutURLTestData {
    GURL test_url;
    GURL result_url;
    bool about_handled;
    bool browser_handled;
  } test_data[] = {
      {
        GURL("http://google.com"),
        GURL("http://google.com"),
        false,
        false
      },
      {
        GURL(chrome::kAboutBlankURL),
        GURL(chrome::kAboutBlankURL),
        false,
        false
      },
      {
        GURL(std::string(chrome::kAboutCacheURL) + "/mercury"),
        GURL(std::string(chrome::kNetworkViewCacheURL) + "mercury"),
        false,
        true
      },
      {
        GURL(std::string(chrome::kAboutNetInternalsURL) + "/venus"),
        GURL(std::string(chrome::kNetworkViewInternalsURL) + "venus"),
        false,
        true
      },
      {
        GURL(std::string(chrome::kAboutGpuURL) + "/jupiter"),
        GURL(std::string(chrome::kGpuInternalsURL) + "jupiter"),
        false,
        true
      },
      {
        GURL(std::string(chrome::kAboutAppCacheInternalsURL) + "/earth"),
        GURL(std::string(chrome::kAppCacheViewInternalsURL) + "earth"),
        false,
        true
      },
      {
        GURL(chrome::kAboutPluginsURL),
        GURL(chrome::kChromeUIPluginsURL),
        false,
        true
      },
      {
        GURL(chrome::kAboutCrashURL),
        GURL(chrome::kAboutCrashURL),
        true,
        false
      },
      {
        GURL(chrome::kAboutKillURL),
        GURL(chrome::kAboutKillURL),
        true,
        false
      },
      {
        GURL(chrome::kAboutHangURL),
        GURL(chrome::kAboutHangURL),
        true,
        false
      },
      {
        GURL(chrome::kAboutShorthangURL),
        GURL(chrome::kAboutShorthangURL),
        true,
        false
      },
      {
        GURL("about:memory"),
        GURL("chrome://about/memory-redirect"),
        false,
        true
      },
      {
        GURL("about:mars"),
        GURL("chrome://about/mars"),
        false,
        true
      },
  };
  MessageLoopForUI message_loop;
  BrowserThread ui_thread(BrowserThread::UI, &message_loop);
  TestingProfile profile;

  for (size_t i = 0; i < ARRAYSIZE_UNSAFE(test_data); ++i) {
    GURL url(test_data[i].test_url);
    EXPECT_EQ(test_data[i].about_handled,
              chrome_about_handler::WillHandle(url));
    EXPECT_EQ(test_data[i].browser_handled,
              WillHandleBrowserAboutURL(&url, &profile));
    EXPECT_EQ(test_data[i].result_url, url);
  }

  // Crash the browser process for about:inducebrowsercrashforrealz.
  GURL url(chrome::kAboutBrowserCrash);
  EXPECT_DEATH(WillHandleBrowserAboutURL(&url, NULL), "");
}