OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
| 5 #include "base/macros.h" |
| 6 #include "chrome/browser/extensions/api/content_settings/content_settings_helper
s.h" |
5 #include "testing/gtest/include/gtest/gtest.h" | 7 #include "testing/gtest/include/gtest/gtest.h" |
6 | 8 |
7 #include "chrome/browser/extensions/api/content_settings/content_settings_helper
s.h" | |
8 | |
9 namespace extensions { | 9 namespace extensions { |
10 namespace helpers = content_settings_helpers; | 10 namespace helpers = content_settings_helpers; |
11 | 11 |
12 TEST(ExtensionContentSettingsHelpersTest, ParseExtensionPattern) { | 12 TEST(ExtensionContentSettingsHelpersTest, ParseExtensionPattern) { |
13 const struct { | 13 const struct { |
14 const char* extension_pattern; | 14 const char* extension_pattern; |
15 const char* content_settings_pattern; | 15 const char* content_settings_pattern; |
16 } kTestPatterns[] = { | 16 } kTestPatterns[] = { |
17 { "<all_urls>", "*" }, | 17 { "<all_urls>", "*" }, |
18 { "*://*.google.com/*", "[*.]google.com" }, | 18 { "*://*.google.com/*", "[*.]google.com" }, |
(...skipping 25 matching lines...) Expand all Loading... |
44 ContentSettingsPattern pattern = helpers::ParseExtensionPattern( | 44 ContentSettingsPattern pattern = helpers::ParseExtensionPattern( |
45 kInvalidTestPatterns[i].extension_pattern, &error); | 45 kInvalidTestPatterns[i].extension_pattern, &error); |
46 EXPECT_FALSE(pattern.IsValid()); | 46 EXPECT_FALSE(pattern.IsValid()); |
47 EXPECT_EQ(kInvalidTestPatterns[i].expected_error, error) | 47 EXPECT_EQ(kInvalidTestPatterns[i].expected_error, error) |
48 << "Unexpected error parsing " | 48 << "Unexpected error parsing " |
49 << kInvalidTestPatterns[i].extension_pattern; | 49 << kInvalidTestPatterns[i].extension_pattern; |
50 } | 50 } |
51 } | 51 } |
52 | 52 |
53 } // namespace extensions | 53 } // namespace extensions |
OLD | NEW |