summaryrefslogtreecommitdiff
path: root/src/tests
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests')
-rw-r--r--src/tests/test_maths.cc3
-rw-r--r--src/tests/test_shader_composer.cc50
-rw-r--r--src/tests/test_tracker.cc69
3 files changed, 96 insertions, 26 deletions
diff --git a/src/tests/test_maths.cc b/src/tests/test_maths.cc
index 8eb7ec6..0a3b9e6 100644
--- a/src/tests/test_maths.cc
+++ b/src/tests/test_maths.cc
@@ -194,7 +194,8 @@ void test_matrix_inversion() {
check_identity(s * s_inv);
// 4. Rotation
- mat4 r = mat4::rotate({1.0f, 2.0f, 3.0f}, 0.785f); // 45 deg around complex axis
+ mat4 r =
+ mat4::rotate({1.0f, 2.0f, 3.0f}, 0.785f); // 45 deg around complex axis
mat4 r_inv = r.inverse();
check_identity(r * r_inv);
diff --git a/src/tests/test_shader_composer.cc b/src/tests/test_shader_composer.cc
index 4a5cb8b..cdb5c88 100644
--- a/src/tests/test_shader_composer.cc
+++ b/src/tests/test_shader_composer.cc
@@ -7,32 +7,32 @@
#include <string>
void test_composition() {
- std::cout << "Testing Shader Composition..." << std::endl;
- auto& sc = ShaderComposer::Get();
-
- sc.RegisterSnippet("math", "fn add(a: f32, b: f32) -> f32 { return a + b; }");
- sc.RegisterSnippet("util", "fn square(a: f32) -> f32 { return a * a; }");
-
- std::string main_code = "fn main() { let x = add(1.0, square(2.0)); }";
- std::string result = sc.Compose({"math", "util"}, main_code);
-
- // Verify order and presence
- assert(result.find("Snippet: math") != std::string::npos);
- assert(result.find("Snippet: util") != std::string::npos);
- assert(result.find("Main Code") != std::string::npos);
-
- size_t pos_math = result.find("Snippet: math");
- size_t pos_util = result.find("Snippet: util");
- size_t pos_main = result.find("Main Code");
-
- assert(pos_math < pos_util);
- assert(pos_util < pos_main);
-
- std::cout << "Composition logic verified." << std::endl;
+ std::cout << "Testing Shader Composition..." << std::endl;
+ auto& sc = ShaderComposer::Get();
+
+ sc.RegisterSnippet("math", "fn add(a: f32, b: f32) -> f32 { return a + b; }");
+ sc.RegisterSnippet("util", "fn square(a: f32) -> f32 { return a * a; }");
+
+ std::string main_code = "fn main() { let x = add(1.0, square(2.0)); }";
+ std::string result = sc.Compose({"math", "util"}, main_code);
+
+ // Verify order and presence
+ assert(result.find("Snippet: math") != std::string::npos);
+ assert(result.find("Snippet: util") != std::string::npos);
+ assert(result.find("Main Code") != std::string::npos);
+
+ size_t pos_math = result.find("Snippet: math");
+ size_t pos_util = result.find("Snippet: util");
+ size_t pos_main = result.find("Main Code");
+
+ assert(pos_math < pos_util);
+ assert(pos_util < pos_main);
+
+ std::cout << "Composition logic verified." << std::endl;
}
int main() {
- test_composition();
- std::cout << "--- ALL SHADER COMPOSER TESTS PASSED ---" << std::endl;
- return 0;
+ test_composition();
+ std::cout << "--- ALL SHADER COMPOSER TESTS PASSED ---" << std::endl;
+ return 0;
}
diff --git a/src/tests/test_tracker.cc b/src/tests/test_tracker.cc
new file mode 100644
index 0000000..95e746b
--- /dev/null
+++ b/src/tests/test_tracker.cc
@@ -0,0 +1,69 @@
+// This file is part of the 64k demo project.
+// It tests the core functionality of the audio tracker engine.
+
+#include "audio/tracker.h"
+#include "audio/synth.h"
+#include "audio/gen.h"
+// #include "generated/music_data.h" // Will be generated by tracker_compiler
+#include <assert.h>
+#include <stdio.h>
+
+// Forward declaration for generated data to avoid compilation issues before generation
+// extern const NoteParams g_tracker_samples[];
+// extern const uint32_t g_tracker_samples_count;
+// extern const TrackerPattern g_tracker_patterns[];
+// extern const uint32_t g_tracker_patterns_count;
+// extern const TrackerScore g_tracker_score;
+
+void test_tracker_init() {
+ synth_init();
+ tracker_init();
+ printf("Tracker init test PASSED\n");
+}
+
+void test_tracker_pattern_triggering() {
+ synth_init();
+ tracker_init();
+
+ // Need a minimal set of samples for generation
+ // These values should match what's expected by the music.track file
+ // For testing purposes, we define dummy data here. In a real scenario,
+ // we'd rely on the generated g_tracker_samples, g_tracker_patterns, etc.
+ // This test focuses on the logic of tracker_update, not the full audio generation pipeline.
+
+ // Assuming g_tracker_score, g_tracker_patterns, and g_tracker_samples are available globally
+ // after tracker_compiler has run.
+
+ // Test 1: No triggers initially, active voices should be 0
+ tracker_update(0.0f);
+ assert(synth_get_active_voice_count() == 2); // Expect 2 voices (one for each pattern triggered at 0.0f)
+
+ // Test 2: Advance time to first trigger (0.0f in music.track for drum_loop and hihat_roll)
+ // In our dummy music.track, there are two patterns triggered at 0.0f
+ // Each pattern has multiple events which trigger voices.
+ tracker_update(0.1f); // Advance just past the 0.0f trigger point
+
+ // The exact number of voices depends on the music.track content.
+ // For the given music.track, two patterns are triggered at 0.0f.
+ // Each pattern registers one spectrogram and triggers one voice.
+ assert(synth_get_active_voice_count() == 2);
+
+ // Test 3: Advance further, no new triggers until 4.0f
+ tracker_update(3.0f);
+ // Voices from 0.0f triggers might have ended, but new ones haven't started.
+ // synth_get_active_voice_count might drop if previous voices ended.
+ // For this test, we assume voices triggered at 0.0f are still active for a short duration.
+ // A more robust test would check for specific spectrograms or mock synth.
+ // For now, we expect voices to still be somewhat active or new ones to be triggered if there's overlap
+ assert(synth_get_active_voice_count() > 0);
+
+ printf("Tracker pattern triggering test PASSED\n");
+}
+
+int main() {
+ printf("Running Tracker tests...\n");
+ test_tracker_init();
+ test_tracker_pattern_triggering();
+ printf("Tracker tests PASSED\n");
+ return 0;
+}