diff options
| author | skal <pascal.massimino@gmail.com> | 2026-02-04 10:57:28 +0100 |
|---|---|---|
| committer | skal <pascal.massimino@gmail.com> | 2026-02-04 10:57:28 +0100 |
| commit | 55ed3610ffb8589505346141604c8b9ea2850e43 (patch) | |
| tree | 5ac8a81d839c3deb6e68ab6e965e871c81402716 /src/tests/test_dct.cc | |
| parent | f9ca37a368abd88ad439320a26ee7dfbff553aff (diff) | |
test(coverage): Improve Audio coverage (Task #48)
Added unit tests for DCT and procedural audio generation. Enhanced synth tests to cover rendering and resource management. Audio subsystem coverage increased to 93%.
Diffstat (limited to 'src/tests/test_dct.cc')
| -rw-r--r-- | src/tests/test_dct.cc | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/src/tests/test_dct.cc b/src/tests/test_dct.cc new file mode 100644 index 0000000..b40f392 --- /dev/null +++ b/src/tests/test_dct.cc @@ -0,0 +1,43 @@ +// This file is part of the 64k demo project. +// It tests the DCT implementation for correctness and coverage. + +#include "audio/dct.h" +#include <vector> +#include <cmath> +#include <cassert> +#include <iostream> +#include <cstdlib> + +void test_fdct_idct() { + float input[DCT_SIZE]; + float freq[DCT_SIZE]; + float output[DCT_SIZE]; + + // Initialize with random data + srand(12345); // Fixed seed for reproducibility + for (int i = 0; i < DCT_SIZE; ++i) { + input[i] = (float)rand() / RAND_MAX * 2.0f - 1.0f; + } + + fdct_512(input, freq); + idct_512(freq, output); + + // Verify reconstruction + float max_error = 0.0f; + for (int i = 0; i < DCT_SIZE; ++i) { + float err = std::abs(input[i] - output[i]); + if (err > max_error) max_error = err; + } + std::cout << "Max reconstruction error: " << max_error << std::endl; + + // Allow some error due to float precision and iterative sum + // 512 sums can accumulate error. + assert(max_error < 1e-4f); +} + +int main() { + std::cout << "Running DCT tests..." << std::endl; + test_fdct_idct(); + std::cout << "DCT tests PASSED" << std::endl; + return 0; +} |
