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/blimp_contents_impl.h" | 5 #include "blimp/client/core/contents/blimp_contents_impl.h" |
6 | 6 |
7 #include "base/message_loop/message_loop.h" | 7 #include "base/message_loop/message_loop.h" |
8 #include "blimp/client/core/contents/blimp_contents_impl.h" | 8 #include "blimp/client/core/contents/blimp_contents_impl.h" |
9 #include "blimp/client/core/contents/fake_navigation_feature.h" | 9 #include "blimp/client/core/contents/fake_navigation_feature.h" |
10 #include "blimp/client/public/contents/blimp_contents_observer.h" | 10 #include "blimp/client/public/contents/blimp_contents_observer.h" |
(...skipping 15 matching lines...) Expand all Loading... |
26 ~MockBlimpContentsObserver() override = default; | 26 ~MockBlimpContentsObserver() override = default; |
27 | 27 |
28 MOCK_METHOD0(OnNavigationStateChanged, void()); | 28 MOCK_METHOD0(OnNavigationStateChanged, void()); |
29 | 29 |
30 private: | 30 private: |
31 DISALLOW_COPY_AND_ASSIGN(MockBlimpContentsObserver); | 31 DISALLOW_COPY_AND_ASSIGN(MockBlimpContentsObserver); |
32 }; | 32 }; |
33 | 33 |
34 TEST(BlimpContentsImplTest, LoadURLAndNotifyObservers) { | 34 TEST(BlimpContentsImplTest, LoadURLAndNotifyObservers) { |
35 base::MessageLoop loop; | 35 base::MessageLoop loop; |
36 BlimpContentsImpl blimp_contents(kDummyTabId); | 36 FakeNavigationFeature feature; |
| 37 BlimpContentsImpl blimp_contents(kDummyTabId, &feature, nullptr); |
37 | 38 |
38 BlimpNavigationControllerImpl& navigation_controller = | 39 BlimpNavigationControllerImpl& navigation_controller = |
39 blimp_contents.GetNavigationController(); | 40 blimp_contents.GetNavigationController(); |
40 FakeNavigationFeature feature; | |
41 feature.SetDelegate(1, &navigation_controller); | |
42 navigation_controller.SetNavigationFeatureForTesting(&feature); | |
43 | 41 |
44 testing::StrictMock<MockBlimpContentsObserver> observer1(&blimp_contents); | 42 testing::StrictMock<MockBlimpContentsObserver> observer1(&blimp_contents); |
45 testing::StrictMock<MockBlimpContentsObserver> observer2(&blimp_contents); | 43 testing::StrictMock<MockBlimpContentsObserver> observer2(&blimp_contents); |
46 | 44 |
47 EXPECT_CALL(observer1, OnNavigationStateChanged()); | 45 EXPECT_CALL(observer1, OnNavigationStateChanged()); |
48 EXPECT_CALL(observer2, OnNavigationStateChanged()).Times(2); | 46 EXPECT_CALL(observer2, OnNavigationStateChanged()).Times(2); |
49 | 47 |
50 navigation_controller.LoadURL(GURL(kExampleURL)); | 48 navigation_controller.LoadURL(GURL(kExampleURL)); |
51 loop.RunUntilIdle(); | 49 loop.RunUntilIdle(); |
52 | 50 |
53 EXPECT_EQ(kExampleURL, navigation_controller.GetURL().spec()); | 51 EXPECT_EQ(kExampleURL, navigation_controller.GetURL().spec()); |
54 | 52 |
55 // Observer should no longer receive callbacks. | 53 // Observer should no longer receive callbacks. |
56 blimp_contents.RemoveObserver(&observer1); | 54 blimp_contents.RemoveObserver(&observer1); |
57 | 55 |
58 navigation_controller.LoadURL(GURL(kOtherExampleURL)); | 56 navigation_controller.LoadURL(GURL(kOtherExampleURL)); |
59 loop.RunUntilIdle(); | 57 loop.RunUntilIdle(); |
60 | 58 |
61 EXPECT_EQ(kOtherExampleURL, navigation_controller.GetURL().spec()); | 59 EXPECT_EQ(kOtherExampleURL, navigation_controller.GetURL().spec()); |
62 } | 60 } |
63 | 61 |
64 } // namespace | 62 } // namespace |
65 } // namespace client | 63 } // namespace client |
66 } // namespace blimp | 64 } // namespace blimp |
OLD | NEW |