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 "base/bind.h" | 5 #include "base/bind.h" |
| 6 #include "base/command_line.h" |
6 #include "base/memory/scoped_ptr.h" | 7 #include "base/memory/scoped_ptr.h" |
7 #include "base/run_loop.h" | 8 #include "base/run_loop.h" |
8 #include "base/sync_socket.h" | 9 #include "base/sync_socket.h" |
9 #include "content/browser/media/capture/audio_mirroring_manager.h" | 10 #include "content/browser/media/capture/audio_mirroring_manager.h" |
10 #include "content/browser/media/media_internals.h" | 11 #include "content/browser/media/media_internals.h" |
11 #include "content/browser/renderer_host/media/audio_input_device_manager.h" | 12 #include "content/browser/renderer_host/media/audio_input_device_manager.h" |
12 #include "content/browser/renderer_host/media/audio_renderer_host.h" | 13 #include "content/browser/renderer_host/media/audio_renderer_host.h" |
13 #include "content/browser/renderer_host/media/media_stream_manager.h" | 14 #include "content/browser/renderer_host/media/media_stream_manager.h" |
14 #include "content/common/media/audio_messages.h" | 15 #include "content/common/media/audio_messages.h" |
| 16 #include "content/public/common/content_switches.h" |
15 #include "content/public/test/test_browser_thread_bundle.h" | 17 #include "content/public/test/test_browser_thread_bundle.h" |
16 #include "ipc/ipc_message_utils.h" | 18 #include "ipc/ipc_message_utils.h" |
17 #include "media/audio/audio_manager.h" | 19 #include "media/audio/audio_manager.h" |
18 #include "media/base/bind_to_current_loop.h" | 20 #include "media/base/bind_to_current_loop.h" |
19 #include "testing/gmock/include/gmock/gmock.h" | 21 #include "testing/gmock/include/gmock/gmock.h" |
20 #include "testing/gtest/include/gtest/gtest.h" | 22 #include "testing/gtest/include/gtest/gtest.h" |
21 | 23 |
22 using ::testing::_; | 24 using ::testing::_; |
23 using ::testing::Assign; | 25 using ::testing::Assign; |
24 using ::testing::DoAll; | 26 using ::testing::DoAll; |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 scoped_ptr<base::SyncSocket> sync_socket_; | 151 scoped_ptr<base::SyncSocket> sync_socket_; |
150 uint32 shared_memory_length_; | 152 uint32 shared_memory_length_; |
151 | 153 |
152 DISALLOW_COPY_AND_ASSIGN(MockAudioRendererHost); | 154 DISALLOW_COPY_AND_ASSIGN(MockAudioRendererHost); |
153 }; | 155 }; |
154 | 156 |
155 class AudioRendererHostTest : public testing::Test { | 157 class AudioRendererHostTest : public testing::Test { |
156 public: | 158 public: |
157 AudioRendererHostTest() { | 159 AudioRendererHostTest() { |
158 audio_manager_.reset(media::AudioManager::CreateForTesting()); | 160 audio_manager_.reset(media::AudioManager::CreateForTesting()); |
| 161 CommandLine::ForCurrentProcess()->AppendSwitch( |
| 162 switches::kUseFakeDeviceForMediaStream); |
159 media_stream_manager_.reset(new MediaStreamManager(audio_manager_.get())); | 163 media_stream_manager_.reset(new MediaStreamManager(audio_manager_.get())); |
160 media_stream_manager_->UseFakeDevice(); | |
161 host_ = new MockAudioRendererHost(audio_manager_.get(), | 164 host_ = new MockAudioRendererHost(audio_manager_.get(), |
162 &mirroring_manager_, | 165 &mirroring_manager_, |
163 MediaInternals::GetInstance(), | 166 MediaInternals::GetInstance(), |
164 media_stream_manager_.get()); | 167 media_stream_manager_.get()); |
165 | 168 |
166 // Simulate IPC channel connected. | 169 // Simulate IPC channel connected. |
167 host_->set_peer_pid_for_testing(base::GetCurrentProcId()); | 170 host_->set_peer_pid_for_testing(base::GetCurrentProcId()); |
168 } | 171 } |
169 | 172 |
170 virtual ~AudioRendererHostTest() { | 173 virtual ~AudioRendererHostTest() { |
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
345 } | 348 } |
346 | 349 |
347 TEST_F(AudioRendererHostTest, CreateUnifiedStreamAndClose) { | 350 TEST_F(AudioRendererHostTest, CreateUnifiedStreamAndClose) { |
348 Create(true); | 351 Create(true); |
349 Close(); | 352 Close(); |
350 } | 353 } |
351 | 354 |
352 // TODO(hclam): Add tests for data conversation in low latency mode. | 355 // TODO(hclam): Add tests for data conversation in low latency mode. |
353 | 356 |
354 } // namespace content | 357 } // namespace content |
OLD | NEW |