diff options
Diffstat (limited to 'net/base/transport_security_state_unittest.cc')
-rw-r--r-- | net/base/transport_security_state_unittest.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/net/base/transport_security_state_unittest.cc b/net/base/transport_security_state_unittest.cc index d9337a9..58d364b 100644 --- a/net/base/transport_security_state_unittest.cc +++ b/net/base/transport_security_state_unittest.cc @@ -474,6 +474,7 @@ TEST_F(TransportSecurityStateTest, Preloaded) { true)); EXPECT_TRUE(state.IsEnabledForHost(&domain_state, "talk.google.com", true)); EXPECT_TRUE(state.IsEnabledForHost(&domain_state, "plus.google.com", true)); + EXPECT_TRUE(state.IsEnabledForHost(&domain_state, "groups.google.com", true)); EXPECT_TRUE(state.IsEnabledForHost(&domain_state, "entropia.de", true)); EXPECT_TRUE(state.IsEnabledForHost(&domain_state, "www.entropia.de", true)); @@ -826,6 +827,8 @@ TEST_F(TransportSecurityStateTest, BuiltinCertPins) { true)); EXPECT_TRUE(state.HasPinsForHost(&domain_state, "talk.google.com", true)); EXPECT_TRUE(state.HasPinsForHost(&domain_state, "plus.google.com", true)); + EXPECT_TRUE(state.HasPinsForHost(&domain_state, "groups.google.com", true)); + EXPECT_TRUE(state.HasPinsForHost(&domain_state, "ssl.gstatic.com", true)); EXPECT_FALSE(state.HasPinsForHost(&domain_state, "www.gstatic.com", true)); EXPECT_TRUE(state.HasPinsForHost(&domain_state, |