| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/values.h" | 5 #include "base/values.h" |
| 6 #include "chrome/browser/extensions/extension_special_storage_policy.h" | 6 #include "chrome/browser/extensions/extension_special_storage_policy.h" |
| 7 #include "chrome/common/extensions/extension.h" | 7 #include "chrome/common/extensions/extension.h" |
| 8 #include "chrome/common/extensions/extension_constants.h" | 8 #include "chrome/common/extensions/extension_constants.h" |
| 9 #include "testing/gtest/include/gtest/gtest.h" | 9 #include "testing/gtest/include/gtest/gtest.h" |
| 10 | 10 |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 list->Append(Value::CreateStringValue("http://explicit/unlimited")); | 51 list->Append(Value::CreateStringValue("http://explicit/unlimited")); |
| 52 list->Append(Value::CreateStringValue("*://*.wildcards/unlimited")); | 52 list->Append(Value::CreateStringValue("*://*.wildcards/unlimited")); |
| 53 manifest.Set(keys::kWebURLs, list); | 53 manifest.Set(keys::kWebURLs, list); |
| 54 std::string error; | 54 std::string error; |
| 55 scoped_refptr<Extension> unlimited_app = Extension::Create( | 55 scoped_refptr<Extension> unlimited_app = Extension::Create( |
| 56 path, Extension::INVALID, manifest, Extension::STRICT_ERROR_CHECKS, | 56 path, Extension::INVALID, manifest, Extension::STRICT_ERROR_CHECKS, |
| 57 &error); | 57 &error); |
| 58 EXPECT_TRUE(unlimited_app.get()) << error; | 58 EXPECT_TRUE(unlimited_app.get()) << error; |
| 59 return unlimited_app; | 59 return unlimited_app; |
| 60 } | 60 } |
| 61 |
| 62 scoped_refptr<Extension> CreateComponentApp() { |
| 63 #if defined(OS_WIN) |
| 64 FilePath path(FILE_PATH_LITERAL("c:\\component")); |
| 65 #elif defined(OS_POSIX) |
| 66 FilePath path(FILE_PATH_LITERAL("/component")); |
| 67 #endif |
| 68 DictionaryValue manifest; |
| 69 manifest.SetString(keys::kName, "Component"); |
| 70 manifest.SetString(keys::kVersion, "1"); |
| 71 manifest.SetString(keys::kPublicKey, |
| 72 "MIGdMA0GCSqGSIb3DQEBAQUAA4GLADCBhwKBgQDOuXEIuoK1kAkBe0SKiJn/N9oNn3oU" \ |
| 73 "xGa4dwj40MnJqPn+w0aR2vuyocm0R4Drp67aYwtLjOVPF4CICRq6ICP6eU07gGwQxGdZ" \ |
| 74 "7HJASXV8hm0tab5I70oJmRLfFJyVAMCeWlFaOGq05v2i6EbifZM0qO5xALKNGQt+yjXi" \ |
| 75 "5INM5wIBIw=="); |
| 76 ListValue* list = new ListValue(); |
| 77 list->Append(Value::CreateStringValue("unlimitedStorage")); |
| 78 list->Append(Value::CreateStringValue("fileSystem")); |
| 79 list->Append(Value::CreateStringValue("fileBrowserPrivate")); |
| 80 manifest.Set(keys::kPermissions, list); |
| 81 std::string error; |
| 82 scoped_refptr<Extension> component_app = Extension::Create( |
| 83 path, Extension::COMPONENT, manifest, Extension::STRICT_ERROR_CHECKS, |
| 84 &error); |
| 85 EXPECT_TRUE(component_app.get()) << error; |
| 86 return component_app; |
| 87 } |
| 88 |
| 89 scoped_refptr<Extension> CreateHandlerApp() { |
| 90 #if defined(OS_WIN) |
| 91 FilePath path(FILE_PATH_LITERAL("c:\\handler")); |
| 92 #elif defined(OS_POSIX) |
| 93 FilePath path(FILE_PATH_LITERAL("/handler")); |
| 94 #endif |
| 95 DictionaryValue manifest; |
| 96 manifest.SetString(keys::kName, "Handler"); |
| 97 manifest.SetString(keys::kVersion, "1"); |
| 98 manifest.SetString(keys::kPublicKey, |
| 99 "MIGdMA0GCSqGSIb3DQEBAQUAA4GLADCBhwKBgQChptAQ0n4R56N03nWQ1ogR7DVRBjGo" \ |
| 100 "80Vw6G9KLjzZv44D8rq5Q5IkeQrtKgWyZfXevlsCe3LaLo18rcz8iZx6lK2xhLdUR+OR" \ |
| 101 "jsjuBfdEL5a5cWeRTSxf75AcqndQsmpwMBdrMTCZ8jQNusUI+XlrihLNNJuI5TM4vNIN" \ |
| 102 "I5bYFQIBIw=="); |
| 103 ListValue* list = new ListValue(); |
| 104 list->Append(Value::CreateStringValue("unlimitedStorage")); |
| 105 list->Append(Value::CreateStringValue("fileSystem")); |
| 106 manifest.Set(keys::kPermissions, list); |
| 107 std::string error; |
| 108 scoped_refptr<Extension> handler_app = Extension::Create( |
| 109 path, Extension::INVALID, manifest, Extension::STRICT_ERROR_CHECKS, |
| 110 &error); |
| 111 EXPECT_TRUE(handler_app.get()) << error; |
| 112 return handler_app; |
| 113 } |
| 61 }; | 114 }; |
| 62 | 115 |
| 63 TEST_F(ExtensionSpecialStoragePolicyTest, EmptyPolicy) { | 116 TEST_F(ExtensionSpecialStoragePolicyTest, EmptyPolicy) { |
| 64 const GURL kHttpUrl("http://foo"); | 117 const GURL kHttpUrl("http://foo"); |
| 65 const GURL kExtensionUrl("chrome-extension://bar"); | 118 const GURL kExtensionUrl("chrome-extension://bar"); |
| 66 | 119 |
| 67 scoped_refptr<ExtensionSpecialStoragePolicy> policy( | 120 scoped_refptr<ExtensionSpecialStoragePolicy> policy( |
| 68 new ExtensionSpecialStoragePolicy); | 121 new ExtensionSpecialStoragePolicy); |
| 69 | 122 |
| 70 ASSERT_FALSE(policy->IsStorageUnlimited(kHttpUrl)); | 123 ASSERT_FALSE(policy->IsStorageUnlimited(kHttpUrl)); |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 EXPECT_FALSE(policy->IsStorageUnlimited(GURL("https://bar.wildcards/"))); | 203 EXPECT_FALSE(policy->IsStorageUnlimited(GURL("https://bar.wildcards/"))); |
| 151 EXPECT_TRUE(policy->IsStorageProtected(GURL("http://explicit/"))); | 204 EXPECT_TRUE(policy->IsStorageProtected(GURL("http://explicit/"))); |
| 152 EXPECT_TRUE(policy->IsStorageProtected(GURL("http://foo.wildcards/"))); | 205 EXPECT_TRUE(policy->IsStorageProtected(GURL("http://foo.wildcards/"))); |
| 153 EXPECT_TRUE(policy->IsStorageProtected(GURL("https://bar.wildcards/"))); | 206 EXPECT_TRUE(policy->IsStorageProtected(GURL("https://bar.wildcards/"))); |
| 154 | 207 |
| 155 policy->RevokeRightsForExtension(protected_app); | 208 policy->RevokeRightsForExtension(protected_app); |
| 156 EXPECT_FALSE(policy->IsStorageProtected(GURL("http://explicit/"))); | 209 EXPECT_FALSE(policy->IsStorageProtected(GURL("http://explicit/"))); |
| 157 EXPECT_FALSE(policy->IsStorageProtected(GURL("http://foo.wildcards/"))); | 210 EXPECT_FALSE(policy->IsStorageProtected(GURL("http://foo.wildcards/"))); |
| 158 EXPECT_FALSE(policy->IsStorageProtected(GURL("https://bar.wildcards/"))); | 211 EXPECT_FALSE(policy->IsStorageProtected(GURL("https://bar.wildcards/"))); |
| 159 } | 212 } |
| OLD | NEW |