OLD | NEW |
1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
2 // Use of this source code if governed by a BSD-style license that can be | 2 // Use of this source code if governed by a BSD-style license that can be |
3 // found in LICENSE file. | 3 // found in LICENSE file. |
4 | 4 |
5 #include "core/exported/WebViewBase.h" | 5 #include "core/exported/WebViewBase.h" |
6 #include "platform/scheduler/renderer/web_view_scheduler.h" | 6 #include "platform/scheduler/renderer/web_view_scheduler.h" |
7 #include "platform/testing/TestingPlatformSupport.h" | 7 #include "platform/testing/TestingPlatformSupport.h" |
8 #include "platform/wtf/PtrUtil.h" | |
9 #include "public/platform/WebRTCError.h" | 8 #include "public/platform/WebRTCError.h" |
10 #include "public/platform/WebRTCPeerConnectionHandler.h" | 9 #include "public/platform/WebRTCPeerConnectionHandler.h" |
11 #include "public/platform/WebRTCRtpReceiver.h" | 10 #include "public/platform/WebRTCRtpReceiver.h" |
12 #include "public/platform/WebRTCSessionDescription.h" | 11 #include "public/platform/WebRTCSessionDescription.h" |
13 #include "public/web/WebScriptSource.h" | 12 #include "public/web/WebScriptSource.h" |
14 #include "testing/gtest/include/gtest/gtest.h" | 13 #include "testing/gtest/include/gtest/gtest.h" |
15 #include "web/WebLocalFrameImpl.h" | 14 #include "web/WebLocalFrameImpl.h" |
16 #include "web/tests/sim/SimRequest.h" | 15 #include "web/tests/sim/SimRequest.h" |
17 #include "web/tests/sim/SimTest.h" | 16 #include "web/tests/sim/SimTest.h" |
18 | 17 |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 } | 90 } |
92 WebRTCDTMFSenderHandler* CreateDTMFSender( | 91 WebRTCDTMFSenderHandler* CreateDTMFSender( |
93 const WebMediaStreamTrack&) override { | 92 const WebMediaStreamTrack&) override { |
94 return nullptr; | 93 return nullptr; |
95 } | 94 } |
96 void Stop() override {} | 95 void Stop() override {} |
97 }; | 96 }; |
98 | 97 |
99 class TestingPlatformSupportWithWebRTC : public TestingPlatformSupport { | 98 class TestingPlatformSupportWithWebRTC : public TestingPlatformSupport { |
100 public: | 99 public: |
101 std::unique_ptr<blink::WebRTCPeerConnectionHandler> | 100 blink::WebRTCPeerConnectionHandler* CreateRTCPeerConnectionHandler( |
102 CreateRTCPeerConnectionHandler( | |
103 blink::WebRTCPeerConnectionHandlerClient*) override { | 101 blink::WebRTCPeerConnectionHandlerClient*) override { |
104 return WTF::MakeUnique<MockWebRTCPeerConnectionHandler>(); | 102 return new MockWebRTCPeerConnectionHandler(); |
105 } | 103 } |
106 }; | 104 }; |
107 | 105 |
108 } // namespace | 106 } // namespace |
109 | 107 |
110 TEST_F(ActiveConnectionThrottlingTest, WebRTCStopsThrottling) { | 108 TEST_F(ActiveConnectionThrottlingTest, WebRTCStopsThrottling) { |
111 ScopedTestingPlatformSupport<TestingPlatformSupportWithWebRTC> platform; | 109 ScopedTestingPlatformSupport<TestingPlatformSupportWithWebRTC> platform; |
112 | 110 |
113 SimRequest main_resource("https://example.com/", "text/html"); | 111 SimRequest main_resource("https://example.com/", "text/html"); |
114 | 112 |
115 LoadURL("https://example.com/"); | 113 LoadURL("https://example.com/"); |
116 | 114 |
117 EXPECT_FALSE(WebView().Scheduler()->HasActiveConnectionForTest()); | 115 EXPECT_FALSE(WebView().Scheduler()->HasActiveConnectionForTest()); |
118 | 116 |
119 main_resource.Complete( | 117 main_resource.Complete( |
120 "(<script>" | 118 "(<script>" |
121 " var data_channel = new RTCPeerConnection();" | 119 " var data_channel = new RTCPeerConnection();" |
122 "</script>)"); | 120 "</script>)"); |
123 | 121 |
124 EXPECT_TRUE(WebView().Scheduler()->HasActiveConnectionForTest()); | 122 EXPECT_TRUE(WebView().Scheduler()->HasActiveConnectionForTest()); |
125 | 123 |
126 MainFrame().ExecuteScript(WebString("data_channel.close();")); | 124 MainFrame().ExecuteScript(WebString("data_channel.close();")); |
127 | 125 |
128 EXPECT_FALSE(WebView().Scheduler()->HasActiveConnectionForTest()); | 126 EXPECT_FALSE(WebView().Scheduler()->HasActiveConnectionForTest()); |
129 } | 127 } |
130 | 128 |
131 } // namespace blink | 129 } // namespace blink |
OLD | NEW |