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 "extensions/browser/event_router.h" | 5 #include "extensions/browser/event_router.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
12 #include "base/values.h" | 12 #include "base/values.h" |
| 13 #include "content/public/browser/notification_service.h" |
13 #include "extensions/browser/event_listener_map.h" | 14 #include "extensions/browser/event_listener_map.h" |
14 #include "testing/gtest/include/gtest/gtest.h" | 15 #include "testing/gtest/include/gtest/gtest.h" |
15 | 16 |
16 namespace extensions { | 17 namespace extensions { |
17 | 18 |
18 namespace { | 19 namespace { |
19 | 20 |
20 // A simple mock to keep track of listener additions and removals. | 21 // A simple mock to keep track of listener additions and removals. |
21 class MockEventRouterObserver : public EventRouter::Observer { | 22 class MockEventRouterObserver : public EventRouter::Observer { |
22 public: | 23 public: |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 const std::string& event_name, | 75 const std::string& event_name, |
75 content::RenderProcessHost* process, | 76 content::RenderProcessHost* process, |
76 base::DictionaryValue* filter) { | 77 base::DictionaryValue* filter) { |
77 return EventListener::ForURL( | 78 return EventListener::ForURL( |
78 event_name, listener_url, process, make_scoped_ptr(filter)); | 79 event_name, listener_url, process, make_scoped_ptr(filter)); |
79 } | 80 } |
80 | 81 |
81 } // namespace | 82 } // namespace |
82 | 83 |
83 class EventRouterTest : public testing::Test { | 84 class EventRouterTest : public testing::Test { |
| 85 public: |
| 86 EventRouterTest() |
| 87 : notification_service_(content::NotificationService::Create()) {} |
| 88 |
84 protected: | 89 protected: |
85 // Tests adding and removing observers from EventRouter. | 90 // Tests adding and removing observers from EventRouter. |
86 void RunEventRouterObserverTest(const EventListenerConstructor& constructor); | 91 void RunEventRouterObserverTest(const EventListenerConstructor& constructor); |
| 92 |
| 93 private: |
| 94 scoped_ptr<content::NotificationService> notification_service_; |
| 95 |
| 96 DISALLOW_COPY_AND_ASSIGN(EventRouterTest); |
87 }; | 97 }; |
88 | 98 |
89 TEST_F(EventRouterTest, GetBaseEventName) { | 99 TEST_F(EventRouterTest, GetBaseEventName) { |
90 // Normal event names are passed through unchanged. | 100 // Normal event names are passed through unchanged. |
91 EXPECT_EQ("foo.onBar", EventRouter::GetBaseEventName("foo.onBar")); | 101 EXPECT_EQ("foo.onBar", EventRouter::GetBaseEventName("foo.onBar")); |
92 | 102 |
93 // Sub-events are converted to the part before the slash. | 103 // Sub-events are converted to the part before the slash. |
94 EXPECT_EQ("foo.onBar", EventRouter::GetBaseEventName("foo.onBar/123")); | 104 EXPECT_EQ("foo.onBar", EventRouter::GetBaseEventName("foo.onBar/123")); |
95 } | 105 } |
96 | 106 |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
153 RunEventRouterObserverTest( | 163 RunEventRouterObserverTest( |
154 base::Bind(&CreateEventListenerForExtension, "extension_id")); | 164 base::Bind(&CreateEventListenerForExtension, "extension_id")); |
155 } | 165 } |
156 | 166 |
157 TEST_F(EventRouterTest, EventRouterObserverForURLs) { | 167 TEST_F(EventRouterTest, EventRouterObserverForURLs) { |
158 RunEventRouterObserverTest( | 168 RunEventRouterObserverTest( |
159 base::Bind(&CreateEventListenerForURL, GURL("http://google.com/path"))); | 169 base::Bind(&CreateEventListenerForURL, GURL("http://google.com/path"))); |
160 } | 170 } |
161 | 171 |
162 } // namespace extensions | 172 } // namespace extensions |
OLD | NEW |