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 <vector> | 5 #include <vector> |
6 | 6 |
7 #include "base/compiler_specific.h" | 7 #include "base/compiler_specific.h" |
8 #include "base/logging.h" | 8 #include "base/logging.h" |
9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "base/message_loop/message_loop.h" |
10 #include "base/run_loop.h" | 12 #include "base/run_loop.h" |
11 #include "base/strings/string_piece.h" | 13 #include "base/strings/string_piece.h" |
12 #include "base/test/test_message_loop.h" | |
13 #include "base/thread_task_runner_handle.h" | |
14 #include "media/audio/audio_manager.h" | 14 #include "media/audio/audio_manager.h" |
15 #include "media/audio/simple_sources.h" | 15 #include "media/audio/simple_sources.h" |
16 #include "media/audio/sounds/audio_stream_handler.h" | 16 #include "media/audio/sounds/audio_stream_handler.h" |
17 #include "media/audio/sounds/sounds_manager.h" | 17 #include "media/audio/sounds/sounds_manager.h" |
18 #include "media/audio/sounds/test_data.h" | 18 #include "media/audio/sounds/test_data.h" |
19 #include "testing/gtest/include/gtest/gtest.h" | 19 #include "testing/gtest/include/gtest/gtest.h" |
20 | 20 |
21 namespace media { | 21 namespace media { |
22 | 22 |
23 class SoundsManagerTest : public testing::Test { | 23 class SoundsManagerTest : public testing::Test { |
24 public: | 24 public: |
25 SoundsManagerTest() {} | 25 SoundsManagerTest() {} |
26 ~SoundsManagerTest() override {} | 26 ~SoundsManagerTest() override {} |
27 | 27 |
28 void SetUp() override { | 28 void SetUp() override { |
29 audio_manager_ = | 29 audio_manager_.reset(AudioManager::CreateForTesting()); |
30 AudioManager::CreateForTesting(base::ThreadTaskRunnerHandle::Get()); | |
31 SoundsManager::Create(); | 30 SoundsManager::Create(); |
32 base::RunLoop().RunUntilIdle(); | |
33 } | 31 } |
34 | 32 |
35 void TearDown() override { | 33 void TearDown() override { |
36 SoundsManager::Shutdown(); | 34 SoundsManager::Shutdown(); |
37 base::RunLoop().RunUntilIdle(); | 35 audio_manager_.reset(); |
38 } | 36 } |
39 | 37 |
40 void SetObserverForTesting(AudioStreamHandler::TestObserver* observer) { | 38 void SetObserverForTesting(AudioStreamHandler::TestObserver* observer) { |
41 AudioStreamHandler::SetObserverForTesting(observer); | 39 AudioStreamHandler::SetObserverForTesting(observer); |
42 } | 40 } |
43 | 41 |
44 void SetAudioSourceForTesting( | 42 void SetAudioSourceForTesting( |
45 AudioOutputStream::AudioSourceCallback* source) { | 43 AudioOutputStream::AudioSourceCallback* source) { |
46 AudioStreamHandler::SetAudioSourceForTesting(source); | 44 AudioStreamHandler::SetAudioSourceForTesting(source); |
47 } | 45 } |
48 | 46 |
49 private: | 47 private: |
50 base::TestMessageLoop message_loop_; | 48 scoped_ptr<AudioManager> audio_manager_; |
51 ScopedAudioManagerPtr audio_manager_; | 49 |
| 50 base::MessageLoop message_loop_; |
52 }; | 51 }; |
53 | 52 |
54 TEST_F(SoundsManagerTest, Play) { | 53 TEST_F(SoundsManagerTest, Play) { |
55 ASSERT_TRUE(SoundsManager::Get()); | 54 ASSERT_TRUE(SoundsManager::Get()); |
56 | 55 |
57 base::RunLoop run_loop; | 56 base::RunLoop run_loop; |
58 TestObserver observer(run_loop.QuitClosure()); | 57 TestObserver observer(run_loop.QuitClosure()); |
59 | 58 |
60 SetObserverForTesting(&observer); | 59 SetObserverForTesting(&observer); |
61 | 60 |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 SetObserverForTesting(NULL); | 106 SetObserverForTesting(NULL); |
108 } | 107 } |
109 | 108 |
110 TEST_F(SoundsManagerTest, Uninitialized) { | 109 TEST_F(SoundsManagerTest, Uninitialized) { |
111 ASSERT_TRUE(SoundsManager::Get()); | 110 ASSERT_TRUE(SoundsManager::Get()); |
112 ASSERT_FALSE(SoundsManager::Get()->Play(kTestAudioKey)); | 111 ASSERT_FALSE(SoundsManager::Get()->Play(kTestAudioKey)); |
113 ASSERT_FALSE(SoundsManager::Get()->Stop(kTestAudioKey)); | 112 ASSERT_FALSE(SoundsManager::Get()->Stop(kTestAudioKey)); |
114 } | 113 } |
115 | 114 |
116 } // namespace media | 115 } // namespace media |
OLD | NEW |