OLD | NEW |
---|---|
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/extensions/event_router_forwarder.h" | 5 #include "chrome/browser/extensions/event_router_forwarder.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/message_loop.h" | 8 #include "base/message_loop.h" |
9 #include "base/system_monitor/system_monitor.h" | 9 #include "base/power_monitor/power_monitor.h" |
10 #include "base/test/thread_test_helper.h" | 10 #include "base/test/thread_test_helper.h" |
11 #include "chrome/browser/profiles/profile_manager.h" | 11 #include "chrome/browser/profiles/profile_manager.h" |
12 #include "chrome/test/base/testing_browser_process.h" | 12 #include "chrome/test/base/testing_browser_process.h" |
13 #include "chrome/test/base/testing_profile.h" | 13 #include "chrome/test/base/testing_profile.h" |
14 #include "chrome/test/base/testing_profile_manager.h" | 14 #include "chrome/test/base/testing_profile_manager.h" |
15 #include "content/public/test/test_browser_thread.h" | 15 #include "content/public/test/test_browser_thread.h" |
16 #include "googleurl/src/gurl.h" | 16 #include "googleurl/src/gurl.h" |
17 #include "testing/gmock/include/gmock/gmock.h" | 17 #include "testing/gmock/include/gmock/gmock.h" |
18 #include "testing/gtest/include/gtest/gtest.h" | 18 #include "testing/gtest/include/gtest/gtest.h" |
19 | 19 |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
85 } // namespace | 85 } // namespace |
86 | 86 |
87 class EventRouterForwarderTest : public testing::Test { | 87 class EventRouterForwarderTest : public testing::Test { |
88 protected: | 88 protected: |
89 EventRouterForwarderTest() | 89 EventRouterForwarderTest() |
90 : ui_thread_(BrowserThread::UI, &message_loop_), | 90 : ui_thread_(BrowserThread::UI, &message_loop_), |
91 io_thread_(BrowserThread::IO), | 91 io_thread_(BrowserThread::IO), |
92 profile_manager_( | 92 profile_manager_( |
93 static_cast<TestingBrowserProcess*>(g_browser_process)) { | 93 static_cast<TestingBrowserProcess*>(g_browser_process)) { |
94 #if defined(OS_MACOSX) | 94 #if defined(OS_MACOSX) |
95 base::SystemMonitor::AllocateSystemIOPorts(); | 95 base::PowerMonitor::AllocateSystemIOPorts(); |
vandebo (ex-Chrome)
2012/10/29 18:04:38
Is this needed?
Hongbo Min
2012/10/30 14:33:47
Remove it now.
| |
96 #endif | 96 #endif |
97 dummy.reset(new base::SystemMonitor); | |
98 } | 97 } |
99 | 98 |
100 virtual void SetUp() { | 99 virtual void SetUp() { |
101 ASSERT_TRUE(profile_manager_.SetUp()); | 100 ASSERT_TRUE(profile_manager_.SetUp()); |
102 | 101 |
103 // Inject a BrowserProcess with a ProfileManager. | 102 // Inject a BrowserProcess with a ProfileManager. |
104 ASSERT_TRUE(io_thread_.Start()); | 103 ASSERT_TRUE(io_thread_.Start()); |
105 | 104 |
106 profile1_ = profile_manager_.CreateTestingProfile("one"); | 105 profile1_ = profile_manager_.CreateTestingProfile("one"); |
107 profile2_ = profile_manager_.CreateTestingProfile("two"); | 106 profile2_ = profile_manager_.CreateTestingProfile("two"); |
108 } | 107 } |
109 | 108 |
110 TestingProfile* CreateIncognitoProfile(TestingProfile* base) { | 109 TestingProfile* CreateIncognitoProfile(TestingProfile* base) { |
111 TestingProfile* incognito = new TestingProfile; // Owned by |base|. | 110 TestingProfile* incognito = new TestingProfile; // Owned by |base|. |
112 incognito->set_incognito(true); | 111 incognito->set_incognito(true); |
113 base->SetOffTheRecordProfile(incognito); | 112 base->SetOffTheRecordProfile(incognito); |
114 return incognito; | 113 return incognito; |
115 } | 114 } |
116 | 115 |
117 MessageLoopForUI message_loop_; | 116 MessageLoopForUI message_loop_; |
118 content::TestBrowserThread ui_thread_; | 117 content::TestBrowserThread ui_thread_; |
119 content::TestBrowserThread io_thread_; | 118 content::TestBrowserThread io_thread_; |
120 TestingProfileManager profile_manager_; | 119 TestingProfileManager profile_manager_; |
121 scoped_ptr<base::SystemMonitor> dummy; | |
122 // Profiles are weak pointers, owned by ProfileManager in |browser_process_|. | 120 // Profiles are weak pointers, owned by ProfileManager in |browser_process_|. |
123 TestingProfile* profile1_; | 121 TestingProfile* profile1_; |
124 TestingProfile* profile2_; | 122 TestingProfile* profile2_; |
125 }; | 123 }; |
126 | 124 |
127 TEST_F(EventRouterForwarderTest, BroadcastRendererUI) { | 125 TEST_F(EventRouterForwarderTest, BroadcastRendererUI) { |
128 scoped_refptr<MockEventRouterForwarder> event_router( | 126 scoped_refptr<MockEventRouterForwarder> event_router( |
129 new MockEventRouterForwarder); | 127 new MockEventRouterForwarder); |
130 GURL url; | 128 GURL url; |
131 EXPECT_CALL(*event_router, | 129 EXPECT_CALL(*event_router, |
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
280 GURL url; | 278 GURL url; |
281 EXPECT_CALL(*event_router, | 279 EXPECT_CALL(*event_router, |
282 CallEventRouter(profile1_, kExt, kEventName, NULL, url)); | 280 CallEventRouter(profile1_, kExt, kEventName, NULL, url)); |
283 EXPECT_CALL(*event_router, | 281 EXPECT_CALL(*event_router, |
284 CallEventRouter(profile2_, _, _, _, _)).Times(0); | 282 CallEventRouter(profile2_, _, _, _, _)).Times(0); |
285 DispatchEventToExtension(event_router.get(), kExt, kEventName, profile1_, | 283 DispatchEventToExtension(event_router.get(), kExt, kEventName, profile1_, |
286 false, url); | 284 false, url); |
287 } | 285 } |
288 | 286 |
289 } // namespace extensions | 287 } // namespace extensions |
OLD | NEW |