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

Unified Diff: components/cronet/ios/test/cronet_pkp_test.mm

Issue 2937523002: add setter for enable_pkp_bypass_etc (Closed)
Patch Set: add tests for pkpbypass, make disabling it mandatory Created 3 years, 6 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
Index: components/cronet/ios/test/cronet_pkp_test.mm
diff --git a/components/cronet/ios/test/cronet_pkp_test.mm b/components/cronet/ios/test/cronet_pkp_test.mm
index 962a54ec18ecf486460998f7ce40613b299e7fcf..e0542949fba12df9cee77580c11e5ed3859dc8e8 100644
--- a/components/cronet/ios/test/cronet_pkp_test.mm
+++ b/components/cronet/ios/test/cronet_pkp_test.mm
@@ -78,6 +78,7 @@ class PkpTest : public CronetTestBase {
NSData* hash,
BOOL include_subdomains,
NSDate* expiration_date) {
+ [Cronet setEnablePublicKeyPinningBypassForLocalTrustAnchors:NO];
NSSet* hashes = [NSSet setWithObject:hash];
NSError* error;
BOOL success = [Cronet addPublicKeyPinsForHost:host
@@ -141,6 +142,21 @@ TEST_F(PkpTest, TestSuccessIfPinMatches) {
ASSERT_NO_FATAL_FAILURE(sendRequestAndAssertResult(request_url_, kSuccess));
}
+TEST_F(PkpTest, TestBypass) {
kapishnikov 2017/06/28 03:42:32 Can we add another test that tests behavior with t
lilyhoughton 2017/06/28 14:38:51 I don't know how to do this, since that would requ
kapishnikov 2017/06/28 15:32:23 I was thinking of creating the same test but witho
+ [Cronet setEnablePublicKeyPinningBypassForLocalTrustAnchors:YES];
+
+ NSSet* hashes = [NSSet setWithObject:NonMatchingHash()];
+ NSError* error;
+ BOOL success = [Cronet addPublicKeyPinsForHost:server_host_
+ pinHashes:hashes
+ includeSubdomains:kExcludeSubdomains
+ expirationDate:(NSDate*)kDistantFuture
+ error:&error];
+
+ EXPECT_FALSE(success);
+ EXPECT_EQ([error code], CRNErrorIncoherentConfig);
+}
+
// Tests the case when the pin hash does not match and the client accesses the
// subdomain of the configured PKP host with includeSubdomains flag set to true.
// The client is expected to receive the error response.

Powered by Google App Engine
This is Rietveld 408576698