OLD | NEW |
| (Empty) |
1 /* | |
2 * libjingle | |
3 * Copyright 2004 Google Inc. | |
4 * | |
5 * Redistribution and use in source and binary forms, with or without | |
6 * modification, are permitted provided that the following conditions are met: | |
7 * | |
8 * 1. Redistributions of source code must retain the above copyright notice, | |
9 * this list of conditions and the following disclaimer. | |
10 * 2. Redistributions in binary form must reproduce the above copyright notice, | |
11 * this list of conditions and the following disclaimer in the documentation | |
12 * and/or other materials provided with the distribution. | |
13 * 3. The name of the author may not be used to endorse or promote products | |
14 * derived from this software without specific prior written permission. | |
15 * | |
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED | |
17 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | |
18 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO | |
19 * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | |
20 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | |
21 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; | |
22 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, | |
23 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR | |
24 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF | |
25 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
26 */ | |
27 | |
28 #include "talk/media/base/fakemediaengine.h" | |
29 #include "webrtc/p2p/base/fakesession.h" | |
30 #include "talk/session/media/channel.h" | |
31 #include "talk/session/media/currentspeakermonitor.h" | |
32 #include "talk/session/media/typingmonitor.h" | |
33 #include "webrtc/base/gunit.h" | |
34 | |
35 namespace cricket { | |
36 | |
37 class TypingMonitorTest : public testing::Test { | |
38 protected: | |
39 TypingMonitorTest() : session_(true) { | |
40 vc_.reset(new VoiceChannel(rtc::Thread::Current(), &engine_, | |
41 engine_.CreateChannel(), &session_, "", false)); | |
42 engine_.GetVoiceChannel(0)->set_time_since_last_typing(1000); | |
43 | |
44 TypingMonitorOptions settings = {10, 20, 30, 40, 50}; | |
45 monitor_.reset(new TypingMonitor(vc_.get(), | |
46 rtc::Thread::Current(), | |
47 settings)); | |
48 } | |
49 | |
50 void TearDown() { | |
51 vc_.reset(); | |
52 } | |
53 | |
54 rtc::scoped_ptr<TypingMonitor> monitor_; | |
55 rtc::scoped_ptr<VoiceChannel> vc_; | |
56 FakeMediaEngine engine_; | |
57 FakeSession session_; | |
58 }; | |
59 | |
60 TEST_F(TypingMonitorTest, TestTriggerMute) { | |
61 EXPECT_FALSE(vc_->IsStreamMuted(0)); | |
62 EXPECT_FALSE(engine_.GetVoiceChannel(0)->IsStreamMuted(0)); | |
63 | |
64 engine_.GetVoiceChannel(0)->TriggerError(0, VoiceMediaChannel::ERROR_OTHER); | |
65 EXPECT_FALSE(vc_->IsStreamMuted(0)); | |
66 EXPECT_FALSE(engine_.GetVoiceChannel(0)->IsStreamMuted(0)); | |
67 | |
68 engine_.GetVoiceChannel(0)->TriggerError( | |
69 0, VoiceMediaChannel::ERROR_REC_TYPING_NOISE_DETECTED); | |
70 EXPECT_TRUE(vc_->IsStreamMuted(0)); | |
71 EXPECT_TRUE(engine_.GetVoiceChannel(0)->IsStreamMuted(0)); | |
72 | |
73 EXPECT_TRUE_WAIT(!vc_->IsStreamMuted(0) && | |
74 !engine_.GetVoiceChannel(0)->IsStreamMuted(0), 100); | |
75 } | |
76 | |
77 TEST_F(TypingMonitorTest, TestResetMonitor) { | |
78 engine_.GetVoiceChannel(0)->set_time_since_last_typing(1000); | |
79 EXPECT_FALSE(vc_->IsStreamMuted(0)); | |
80 EXPECT_FALSE(engine_.GetVoiceChannel(0)->IsStreamMuted(0)); | |
81 | |
82 engine_.GetVoiceChannel(0)->TriggerError( | |
83 0, VoiceMediaChannel::ERROR_REC_TYPING_NOISE_DETECTED); | |
84 EXPECT_TRUE(vc_->IsStreamMuted(0)); | |
85 EXPECT_TRUE(engine_.GetVoiceChannel(0)->IsStreamMuted(0)); | |
86 | |
87 monitor_.reset(); | |
88 EXPECT_FALSE(vc_->IsStreamMuted(0)); | |
89 EXPECT_FALSE(engine_.GetVoiceChannel(0)->IsStreamMuted(0)); | |
90 } | |
91 | |
92 } // namespace cricket | |
OLD | NEW |