blob: f20a1a2b7903d657d820aab6823167683e5b2dea (
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
|
// Copyright (c) 2010 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/common/content_settings_helper.h"
#include "base/utf_string_conversions.h"
#include "googleurl/src/gurl.h"
#include "testing/gtest/include/gtest/gtest.h"
TEST(ContentSettingsHelperTest, OriginToString16) {
// Urls with "http":
const GURL kUrl0("http://www.foo.com/bar");
const GURL kUrl1("http://foo.com/bar");
const GURL kUrl2("http://www.foo.com:81/bar");
const GURL kUrl3("http://foo.com:81/bar");
// Urls with "https":
const GURL kUrl4("https://www.foo.com/bar");
const GURL kUrl5("https://foo.com/bar");
const GURL kUrl6("https://www.foo.com:81/bar");
const GURL kUrl7("https://foo.com:81/bar");
// Now check the first group of urls with just "http":
EXPECT_EQ(ASCIIToUTF16("www.foo.com"),
content_settings_helper::OriginToString16(kUrl0));
EXPECT_EQ(ASCIIToUTF16("foo.com"),
content_settings_helper::OriginToString16(kUrl1));
EXPECT_EQ(ASCIIToUTF16("www.foo.com:81"),
content_settings_helper::OriginToString16(kUrl2));
EXPECT_EQ(ASCIIToUTF16("foo.com:81"),
content_settings_helper::OriginToString16(kUrl3));
// Now check the second group of urls with "https":
EXPECT_EQ(ASCIIToUTF16("https://www.foo.com"),
content_settings_helper::OriginToString16(kUrl4));
EXPECT_EQ(ASCIIToUTF16("https://foo.com"),
content_settings_helper::OriginToString16(kUrl5));
EXPECT_EQ(ASCIIToUTF16("https://www.foo.com:81"),
content_settings_helper::OriginToString16(kUrl6));
EXPECT_EQ(ASCIIToUTF16("https://foo.com:81"),
content_settings_helper::OriginToString16(kUrl7));
}
|