blob: 8c66d887817b277eb6d3a24771dc598d99ea17d7 [file] [log] [blame]
andrew@webrtc.org55c0d4a2012-08-29 02:13:12 +00001/*
2 * Copyright (c) 2012 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 "voice_engine/include/voe_audio_processing.h"
12
13#include "gtest/gtest.h"
14#include "voice_engine/include/voe_base.h"
15
16namespace webrtc {
17namespace voe {
18namespace {
19
20class VoEAudioProcessingTest : public ::testing::Test {
21 protected:
22 VoEAudioProcessingTest()
23 : voe_(VoiceEngine::Create()),
24 base_(VoEBase::GetInterface(voe_)),
25 audioproc_(VoEAudioProcessing::GetInterface(voe_)) {
26 }
27
28 virtual ~VoEAudioProcessingTest() {
andrew@webrtc.orgb9352282012-08-29 04:23:14 +000029 base_->Terminate();
andrew@webrtc.org55c0d4a2012-08-29 02:13:12 +000030 audioproc_->Release();
31 base_->Release();
32 VoiceEngine::Delete(voe_);
33 }
34
35 VoiceEngine* voe_;
36 VoEBase* base_;
37 VoEAudioProcessing* audioproc_;
38};
39
40TEST_F(VoEAudioProcessingTest, FailureIfNotInitialized) {
41 EXPECT_EQ(-1, audioproc_->EnableDriftCompensation(true));
42 EXPECT_EQ(-1, audioproc_->EnableDriftCompensation(false));
43 EXPECT_FALSE(audioproc_->DriftCompensationEnabled());
44}
45
andrew@webrtc.orgcc53b7c2012-08-29 06:55:21 +000046// TODO(andrew): Investigate race conditions triggered by this test:
47// https://code.google.com/p/webrtc/issues/detail?id=788
48TEST_F(VoEAudioProcessingTest, DISABLED_DriftCompensationIsEnabledIfSupported) {
andrew@webrtc.org55c0d4a2012-08-29 02:13:12 +000049 ASSERT_EQ(0, base_->Init());
andrew@webrtc.orgcc53b7c2012-08-29 06:55:21 +000050 // TODO(andrew): Ideally, DriftCompensationSupported() would be mocked.
andrew@webrtc.org55c0d4a2012-08-29 02:13:12 +000051 bool supported = VoEAudioProcessing::DriftCompensationSupported();
52 if (supported) {
53 EXPECT_EQ(0, audioproc_->EnableDriftCompensation(true));
54 EXPECT_TRUE(audioproc_->DriftCompensationEnabled());
55 EXPECT_EQ(0, audioproc_->EnableDriftCompensation(false));
56 EXPECT_FALSE(audioproc_->DriftCompensationEnabled());
57 } else {
58 EXPECT_EQ(-1, audioproc_->EnableDriftCompensation(true));
59 EXPECT_FALSE(audioproc_->DriftCompensationEnabled());
60 EXPECT_EQ(-1, audioproc_->EnableDriftCompensation(false));
61 EXPECT_FALSE(audioproc_->DriftCompensationEnabled());
62 }
63}
64
65} // namespace
66} // namespace voe
67} // namespace webrtc