diff options
author | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-22 21:19:08 +0000 |
---|---|---|
committer | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-22 21:19:08 +0000 |
commit | f4015600c484053dad1043fc974c57ef2e8dbff9 (patch) | |
tree | bdd6f55f78aff38bc228f64acbbdd693b52a8a06 /net/http/disk_cache_based_ssl_host_info_unittest.cc | |
parent | 2d024be84200467d50ba6e26938473e75d6f000f (diff) | |
download | chromium_src-f4015600c484053dad1043fc974c57ef2e8dbff9.zip chromium_src-f4015600c484053dad1043fc974c57ef2e8dbff9.tar.gz chromium_src-f4015600c484053dad1043fc974c57ef2e8dbff9.tar.bz2 |
Split DiskCacheBasedSSLHostInfo unit tests to its own
file. I'll be adding more unit tests so it's a good time
to do this.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/8588011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111217 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/http/disk_cache_based_ssl_host_info_unittest.cc')
-rw-r--r-- | net/http/disk_cache_based_ssl_host_info_unittest.cc | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/net/http/disk_cache_based_ssl_host_info_unittest.cc b/net/http/disk_cache_based_ssl_host_info_unittest.cc new file mode 100644 index 0000000..d15548f --- /dev/null +++ b/net/http/disk_cache_based_ssl_host_info_unittest.cc @@ -0,0 +1,44 @@ +// Copyright (c) 2011 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 "net/base/net_errors.h" +#include "net/base/ssl_config_service.h" +#include "net/http/disk_cache_based_ssl_host_info.h" +#include "net/http/mock_http_cache.h" +#include "testing/gtest/include/gtest/gtest.h" + +class DeleteSSLHostInfoOldCompletionCallback : public TestOldCompletionCallback { + public: + explicit DeleteSSLHostInfoOldCompletionCallback(net::SSLHostInfo* ssl_host_info) + : ssl_host_info_(ssl_host_info) {} + + virtual void RunWithParams(const Tuple1<int>& params) { + delete ssl_host_info_; + TestOldCompletionCallback::RunWithParams(params); + } + + private: + net::SSLHostInfo* ssl_host_info_; +}; + +// Tests that we can delete a DiskCacheBasedSSLHostInfo object in a +// completion callback for DiskCacheBasedSSLHostInfo::WaitForDataReady. +TEST(DiskCacheBasedSSLHostInfo, DeleteInCallback) { + net::CertVerifier cert_verifier; + // Use the blocking mock backend factory to force asynchronous completion + // of ssl_host_info->WaitForDataReady(), so that the callback will run. + MockBlockingBackendFactory* factory = new MockBlockingBackendFactory(); + MockHttpCache cache(factory); + net::SSLConfig ssl_config; + net::SSLHostInfo* ssl_host_info = + new net::DiskCacheBasedSSLHostInfo("https://www.verisign.com", ssl_config, + &cert_verifier, cache.http_cache()); + ssl_host_info->Start(); + DeleteSSLHostInfoOldCompletionCallback callback(ssl_host_info); + int rv = ssl_host_info->WaitForDataReady(&callback); + EXPECT_EQ(net::ERR_IO_PENDING, rv); + // Now complete the backend creation and let the callback run. + factory->FinishCreation(); + EXPECT_EQ(net::OK, callback.GetResult(rv)); +} |