2022-07-25 11:28:16 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2022, kleines Filmröllchen <filmroellchen@serenityos.org>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <AK/LexicalPath.h>
|
|
|
|
#include <LibAudio/FlacLoader.h>
|
2023-03-02 17:03:53 +00:00
|
|
|
#include <LibCore/Directory.h>
|
2022-07-25 11:28:16 +00:00
|
|
|
#include <LibTest/TestCase.h>
|
|
|
|
|
|
|
|
struct DiscoverFLACTestsHack {
|
|
|
|
DiscoverFLACTestsHack()
|
|
|
|
{
|
|
|
|
// FIXME: Also run (our own) tests in this directory.
|
2023-03-14 19:29:10 +00:00
|
|
|
(void)Core::Directory::for_each_entry("./FLAC/SpecTests"sv, Core::DirIterator::Flags::SkipParentAndBaseDir, [](auto const& entry, auto const& directory) -> ErrorOr<IterationDecision> {
|
2023-03-02 17:03:53 +00:00
|
|
|
auto path = LexicalPath::join(directory.path().string(), entry.name);
|
2023-03-14 20:50:20 +00:00
|
|
|
if (path.extension() == "flac"sv) {
|
|
|
|
Test::add_test_case_to_suite(adopt_ref(*new ::Test::TestCase(
|
|
|
|
DeprecatedString::formatted("flac_spec_test_{}", path.basename()),
|
|
|
|
[path = move(path)]() {
|
2023-06-24 15:04:38 +00:00
|
|
|
auto file = Core::File::open(path.string(), Core::File::OpenMode::Read);
|
|
|
|
if (file.is_error()) {
|
|
|
|
FAIL(DeprecatedString::formatted("{}", file.error()));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
auto buffered_file = Core::InputBufferedFile::create(file.release_value());
|
|
|
|
if (buffered_file.is_error()) {
|
|
|
|
FAIL(DeprecatedString::formatted("{}", buffered_file.error()));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
auto result = Audio::FlacLoaderPlugin::create(buffered_file.release_value());
|
2023-03-14 20:50:20 +00:00
|
|
|
if (result.is_error()) {
|
|
|
|
FAIL(DeprecatedString::formatted("{}", result.error()));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto loader = result.release_value();
|
|
|
|
|
|
|
|
while (true) {
|
|
|
|
auto maybe_samples = loader->load_chunks(2 * MiB);
|
|
|
|
if (maybe_samples.is_error()) {
|
|
|
|
FAIL(DeprecatedString::formatted("{}", maybe_samples.error()));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
maybe_samples.value().remove_all_matching([](auto& chunk) { return chunk.is_empty(); });
|
|
|
|
if (maybe_samples.value().is_empty())
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
false)));
|
|
|
|
}
|
2023-03-02 17:03:53 +00:00
|
|
|
return IterationDecision::Continue;
|
|
|
|
});
|
2022-07-25 11:28:16 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
// Hack taken from TEST_CASE; the above constructor will run as part of global initialization before the tests are actually executed
|
|
|
|
static struct DiscoverFLACTestsHack hack;
|