Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 <blimp/client/core/contents/fake_navigation_feature.h> | |
|
Kevin M
2016/08/01 23:41:58
Should use "" instead of <>, move into the second
shaktisahu
2016/08/02 17:47:52
Yes.. Eclipse refactoring.
| |
| 5 #include "blimp/client/core/contents/blimp_contents_impl.h" | 6 #include "blimp/client/core/contents/blimp_contents_impl.h" |
| 6 | 7 |
| 7 #include "base/message_loop/message_loop.h" | 8 #include "base/message_loop/message_loop.h" |
| 8 #include "blimp/client/core/contents/blimp_contents_impl.h" | 9 #include "blimp/client/core/contents/blimp_contents_impl.h" |
| 9 #include "blimp/client/public/contents/blimp_contents_observer.h" | 10 #include "blimp/client/public/contents/blimp_contents_observer.h" |
| 11 #include "testing/gmock/include/gmock/gmock.h" | |
| 10 #include "testing/gtest/include/gtest/gtest.h" | 12 #include "testing/gtest/include/gtest/gtest.h" |
| 11 | 13 |
| 12 namespace blimp { | 14 namespace blimp { |
| 13 namespace client { | 15 namespace client { |
| 14 namespace { | 16 namespace { |
| 15 | 17 |
| 16 const GURL kExampleURL = GURL("https://www.example.com/"); | 18 const GURL kExampleURL = GURL("https://www.example.com/"); |
|
Kevin M
2016/08/01 23:41:58
Globals must be POD types e.g. const char[]
shaktisahu
2016/08/02 17:47:52
Done.
| |
| 17 const GURL kOtherExampleURL = GURL("https://www.otherexample.com/"); | 19 const GURL kOtherExampleURL = GURL("https://www.otherexample.com/"); |
| 18 | 20 |
| 19 class TestBlimpContentsObserver : public BlimpContentsObserver { | 21 class MockBlimpContentsObserver : public BlimpContentsObserver { |
| 20 public: | 22 public: |
| 21 TestBlimpContentsObserver() = default; | 23 MockBlimpContentsObserver() = default; |
| 22 ~TestBlimpContentsObserver() override = default; | 24 ~MockBlimpContentsObserver() override = default; |
| 23 | 25 |
| 24 void OnURLUpdated(const GURL& url) override { last_url_ = url; } | 26 MOCK_METHOD0(OnNavigationStateChanged, void()); |
| 25 | |
| 26 GURL GetLastURL() { return last_url_; } | |
| 27 | 27 |
| 28 private: | 28 private: |
| 29 GURL last_url_; | 29 DISALLOW_COPY_AND_ASSIGN(MockBlimpContentsObserver); |
| 30 | |
| 31 DISALLOW_COPY_AND_ASSIGN(TestBlimpContentsObserver); | |
| 32 }; | 30 }; |
| 33 | 31 |
| 34 TEST(BlimpContentsImplTest, Basic) { | 32 TEST(BlimpContentsImplTest, Basic) { |
|
Kevin M
2016/08/01 23:41:58
Test name is too basic ;)
RouteNavigationStateCha
shaktisahu
2016/08/02 17:47:52
Done.
| |
| 35 base::MessageLoop loop; | 33 base::MessageLoop loop; |
| 36 BlimpContentsImpl blimp_contents; | 34 BlimpContentsImpl blimp_contents; |
| 37 | 35 |
| 38 BlimpNavigationController& navigation_controller = | 36 BlimpNavigationControllerImpl& navigation_controller = |
| 39 blimp_contents.GetNavigationController(); | 37 blimp_contents.GetNavigationController(); |
| 38 FakeNavigationFeature feature; | |
| 39 feature.SetDelegate(1, &navigation_controller); | |
| 40 navigation_controller.SetNavigationFeatureForTesting(&feature); | |
| 40 | 41 |
| 41 TestBlimpContentsObserver observer1; | 42 testing::StrictMock<MockBlimpContentsObserver> observer1; |
| 42 blimp_contents.AddObserver(&observer1); | 43 blimp_contents.AddObserver(&observer1); |
| 43 TestBlimpContentsObserver observer2; | 44 testing::StrictMock<MockBlimpContentsObserver> observer2; |
| 44 blimp_contents.AddObserver(&observer2); | 45 blimp_contents.AddObserver(&observer2); |
| 45 | 46 |
| 47 EXPECT_CALL(observer1, OnNavigationStateChanged()); | |
| 48 EXPECT_CALL(observer2, OnNavigationStateChanged()).Times(2); | |
| 49 | |
| 46 navigation_controller.LoadURL(kExampleURL); | 50 navigation_controller.LoadURL(kExampleURL); |
| 47 loop.RunUntilIdle(); | 51 loop.RunUntilIdle(); |
| 48 | 52 |
| 49 EXPECT_EQ(kExampleURL, navigation_controller.GetURL()); | 53 EXPECT_EQ(kExampleURL, navigation_controller.GetURL()); |
| 50 EXPECT_EQ(kExampleURL, observer1.GetLastURL()); | |
| 51 EXPECT_EQ(kExampleURL, observer2.GetLastURL()); | |
| 52 | 54 |
| 53 // Observer should no longer receive callbacks. | 55 // Observer should no longer receive callbacks. |
| 54 blimp_contents.RemoveObserver(&observer1); | 56 blimp_contents.RemoveObserver(&observer1); |
| 55 | 57 |
| 56 navigation_controller.LoadURL(kOtherExampleURL); | 58 navigation_controller.LoadURL(kOtherExampleURL); |
| 57 loop.RunUntilIdle(); | 59 loop.RunUntilIdle(); |
| 58 | 60 |
| 59 EXPECT_EQ(kOtherExampleURL, navigation_controller.GetURL()); | 61 EXPECT_EQ(kOtherExampleURL, navigation_controller.GetURL()); |
| 60 EXPECT_EQ(kExampleURL, observer1.GetLastURL()); | |
| 61 EXPECT_EQ(kOtherExampleURL, observer2.GetLastURL()); | |
| 62 } | 62 } |
| 63 | 63 |
| 64 } // namespace | 64 } // namespace |
| 65 } // namespace client | 65 } // namespace client |
| 66 } // namespace blimp | 66 } // namespace blimp |
| OLD | NEW |