pxmlw6n2f/Gazebo_Distributed_TCP/gazebo/common/AudioDecoder_TEST.cc

179 lines
4.9 KiB
C++
Raw Permalink Normal View History

2019-03-28 10:57:49 +08:00
/*
* Copyright (C) 2012 Open Source Robotics Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
#include <gazebo/gazebo_config.h>
#include <boost/filesystem.hpp>
#include <gtest/gtest.h>
#include <gazebo/common/ffmpeg_inc.h>
#include "test_config.h"
#include "gazebo/common/AudioDecoder.hh"
#include "gazebo/common/CommonIface.hh"
#include "test/util.hh"
using namespace gazebo;
class AudioDecoder : public gazebo::testing::AutoLogFixture { };
/////////////////////////////////////////////////
TEST_F(AudioDecoder, FileNotSet)
{
common::AudioDecoder audio;
unsigned int dataBufferSize;
uint8_t *dataBuffer = NULL;
EXPECT_FALSE(audio.Decode(&dataBuffer, &dataBufferSize));
}
/////////////////////////////////////////////////
TEST_F(AudioDecoder, MissingFile)
{
common::AudioDecoder audio;
unsigned int dataBufferSize;
uint8_t *dataBuffer = NULL;
EXPECT_FALSE(audio.Decode(&dataBuffer, &dataBufferSize));
}
/////////////////////////////////////////////////
TEST_F(AudioDecoder, BufferSizeInvalid)
{
common::AudioDecoder audio;
boost::filesystem::path path;
common::load();
path = PROJECT_SOURCE_PATH;
path /= "media/audio/cheer.wav";
EXPECT_TRUE(audio.SetFile(path.string()));
unsigned int *dataBufferSize = NULL;
uint8_t *dataBuffer = NULL;
EXPECT_FALSE(audio.Decode(&dataBuffer, dataBufferSize));
}
/////////////////////////////////////////////////
TEST_F(AudioDecoder, DataBuffer)
{
boost::filesystem::path path;
common::AudioDecoder audio;
common::load();
path = PROJECT_SOURCE_PATH;
path /= "media/audio/cheer.wav";
EXPECT_TRUE(audio.SetFile(path.string()));
unsigned int dataBufferSize;
uint8_t *dataBuffer = NULL;
EXPECT_TRUE(audio.Decode(&dataBuffer, &dataBufferSize));
unsigned int dataBufferSize2;
uint8_t *dataBuffer2 = new uint8_t[5];
EXPECT_TRUE(audio.Decode(&dataBuffer2, &dataBufferSize2));
EXPECT_EQ(dataBufferSize2, dataBufferSize);
EXPECT_EQ(sizeof(dataBuffer), sizeof(dataBuffer2));
}
/////////////////////////////////////////////////
TEST_F(AudioDecoder, NoCodec)
{
common::load();
common::AudioDecoder audio;
boost::filesystem::path path;
path = TEST_PATH;
path /= "/data/audio_bad_codec.mp4";
EXPECT_FALSE(audio.SetFile(path.string()));
}
/////////////////////////////////////////////////
TEST_F(AudioDecoder, CheerFile)
{
common::load();
common::AudioDecoder audio;
boost::filesystem::path path;
// Test a bad filename
EXPECT_FALSE(audio.SetFile("_bad_audio_filename_.wav"));
// Test no stream info
path = TEST_PATH;
path /= "data/audio_bad_codec.grf";
EXPECT_FALSE(audio.SetFile(path.string()));
// Test a valid file without an audio stream
path = TEST_PATH;
path /= "data/empty_audio.mp4";
EXPECT_FALSE(audio.SetFile(path.string()));
unsigned int dataBufferSize;
uint8_t *dataBuffer = NULL;
// WAV
{
path = PROJECT_SOURCE_PATH;
path /= "media/audio/cheer.wav";
EXPECT_TRUE(audio.SetFile(path.string()));
EXPECT_EQ(audio.GetFile(), path.string());
EXPECT_EQ(audio.GetSampleRate(), 48000);
audio.Decode(&dataBuffer, &dataBufferSize);
EXPECT_EQ(dataBufferSize, 5428692u);
}
// OGG
{
path = PROJECT_SOURCE_PATH;
path /= "media/audio/cheer.ogg";
EXPECT_TRUE(audio.SetFile(path.string()));
EXPECT_EQ(audio.GetFile(), path.string());
EXPECT_EQ(audio.GetSampleRate(), 44100);
audio.Decode(&dataBuffer, &dataBufferSize);
// In Ubuntu trusty the buffer size double for ogg decoding.
// This check is suitable for both older and newer versions of Ubuntu.
EXPECT_TRUE(dataBufferSize == 4989184u ||
dataBufferSize == 4989184u * 2u);
}
// MP3
{
path = PROJECT_SOURCE_PATH;
path /= "media/audio/cheer.mp3";
EXPECT_TRUE(audio.SetFile(path.string()));
EXPECT_EQ(audio.GetFile(), path.string());
EXPECT_EQ(audio.GetSampleRate(), 44100);
audio.Decode(&dataBuffer, &dataBufferSize);
// later versions of ffmpeg produces a different buffer size probably due to
// underlying changes in the decoder. The size of the first decoded frame
// is much smaller than all other frames.
EXPECT_TRUE(dataBufferSize == 4995072u ||
dataBufferSize == 4987612u ||
dataBufferSize == 4987612u * 2);
}
}
/////////////////////////////////////////////////
int main(int argc, char **argv)
{
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}