blob: 63b1600574651b655e72bd99086e9b7b48874857 [file] [log] [blame]
/*
* Copyright (c) 2012 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 "after_streaming_fixture.h"
#include "testsupport/fileutils.h"
class FileTest : public AfterStreamingFixture {
protected:
// Creates the string åäö.pcm.
std::string CreateTrickyFilenameInUtf8() {
char filename[16] = { (char)0xc3, (char)0xa5,
(char)0xc3, (char)0xa4,
(char)0xc3, (char)0xb6,
static_cast<char>(0) };
return std::string(filename) + ".pcm";
}
};
TEST_F(FileTest, ManualRecordToFileForThreeSecondsAndPlayback) {
SwitchToManualMicrophone();
std::string recording_filename =
webrtc::test::OutputPath() + CreateTrickyFilenameInUtf8();
TEST_LOG("Recording to %s for 3 seconds.\n", recording_filename.c_str());
EXPECT_EQ(0, voe_file_->StartRecordingMicrophone(recording_filename.c_str()));
Sleep(3000);
EXPECT_EQ(0, voe_file_->StopRecordingMicrophone());
TEST_LOG("Playing back %s.\n", recording_filename.c_str());
EXPECT_EQ(0, voe_file_->StartPlayingFileLocally(
channel_, recording_filename.c_str()));
// Play the file to the user and ensure the is-playing-locally
// and scaling methods also work. The clip is 3 seconds long.
Sleep(250);
EXPECT_EQ(1, voe_file_->IsPlayingFileLocally(channel_));
Sleep(1500);
TEST_LOG("Decreasing level by 50%%.\n");
EXPECT_EQ(0, voe_file_->ScaleLocalFilePlayout(channel_, 0.5f));
Sleep(1500);
EXPECT_EQ(0, voe_file_->IsPlayingFileLocally(channel_));
}
TEST_F(FileTest, ManualRecordPlayoutToWavFileForThreeSecondsAndPlayback) {
webrtc::CodecInst send_codec;
voe_codec_->GetSendCodec(channel_, send_codec);
std::string recording_filename =
webrtc::test::OutputPath() + "playout.wav";
TEST_LOG("Recording playout to %s.\n", recording_filename.c_str());
EXPECT_EQ(0, voe_file_->StartRecordingPlayout(
channel_, recording_filename.c_str(), &send_codec));
Sleep(3000);
EXPECT_EQ(0, voe_file_->StopRecordingPlayout(channel_));
TEST_LOG("Playing back the recording in looping mode.\n");
EXPECT_EQ(0, voe_file_->StartPlayingFileAsMicrophone(
channel_, recording_filename.c_str(), true, false,
webrtc::kFileFormatWavFile));
Sleep(2000);
EXPECT_EQ(1, voe_file_->IsPlayingFileAsMicrophone(channel_));
Sleep(2000);
// We should still be playing since we're looping.
EXPECT_EQ(1, voe_file_->IsPlayingFileAsMicrophone(channel_));
// Try scaling as well.
TEST_LOG("Decreasing level by 50%%.\n");
EXPECT_EQ(0, voe_file_->ScaleFileAsMicrophonePlayout(channel_, 0.5f));
Sleep(1000);
EXPECT_EQ(0, voe_file_->StopPlayingFileAsMicrophone(channel_));
}