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

Unified Diff: net/quic/crypto/quic_crypto_client_config_test.cc

Issue 422623004: Add a Clone method to ProofVerifyDetails to allow for the proof verify (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add comment Created 6 years, 5 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: net/quic/crypto/quic_crypto_client_config_test.cc
diff --git a/net/quic/crypto/quic_crypto_client_config_test.cc b/net/quic/crypto/quic_crypto_client_config_test.cc
index fdce91c1fc7a6566ebdbfd5500fee141b160e4f3..013c7c7916f8f71ee707809246582ef577872a6e 100644
--- a/net/quic/crypto/quic_crypto_client_config_test.cc
+++ b/net/quic/crypto/quic_crypto_client_config_test.cc
@@ -16,6 +16,14 @@ using std::vector;
namespace net {
namespace test {
+class TestProofVerifyDetails : public ProofVerifyDetails {
wtc 2014/07/29 01:48:24 Nit: we probably should nest this inside an unname
Ryan Hamilton 2014/07/29 17:04:50 Done.
+ virtual ~TestProofVerifyDetails() {}
+
+ virtual ProofVerifyDetails* Clone() const OVERRIDE {
wtc 2014/07/29 01:48:24 Nit: should we add a "ProofVerifyDetails interface
Ryan Hamilton 2014/07/29 17:04:50 Done.
+ return NULL;
wtc 2014/07/29 01:48:24 BUG: this should return new TestProofVerifyDetails
Ryan Hamilton 2014/07/29 17:04:50 Done.
+ }
+};
+
TEST(QuicCryptoClientConfigTest, CachedState_IsEmpty) {
QuicCryptoClientConfig::CachedState state;
EXPECT_TRUE(state.IsEmpty());
@@ -36,7 +44,7 @@ TEST(QuicCryptoClientConfigTest, CachedState_GenerationCounter) {
TEST(QuicCryptoClientConfigTest, CachedState_SetProofVerifyDetails) {
QuicCryptoClientConfig::CachedState state;
EXPECT_TRUE(state.proof_verify_details() == NULL);
- ProofVerifyDetails* details = new ProofVerifyDetails;
+ ProofVerifyDetails* details = new TestProofVerifyDetails;
state.SetProofVerifyDetails(details);
EXPECT_EQ(details, state.proof_verify_details());
}
« net/quic/crypto/proof_verifier_chromium.cc ('K') | « net/quic/crypto/quic_crypto_client_config.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698