Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(649)

Side by Side Diff: chrome/common/extensions/manifest_tests/extension_manifests_contentsecuritypolicy_unittest.cc

Issue 12253022: Manifest handler for all keys background-related. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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" 5 #include "chrome/common/extensions/csp_handler.h"
6 #include "chrome/common/extensions/extension.h" 6 #include "chrome/common/extensions/extension.h"
7 #include "chrome/common/extensions/extension_manifest_constants.h" 7 #include "chrome/common/extensions/extension_manifest_constants.h"
8 #include "chrome/common/extensions/manifest_tests/extension_manifest_test.h" 8 #include "chrome/common/extensions/manifest_tests/extension_manifest_test.h"
9 #include "testing/gtest/include/gtest/gtest.h" 9 #include "testing/gtest/include/gtest/gtest.h"
10 10
11 namespace errors = extension_manifest_errors; 11 namespace errors = extension_manifest_errors;
12 12
13 class ContentSecurityPolicyManifestTest : public ExtensionManifestTest { 13 class ContentSecurityPolicyManifestTest : public ExtensionManifestTest {
14 virtual void SetUp() OVERRIDE { 14 virtual void SetUp() OVERRIDE {
15 ExtensionManifestTest::SetUp(); 15 ExtensionManifestTest::SetUp();
16 extensions::ManifestHandler::Register( 16 (new extensions::CSPHandler(false))->Register(); // not platform app.
17 extension_manifest_keys::kContentSecurityPolicy,
18 make_linked_ptr(new extensions::CSPHandler(false))); // not platform
19 // app.
20 } 17 }
21 }; 18 };
22 19
23 TEST_F(ContentSecurityPolicyManifestTest, InsecureContentSecurityPolicy) { 20 TEST_F(ContentSecurityPolicyManifestTest, InsecureContentSecurityPolicy) {
24 Testcase testcases[] = { 21 Testcase testcases[] = {
25 Testcase("insecure_contentsecuritypolicy_1.json", 22 Testcase("insecure_contentsecuritypolicy_1.json",
26 errors::kInsecureContentSecurityPolicy), 23 errors::kInsecureContentSecurityPolicy),
27 Testcase("insecure_contentsecuritypolicy_2.json", 24 Testcase("insecure_contentsecuritypolicy_2.json",
28 errors::kInsecureContentSecurityPolicy), 25 errors::kInsecureContentSecurityPolicy),
29 Testcase("insecure_contentsecuritypolicy_3.json", 26 Testcase("insecure_contentsecuritypolicy_3.json",
30 errors::kInsecureContentSecurityPolicy), 27 errors::kInsecureContentSecurityPolicy),
31 }; 28 };
32 RunTestcases(testcases, arraysize(testcases), 29 RunTestcases(testcases, arraysize(testcases), EXPECT_TYPE_ERROR);
33 EXPECT_TYPE_ERROR);
34 } 30 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698