| // 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)); |
| } |