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 "chrome/browser/media/cast_remoting_connector.h" | 5 #include "chrome/browser/media/cast_remoting_connector.h" |
6 | 6 |
7 #include <utility> | 7 #include <utility> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/callback.h" | 10 #include "base/callback.h" |
| 11 #include "base/memory/ptr_util.h" |
11 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
12 #include "base/run_loop.h" | 13 #include "base/run_loop.h" |
13 #include "chrome/browser/media/router/media_routes_observer.h" | |
14 #include "chrome/browser/media/router/mock_media_router.h" | 14 #include "chrome/browser/media/router/mock_media_router.h" |
15 #include "chrome/browser/media/router/route_message_observer.h" | |
16 #include "chrome/common/media_router/media_route.h" | 15 #include "chrome/common/media_router/media_route.h" |
17 #include "chrome/common/media_router/media_source.h" | 16 #include "chrome/common/media_router/media_source.h" |
18 #include "chrome/common/media_router/route_message.h" | |
19 #include "content/public/browser/browser_thread.h" | 17 #include "content/public/browser/browser_thread.h" |
20 #include "content/public/test/test_browser_thread_bundle.h" | 18 #include "content/public/test/test_browser_thread_bundle.h" |
| 19 #include "media/mojo/interfaces/mirror_service_remoting.mojom.h" |
21 #include "media/mojo/interfaces/remoting.mojom.h" | 20 #include "media/mojo/interfaces/remoting.mojom.h" |
22 #include "mojo/public/cpp/bindings/binding.h" | 21 #include "mojo/public/cpp/bindings/binding.h" |
23 #include "testing/gmock/include/gmock/gmock.h" | 22 #include "testing/gmock/include/gmock/gmock.h" |
24 #include "testing/gtest/include/gtest/gtest.h" | 23 #include "testing/gtest/include/gtest/gtest.h" |
25 | 24 |
26 using content::BrowserThread; | 25 using content::BrowserThread; |
27 | 26 |
28 using media::mojom::RemoterPtr; | 27 using media::mojom::RemoterPtr; |
29 using media::mojom::RemoterRequest; | 28 using media::mojom::RemoterRequest; |
30 using media::mojom::RemotingSinkCapabilities; | 29 using media::mojom::RemotingSinkCapabilities; |
31 using media::mojom::RemotingSourcePtr; | 30 using media::mojom::RemotingSourcePtr; |
32 using media::mojom::RemotingSourceRequest; | 31 using media::mojom::RemotingSourceRequest; |
33 using media::mojom::RemotingStartFailReason; | 32 using media::mojom::RemotingStartFailReason; |
34 using media::mojom::RemotingStopReason; | 33 using media::mojom::RemotingStopReason; |
35 | 34 using media::mojom::MirrorServiceRemoterPtr; |
36 using media_router::MediaRoutesObserver; | 35 using media::mojom::MirrorServiceRemoterRequest; |
37 using media_router::MediaRoute; | 36 using media::mojom::MirrorServiceRemotingSourcePtr; |
38 using media_router::MediaSource; | 37 using media::mojom::MirrorServiceRemotingSourceRequest; |
39 using media_router::RouteMessage; | |
40 using media_router::RouteMessageObserver; | |
41 | 38 |
42 using ::testing::_; | 39 using ::testing::_; |
43 using ::testing::AtLeast; | 40 using ::testing::AtLeast; |
44 | 41 |
45 namespace { | 42 namespace { |
46 | 43 |
47 constexpr char kRemotingMediaSource[] = | 44 constexpr int32_t kRemotingTabId = 2; |
48 "urn:x-org.chromium.media:source:tab_content_remoting:123"; | |
49 constexpr char kRemotingMediaSink[] = "wiggles"; | |
50 constexpr char kRemotingMediaRoute[] = | |
51 "urn:x-org.chromium:media:route:garbly_gook_ssi7m4oa8oma7rasd/cast-wiggles"; | |
52 | |
53 constexpr char kTabMirroringMediaSource[] = | |
54 "urn:x-org.chromium.media:source:tab:123"; | |
55 constexpr char kTabMirroringMediaRoute[] = | |
56 "urn:x-org.chromium:media:route:bloopity_blop_ohun48i56nh9oid/cast-wiggles"; | |
57 | 45 |
58 constexpr RemotingSinkCapabilities kAllCapabilities = | 46 constexpr RemotingSinkCapabilities kAllCapabilities = |
59 RemotingSinkCapabilities::CONTENT_DECRYPTION_AND_RENDERING; | 47 RemotingSinkCapabilities::CONTENT_DECRYPTION_AND_RENDERING; |
60 | 48 |
61 // Implements basic functionality of a subset of the MediaRouter for use by the | 49 // Implements basic functionality of a subset of the MediaRouter for use by the |
62 // unit tests in this module. Note that MockMediaRouter will complain at runtime | 50 // unit tests in this module. Note that MockMediaRouter will complain at runtime |
63 // if any methods were called that should not have been called. | 51 // if any methods were called that should not have been called. |
64 class FakeMediaRouter : public media_router::MockMediaRouter { | 52 class FakeMediaRouter : public media_router::MockMediaRouter { |
65 public: | 53 public: |
66 FakeMediaRouter() | 54 FakeMediaRouter() : weak_factory_(this) {} |
67 : routes_observer_(nullptr), message_observer_(nullptr), | |
68 weak_factory_(this) {} | |
69 ~FakeMediaRouter() final {} | 55 ~FakeMediaRouter() final {} |
70 | 56 |
71 // | 57 void RegisterRemotingSource(int32_t tab_id, |
72 // These methods are called by test code to create/destroy a media route and | 58 CastRemotingConnector* remoting_source) final { |
73 // pass messages in both directions. | 59 DCHECK_EQ(-1, tab_id_); |
74 // | 60 tab_id_ = tab_id; |
75 | 61 connector_ = remoting_source; |
76 void OnRemotingRouteExists(bool exists) { | |
77 routes_.clear(); | |
78 | |
79 // Always add a non-remoting route to make sure CastRemotingConnector | |
80 // ignores non-remoting routes. | |
81 routes_.push_back(MediaRoute( | |
82 kTabMirroringMediaRoute, MediaSource(kTabMirroringMediaSource), | |
83 kRemotingMediaSink, "Cast Tab Mirroring", false, "", false)); | |
84 | |
85 if (exists) { | |
86 routes_.push_back(MediaRoute( | |
87 kRemotingMediaRoute, MediaSource(kRemotingMediaSource), | |
88 kRemotingMediaSink, "Cast Media Remoting", false, "", false)); | |
89 } else { | |
90 // Cancel delivery of all messages in both directions. | |
91 inbound_messages_.clear(); | |
92 for (auto& entry : outbound_messages_) { | |
93 BrowserThread::PostTask(BrowserThread::UI, FROM_HERE, | |
94 base::BindOnce(std::move(entry.second), false)); | |
95 } | |
96 outbound_messages_.clear(); | |
97 } | |
98 | |
99 BrowserThread::PostTask(BrowserThread::UI, FROM_HERE, | |
100 base::BindOnce(&FakeMediaRouter::DoUpdateRoutes, | |
101 weak_factory_.GetWeakPtr())); | |
102 } | 62 } |
103 | 63 |
104 void OnMessageFromProvider(const std::string& message) { | 64 void UnregisterRemotingSource(int32_t tab_id) final { |
105 inbound_messages_.push_back(RouteMessage()); | 65 DCHECK_EQ(tab_id, tab_id_); |
106 inbound_messages_.back().type = RouteMessage::TEXT; | 66 tab_id_ = -1; |
107 inbound_messages_.back().text = message; | 67 connector_ = nullptr; |
108 BrowserThread::PostTask( | |
109 BrowserThread::UI, FROM_HERE, | |
110 base::BindOnce(&FakeMediaRouter::DoDeliverInboundMessages, | |
111 weak_factory_.GetWeakPtr())); | |
112 } | 68 } |
113 | 69 |
114 void OnBinaryMessageFromProvider(const std::vector<uint8_t>& message) { | 70 void OnMediaRemoterCreated( |
115 inbound_messages_.push_back(RouteMessage()); | 71 int32_t tab_id, |
116 inbound_messages_.back().type = RouteMessage::BINARY; | 72 MirrorServiceRemoterPtr remoter, |
117 inbound_messages_.back().binary = std::vector<uint8_t>(message); | 73 MirrorServiceRemotingSourceRequest remoting_source) { |
118 BrowserThread::PostTask( | 74 if (tab_id != tab_id_) |
119 BrowserThread::UI, FROM_HERE, | 75 return; |
120 base::BindOnce(&FakeMediaRouter::DoDeliverInboundMessages, | 76 |
121 weak_factory_.GetWeakPtr())); | 77 DCHECK(connector_); |
| 78 connector_->ConnectToService(std::move(remoting_source), |
| 79 std::move(remoter)); |
122 } | 80 } |
123 | 81 |
124 void TakeMessagesSentToProvider(RouteMessage::Type type, | 82 // Get the registered tab ID. |
125 std::vector<RouteMessage>* messages) { | 83 int32_t tab_id() { return tab_id_; } |
126 decltype(outbound_messages_) untaken_messages; | |
127 for (auto& entry : outbound_messages_) { | |
128 if (entry.first.type == type) { | |
129 messages->push_back(entry.first); | |
130 BrowserThread::PostTask(BrowserThread::UI, FROM_HERE, | |
131 base::BindOnce(std::move(entry.second), true)); | |
132 } else { | |
133 untaken_messages.push_back(std::move(entry)); | |
134 } | |
135 } | |
136 outbound_messages_.swap(untaken_messages); | |
137 } | |
138 | |
139 protected: | |
140 void RegisterMediaRoutesObserver(MediaRoutesObserver* observer) final { | |
141 CHECK(!routes_observer_); | |
142 routes_observer_ = observer; | |
143 CHECK(routes_observer_); | |
144 BrowserThread::PostTask(BrowserThread::UI, FROM_HERE, | |
145 base::BindOnce(&FakeMediaRouter::DoUpdateRoutes, | |
146 weak_factory_.GetWeakPtr())); | |
147 } | |
148 | |
149 void UnregisterMediaRoutesObserver(MediaRoutesObserver* observer) final { | |
150 CHECK_EQ(routes_observer_, observer); | |
151 routes_observer_ = nullptr; | |
152 } | |
153 | |
154 void RegisterRouteMessageObserver(RouteMessageObserver* observer) final { | |
155 CHECK(!message_observer_); | |
156 message_observer_ = observer; | |
157 CHECK(message_observer_); | |
158 } | |
159 | |
160 void UnregisterRouteMessageObserver(RouteMessageObserver* observer) final { | |
161 CHECK_EQ(message_observer_, observer); | |
162 message_observer_ = nullptr; | |
163 } | |
164 | |
165 void SendRouteMessage(const MediaRoute::Id& route_id, | |
166 const std::string& text, | |
167 SendRouteMessageCallback callback) final { | |
168 EXPECT_EQ(message_observer_->route_id(), route_id); | |
169 ASSERT_FALSE(callback.is_null()); | |
170 RouteMessage message; | |
171 message.type = RouteMessage::TEXT; | |
172 message.text = text; | |
173 outbound_messages_.push_back(std::make_pair(message, std::move(callback))); | |
174 } | |
175 | |
176 void SendRouteBinaryMessage(const MediaRoute::Id& route_id, | |
177 std::unique_ptr<std::vector<uint8_t>> data, | |
178 SendRouteMessageCallback callback) final { | |
179 EXPECT_EQ(message_observer_->route_id(), route_id); | |
180 ASSERT_TRUE(!!data); | |
181 ASSERT_FALSE(callback.is_null()); | |
182 RouteMessage message; | |
183 message.type = RouteMessage::BINARY; | |
184 message.binary = std::move(*data); | |
185 outbound_messages_.push_back(std::make_pair(message, std::move(callback))); | |
186 } | |
187 | 84 |
188 private: | 85 private: |
189 // Asynchronous callback to notify the MediaRoutesObserver of a change in | 86 int32_t tab_id_ = -1; |
190 // routes. | 87 CastRemotingConnector* connector_; |
191 void DoUpdateRoutes() { | |
192 if (routes_observer_) | |
193 routes_observer_->OnRoutesUpdated(routes_, std::vector<MediaRoute::Id>()); | |
194 } | |
195 | |
196 // Asynchronous callback to deliver messages to the RouteMessageObserver. | |
197 void DoDeliverInboundMessages() { | |
198 if (message_observer_) | |
199 message_observer_->OnMessagesReceived(inbound_messages_); | |
200 inbound_messages_.clear(); | |
201 } | |
202 | |
203 MediaRoutesObserver* routes_observer_; | |
204 RouteMessageObserver* message_observer_; | |
205 | |
206 std::vector<MediaRoute> routes_; | |
207 // Messages from Cast Provider to the connector. | |
208 std::vector<RouteMessage> inbound_messages_; | |
209 // Messages from the connector to the Cast Provider. | |
210 using OutboundMessageAndCallback = | |
211 std::pair<RouteMessage, SendRouteMessageCallback>; | |
212 std::vector<OutboundMessageAndCallback> outbound_messages_; | |
213 | 88 |
214 base::WeakPtrFactory<FakeMediaRouter> weak_factory_; | 89 base::WeakPtrFactory<FakeMediaRouter> weak_factory_; |
215 }; | 90 }; |
216 | 91 |
217 class MockRemotingSource : public media::mojom::RemotingSource { | 92 class MockRemotingSource : public media::mojom::RemotingSource { |
218 public: | 93 public: |
219 MockRemotingSource() : binding_(this) {} | 94 MockRemotingSource() : binding_(this) {} |
220 ~MockRemotingSource() final {} | 95 ~MockRemotingSource() final {} |
221 | 96 |
222 void Bind(RemotingSourceRequest request) { | 97 void Bind(RemotingSourceRequest request) { |
223 binding_.Bind(std::move(request)); | 98 binding_.Bind(std::move(request)); |
224 } | 99 } |
225 | 100 |
226 MOCK_METHOD1(OnSinkAvailable, void(RemotingSinkCapabilities)); | 101 MOCK_METHOD1(OnSinkAvailable, void(RemotingSinkCapabilities)); |
227 MOCK_METHOD0(OnSinkGone, void()); | 102 MOCK_METHOD0(OnSinkGone, void()); |
228 MOCK_METHOD0(OnStarted, void()); | 103 MOCK_METHOD0(OnStarted, void()); |
229 MOCK_METHOD1(OnStartFailed, void(RemotingStartFailReason)); | 104 MOCK_METHOD1(OnStartFailed, void(RemotingStartFailReason)); |
230 MOCK_METHOD1(OnMessageFromSink, void(const std::vector<uint8_t>&)); | 105 MOCK_METHOD1(OnMessageFromSink, void(const std::vector<uint8_t>&)); |
231 MOCK_METHOD1(OnStopped, void(RemotingStopReason)); | 106 MOCK_METHOD1(OnStopped, void(RemotingStopReason)); |
232 | 107 |
233 private: | 108 private: |
234 mojo::Binding<media::mojom::RemotingSource> binding_; | 109 mojo::Binding<media::mojom::RemotingSource> binding_; |
235 }; | 110 }; |
236 | 111 |
| 112 class MockMediaRemoter : public media::mojom::MirrorServiceRemoter { |
| 113 public: |
| 114 explicit MockMediaRemoter(FakeMediaRouter* media_router) : binding_(this) { |
| 115 MirrorServiceRemoterPtr remoter; |
| 116 binding_.Bind(mojo::MakeRequest(&remoter)); |
| 117 media_router->OnMediaRemoterCreated(kRemotingTabId, std::move(remoter), |
| 118 mojo::MakeRequest(&source_)); |
| 119 } |
| 120 ~MockMediaRemoter() final {} |
| 121 |
| 122 void OnSinkAvailable() { |
| 123 if (source_) |
| 124 source_->OnSinkAvailable(kAllCapabilities); |
| 125 } |
| 126 |
| 127 void SendMessageToSource(const std::vector<uint8_t>& message) { |
| 128 if (source_) |
| 129 source_->OnMessageFromSink(message); |
| 130 } |
| 131 |
| 132 void OnStopped(RemotingStopReason reason) { |
| 133 if (source_) |
| 134 source_->OnStopped(reason); |
| 135 } |
| 136 |
| 137 void OnError() { |
| 138 if (source_) |
| 139 source_->OnError(); |
| 140 } |
| 141 |
| 142 MOCK_METHOD0(Start, void()); |
| 143 MOCK_METHOD2(StartDataStreams, void(bool, bool)); |
| 144 MOCK_METHOD1(Stop, void(RemotingStopReason)); |
| 145 MOCK_METHOD1(SendMessageToSink, void(const std::vector<uint8_t>&)); |
| 146 |
| 147 private: |
| 148 mojo::Binding<media::mojom::MirrorServiceRemoter> binding_; |
| 149 MirrorServiceRemotingSourcePtr source_; |
| 150 }; |
| 151 |
237 } // namespace | 152 } // namespace |
238 | 153 |
239 class CastRemotingConnectorTest : public ::testing::Test { | 154 class CastRemotingConnectorTest : public ::testing::Test { |
240 public: | 155 public: |
241 CastRemotingConnectorTest() | 156 CastRemotingConnectorTest() : connector_(&media_router_, kRemotingTabId) { |
242 : connector_(&media_router_, kRemotingMediaSource) { | |
243 // HACK: Override feature flags for testing. | 157 // HACK: Override feature flags for testing. |
244 const_cast<RemotingSinkCapabilities&>(connector_.enabled_features_) = | 158 const_cast<RemotingSinkCapabilities&>(connector_.enabled_features_) = |
245 kAllCapabilities; | 159 kAllCapabilities; |
| 160 |
| 161 EXPECT_EQ(kRemotingTabId, media_router_.tab_id()); |
246 } | 162 } |
247 | 163 |
248 void TearDown() final { | 164 void TearDown() final { |
249 // Allow any pending Mojo operations to complete before destruction. For | 165 // Allow any pending Mojo operations to complete before destruction. For |
250 // example, when one end of a Mojo message pipe is closed, a task is posted | 166 // example, when one end of a Mojo message pipe is closed, a task is posted |
251 // to later destroy objects that were owned by the message pipe. | 167 // to later destroy objects that were owned by the message pipe. |
252 RunUntilIdle(); | 168 RunUntilIdle(); |
253 } | 169 } |
254 | 170 |
255 protected: | 171 protected: |
256 RemoterPtr CreateRemoter(MockRemotingSource* source) { | 172 RemoterPtr CreateRemoter(MockRemotingSource* source) { |
257 RemotingSourcePtr source_ptr; | 173 RemotingSourcePtr source_ptr; |
258 source->Bind(mojo::MakeRequest(&source_ptr)); | 174 source->Bind(mojo::MakeRequest(&source_ptr)); |
259 RemoterPtr remoter_ptr; | 175 RemoterPtr remoter_ptr; |
260 connector_.CreateBridge(std::move(source_ptr), | 176 connector_.CreateBridge(std::move(source_ptr), |
261 mojo::MakeRequest(&remoter_ptr)); | 177 mojo::MakeRequest(&remoter_ptr)); |
262 return remoter_ptr; | 178 return remoter_ptr; |
263 } | 179 } |
264 | 180 |
265 void ProviderDiscoversSink() { | |
266 media_router_.OnRemotingRouteExists(true); | |
267 } | |
268 | |
269 void ProviderLosesSink() { | |
270 media_router_.OnRemotingRouteExists(false); | |
271 } | |
272 | |
273 void ConnectorSentMessageToProvider(const std::string& expected_message) { | |
274 std::vector<RouteMessage> messages; | |
275 media_router_.TakeMessagesSentToProvider(RouteMessage::TEXT, &messages); | |
276 bool did_see_expected_message = false; | |
277 for (const RouteMessage& message : messages) { | |
278 if (message.text && expected_message == *message.text) { | |
279 did_see_expected_message = true; | |
280 } else { | |
281 ADD_FAILURE() | |
282 << "Unexpected message: " << message.ToHumanReadableString(); | |
283 } | |
284 } | |
285 EXPECT_TRUE(did_see_expected_message); | |
286 } | |
287 | |
288 void ConnectorSentMessageToSink( | |
289 const std::vector<uint8_t>& expected_message) { | |
290 std::vector<RouteMessage> messages; | |
291 media_router_.TakeMessagesSentToProvider(RouteMessage::BINARY, &messages); | |
292 bool did_see_expected_message = false; | |
293 for (const RouteMessage& message : messages) { | |
294 if (message.binary && expected_message == *message.binary) { | |
295 did_see_expected_message = true; | |
296 } else { | |
297 ADD_FAILURE() | |
298 << "Unexpected message: " << message.ToHumanReadableString(); | |
299 } | |
300 } | |
301 EXPECT_TRUE(did_see_expected_message); | |
302 } | |
303 | |
304 void ConnectorSentNoMessagesToProvider() { | |
305 std::vector<RouteMessage> messages; | |
306 media_router_.TakeMessagesSentToProvider(RouteMessage::TEXT, &messages); | |
307 EXPECT_TRUE(messages.empty()); | |
308 } | |
309 | |
310 void ConnectorSentNoMessagesToSink() { | |
311 std::vector<RouteMessage> messages; | |
312 media_router_.TakeMessagesSentToProvider(RouteMessage::BINARY, &messages); | |
313 EXPECT_TRUE(messages.empty()); | |
314 } | |
315 | |
316 void ProviderPassesMessageFromSink( | |
317 const std::vector<uint8_t>& message) { | |
318 media_router_.OnBinaryMessageFromProvider(message); | |
319 } | |
320 | |
321 void ProviderSaysToRemotingConnector(const std::string& message) { | |
322 media_router_.OnMessageFromProvider(message); | |
323 } | |
324 | |
325 void MediaRouterTerminatesRoute() { | |
326 media_router_.OnRemotingRouteExists(false); | |
327 } | |
328 | |
329 static void RunUntilIdle() { | 181 static void RunUntilIdle() { |
330 base::RunLoop().RunUntilIdle(); | 182 base::RunLoop().RunUntilIdle(); |
331 } | 183 } |
332 | 184 |
| 185 FakeMediaRouter media_router_; |
| 186 |
333 private: | 187 private: |
334 content::TestBrowserThreadBundle browser_thread_bundle_; | 188 content::TestBrowserThreadBundle browser_thread_bundle_; |
335 FakeMediaRouter media_router_; | |
336 CastRemotingConnector connector_; | 189 CastRemotingConnector connector_; |
337 }; | 190 }; |
338 | 191 |
339 TEST_F(CastRemotingConnectorTest, NeverNotifiesThatSinkIsAvailable) { | 192 TEST_F(CastRemotingConnectorTest, NeverNotifiesThatSinkIsAvailable) { |
340 MockRemotingSource source; | 193 MockRemotingSource source; |
341 RemoterPtr remoter = CreateRemoter(&source); | 194 RemoterPtr remoter = CreateRemoter(&source); |
342 | 195 |
343 EXPECT_CALL(source, OnSinkAvailable(_)).Times(0); | 196 EXPECT_CALL(source, OnSinkAvailable(_)).Times(0); |
344 EXPECT_CALL(source, OnSinkGone()).Times(AtLeast(0)); | 197 EXPECT_CALL(source, OnSinkGone()).Times(AtLeast(0)); |
345 RunUntilIdle(); | 198 RunUntilIdle(); |
346 } | 199 } |
347 | 200 |
348 TEST_F(CastRemotingConnectorTest, NotifiesWhenSinkIsAvailableAndThenGone) { | 201 TEST_F(CastRemotingConnectorTest, NotifiesWhenSinkIsAvailableAndThenGone) { |
349 MockRemotingSource source; | 202 MockRemotingSource source; |
350 RemoterPtr remoter = CreateRemoter(&source); | 203 RemoterPtr remoter = CreateRemoter(&source); |
351 | 204 |
| 205 std::unique_ptr<MockMediaRemoter> media_remoter = |
| 206 base::MakeUnique<MockMediaRemoter>(&media_router_); |
| 207 |
352 EXPECT_CALL(source, OnSinkAvailable(kAllCapabilities)).Times(1); | 208 EXPECT_CALL(source, OnSinkAvailable(kAllCapabilities)).Times(1); |
353 ProviderDiscoversSink(); | 209 media_remoter->OnSinkAvailable(); |
354 RunUntilIdle(); | 210 RunUntilIdle(); |
355 | 211 |
356 EXPECT_CALL(source, OnSinkGone()).Times(AtLeast(1)); | 212 EXPECT_CALL(source, OnSinkGone()).Times(AtLeast(1)); |
357 ProviderLosesSink(); | 213 media_remoter.reset(); |
358 RunUntilIdle(); | 214 RunUntilIdle(); |
359 } | 215 } |
360 | 216 |
361 TEST_F(CastRemotingConnectorTest, | 217 TEST_F(CastRemotingConnectorTest, |
362 NotifiesMultipleSourcesWhenSinkIsAvailableAndThenGone) { | 218 NotifiesMultipleSourcesWhenSinkIsAvailableAndThenGone) { |
363 MockRemotingSource source1; | 219 MockRemotingSource source1; |
364 RemoterPtr remoter1 = CreateRemoter(&source1); | 220 RemoterPtr remoter1 = CreateRemoter(&source1); |
365 MockRemotingSource source2; | 221 MockRemotingSource source2; |
366 RemoterPtr remoter2 = CreateRemoter(&source2); | 222 RemoterPtr remoter2 = CreateRemoter(&source2); |
367 | 223 |
| 224 std::unique_ptr<MockMediaRemoter> media_remoter = |
| 225 base::MakeUnique<MockMediaRemoter>(&media_router_); |
| 226 |
368 EXPECT_CALL(source1, OnSinkAvailable(kAllCapabilities)).Times(1); | 227 EXPECT_CALL(source1, OnSinkAvailable(kAllCapabilities)).Times(1); |
369 EXPECT_CALL(source2, OnSinkAvailable(kAllCapabilities)).Times(1); | 228 EXPECT_CALL(source2, OnSinkAvailable(kAllCapabilities)).Times(1); |
370 ProviderDiscoversSink(); | 229 media_remoter->OnSinkAvailable(); |
371 RunUntilIdle(); | 230 RunUntilIdle(); |
372 | 231 |
373 EXPECT_CALL(source1, OnSinkGone()).Times(AtLeast(1)); | 232 EXPECT_CALL(source1, OnSinkGone()).Times(AtLeast(1)); |
374 EXPECT_CALL(source2, OnSinkGone()).Times(AtLeast(1)); | 233 EXPECT_CALL(source2, OnSinkGone()).Times(AtLeast(1)); |
375 ProviderLosesSink(); | 234 media_remoter.reset(); |
376 RunUntilIdle(); | 235 RunUntilIdle(); |
377 } | 236 } |
378 | 237 |
379 TEST_F(CastRemotingConnectorTest, HandlesTeardownOfRemotingSourceFirst) { | 238 TEST_F(CastRemotingConnectorTest, HandlesTeardownOfRemotingSourceFirst) { |
380 std::unique_ptr<MockRemotingSource> source(new MockRemotingSource); | 239 std::unique_ptr<MockRemotingSource> source(new MockRemotingSource); |
381 RemoterPtr remoter = CreateRemoter(source.get()); | 240 RemoterPtr remoter = CreateRemoter(source.get()); |
382 | 241 |
| 242 std::unique_ptr<MockMediaRemoter> media_remoter = |
| 243 base::MakeUnique<MockMediaRemoter>(&media_router_); |
| 244 |
383 EXPECT_CALL(*source, OnSinkAvailable(kAllCapabilities)).Times(1); | 245 EXPECT_CALL(*source, OnSinkAvailable(kAllCapabilities)).Times(1); |
384 ProviderDiscoversSink(); | 246 media_remoter->OnSinkAvailable(); |
385 RunUntilIdle(); | 247 RunUntilIdle(); |
386 | 248 |
387 source.reset(); | 249 source.reset(); |
388 RunUntilIdle(); | 250 RunUntilIdle(); |
389 } | 251 } |
390 | 252 |
391 TEST_F(CastRemotingConnectorTest, HandlesTeardownOfRemoterFirst) { | 253 TEST_F(CastRemotingConnectorTest, HandlesTeardownOfRemoterFirst) { |
392 MockRemotingSource source; | 254 MockRemotingSource source; |
393 RemoterPtr remoter = CreateRemoter(&source); | 255 RemoterPtr remoter = CreateRemoter(&source); |
394 | 256 |
| 257 std::unique_ptr<MockMediaRemoter> media_remoter = |
| 258 base::MakeUnique<MockMediaRemoter>(&media_router_); |
| 259 |
395 EXPECT_CALL(source, OnSinkAvailable(kAllCapabilities)).Times(1); | 260 EXPECT_CALL(source, OnSinkAvailable(kAllCapabilities)).Times(1); |
396 ProviderDiscoversSink(); | 261 media_remoter->OnSinkAvailable(); |
397 RunUntilIdle(); | 262 RunUntilIdle(); |
398 | 263 |
399 remoter.reset(); | 264 remoter.reset(); |
400 RunUntilIdle(); | 265 RunUntilIdle(); |
401 } | 266 } |
402 | 267 |
| 268 TEST_F(CastRemotingConnectorTest, NoConnectedMediaRemoter) { |
| 269 MockRemotingSource source; |
| 270 RemoterPtr remoter = CreateRemoter(&source); |
| 271 |
| 272 EXPECT_CALL(source, |
| 273 OnStartFailed(RemotingStartFailReason::SERVICE_NOT_CONNECTED)) |
| 274 .Times(1); |
| 275 remoter->Start(); |
| 276 RunUntilIdle(); |
| 277 } |
| 278 |
403 namespace { | 279 namespace { |
404 | 280 |
405 // The possible ways a remoting session may be terminated in the "full | 281 // The possible ways a remoting session may be terminated in the "full |
406 // run-through" tests. | 282 // run-through" tests. |
407 enum HowItEnds { | 283 enum HowItEnds { |
408 SOURCE_TERMINATES, // The render process decides to end remoting. | 284 SOURCE_TERMINATES, // The render process decides to end remoting. |
409 MOJO_PIPE_CLOSES, // A Mojo message pipe closes unexpectedly. | 285 MOJO_PIPE_CLOSES, // A Mojo message pipe closes unexpectedly. |
410 ROUTE_TERMINATES, // The Media Router UI was used to terminate the route. | 286 ROUTE_TERMINATES, // The Media Router UI was used to terminate the route. |
411 EXTERNAL_FAILURE, // The sink is cut-off, perhaps due to a network outage. | 287 EXTERNAL_FAILURE, // The sink is cut-off, perhaps due to a network outage. |
412 }; | 288 }; |
413 | 289 |
414 } // namespace | 290 } // namespace |
415 | 291 |
416 class CastRemotingConnectorFullSessionTest | 292 class CastRemotingConnectorFullSessionTest |
417 : public CastRemotingConnectorTest, | 293 : public CastRemotingConnectorTest, |
418 public ::testing::WithParamInterface<HowItEnds> { | 294 public ::testing::WithParamInterface<HowItEnds> { |
419 public: | 295 public: |
420 HowItEnds how_it_ends() const { return GetParam(); } | 296 HowItEnds how_it_ends() const { return GetParam(); } |
421 }; | 297 }; |
422 | 298 |
423 // Performs a full run-through of starting and stopping remoting, with | 299 // Performs a full run-through of starting and stopping remoting, with |
424 // communications between source and sink established at the correct times, and | 300 // communications between source and sink established at the correct times, and |
425 // tests that end-to-end behavior is correct depending on what caused the | 301 // tests that end-to-end behavior is correct depending on what caused the |
426 // remoting session to end. | 302 // remoting session to end. |
427 TEST_P(CastRemotingConnectorFullSessionTest, GoesThroughAllTheMotions) { | 303 TEST_P(CastRemotingConnectorFullSessionTest, GoesThroughAllTheMotions) { |
428 std::unique_ptr<MockRemotingSource> source(new MockRemotingSource()); | 304 std::unique_ptr<MockRemotingSource> source(new MockRemotingSource()); |
429 RemoterPtr remoter = CreateRemoter(source.get()); | 305 RemoterPtr remoter = CreateRemoter(source.get()); |
430 std::unique_ptr<MockRemotingSource> other_source(new MockRemotingSource()); | 306 std::unique_ptr<MockRemotingSource> other_source(new MockRemotingSource()); |
431 RemoterPtr other_remoter = CreateRemoter(other_source.get()); | 307 RemoterPtr other_remoter = CreateRemoter(other_source.get()); |
| 308 std::unique_ptr<MockMediaRemoter> media_remoter = |
| 309 base::MakeUnique<MockMediaRemoter>(&media_router_); |
432 | 310 |
433 // Throughout this test |other_source| should not participate in the | 311 // Throughout this test |other_source| should not participate in the |
434 // remoting session, and so these method calls should never occur: | 312 // remoting session, and so these method calls should never occur: |
435 EXPECT_CALL(*other_source, OnStarted()).Times(0); | 313 EXPECT_CALL(*other_source, OnStarted()).Times(0); |
436 EXPECT_CALL(*other_source, OnStopped(_)).Times(0); | 314 EXPECT_CALL(*other_source, OnStopped(_)).Times(0); |
437 EXPECT_CALL(*other_source, OnMessageFromSink(_)).Times(0); | 315 EXPECT_CALL(*other_source, OnMessageFromSink(_)).Times(0); |
438 | 316 |
439 // Both sinks should be notified when the Cast Provider tells the connector | 317 // Both sinks should be notified when the Cast Provider tells the connector |
440 // a remoting sink is available. | 318 // a remoting sink is available. |
441 EXPECT_CALL(*source, OnSinkAvailable(kAllCapabilities)).Times(1) | 319 EXPECT_CALL(*source, OnSinkAvailable(kAllCapabilities)).Times(1) |
442 .RetiresOnSaturation(); | 320 .RetiresOnSaturation(); |
443 EXPECT_CALL(*other_source, OnSinkAvailable(kAllCapabilities)).Times(1) | 321 EXPECT_CALL(*other_source, OnSinkAvailable(kAllCapabilities)).Times(1) |
444 .RetiresOnSaturation(); | 322 .RetiresOnSaturation(); |
445 ProviderDiscoversSink(); | 323 media_remoter->OnSinkAvailable(); |
446 RunUntilIdle(); | 324 RunUntilIdle(); |
447 | 325 |
448 // When |source| starts a remoting session, |other_source| is notified the | 326 // When |source| starts a remoting session, |other_source| is notified the |
449 // sink is gone, the Cast Provider is notified that remoting has started, | 327 // sink is gone, the Cast Provider is notified that remoting has started, |
450 // and |source| is notified that its request was successful. | 328 // and |source| is notified that its request was successful. |
451 EXPECT_CALL(*source, OnStarted()).Times(1).RetiresOnSaturation(); | 329 EXPECT_CALL(*source, OnStarted()).Times(1).RetiresOnSaturation(); |
452 EXPECT_CALL(*other_source, OnSinkGone()).Times(1).RetiresOnSaturation(); | 330 EXPECT_CALL(*other_source, OnSinkGone()).Times(1).RetiresOnSaturation(); |
| 331 EXPECT_CALL(*media_remoter, Start()).Times(1).RetiresOnSaturation(); |
453 remoter->Start(); | 332 remoter->Start(); |
454 RunUntilIdle(); | 333 RunUntilIdle(); |
455 ConnectorSentMessageToProvider("START_CAST_REMOTING:session=1"); | |
456 | 334 |
457 // The |source| should now be able to send binary messages to the sink. | 335 // The |source| should now be able to send binary messages to the sink. |
458 // |other_source| should not! | 336 // |other_source| should not! |
459 const std::vector<uint8_t> message_to_sink = { 3, 1, 4, 1, 5, 9 }; | 337 const std::vector<uint8_t> message_to_sink = { 3, 1, 4, 1, 5, 9 }; |
| 338 EXPECT_CALL(*media_remoter, SendMessageToSink(message_to_sink)) |
| 339 .Times(1) |
| 340 .RetiresOnSaturation(); |
460 remoter->SendMessageToSink(message_to_sink); | 341 remoter->SendMessageToSink(message_to_sink); |
461 const std::vector<uint8_t> ignored_message_to_sink = { 1, 2, 3 }; | 342 const std::vector<uint8_t> ignored_message_to_sink = { 1, 2, 3 }; |
| 343 EXPECT_CALL(*media_remoter, SendMessageToSink(ignored_message_to_sink)) |
| 344 .Times(0); |
462 other_remoter->SendMessageToSink(ignored_message_to_sink); | 345 other_remoter->SendMessageToSink(ignored_message_to_sink); |
463 RunUntilIdle(); | 346 RunUntilIdle(); |
464 ConnectorSentMessageToSink(message_to_sink); | |
465 | 347 |
466 // The sink should also be able to send binary messages to the |source|. | 348 // The sink should also be able to send binary messages to the |source|. |
467 const std::vector<uint8_t> message_to_source = { 2, 7, 1, 8, 2, 8 }; | 349 const std::vector<uint8_t> message_to_source = { 2, 7, 1, 8, 2, 8 }; |
468 EXPECT_CALL(*source, OnMessageFromSink(message_to_source)).Times(1) | 350 EXPECT_CALL(*source, OnMessageFromSink(message_to_source)).Times(1) |
469 .RetiresOnSaturation(); | 351 .RetiresOnSaturation(); |
470 ProviderPassesMessageFromSink(message_to_source); | 352 media_remoter->SendMessageToSource(message_to_source); |
471 RunUntilIdle(); | 353 RunUntilIdle(); |
472 | 354 |
473 // The |other_source| should not be allowed to start a remoting session. | 355 // The |other_source| should not be allowed to start a remoting session. |
474 EXPECT_CALL(*other_source, | 356 EXPECT_CALL(*other_source, |
475 OnStartFailed(RemotingStartFailReason::CANNOT_START_MULTIPLE)) | 357 OnStartFailed(RemotingStartFailReason::CANNOT_START_MULTIPLE)) |
476 .Times(1).RetiresOnSaturation(); | 358 .Times(1).RetiresOnSaturation(); |
477 other_remoter->Start(); | 359 other_remoter->Start(); |
478 RunUntilIdle(); | 360 RunUntilIdle(); |
479 ConnectorSentNoMessagesToProvider(); | |
480 | 361 |
481 // What happens from here depends on how this remoting session will end... | 362 // What happens from here depends on how this remoting session will end... |
482 switch (how_it_ends()) { | 363 switch (how_it_ends()) { |
483 case SOURCE_TERMINATES: { | 364 case SOURCE_TERMINATES: { |
484 // When the |source| stops the remoting session, the Cast Provider is | 365 // When the |source| stops the remoting session, the Cast Provider is |
485 // notified the session has stopped, and the |source| receives both an | 366 // notified the session has stopped, and the |source| receives both an |
486 // OnStopped() and an OnSinkGone() notification. | 367 // OnStopped() and an OnSinkGone() notification. |
487 const RemotingStopReason reason = RemotingStopReason::LOCAL_PLAYBACK; | 368 const RemotingStopReason reason = RemotingStopReason::LOCAL_PLAYBACK; |
488 EXPECT_CALL(*source, OnSinkGone()).Times(1).RetiresOnSaturation(); | 369 EXPECT_CALL(*source, OnSinkGone()).Times(1).RetiresOnSaturation(); |
489 EXPECT_CALL(*source, OnStopped(reason)).Times(1).RetiresOnSaturation(); | 370 EXPECT_CALL(*source, OnStopped(reason)).Times(1).RetiresOnSaturation(); |
| 371 EXPECT_CALL(*media_remoter, Stop(reason)).Times(1).RetiresOnSaturation(); |
490 remoter->Stop(reason); | 372 remoter->Stop(reason); |
491 RunUntilIdle(); | 373 RunUntilIdle(); |
492 ConnectorSentMessageToProvider("STOP_CAST_REMOTING:session=1"); | |
493 | 374 |
494 // Since remoting is stopped, any further messaging in either direction | 375 // Since remoting is stopped, any further messaging in either direction |
495 // must be dropped. | 376 // must be dropped. |
496 const std::vector<uint8_t> message_to_sink = { 1, 6, 1, 8, 0, 3 }; | 377 const std::vector<uint8_t> message_to_sink = { 1, 6, 1, 8, 0, 3 }; |
497 const std::vector<uint8_t> message_to_source = { 6, 2, 8, 3, 1, 8 }; | 378 const std::vector<uint8_t> message_to_source = { 6, 2, 8, 3, 1, 8 }; |
498 EXPECT_CALL(*source, OnMessageFromSink(_)).Times(0); | 379 EXPECT_CALL(*source, OnMessageFromSink(_)).Times(0); |
| 380 EXPECT_CALL(*media_remoter, SendMessageToSink(_)).Times(0); |
499 remoter->SendMessageToSink(message_to_sink); | 381 remoter->SendMessageToSink(message_to_sink); |
500 ProviderPassesMessageFromSink(message_to_source); | 382 media_remoter->SendMessageToSource(message_to_source); |
501 RunUntilIdle(); | 383 RunUntilIdle(); |
502 ConnectorSentNoMessagesToSink(); | |
503 | 384 |
504 // When the sink is ready, the Cast Provider sends a notification to the | 385 // When the sink is ready, the Cast Provider sends a notification to the |
505 // connector. The connector will notify both sources that a sink is once | 386 // connector. The connector will notify both sources that a sink is once |
506 // again available. | 387 // again available. |
507 EXPECT_CALL(*source, OnSinkAvailable(kAllCapabilities)).Times(1) | 388 EXPECT_CALL(*source, OnSinkAvailable(kAllCapabilities)).Times(1) |
508 .RetiresOnSaturation(); | 389 .RetiresOnSaturation(); |
509 EXPECT_CALL(*other_source, OnSinkAvailable(kAllCapabilities)).Times(1) | 390 EXPECT_CALL(*other_source, OnSinkAvailable(kAllCapabilities)).Times(1) |
510 .RetiresOnSaturation(); | 391 .RetiresOnSaturation(); |
511 ProviderSaysToRemotingConnector("STOPPED_CAST_REMOTING:session=1"); | 392 media_remoter->OnStopped(reason); |
512 RunUntilIdle(); | 393 RunUntilIdle(); |
513 | 394 |
514 // When the sink is no longer available, the Cast Provider notifies the | 395 // When the sink is no longer available, the Cast Provider notifies the |
515 // connector, and both sources are then notified the sink is gone. | 396 // connector, and both sources are then notified the sink is gone. |
516 EXPECT_CALL(*source, OnSinkGone()).Times(AtLeast(1)); | 397 EXPECT_CALL(*source, OnSinkGone()).Times(AtLeast(1)); |
517 EXPECT_CALL(*other_source, OnSinkGone()).Times(AtLeast(1)); | 398 EXPECT_CALL(*other_source, OnSinkGone()).Times(AtLeast(1)); |
518 ProviderLosesSink(); | 399 media_remoter.reset(); |
519 RunUntilIdle(); | 400 RunUntilIdle(); |
520 | 401 |
521 break; | 402 break; |
522 } | 403 } |
523 | 404 |
524 case MOJO_PIPE_CLOSES: | 405 case MOJO_PIPE_CLOSES: |
525 // When the Mojo pipes for |other_source| close, this should not affect | 406 // When the Mojo pipes for |other_source| close, this should not affect |
526 // the current remoting session. | 407 // the current remoting session. |
| 408 EXPECT_CALL(*media_remoter, Stop(_)).Times(0); |
527 other_source.reset(); | 409 other_source.reset(); |
528 other_remoter.reset(); | 410 other_remoter.reset(); |
529 RunUntilIdle(); | 411 RunUntilIdle(); |
530 ConnectorSentNoMessagesToProvider(); | |
531 | 412 |
532 // Now, when the Mojo pipes for |source| close, the Cast Provider will be | 413 // Now, when the Mojo pipes for |source| close, the Cast Provider will be |
533 // notified that the session has stopped. | 414 // notified that the session has stopped. |
| 415 EXPECT_CALL(*media_remoter, Stop(_)).Times(1).RetiresOnSaturation(); |
534 source.reset(); | 416 source.reset(); |
535 remoter.reset(); | 417 remoter.reset(); |
536 RunUntilIdle(); | 418 RunUntilIdle(); |
537 ConnectorSentMessageToProvider("STOP_CAST_REMOTING:session=1"); | |
538 | |
539 // The Cast Provider will detect when the sink is ready for the next | |
540 // remoting session, and then notify the connector. However, there are no | |
541 // sources to propagate this notification to. | |
542 ProviderSaysToRemotingConnector("STOPPED_CAST_REMOTING:session=1"); | |
543 RunUntilIdle(); | |
544 | 419 |
545 break; | 420 break; |
546 | 421 |
547 case ROUTE_TERMINATES: | 422 case ROUTE_TERMINATES: |
548 // When the Media Router terminates the route (e.g., because a user | 423 // When the Media Router terminates the route (e.g., because a user |
549 // terminated the route from the UI), the source and sink are immediately | 424 // terminated the route from the UI), the source and sink are immediately |
550 // cut off from one another. | 425 // cut off from one another. |
551 EXPECT_CALL(*source, OnSinkGone()).Times(AtLeast(1)); | 426 EXPECT_CALL(*source, OnSinkGone()).Times(AtLeast(1)); |
552 EXPECT_CALL(*source, OnStopped(RemotingStopReason::ROUTE_TERMINATED)) | |
553 .Times(1).RetiresOnSaturation(); | |
554 EXPECT_CALL(*other_source, OnSinkGone()).Times(AtLeast(0)); | 427 EXPECT_CALL(*other_source, OnSinkGone()).Times(AtLeast(0)); |
555 MediaRouterTerminatesRoute(); | |
556 RunUntilIdle(); | |
557 ConnectorSentNoMessagesToProvider(); | |
558 | |
559 // Furthermore, the connector and Cast Provider are also cut off from one | 428 // Furthermore, the connector and Cast Provider are also cut off from one |
560 // another and should not be able to exchange messages anymore. Therefore, | 429 // another and should not be able to exchange messages anymore. Therefore, |
561 // the connector will never try to notify the sources that the sink is | 430 // the connector will never try to notify the sources that the sink is |
562 // available again. | 431 // available again. |
563 EXPECT_CALL(*source, OnSinkAvailable(_)).Times(0); | 432 EXPECT_CALL(*source, OnSinkAvailable(_)).Times(0); |
564 EXPECT_CALL(*other_source, OnSinkAvailable(_)).Times(0); | 433 EXPECT_CALL(*other_source, OnSinkAvailable(_)).Times(0); |
565 ProviderSaysToRemotingConnector("STOPPED_CAST_REMOTING:session=1"); | 434 media_remoter.reset(); |
566 RunUntilIdle(); | 435 RunUntilIdle(); |
567 | 436 |
568 break; | 437 break; |
569 | 438 |
570 case EXTERNAL_FAILURE: { | 439 case EXTERNAL_FAILURE: { |
571 // When the Cast Provider is cut-off from the sink, it sends a fail | 440 // When the Cast Provider is cut-off from the sink, it sends a fail |
572 // notification to the connector. The connector, in turn, force-stops the | 441 // notification to the connector. The connector, in turn, force-stops the |
573 // remoting session and notifies the |source|. | 442 // remoting session and notifies the |source|. |
574 EXPECT_CALL(*source, OnSinkGone()).Times(1).RetiresOnSaturation(); | 443 EXPECT_CALL(*source, OnSinkGone()).Times(1).RetiresOnSaturation(); |
575 EXPECT_CALL(*source, OnStopped(RemotingStopReason::UNEXPECTED_FAILURE)) | 444 EXPECT_CALL(*source, OnStopped(RemotingStopReason::UNEXPECTED_FAILURE)) |
576 .Times(1).RetiresOnSaturation(); | 445 .Times(1).RetiresOnSaturation(); |
577 ProviderSaysToRemotingConnector("FAILED_CAST_REMOTING:session=1"); | 446 EXPECT_CALL(*media_remoter, Stop(RemotingStopReason::UNEXPECTED_FAILURE)) |
| 447 .Times(1) |
| 448 .RetiresOnSaturation(); |
| 449 media_remoter->OnError(); |
578 RunUntilIdle(); | 450 RunUntilIdle(); |
579 | 451 |
580 // Since remoting is stopped, any further messaging in either direction | 452 // Since remoting is stopped, any further messaging in either direction |
581 // must be dropped. | 453 // must be dropped. |
582 const std::vector<uint8_t> message_to_sink = { 1, 6, 1, 8, 0, 3 }; | 454 const std::vector<uint8_t> message_to_sink = { 1, 6, 1, 8, 0, 3 }; |
583 const std::vector<uint8_t> message_to_source = { 6, 2, 8, 3, 1, 8 }; | 455 const std::vector<uint8_t> message_to_source = { 6, 2, 8, 3, 1, 8 }; |
584 EXPECT_CALL(*source, OnMessageFromSink(_)).Times(0); | 456 EXPECT_CALL(*source, OnMessageFromSink(_)).Times(0); |
| 457 EXPECT_CALL(*media_remoter, SendMessageToSink(_)).Times(0); |
585 remoter->SendMessageToSink(message_to_sink); | 458 remoter->SendMessageToSink(message_to_sink); |
586 ProviderPassesMessageFromSink(message_to_source); | 459 media_remoter->SendMessageToSource(message_to_source); |
587 RunUntilIdle(); | 460 RunUntilIdle(); |
588 ConnectorSentNoMessagesToSink(); | |
589 | 461 |
590 // Later, if whatever caused the external failure has resolved, the Cast | 462 // Later, if whatever caused the external failure has resolved, the Cast |
591 // Provider will notify the connector that the sink is available one | 463 // Provider will notify the connector that the sink is available one |
592 // again. | 464 // again. |
593 EXPECT_CALL(*source, OnSinkAvailable(kAllCapabilities)).Times(1) | 465 EXPECT_CALL(*source, OnSinkAvailable(kAllCapabilities)).Times(1) |
594 .RetiresOnSaturation(); | 466 .RetiresOnSaturation(); |
595 EXPECT_CALL(*other_source, OnSinkAvailable(kAllCapabilities)).Times(1) | 467 EXPECT_CALL(*other_source, OnSinkAvailable(kAllCapabilities)).Times(1) |
596 .RetiresOnSaturation(); | 468 .RetiresOnSaturation(); |
597 ProviderSaysToRemotingConnector("STOPPED_CAST_REMOTING:session=1"); | 469 media_remoter->OnStopped(RemotingStopReason::UNEXPECTED_FAILURE); |
598 RunUntilIdle(); | 470 RunUntilIdle(); |
599 | 471 |
600 // When the sink is no longer available, the Cast Provider notifies the | 472 // When the sink is no longer available, the Cast Provider notifies the |
601 // connector, and both sources are then notified the sink is gone. | 473 // connector, and both sources are then notified the sink is gone. |
602 EXPECT_CALL(*source, OnSinkGone()).Times(AtLeast(1)); | 474 EXPECT_CALL(*source, OnSinkGone()).Times(AtLeast(1)); |
603 EXPECT_CALL(*other_source, OnSinkGone()).Times(AtLeast(1)); | 475 EXPECT_CALL(*other_source, OnSinkGone()).Times(AtLeast(1)); |
604 ProviderLosesSink(); | 476 media_remoter.reset(); |
605 RunUntilIdle(); | 477 RunUntilIdle(); |
606 | 478 |
607 break; | 479 break; |
608 } | 480 } |
609 } | 481 } |
610 } | 482 } |
611 | 483 |
612 INSTANTIATE_TEST_CASE_P(, CastRemotingConnectorFullSessionTest, | 484 INSTANTIATE_TEST_CASE_P(, CastRemotingConnectorFullSessionTest, |
613 ::testing::Values(SOURCE_TERMINATES, | 485 ::testing::Values(SOURCE_TERMINATES, |
614 MOJO_PIPE_CLOSES, | 486 MOJO_PIPE_CLOSES, |
615 ROUTE_TERMINATES, | 487 ROUTE_TERMINATES, |
616 EXTERNAL_FAILURE)); | 488 EXTERNAL_FAILURE)); |
OLD | NEW |