blob: db587ffc888d61351782b77e90d1b65be62286ef (
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
|
// 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 "chrome/renderer/content_settings_observer.h"
#include "chrome/common/url_constants.h"
#include "content/public/common/url_constants.h"
#include "googleurl/src/gurl.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityOrigin.h"
using WebKit::WebSecurityOrigin;
typedef testing::Test ContentSettingsObserverTest;
TEST_F(ContentSettingsObserverTest, WhitelistedSchemes) {
std::string end_url = ":something";
GURL chrome_ui_url =
GURL(std::string(chrome::kChromeUIScheme).append(end_url));
EXPECT_TRUE(ContentSettingsObserver::IsWhitelistedForContentSettings(
WebSecurityOrigin::create(chrome_ui_url),
GURL()));
GURL chrome_dev_tools_url =
GURL(std::string(chrome::kChromeDevToolsScheme).append(end_url));
EXPECT_TRUE(ContentSettingsObserver::IsWhitelistedForContentSettings(
WebSecurityOrigin::create(chrome_dev_tools_url),
GURL()));
GURL extension_url =
GURL(std::string(chrome::kExtensionScheme).append(end_url));
EXPECT_TRUE(ContentSettingsObserver::IsWhitelistedForContentSettings(
WebSecurityOrigin::create(extension_url),
GURL()));
GURL chrome_internal_url =
GURL(std::string(chrome::kChromeInternalScheme).append(end_url));
EXPECT_TRUE(ContentSettingsObserver::IsWhitelistedForContentSettings(
WebSecurityOrigin::create(chrome_internal_url),
GURL()));
GURL file_url("file:///dir/");
EXPECT_TRUE(ContentSettingsObserver::IsWhitelistedForContentSettings(
WebSecurityOrigin::create(file_url),
GURL("file:///dir/")));
EXPECT_FALSE(ContentSettingsObserver::IsWhitelistedForContentSettings(
WebSecurityOrigin::create(file_url),
GURL("file:///dir/file")));
GURL ftp_url("ftp:///dir/");
EXPECT_TRUE(ContentSettingsObserver::IsWhitelistedForContentSettings(
WebSecurityOrigin::create(ftp_url),
GURL("ftp:///dir/")));
EXPECT_FALSE(ContentSettingsObserver::IsWhitelistedForContentSettings(
WebSecurityOrigin::create(ftp_url),
GURL("ftp:///dir/file")));
GURL http_url =
GURL("http://server.com/path");
EXPECT_FALSE(ContentSettingsObserver::IsWhitelistedForContentSettings(
WebSecurityOrigin::create(http_url),
GURL()));
}
|