blob: 170eff5e8503ff28d5a261d35fad27307b38d7cf [file] [log] [blame]
solenberg566ef242015-11-06 15:34:49 -08001/*
2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11#include "testing/gtest/include/gtest/gtest.h"
12
13#include "webrtc/audio/audio_state.h"
14#include "webrtc/base/scoped_ptr.h"
15#include "webrtc/test/mock_voice_engine.h"
16
17namespace webrtc {
18namespace test {
19namespace {
20
21struct ConfigHelper {
22 ConfigHelper() {
23 EXPECT_CALL(voice_engine_,
24 RegisterVoiceEngineObserver(testing::_)).WillOnce(testing::Return(0));
25 EXPECT_CALL(voice_engine_,
26 DeRegisterVoiceEngineObserver()).WillOnce(testing::Return(0));
27 config_.voice_engine = &voice_engine_;
28 }
29 AudioState::Config& config() { return config_; }
30 MockVoiceEngine& voice_engine() { return voice_engine_; }
31
32 private:
33 MockVoiceEngine voice_engine_;
34 AudioState::Config config_;
35};
36} // namespace
37
38TEST(AudioStateTest, Create) {
39 ConfigHelper helper;
40 rtc::scoped_refptr<AudioState> audio_state =
41 AudioState::Create(helper.config());
42 EXPECT_TRUE(audio_state.get());
43}
44
45TEST(AudioStateTest, ConstructDestruct) {
46 ConfigHelper helper;
47 rtc::scoped_ptr<internal::AudioState> audio_state(
48 new internal::AudioState(helper.config()));
49}
50
51TEST(AudioStateTest, GetVoiceEngine) {
52 ConfigHelper helper;
53 rtc::scoped_ptr<internal::AudioState> audio_state(
54 new internal::AudioState(helper.config()));
55 EXPECT_EQ(audio_state->voice_engine(), &helper.voice_engine());
56}
57
58TEST(AudioStateTest, TypingNoiseDetected) {
59 ConfigHelper helper;
60 rtc::scoped_ptr<internal::AudioState> audio_state(
61 new internal::AudioState(helper.config()));
62 VoiceEngineObserver* voe_observer =
63 static_cast<VoiceEngineObserver*>(audio_state.get());
64 EXPECT_FALSE(audio_state->typing_noise_detected());
65
66 voe_observer->CallbackOnError(-1, VE_NOT_INITED);
67 EXPECT_FALSE(audio_state->typing_noise_detected());
68
69 voe_observer->CallbackOnError(-1, VE_TYPING_NOISE_WARNING);
70 EXPECT_TRUE(audio_state->typing_noise_detected());
71 voe_observer->CallbackOnError(-1, VE_NOT_INITED);
72 EXPECT_TRUE(audio_state->typing_noise_detected());
73
74 voe_observer->CallbackOnError(-1, VE_TYPING_NOISE_OFF_WARNING);
75 EXPECT_FALSE(audio_state->typing_noise_detected());
76 voe_observer->CallbackOnError(-1, VE_NOT_INITED);
77 EXPECT_FALSE(audio_state->typing_noise_detected());
78}
79} // namespace test
80} // namespace webrtc