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

Unified Diff: net/base/ssl_config_service_mac_unittest.cc

Issue 193009: Add an SSLConfigService implementation for Mac OS X (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 3 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 | « net/base/ssl_config_service_mac.cc ('k') | net/net.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/ssl_config_service_mac_unittest.cc
===================================================================
--- net/base/ssl_config_service_mac_unittest.cc (revision 24911)
+++ net/base/ssl_config_service_mac_unittest.cc (working copy)
@@ -1,8 +1,8 @@
-// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
+// Copyright (c) 2009 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/ssl_config_service_win.h"
+#include "net/base/ssl_config_service_mac.h"
#include "testing/gtest/include/gtest/gtest.h"
using base::TimeDelta;
@@ -10,12 +10,12 @@
namespace {
-class SSLConfigServiceWinTest : public testing::Test {
+class SSLConfigServiceMacTest : public testing::Test {
};
} // namespace
-TEST(SSLConfigServiceWinTest, GetNowTest) {
+TEST(SSLConfigServiceMacTest, GetNowTest) {
// Verify that the constructor sets the correct default values.
net::SSLConfig config;
EXPECT_EQ(true, config.rev_checking_enabled);
@@ -23,58 +23,84 @@
EXPECT_EQ(true, config.ssl3_enabled);
EXPECT_EQ(true, config.tls1_enabled);
- bool rv = net::SSLConfigServiceWin::GetSSLConfigNow(&config);
+ bool rv = net::SSLConfigServiceMac::GetSSLConfigNow(&config);
EXPECT_TRUE(rv);
}
-TEST(SSLConfigServiceWinTest, SetTest) {
+TEST(SSLConfigServiceMacTest, SetTest) {
// Save the current settings so we can restore them after the tests.
net::SSLConfig config_save;
- bool rv = net::SSLConfigServiceWin::GetSSLConfigNow(&config_save);
+ bool rv = net::SSLConfigServiceMac::GetSSLConfigNow(&config_save);
EXPECT_TRUE(rv);
net::SSLConfig config;
// Test SetRevCheckingEnabled.
- net::SSLConfigServiceWin::SetRevCheckingEnabled(true);
- rv = net::SSLConfigServiceWin::GetSSLConfigNow(&config);
+ net::SSLConfigServiceMac::SetRevCheckingEnabled(true);
+ rv = net::SSLConfigServiceMac::GetSSLConfigNow(&config);
EXPECT_TRUE(rv);
EXPECT_TRUE(config.rev_checking_enabled);
- net::SSLConfigServiceWin::SetRevCheckingEnabled(false);
- rv = net::SSLConfigServiceWin::GetSSLConfigNow(&config);
+ net::SSLConfigServiceMac::SetRevCheckingEnabled(false);
+ rv = net::SSLConfigServiceMac::GetSSLConfigNow(&config);
EXPECT_TRUE(rv);
EXPECT_FALSE(config.rev_checking_enabled);
- net::SSLConfigServiceWin::SetRevCheckingEnabled(
+ net::SSLConfigServiceMac::SetRevCheckingEnabled(
config_save.rev_checking_enabled);
// Test SetSSL2Enabled.
- net::SSLConfigServiceWin::SetSSL2Enabled(true);
- rv = net::SSLConfigServiceWin::GetSSLConfigNow(&config);
+ net::SSLConfigServiceMac::SetSSL2Enabled(true);
+ rv = net::SSLConfigServiceMac::GetSSLConfigNow(&config);
EXPECT_TRUE(rv);
EXPECT_TRUE(config.ssl2_enabled);
- net::SSLConfigServiceWin::SetSSL2Enabled(false);
- rv = net::SSLConfigServiceWin::GetSSLConfigNow(&config);
+ net::SSLConfigServiceMac::SetSSL2Enabled(false);
+ rv = net::SSLConfigServiceMac::GetSSLConfigNow(&config);
EXPECT_TRUE(rv);
EXPECT_FALSE(config.ssl2_enabled);
- net::SSLConfigServiceWin::SetSSL2Enabled(config_save.ssl2_enabled);
+ net::SSLConfigServiceMac::SetSSL2Enabled(config_save.ssl2_enabled);
+
+ // Test SetSSL3Enabled.
+ net::SSLConfigServiceMac::SetSSL3Enabled(true);
+ rv = net::SSLConfigServiceMac::GetSSLConfigNow(&config);
+ EXPECT_TRUE(rv);
+ EXPECT_TRUE(config.ssl3_enabled);
+
+ net::SSLConfigServiceMac::SetSSL3Enabled(false);
+ rv = net::SSLConfigServiceMac::GetSSLConfigNow(&config);
+ EXPECT_TRUE(rv);
+ EXPECT_FALSE(config.ssl3_enabled);
+
+ net::SSLConfigServiceMac::SetSSL3Enabled(config_save.ssl3_enabled);
+
+ // Test SetTLS1Enabled.
+ net::SSLConfigServiceMac::SetTLS1Enabled(true);
+ rv = net::SSLConfigServiceMac::GetSSLConfigNow(&config);
+ EXPECT_TRUE(rv);
+ EXPECT_TRUE(config.tls1_enabled);
+
+ net::SSLConfigServiceMac::SetTLS1Enabled(false);
+ rv = net::SSLConfigServiceMac::GetSSLConfigNow(&config);
+ EXPECT_TRUE(rv);
+ EXPECT_FALSE(config.tls1_enabled);
+
+ net::SSLConfigServiceMac::SetTLS1Enabled(config_save.tls1_enabled);
}
-TEST(SSLConfigServiceWinTest, GetTest) {
+TEST(SSLConfigServiceMacTest, GetTest) {
TimeTicks now = TimeTicks::Now();
TimeTicks now_1 = now + TimeDelta::FromSeconds(1);
TimeTicks now_11 = now + TimeDelta::FromSeconds(11);
net::SSLConfig config, config_1, config_11;
- scoped_refptr<net::SSLConfigServiceWin> config_service(
- new net::SSLConfigServiceWin(now));
+ scoped_refptr<net::SSLConfigServiceMac> config_service(
+ new net::SSLConfigServiceMac(now));
config_service->GetSSLConfigAt(&config, now);
// Flip rev_checking_enabled.
- net::SSLConfigServiceWin::SetRevCheckingEnabled(
+ net::SSLConfigServiceMac::SetRevCheckingEnabled(
!config.rev_checking_enabled);
config_service->GetSSLConfigAt(&config_1, now_1);
@@ -84,6 +110,6 @@
EXPECT_EQ(!config.rev_checking_enabled, config_11.rev_checking_enabled);
// Restore the original value.
- net::SSLConfigServiceWin::SetRevCheckingEnabled(
+ net::SSLConfigServiceMac::SetRevCheckingEnabled(
config.rev_checking_enabled);
}
« no previous file with comments | « net/base/ssl_config_service_mac.cc ('k') | net/net.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698