| 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 "chrome/common/extensions/csp_handler.h" | |
| 6 #include "chrome/common/extensions/extension.h" | |
| 7 #include "chrome/common/extensions/extension_manifest_constants.h" | 5 #include "chrome/common/extensions/extension_manifest_constants.h" |
| 8 #include "chrome/common/extensions/manifest_tests/extension_manifest_test.h" | 6 #include "chrome/common/extensions/manifest_tests/extension_manifest_test.h" |
| 9 #include "testing/gtest/include/gtest/gtest.h" | 7 #include "testing/gtest/include/gtest/gtest.h" |
| 10 | 8 |
| 11 namespace errors = extension_manifest_errors; | 9 namespace errors = extension_manifest_errors; |
| 12 | 10 |
| 13 class ContentSecurityPolicyManifestTest : public ExtensionManifestTest { | 11 class ContentSecurityPolicyManifestTest : public ExtensionManifestTest { |
| 14 virtual void SetUp() OVERRIDE { | |
| 15 ExtensionManifestTest::SetUp(); | |
| 16 (new extensions::CSPHandler(false))->Register(); // not platform app. | |
| 17 } | |
| 18 }; | 12 }; |
| 19 | 13 |
| 20 TEST_F(ContentSecurityPolicyManifestTest, InsecureContentSecurityPolicy) { | 14 TEST_F(ContentSecurityPolicyManifestTest, InsecureContentSecurityPolicy) { |
| 21 Testcase testcases[] = { | 15 Testcase testcases[] = { |
| 22 Testcase("insecure_contentsecuritypolicy_1.json", | 16 Testcase("insecure_contentsecuritypolicy_1.json", |
| 23 errors::kInsecureContentSecurityPolicy), | 17 errors::kInsecureContentSecurityPolicy), |
| 24 Testcase("insecure_contentsecuritypolicy_2.json", | 18 Testcase("insecure_contentsecuritypolicy_2.json", |
| 25 errors::kInsecureContentSecurityPolicy), | 19 errors::kInsecureContentSecurityPolicy), |
| 26 Testcase("insecure_contentsecuritypolicy_3.json", | 20 Testcase("insecure_contentsecuritypolicy_3.json", |
| 27 errors::kInsecureContentSecurityPolicy), | 21 errors::kInsecureContentSecurityPolicy), |
| 28 }; | 22 }; |
| 29 RunTestcases(testcases, arraysize(testcases), EXPECT_TYPE_ERROR); | 23 RunTestcases(testcases, arraysize(testcases), EXPECT_TYPE_ERROR); |
| 30 } | 24 } |
| OLD | NEW |