Add tests for sf::SoundFileFactory

This commit is contained in:
Chris Thrasher 2023-11-26 15:31:42 -07:00
parent 2fcdec5153
commit f3341359eb
6 changed files with 90 additions and 0 deletions

View File

@ -0,0 +1,89 @@
#include <SFML/Audio/SoundFileFactory.hpp>
// Other 1st party headers
#include <SFML/Audio/SoundFileReader.hpp>
#include <SFML/Audio/SoundFileWriter.hpp>
#include <SFML/System/FileInputStream.hpp>
#include <catch2/catch_test_macros.hpp>
#include <type_traits>
TEST_CASE("[Audio] sf::SoundFileFactory")
{
SECTION("Type traits")
{
STATIC_CHECK(std::is_copy_constructible_v<sf::SoundFileFactory>);
STATIC_CHECK(std::is_copy_assignable_v<sf::SoundFileFactory>);
STATIC_CHECK(std::is_nothrow_move_constructible_v<sf::SoundFileFactory>);
STATIC_CHECK(std::is_nothrow_move_assignable_v<sf::SoundFileFactory>);
}
SECTION("createReaderFromFilename()")
{
SECTION("Missing file")
{
CHECK(!sf::SoundFileFactory::createReaderFromFilename("does/not/exist.wav"));
}
SECTION("Valid file")
{
CHECK(sf::SoundFileFactory::createReaderFromFilename("Audio/ding.flac"));
CHECK(sf::SoundFileFactory::createReaderFromFilename("Audio/ding.mp3"));
CHECK(sf::SoundFileFactory::createReaderFromFilename("Audio/doodle_pop.ogg"));
CHECK(sf::SoundFileFactory::createReaderFromFilename("Audio/killdeer.wav"));
}
}
SECTION("createReaderFromStream()")
{
sf::FileInputStream stream;
SECTION("Invalid stream")
{
CHECK(!sf::SoundFileFactory::createReaderFromStream(stream));
}
SECTION("Valid file")
{
SECTION("flac")
{
REQUIRE(stream.open("Audio/ding.flac"));
}
SECTION("mp3")
{
REQUIRE(stream.open("Audio/ding.mp3"));
}
SECTION("ogg")
{
REQUIRE(stream.open("Audio/doodle_pop.ogg"));
}
SECTION("wav")
{
REQUIRE(stream.open("Audio/killdeer.wav"));
}
CHECK(sf::SoundFileFactory::createReaderFromStream(stream));
}
}
SECTION("createWriterFromFilename()")
{
SECTION("Invalid extension")
{
CHECK(!sf::SoundFileFactory::createWriterFromFilename("cannot/write/to.txt"));
}
SECTION("Valid extension")
{
CHECK(sf::SoundFileFactory::createWriterFromFilename("file.flac"));
CHECK(!sf::SoundFileFactory::createWriterFromFilename("file.mp3")); // Mp3 writing not yet implemented
CHECK(sf::SoundFileFactory::createWriterFromFilename("file.ogg"));
CHECK(sf::SoundFileFactory::createWriterFromFilename("file.wav"));
}
}
}

BIN
test/Audio/ding.flac Normal file

Binary file not shown.

BIN
test/Audio/ding.mp3 Normal file

Binary file not shown.

BIN
test/Audio/doodle_pop.ogg Normal file

Binary file not shown.

BIN
test/Audio/killdeer.wav Normal file

Binary file not shown.

View File

@ -133,6 +133,7 @@ set(AUDIO_SRC
Audio/Sound.test.cpp
Audio/SoundBuffer.test.cpp
Audio/SoundBufferRecorder.test.cpp
Audio/SoundFileFactory.test.cpp
Audio/SoundRecorder.test.cpp
Audio/SoundSource.test.cpp
Audio/SoundStream.test.cpp