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

Unified Diff: net/url_request/url_request_unittest.cc

Issue 1474983003: Support for client certs in ssl_server_socket. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase only Created 4 years, 11 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
« net/ssl/ssl_server_config.cc ('K') | « net/ssl/ssl_server_config.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/url_request/url_request_unittest.cc
diff --git a/net/url_request/url_request_unittest.cc b/net/url_request/url_request_unittest.cc
index 78e44c91c0a2e802250647daa29bee960a495899..ddd3a6292d13a38905726c19d1f4c1fd7ffe7138 100644
--- a/net/url_request/url_request_unittest.cc
+++ b/net/url_request/url_request_unittest.cc
@@ -8285,9 +8285,10 @@ TEST_F(HTTPSRequestTest, ClientAuthTest) {
base::RunLoop().Run();
+ // Client certs is required but none is sent
EXPECT_EQ(1, d.response_started_count());
EXPECT_FALSE(d.received_data_before_response());
- EXPECT_NE(0, d.bytes_received());
+ EXPECT_EQ(0, d.bytes_received());
davidben 2016/01/25 20:56:12 You change the test from successfully connecting t
ryanchung 2016/01/29 23:22:14 If we want to support optional client certificates
davidben 2016/02/04 00:40:11 Oh hrmf, did I ask you do remove that from a previ
ryanchung 2016/02/05 01:56:13 Ok, using a enum. I changed the test back to what
}
}
« net/ssl/ssl_server_config.cc ('K') | « net/ssl/ssl_server_config.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698