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

Side by Side Diff: chrome/browser/net/transport_security_persister_unittest.cc

Issue 12212048: Linux/ChromeOS Chromium style checker cleanup, chrome/browser edition. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 7 years, 10 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/net/transport_security_persister.h" 5 #include "chrome/browser/net/transport_security_persister.h"
6 6
7 #include <map> 7 #include <map>
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/file_path.h" 11 #include "base/file_path.h"
12 #include "base/file_util.h" 12 #include "base/file_util.h"
13 #include "base/files/scoped_temp_dir.h" 13 #include "base/files/scoped_temp_dir.h"
14 #include "base/message_loop.h" 14 #include "base/message_loop.h"
15 #include "content/public/test/test_browser_thread.h" 15 #include "content/public/test/test_browser_thread.h"
16 #include "net/base/transport_security_state.h" 16 #include "net/base/transport_security_state.h"
17 #include "testing/gtest/include/gtest/gtest.h" 17 #include "testing/gtest/include/gtest/gtest.h"
18 18
19 using net::TransportSecurityState; 19 using net::TransportSecurityState;
20 20
21 class TransportSecurityPersisterTest : public testing::Test { 21 class TransportSecurityPersisterTest : public testing::Test {
22 public: 22 public:
23 TransportSecurityPersisterTest() 23 TransportSecurityPersisterTest()
24 : message_loop_(MessageLoop::TYPE_IO), 24 : message_loop_(MessageLoop::TYPE_IO),
25 test_file_thread_(content::BrowserThread::FILE, &message_loop_), 25 test_file_thread_(content::BrowserThread::FILE, &message_loop_),
26 test_io_thread_(content::BrowserThread::IO, &message_loop_) { 26 test_io_thread_(content::BrowserThread::IO, &message_loop_) {
27 } 27 }
28 28
29 ~TransportSecurityPersisterTest() { 29 virtual ~TransportSecurityPersisterTest() {
30 message_loop_.RunUntilIdle(); 30 message_loop_.RunUntilIdle();
31 } 31 }
32 32
33 virtual void SetUp() OVERRIDE { 33 virtual void SetUp() OVERRIDE {
34 ASSERT_TRUE(temp_dir_.CreateUniqueTempDir()); 34 ASSERT_TRUE(temp_dir_.CreateUniqueTempDir());
35 persister_.reset( 35 persister_.reset(
36 new TransportSecurityPersister(&state_, temp_dir_.path(), false)); 36 new TransportSecurityPersister(&state_, temp_dir_.path(), false));
37 } 37 }
38 38
39 protected: 39 protected:
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 "\"mode\": \"pinning-only\"" 226 "\"mode\": \"pinning-only\""
227 "}}"); 227 "}}");
228 228
229 EXPECT_TRUE(persister_->DeserializeFromCommandLine(preload)); 229 EXPECT_TRUE(persister_->DeserializeFromCommandLine(preload));
230 230
231 TransportSecurityState::DomainState domain_state; 231 TransportSecurityState::DomainState domain_state;
232 EXPECT_TRUE(state_.GetDomainState("docs.google.com", true, &domain_state)); 232 EXPECT_TRUE(state_.GetDomainState("docs.google.com", true, &domain_state));
233 EXPECT_FALSE(domain_state.HasPublicKeyPins()); 233 EXPECT_FALSE(domain_state.HasPublicKeyPins());
234 EXPECT_FALSE(domain_state.ShouldUpgradeToSSL()); 234 EXPECT_FALSE(domain_state.ShouldUpgradeToSSL());
235 } 235 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698