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

Unified Diff: chrome/common/secure_origin_whitelist_unittest.cc

Issue 1072933006: Support whitelisting to handle insecure origins as trustworthy origins (chromium) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/secure_origin_whitelist.cc ('k') | chrome/renderer/chrome_content_renderer_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/secure_origin_whitelist_unittest.cc
diff --git a/chrome/common/secure_origin_whitelist_unittest.cc b/chrome/common/secure_origin_whitelist_unittest.cc
new file mode 100644
index 0000000000000000000000000000000000000000..068f2073e26799ade055badccd74c9ff85293574
--- /dev/null
+++ b/chrome/common/secure_origin_whitelist_unittest.cc
@@ -0,0 +1,36 @@
+// Copyright 2015 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 "base/basictypes.h"
jww 2015/04/30 18:26:42 remove?
kinuko 2015/05/01 03:10:56 Done.
+#include "base/command_line.h"
+#include "chrome/common/chrome_switches.h"
+#include "content/public/common/origin_util.h"
+#include "testing/gtest/include/gtest/gtest.h"
+#include "url/gurl.h"
+
+using content::IsOriginSecure;
+
+namespace chrome {
+
+TEST(SecureOriginWhiteList, UnsafetyTreatInsecureOriginAsSecure) {
+ EXPECT_FALSE(content::IsOriginSecure(GURL("http://example.com/fun.html")));
+ EXPECT_FALSE(
+ content::IsOriginSecure(GURL("http://127.example.com/fun.html")));
+
+ // Add http://example.com and http://127.example.com to whitelist by
+ // command-line and see if they are now considered secure origins.
+ // (The command line is applied via
+ // ChromeContentClient::AddSecureSchemesAndOrigins)
+ base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
+ command_line->AppendSwitchASCII(
+ switches::kUnsafetyTreatInsecureOriginAsSecure,
+ "http://example.com,http://127.example.com");
+ command_line->AppendSwitch(switches::kUserDataDir);
+ content::ResetSecureSchemesAndOriginsForTesting();
+
+ EXPECT_TRUE(content::IsOriginSecure(GURL("http://example.com/fun.html")));
+ EXPECT_TRUE(content::IsOriginSecure(GURL("http://127.example.com/fun.html")));
jww 2015/04/30 18:26:42 Would you mind adding a few other sanity checks, s
kinuko 2015/05/01 03:10:56 Done.
+}
+
+} // namespace chrome
« no previous file with comments | « chrome/common/secure_origin_whitelist.cc ('k') | chrome/renderer/chrome_content_renderer_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698