Index: webrtc/audio/audio_state_unittest.cc |
diff --git a/webrtc/audio/audio_state_unittest.cc b/webrtc/audio/audio_state_unittest.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..e50bba509ef67e34fd055db133b0137761c76dd8 |
--- /dev/null |
+++ b/webrtc/audio/audio_state_unittest.cc |
@@ -0,0 +1,86 @@ |
+/* |
+ * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. |
+ * |
+ * Use of this source code is governed by a BSD-style license |
+ * that can be found in the LICENSE file in the root of the source |
+ * tree. An additional intellectual property rights grant can be found |
+ * in the file PATENTS. All contributing project authors may |
+ * be found in the AUTHORS file in the root of the source tree. |
+ */ |
+ |
+#include "testing/gtest/include/gtest/gtest.h" |
+ |
+#include "webrtc/audio/audio_state.h" |
+#include "webrtc/base/scoped_ptr.h" |
+#include "webrtc/test/fake_voice_engine.h" |
+ |
+namespace webrtc { |
+namespace test { |
+namespace { |
+ |
+struct ConfigHelper { |
+ ConfigHelper() { |
+ config_.voice_engine = &fake_voice_engine_; |
+ } |
+ AudioState::Config& config() { |
+ return config_; |
+ } |
+ FakeVoiceEngine& fake_voice_engine() { |
+ return fake_voice_engine_; |
+ } |
+ private: |
+ FakeVoiceEngine fake_voice_engine_; |
+ AudioState::Config config_; |
+}; |
+} // namespace |
+ |
+TEST(AudioStateTest, Create) { |
+ ConfigHelper helper; |
+ rtc::linked_ptr<AudioState> audio_state = |
+ AudioState::Create(helper.config()); |
+ EXPECT_TRUE(audio_state.get()); |
+} |
+ |
+TEST(AudioStateTest, ConstructDestruct) { |
+ ConfigHelper helper; |
+ { |
+ rtc::scoped_ptr<internal::AudioState> audio_state( |
+ new internal::AudioState(helper.config())); |
+ EXPECT_TRUE(audio_state.get()); |
+ // TODO(solenberg): Add these once FakeVoiceEngine has been turned into a |
+ // proper mock. |
+ // EXPECT_CALL(helper.fake_voice_engine(), |
+ // RegisterVoiceEngineObserver(audio_state.get())).Times(1); |
+ } |
+ // EXPECT_CALL(helper.fake_voice_engine(), |
+ // DeRegisterVoiceEngineObserver()).Times(1); |
+} |
+ |
+TEST(AudioStateTest, GetVoiceEngine) { |
+ ConfigHelper helper; |
+ rtc::scoped_ptr<internal::AudioState> audio_state( |
+ new internal::AudioState(helper.config())); |
+ EXPECT_EQ(audio_state->voice_engine(), &helper.fake_voice_engine()); |
+} |
+ |
+TEST(AudioStateTest, TypingNoiseDetected) { |
+ ConfigHelper helper; |
+ rtc::scoped_ptr<internal::AudioState> audio_state( |
+ new internal::AudioState(helper.config())); |
+ EXPECT_FALSE(audio_state->typing_noise_detected()); |
+ |
+ audio_state->CallbackOnError(-1, VE_NOT_INITED); |
+ EXPECT_FALSE(audio_state->typing_noise_detected()); |
+ |
+ audio_state->CallbackOnError(-1, VE_TYPING_NOISE_WARNING); |
+ EXPECT_TRUE(audio_state->typing_noise_detected()); |
+ audio_state->CallbackOnError(-1, VE_NOT_INITED); |
+ EXPECT_TRUE(audio_state->typing_noise_detected()); |
+ |
+ audio_state->CallbackOnError(-1, VE_TYPING_NOISE_OFF_WARNING); |
+ EXPECT_FALSE(audio_state->typing_noise_detected()); |
+ audio_state->CallbackOnError(-1, VE_NOT_INITED); |
+ EXPECT_FALSE(audio_state->typing_noise_detected()); |
+} |
+} // namespace test |
+} // namespace webrtc |