mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-19 08:37:54 +01:00

BUG=webrtc:4690 Review-Url: https://codereview.webrtc.org/3018523002 Cr-Commit-Position: refs/heads/master@{#19880}
56 lines
1.6 KiB
C++
56 lines
1.6 KiB
C++
/*
|
|
* Copyright (c) 2013 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 "voice_engine/include/voe_base.h"
|
|
|
|
#include "modules/audio_device/include/fake_audio_device.h"
|
|
#include "modules/audio_processing/include/mock_audio_processing.h"
|
|
#include "test/gtest.h"
|
|
|
|
namespace webrtc {
|
|
|
|
class VoEBaseTest : public ::testing::Test {
|
|
protected:
|
|
VoEBaseTest()
|
|
: voe_(VoiceEngine::Create()),
|
|
base_(VoEBase::GetInterface(voe_)) {
|
|
EXPECT_NE(nullptr, base_);
|
|
apm_ = new rtc::RefCountedObject<test::MockAudioProcessing>();
|
|
}
|
|
|
|
~VoEBaseTest() {
|
|
EXPECT_EQ(0, base_->Terminate());
|
|
EXPECT_EQ(1, base_->Release());
|
|
EXPECT_TRUE(VoiceEngine::Delete(voe_));
|
|
}
|
|
|
|
VoiceEngine* voe_;
|
|
VoEBase* base_;
|
|
FakeAudioDeviceModule adm_;
|
|
rtc::scoped_refptr<AudioProcessing> apm_;
|
|
};
|
|
|
|
TEST_F(VoEBaseTest, InitWithExternalAudioDevice) {
|
|
EXPECT_EQ(0, base_->Init(&adm_, apm_.get()));
|
|
}
|
|
|
|
TEST_F(VoEBaseTest, CreateChannelBeforeInitShouldFail) {
|
|
int channelID = base_->CreateChannel();
|
|
EXPECT_EQ(channelID, -1);
|
|
}
|
|
|
|
TEST_F(VoEBaseTest, CreateChannelAfterInit) {
|
|
EXPECT_EQ(0, base_->Init(&adm_, apm_.get(), nullptr));
|
|
int channelID = base_->CreateChannel();
|
|
EXPECT_NE(channelID, -1);
|
|
EXPECT_EQ(0, base_->DeleteChannel(channelID));
|
|
}
|
|
|
|
} // namespace webrtc
|