| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "base/strings/string16.h" | 5 #include "base/strings/string16.h" |
| 6 #include "base/strings/string_util.h" | 6 #include "base/strings/string_util.h" |
| 7 #include "base/strings/utf_string_conversions.h" | 7 #include "base/strings/utf_string_conversions.h" |
| 8 #include "base/time/time.h" | 8 #include "base/time/time.h" |
| 9 #include "content/browser/frame_host/navigation_entry_impl.h" | 9 #include "content/browser/frame_host/navigation_entry_impl.h" |
| 10 #include "content/browser/site_instance_impl.h" | 10 #include "content/browser/site_instance_impl.h" |
| 11 #include "content/public/common/ssl_status.h" | 11 #include "content/public/common/ssl_status.h" |
| 12 #include "testing/gtest/include/gtest/gtest.h" | 12 #include "testing/gtest/include/gtest/gtest.h" |
| 13 | 13 |
| 14 using base::ASCIIToUTF16; | 14 using base::ASCIIToUTF16; |
| 15 | 15 |
| 16 namespace content { | 16 namespace content { |
| 17 | 17 |
| 18 class NavigationEntryTest : public testing::Test { | 18 class NavigationEntryTest : public testing::Test { |
| 19 public: | 19 public: |
| 20 NavigationEntryTest() : instance_(NULL) { | 20 NavigationEntryTest() : instance_(NULL) { |
| 21 } | 21 } |
| 22 | 22 |
| 23 virtual void SetUp() { | 23 void SetUp() override { |
| 24 entry1_.reset(new NavigationEntryImpl); | 24 entry1_.reset(new NavigationEntryImpl); |
| 25 | 25 |
| 26 #if !defined(OS_IOS) | 26 #if !defined(OS_IOS) |
| 27 instance_ = static_cast<SiteInstanceImpl*>(SiteInstance::Create(NULL)); | 27 instance_ = static_cast<SiteInstanceImpl*>(SiteInstance::Create(NULL)); |
| 28 #endif | 28 #endif |
| 29 entry2_.reset(new NavigationEntryImpl( | 29 entry2_.reset(new NavigationEntryImpl( |
| 30 instance_, 3, | 30 instance_, 3, |
| 31 GURL("test:url"), | 31 GURL("test:url"), |
| 32 Referrer(GURL("from"), blink::WebReferrerPolicyDefault), | 32 Referrer(GURL("from"), blink::WebReferrerPolicyDefault), |
| 33 ASCIIToUTF16("title"), | 33 ASCIIToUTF16("title"), |
| 34 ui::PAGE_TRANSITION_TYPED, | 34 ui::PAGE_TRANSITION_TYPED, |
| 35 false)); | 35 false)); |
| 36 } | 36 } |
| 37 | 37 |
| 38 virtual void TearDown() { | 38 void TearDown() override {} |
| 39 } | |
| 40 | 39 |
| 41 protected: | 40 protected: |
| 42 scoped_ptr<NavigationEntryImpl> entry1_; | 41 scoped_ptr<NavigationEntryImpl> entry1_; |
| 43 scoped_ptr<NavigationEntryImpl> entry2_; | 42 scoped_ptr<NavigationEntryImpl> entry2_; |
| 44 // SiteInstances are deleted when their NavigationEntries are gone. | 43 // SiteInstances are deleted when their NavigationEntries are gone. |
| 45 SiteInstanceImpl* instance_; | 44 SiteInstanceImpl* instance_; |
| 46 }; | 45 }; |
| 47 | 46 |
| 48 // Test unique ID accessors | 47 // Test unique ID accessors |
| 49 TEST_F(NavigationEntryTest, NavigationEntryUniqueIDs) { | 48 TEST_F(NavigationEntryTest, NavigationEntryUniqueIDs) { |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 // Content in |output| is not modified if data is not present at the key. | 236 // Content in |output| is not modified if data is not present at the key. |
| 238 EXPECT_FALSE(entry1_->GetExtraData("search_terms", &output)); | 237 EXPECT_FALSE(entry1_->GetExtraData("search_terms", &output)); |
| 239 EXPECT_EQ(test_data, output); | 238 EXPECT_EQ(test_data, output); |
| 240 // Using an empty string shows that the data is not present in the map. | 239 // Using an empty string shows that the data is not present in the map. |
| 241 base::string16 output2; | 240 base::string16 output2; |
| 242 EXPECT_FALSE(entry1_->GetExtraData("search_terms", &output2)); | 241 EXPECT_FALSE(entry1_->GetExtraData("search_terms", &output2)); |
| 243 EXPECT_EQ(ASCIIToUTF16(""), output2); | 242 EXPECT_EQ(ASCIIToUTF16(""), output2); |
| 244 } | 243 } |
| 245 | 244 |
| 246 } // namespace content | 245 } // namespace content |
| OLD | NEW |