631 lines
30 KiB
Python
631 lines
30 KiB
Python
"""Unit tests for individual FX blocks in the audio pipeline.
|
|
|
|
Each test validates a specific effect against known output shapes
|
|
(silence clipping, envelope tracking, modulation range, etc.).
|
|
All tests use 256-sample blocks at 48kHz to match real-time operation.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import numpy as np
|
|
import pytest
|
|
|
|
from src.dsp.pipeline import (
|
|
AudioPipeline,
|
|
BLOCK_SIZE,
|
|
SAMPLE_RATE,
|
|
_DelayLine,
|
|
_CombFilter,
|
|
_AllpassFilter,
|
|
_compute_lowshelf_coeffs,
|
|
_compute_highshelf_coeffs,
|
|
_compute_peaking_coeffs,
|
|
)
|
|
from src.presets.types import FXBlock, FXType, Preset
|
|
|
|
# ── Fixtures ───────────────────────────────────────────────────────
|
|
|
|
SILENCE = np.zeros(BLOCK_SIZE, dtype=np.float32)
|
|
SINE_TONE = (np.sin(2 * np.pi * 440.0 * np.arange(BLOCK_SIZE) / SAMPLE_RATE)
|
|
.astype(np.float32))
|
|
HALF_SCALE = np.full(BLOCK_SIZE, 0.5, dtype=np.float32)
|
|
FULL_SCALE = np.full(BLOCK_SIZE, 0.99, dtype=np.float32)
|
|
|
|
|
|
@pytest.fixture
|
|
def pipeline():
|
|
p = AudioPipeline()
|
|
yield p
|
|
|
|
|
|
def _load_fx(pipeline: AudioPipeline, fx_type: FXType,
|
|
params: dict[str, float] | None = None) -> None:
|
|
"""Quick-apply a single FX block to the pipeline for testing."""
|
|
block = FXBlock(
|
|
fx_type=fx_type,
|
|
enabled=True,
|
|
bypass=False,
|
|
params=params or {},
|
|
)
|
|
preset = Preset(
|
|
name="test",
|
|
chain=[block],
|
|
master_volume=1.0,
|
|
)
|
|
pipeline.load_preset(preset)
|
|
|
|
|
|
# ═══════════════════════════════════════════════════════════════════
|
|
# 1. Noise Gate
|
|
# ═══════════════════════════════════════════════════════════════════
|
|
|
|
class TestNoiseGate:
|
|
def test_silence_muted(self, pipeline):
|
|
"""Gate at default threshold (0.01) should silence silence."""
|
|
_load_fx(pipeline, FXType.NOISE_GATE, {"threshold": 0.01})
|
|
out = pipeline.process(SILENCE)
|
|
assert np.max(np.abs(out)) == 0.0, "Silence should be muted"
|
|
|
|
def test_strong_signal_passes(self, pipeline):
|
|
"""Gate should pass full-scale tone."""
|
|
_load_fx(pipeline, FXType.NOISE_GATE, {"threshold": 0.01})
|
|
out = pipeline.process(FULL_SCALE)
|
|
assert np.max(np.abs(out)) > 0.8, "Strong signal should pass"
|
|
|
|
def test_release_tail(self, pipeline):
|
|
"""Gate should have exponential release, not instant cut."""
|
|
_load_fx(pipeline, FXType.NOISE_GATE, {"threshold": 0.1, "release": 50.0})
|
|
# Transition: silence -> tone -> silence
|
|
out1 = pipeline.process(SILENCE) # below threshold — muted
|
|
assert np.max(np.abs(out1)) == 0.0, "Initial silence muted"
|
|
out2 = pipeline.process(SINE_TONE * 0.5) # strong — opens
|
|
assert np.max(np.abs(out2)) > 0.1, "Gate opened for tone"
|
|
out3 = pipeline.process(SILENCE) # release tail
|
|
out4 = pipeline.process(SILENCE) # should fully decay
|
|
out5 = pipeline.process(SILENCE)
|
|
# After enough silence blocks, output should be zero
|
|
assert np.max(np.abs(out5)) < 0.001, "Release should fully decay"
|
|
|
|
def test_bypass(self, pipeline):
|
|
"""Bypassed gate passes audio unchanged."""
|
|
block = FXBlock(
|
|
fx_type=FXType.NOISE_GATE, enabled=True,
|
|
bypass=True, params={"threshold": 1.0},
|
|
)
|
|
preset = Preset(name="test", chain=[block], master_volume=1.0)
|
|
pipeline.load_preset(preset)
|
|
out = pipeline.process(HALF_SCALE)
|
|
assert np.allclose(out, HALF_SCALE), "Bypassed gate should passthrough"
|
|
|
|
|
|
# ═══════════════════════════════════════════════════════════════════
|
|
# 2. Compressor
|
|
# ═══════════════════════════════════════════════════════════════════
|
|
|
|
class TestCompressor:
|
|
def test_below_threshold_no_change(self, pipeline):
|
|
"""Signal below threshold should pass at unity (after makeup)."""
|
|
_load_fx(pipeline, FXType.COMPRESSOR,
|
|
{"threshold": 0.0, "ratio": 4.0, "gain": 1.0})
|
|
out = pipeline.process(SINE_TONE * 0.01) # very quiet
|
|
assert np.max(np.abs(out)) > 0, "Quiet signal passes"
|
|
|
|
def test_limits_above_threshold(self, pipeline):
|
|
"""Signal well above threshold gets compressed."""
|
|
_load_fx(pipeline, FXType.COMPRESSOR,
|
|
{"threshold": -10.0, "ratio": 8.0, "gain": 1.0})
|
|
out = pipeline.process(FULL_SCALE)
|
|
rms_out = np.sqrt(np.mean(out ** 2))
|
|
# High ratio should substantially reduce dynamics
|
|
assert rms_out < 0.8, "Compressor should reduce level above threshold"
|
|
|
|
def test_makeup_gain(self, pipeline):
|
|
"""Makeup gain should be applied after compression."""
|
|
_load_fx(pipeline, FXType.COMPRESSOR,
|
|
{"threshold": -20.0, "ratio": 4.0, "gain": 1.5})
|
|
out = pipeline.process(SINE_TONE * 0.3)
|
|
assert np.max(np.abs(out)) <= 1.0, "Output must be in [-1, 1]"
|
|
|
|
def test_output_clipped(self, pipeline):
|
|
"""Compressor output never exceeds [-1, 1]."""
|
|
_load_fx(pipeline, FXType.COMPRESSOR,
|
|
{"threshold": -50.0, "ratio": 2.0, "gain": 20.0})
|
|
out = pipeline.process(HALF_SCALE)
|
|
assert np.all(out >= -1.0) and np.all(out <= 1.0)
|
|
|
|
|
|
# ═══════════════════════════════════════════════════════════════════
|
|
# 3. Boost / Overdrive / Distortion / Fuzz
|
|
# ═══════════════════════════════════════════════════════════════════
|
|
|
|
class TestBoost:
|
|
def test_linear_gain(self, pipeline):
|
|
"""Boost applies linear gain without clipping (small signal)."""
|
|
_load_fx(pipeline, FXType.BOOST, {"gain_db": 6.0})
|
|
quiet = SINE_TONE * 0.1
|
|
out = pipeline.process(quiet)
|
|
expected = np.clip(quiet * 10 ** (6.0 / 20.0), -1.0, 1.0)
|
|
assert np.allclose(out, expected, atol=1e-6), \
|
|
"6dB boost should double amplitude"
|
|
|
|
def test_clips_at_unity(self, pipeline):
|
|
"""Boost clips to [-1, 1]."""
|
|
_load_fx(pipeline, FXType.BOOST, {"gain_db": 60.0})
|
|
out = pipeline.process(HALF_SCALE)
|
|
assert np.max(out) <= 1.0 and np.min(out) >= -1.0
|
|
|
|
|
|
class TestOverdrive:
|
|
def test_asymmetric_clipping(self, pipeline):
|
|
"""Overdrive clips asymmetrically (tube-like)."""
|
|
_load_fx(pipeline, FXType.OVERDRIVE, {"drive": 0.8, "gain": 1.0})
|
|
out = pipeline.process(FULL_SCALE)
|
|
assert np.max(out) <= 1.0 and np.min(out) >= -1.0
|
|
# Should have harmonics — check shape differs from input
|
|
assert not np.allclose(out, FULL_SCALE, atol=0.05)
|
|
|
|
def test_low_drive_passthrough(self, pipeline):
|
|
"""Low drive should pass nearly clean."""
|
|
_load_fx(pipeline, FXType.OVERDRIVE, {"drive": 0.0, "gain": 1.0})
|
|
quiet = SINE_TONE * 0.05
|
|
out = pipeline.process(quiet)
|
|
assert np.max(np.abs(out)) > 0.0
|
|
|
|
|
|
class TestDistortion:
|
|
def test_harder_clipping(self, pipeline):
|
|
"""Distortion clips harder than overdrive."""
|
|
_load_fx(pipeline, FXType.DISTORTION, {"drive": 0.8, "gain": 1.0})
|
|
out = pipeline.process(FULL_SCALE)
|
|
assert np.max(out) <= 1.0 and np.min(out) >= -1.0
|
|
|
|
def test_distortion_changes_waveform(self, pipeline):
|
|
"""Distortion should significantly reshape the waveform."""
|
|
_load_fx(pipeline, FXType.DISTORTION, {"drive": 1.0, "gain": 1.0})
|
|
out = pipeline.process(SINE_TONE * 0.5)
|
|
# Should have square-ish shape (overtones)
|
|
assert np.std(out) > 0, "Distortion produces output"
|
|
|
|
|
|
class TestFuzz:
|
|
def test_hard_clip_shape(self, pipeline):
|
|
"""Fuzz creates near-square-wave shape."""
|
|
_load_fx(pipeline, FXType.FUZZ, {"drive": 1.0, "gain": 0.5})
|
|
out = pipeline.process(SINE_TONE * 0.8)
|
|
assert np.max(out) <= 1.0 and np.min(out) >= -1.0
|
|
# Fuzz should be very clipped
|
|
rms_out = np.sqrt(np.mean(out ** 2))
|
|
assert rms_out > 0.2, "Fuzz should produce significant output"
|
|
|
|
|
|
# ═══════════════════════════════════════════════════════════════════
|
|
# 4. EQ
|
|
# ═══════════════════════════════════════════════════════════════════
|
|
|
|
class TestEQ:
|
|
def test_flat_chain(self, pipeline):
|
|
"""EQ with 0dB on all bands passes signal unchanged."""
|
|
_load_fx(pipeline, FXType.EQ, {"bass": 0.0, "mid": 0.0, "treble": 0.0})
|
|
out = pipeline.process(SINE_TONE)
|
|
assert np.allclose(out, SINE_TONE, atol=1e-4), \
|
|
"Flat EQ should pass through"
|
|
|
|
def test_bass_boost(self, pipeline):
|
|
"""Bass boost amplifies low frequencies."""
|
|
_load_fx(pipeline, FXType.EQ,
|
|
{"bass": 12.0, "mid": 0.0, "treble": 0.0,
|
|
"bass_freq": 200.0})
|
|
# Low frequency test tone
|
|
low_tone = (np.sin(2 * np.pi * 80.0 * np.arange(BLOCK_SIZE) / SAMPLE_RATE)
|
|
.astype(np.float32))
|
|
out = pipeline.process(low_tone * 0.3)
|
|
rms_out = np.sqrt(np.mean(out ** 2))
|
|
rms_in = np.sqrt(np.mean((low_tone * 0.3) ** 2))
|
|
assert rms_out > rms_in * 1.5, \
|
|
"Bass boost should amplify low tones"
|
|
|
|
def test_output_range(self, pipeline):
|
|
"""EQ stays in [-3, 3] before final clip in process()."""
|
|
_load_fx(pipeline, FXType.EQ,
|
|
{"bass": 15.0, "mid": 15.0, "treble": 15.0})
|
|
out = pipeline.process(SINE_TONE * 0.3)
|
|
assert np.all(out >= -1.0) and np.all(out <= 1.0)
|
|
|
|
def test_biquad_coeffs_stable(self):
|
|
"""Biquad coefficient generators produce stable filters."""
|
|
coeffs = _compute_lowshelf_coeffs(200, 6.0, 0.707, SAMPLE_RATE)
|
|
assert all(np.isfinite(c) for c in coeffs)
|
|
coeffs = _compute_highshelf_coeffs(3500, -6.0, 0.707, SAMPLE_RATE)
|
|
assert all(np.isfinite(c) for c in coeffs)
|
|
coeffs = _compute_peaking_coeffs(1000, 6.0, 0.707, SAMPLE_RATE)
|
|
assert all(np.isfinite(c) for c in coeffs)
|
|
|
|
|
|
# ═══════════════════════════════════════════════════════════════════
|
|
# 5. Chorus
|
|
# ═══════════════════════════════════════════════════════════════════
|
|
|
|
class TestChorus:
|
|
def test_output_range(self, pipeline):
|
|
"""Chorus output stays in [-1, 1]."""
|
|
_load_fx(pipeline, FXType.CHORUS,
|
|
{"rate": 0.5, "depth": 0.5, "mix": 0.5})
|
|
out = pipeline.process(SINE_TONE * 0.5)
|
|
assert np.all(out >= -1.0) and np.all(out <= 1.0)
|
|
|
|
def test_dry_only_at_zero_mix(self, pipeline):
|
|
"""0% mix = pass-through."""
|
|
_load_fx(pipeline, FXType.CHORUS,
|
|
{"rate": 0.5, "depth": 0.5, "mix": 0.0})
|
|
out = pipeline.process(SINE_TONE * 0.5)
|
|
assert np.allclose(out, SINE_TONE * 0.5, atol=1e-4)
|
|
|
|
def test_wet_at_full_mix(self, pipeline):
|
|
"""100% mix = modulated signal only."""
|
|
_load_fx(pipeline, FXType.CHORUS,
|
|
{"rate": 0.5, "depth": 0.5, "mix": 1.0})
|
|
out = pipeline.process(SINE_TONE * 0.5)
|
|
out2 = pipeline.process(SINE_TONE * 0.5)
|
|
# Chorus should produce varied output (LFO modulation)
|
|
assert not np.allclose(out, out2, atol=0.01), \
|
|
"Chorus LFO should produce different samples each block"
|
|
|
|
|
|
# ═══════════════════════════════════════════════════════════════════
|
|
# 6. Flanger
|
|
# ═══════════════════════════════════════════════════════════════════
|
|
|
|
class TestFlanger:
|
|
def test_output_range(self, pipeline):
|
|
_load_fx(pipeline, FXType.FLANGER,
|
|
{"rate": 0.25, "depth": 0.7, "feedback": 0.3, "mix": 0.5})
|
|
out = pipeline.process(SINE_TONE * 0.5)
|
|
assert np.all(out >= -1.0) and np.all(out <= 1.0)
|
|
|
|
def test_zero_mix_pass(self, pipeline):
|
|
"""0% mix = pass-through."""
|
|
_load_fx(pipeline, FXType.FLANGER,
|
|
{"rate": 0.25, "depth": 0.7, "feedback": 0.3, "mix": 0.0})
|
|
out = pipeline.process(SINE_TONE * 0.5)
|
|
assert np.allclose(out, SINE_TONE * 0.5, atol=1e-4)
|
|
|
|
def test_feedback_accumulates(self, pipeline):
|
|
"""Flanger with high feedback should produce different output
|
|
over successive blocks than without feedback."""
|
|
_load_fx(pipeline, FXType.FLANGER,
|
|
{"rate": 0.25, "depth": 0.7, "feedback": 0.8, "mix": 1.0})
|
|
out1 = pipeline.process(SINE_TONE * 0.3)
|
|
out2 = pipeline.process(SINE_TONE * 0.3)
|
|
# With high feedback, two identical inputs produce different outputs
|
|
# due to feedback accumulation
|
|
assert not np.allclose(out1, out2, atol=0.01), \
|
|
"High feedback should accumulate in flanger"
|
|
|
|
|
|
# ═══════════════════════════════════════════════════════════════════
|
|
# 7. Phaser
|
|
# ═══════════════════════════════════════════════════════════════════
|
|
|
|
class TestPhaser:
|
|
def test_output_range(self, pipeline):
|
|
_load_fx(pipeline, FXType.PHASER,
|
|
{"rate": 0.4, "depth": 0.5, "feedback": 0.3, "mix": 0.5})
|
|
out = pipeline.process(SINE_TONE * 0.5)
|
|
assert np.all(out >= -1.0) and np.all(out <= 1.0)
|
|
|
|
def test_zero_mix_pass(self, pipeline):
|
|
_load_fx(pipeline, FXType.PHASER,
|
|
{"rate": 0.4, "depth": 0.5, "feedback": 0.3, "mix": 0.0})
|
|
out = pipeline.process(SINE_TONE * 0.5)
|
|
assert np.allclose(out, SINE_TONE * 0.5, atol=1e-4)
|
|
|
|
def test_phaser_modulates(self, pipeline):
|
|
"""Phaser produces different output across successive blocks (LFO sweep)."""
|
|
_load_fx(pipeline, FXType.PHASER,
|
|
{"rate": 0.4, "depth": 0.5, "feedback": 0.3, "mix": 1.0})
|
|
out1 = pipeline.process(SINE_TONE * 0.3)
|
|
out2 = pipeline.process(SINE_TONE * 0.3)
|
|
assert not np.allclose(out1, out2, atol=0.01), \
|
|
"Phaser LFO should modulate across blocks"
|
|
|
|
|
|
# ═══════════════════════════════════════════════════════════════════
|
|
# 8. Tremolo
|
|
# ═══════════════════════════════════════════════════════════════════
|
|
|
|
class TestTremolo:
|
|
def test_output_range(self, pipeline):
|
|
_load_fx(pipeline, FXType.TREMOLO,
|
|
{"rate": 4.0, "depth": 0.7, "shape": "sine"})
|
|
out = pipeline.process(SINE_TONE * 0.5)
|
|
assert np.all(out >= -1.0) and np.all(out <= 1.0)
|
|
|
|
def test_silence_stays_silent(self, pipeline):
|
|
_load_fx(pipeline, FXType.TREMOLO,
|
|
{"rate": 4.0, "depth": 1.0, "shape": "sine"})
|
|
out = pipeline.process(SILENCE)
|
|
assert np.max(np.abs(out)) == 0.0
|
|
|
|
def test_triangular_lfo_shape(self, pipeline):
|
|
"""Triangle LFO produces different amplitude envelope."""
|
|
_load_fx(pipeline, FXType.TREMOLO,
|
|
{"rate": 2.0, "depth": 1.0, "shape": "square"})
|
|
out = pipeline.process(HALF_SCALE)
|
|
# Square wave LFO — should have extreme variation
|
|
max_val = np.max(out)
|
|
min_val = np.min(out)
|
|
assert max_val > 0.9 or min_val < 0.01, \
|
|
f"Square LFO should produce extremes (max={max_val:.3f}, min={min_val:.3f})"
|
|
|
|
def test_zero_depth_no_effect(self, pipeline):
|
|
"""0% depth = no modulation."""
|
|
_load_fx(pipeline, FXType.TREMOLO,
|
|
{"rate": 4.0, "depth": 0.0, "shape": "sine"})
|
|
out = pipeline.process(HALF_SCALE)
|
|
assert np.allclose(out, HALF_SCALE, atol=1e-4)
|
|
|
|
def test_modulation_changes_each_block(self, pipeline):
|
|
"""LFO phase advances across blocks."""
|
|
_load_fx(pipeline, FXType.TREMOLO,
|
|
{"rate": 4.0, "depth": 1.0, "shape": "sine"})
|
|
out1 = pipeline.process(HALF_SCALE)
|
|
out2 = pipeline.process(HALF_SCALE)
|
|
assert not np.allclose(out1, out2, atol=0.001), \
|
|
"LFO should produce different modulation each block"
|
|
|
|
|
|
# ═══════════════════════════════════════════════════════════════════
|
|
# 9. Vibrato
|
|
# ═══════════════════════════════════════════════════════════════════
|
|
|
|
class TestVibrato:
|
|
def test_output_range(self, pipeline):
|
|
_load_fx(pipeline, FXType.VIBRATO,
|
|
{"rate": 3.0, "depth": 0.5})
|
|
out = pipeline.process(SINE_TONE * 0.5)
|
|
assert np.all(out >= -1.0) and np.all(out <= 1.0)
|
|
|
|
def test_pitch_modulation(self, pipeline):
|
|
"""Vibrato produces time-varying delay (pitch warble)."""
|
|
_load_fx(pipeline, FXType.VIBRATO,
|
|
{"rate": 3.0, "depth": 0.5})
|
|
out1 = pipeline.process(SINE_TONE * 0.3)
|
|
out2 = pipeline.process(SINE_TONE * 0.3)
|
|
# Identical input blocks produce different output due to LFO
|
|
assert not np.allclose(out1, out2, atol=0.001), \
|
|
"Vibrato LFO should modulate pitch across blocks"
|
|
|
|
|
|
# ═══════════════════════════════════════════════════════════════════
|
|
# 10. Delay
|
|
# ═══════════════════════════════════════════════════════════════════
|
|
|
|
class TestDelay:
|
|
def test_output_range(self, pipeline):
|
|
_load_fx(pipeline, FXType.DELAY,
|
|
{"time": 400.0, "feedback": 0.3, "mix": 0.4})
|
|
out = pipeline.process(SINE_TONE * 0.5)
|
|
assert np.all(out >= -1.0) and np.all(out <= 1.0)
|
|
|
|
def test_dry_only_at_zero_mix(self, pipeline):
|
|
_load_fx(pipeline, FXType.DELAY,
|
|
{"time": 400.0, "feedback": 0.3, "mix": 0.0})
|
|
out = pipeline.process(SINE_TONE * 0.5)
|
|
assert np.allclose(out, SINE_TONE * 0.5, atol=1e-4)
|
|
|
|
def test_no_silence_output_on_silence(self, pipeline):
|
|
"""Silence in with delay should produce echo decay tail."""
|
|
_load_fx(pipeline, FXType.DELAY,
|
|
{"time": 50.0, "feedback": 0.5, "mix": 1.0})
|
|
pipeline.process(SINE_TONE * 0.5) # Fill delay line
|
|
pipeline.process(SILENCE)
|
|
out3 = pipeline.process(SILENCE)
|
|
out4 = pipeline.process(SILENCE)
|
|
# Should have decaying echo
|
|
assert np.max(np.abs(out3)) > 0, "Delay tail should still be present"
|
|
# Echo should decay toward zero
|
|
assert np.max(np.abs(out4)) <= np.max(np.abs(out3)) + 0.001, \
|
|
"Echo should decay"
|
|
|
|
def test_tap_tempo_callback(self, pipeline):
|
|
"""Tap tempo overrides time_ms when set."""
|
|
_load_fx(pipeline, FXType.DELAY,
|
|
{"time": 400.0, "tap_tempo": 200.0, "feedback": 0.3, "mix": 0.5})
|
|
out = pipeline.process(SINE_TONE * 0.5)
|
|
assert np.all(out >= -1.0) and np.all(out <= 1.0)
|
|
|
|
|
|
# ═══════════════════════════════════════════════════════════════════
|
|
# 11. Reverb (Schroeder)
|
|
# ═══════════════════════════════════════════════════════════════════
|
|
|
|
class TestReverb:
|
|
def test_output_range(self, pipeline):
|
|
_load_fx(pipeline, FXType.REVERB,
|
|
{"decay": 0.5, "damping": 0.4, "mix": 0.3})
|
|
out = pipeline.process(SINE_TONE * 0.5)
|
|
assert np.all(out >= -1.0) and np.all(out <= 1.0)
|
|
|
|
def test_zero_mix_passthrough(self, pipeline):
|
|
_load_fx(pipeline, FXType.REVERB,
|
|
{"decay": 0.5, "damping": 0.4, "mix": 0.0})
|
|
out = pipeline.process(SINE_TONE * 0.5)
|
|
assert np.allclose(out, SINE_TONE * 0.5, atol=1e-4)
|
|
|
|
def test_decay_tail(self, pipeline):
|
|
"""Reverb produces decaying tail after input stops."""
|
|
_load_fx(pipeline, FXType.REVERB,
|
|
{"decay": 0.8, "damping": 0.4, "mix": 1.0})
|
|
pipeline.process(FULL_SCALE) # Fill reverb
|
|
tail1 = pipeline.process(SILENCE)
|
|
tail2 = pipeline.process(SILENCE)
|
|
tail3 = pipeline.process(SILENCE)
|
|
tail4 = pipeline.process(SILENCE)
|
|
# Should have a decay tail
|
|
assert np.max(np.abs(tail1)) > 0.001, "Reverb tail should be audible"
|
|
# Should decay (not necessarily monotonic but trend downward)
|
|
tail_energy = [np.sqrt(np.mean(t ** 2))
|
|
for t in [tail1, tail2, tail3, tail4]]
|
|
assert sum(tail_energy) > 0, "Tail must have energy"
|
|
|
|
def test_different_decay_values(self, pipeline):
|
|
"""Higher decay = longer tail."""
|
|
_load_fx(pipeline, FXType.REVERB,
|
|
{"decay": 0.9, "damping": 0.2, "mix": 1.0})
|
|
pipeline.process(FULL_SCALE)
|
|
high_tail = pipeline.process(SILENCE)
|
|
|
|
_load_fx(pipeline, FXType.REVERB,
|
|
{"decay": 0.3, "damping": 0.2, "mix": 1.0})
|
|
pipeline.process(FULL_SCALE)
|
|
low_tail = pipeline.process(SILENCE)
|
|
|
|
energy_high = np.sqrt(np.mean(high_tail ** 2))
|
|
energy_low = np.sqrt(np.mean(low_tail ** 2))
|
|
|
|
# Higher decay should generally produce more tail energy
|
|
# (not assertion — informational only; structural differences matter)
|
|
assert energy_high >= 0 and energy_low >= 0, \
|
|
"Both decay values should produce non-negative energy"
|
|
|
|
|
|
# ═══════════════════════════════════════════════════════════════════
|
|
# 12. Volume
|
|
# ═══════════════════════════════════════════════════════════════════
|
|
|
|
class TestVolume:
|
|
def test_linear_scaling(self, pipeline):
|
|
_load_fx(pipeline, FXType.VOLUME, {"level": 0.5})
|
|
out = pipeline.process(HALF_SCALE)
|
|
assert np.allclose(out, HALF_SCALE * 0.5, atol=1e-6)
|
|
|
|
def test_unity_gain(self, pipeline):
|
|
_load_fx(pipeline, FXType.VOLUME, {"level": 1.0})
|
|
out = pipeline.process(HALF_SCALE)
|
|
assert np.allclose(out, HALF_SCALE)
|
|
|
|
|
|
# ═══════════════════════════════════════════════════════════════════
|
|
# 13. Integrated chain tests
|
|
# ═══════════════════════════════════════════════════════════════════
|
|
|
|
class TestChain:
|
|
def test_multiple_fx_chain(self, pipeline):
|
|
"""Chain multiple effects without error."""
|
|
chain = [
|
|
FXBlock(FXType.NOISE_GATE, params={"threshold": 0.001}),
|
|
FXBlock(FXType.COMPRESSOR, params={"threshold": -20.0, "ratio": 4.0}),
|
|
FXBlock(FXType.OVERDRIVE, params={"drive": 0.4}),
|
|
FXBlock(FXType.CHORUS, params={"rate": 0.5, "mix": 0.3}),
|
|
FXBlock(FXType.DELAY, params={"time": 300.0, "mix": 0.3}),
|
|
FXBlock(FXType.REVERB, params={"decay": 0.4, "mix": 0.2}),
|
|
FXBlock(FXType.VOLUME, params={"level": 0.8}),
|
|
]
|
|
preset = Preset(name="chain_test", chain=chain, master_volume=1.0)
|
|
pipeline.load_preset(preset)
|
|
|
|
out = pipeline.process(SINE_TONE * 0.5)
|
|
assert np.all(np.isfinite(out)), "Chain should produce finite output"
|
|
assert np.all(out >= -1.0) and np.all(out <= 1.0), \
|
|
"Chain output must be in [-1, 1]"
|
|
|
|
def test_all_bypass_passthrough(self, pipeline):
|
|
"""All blocks bypassed = pass-through."""
|
|
chain = [
|
|
FXBlock(FXType.NOISE_GATE, enabled=False),
|
|
FXBlock(FXType.COMPRESSOR, bypass=True),
|
|
FXBlock(FXType.OVERDRIVE, bypass=True),
|
|
FXBlock(FXType.EQ, bypass=True),
|
|
FXBlock(FXType.DELAY, bypass=True),
|
|
FXBlock(FXType.REVERB, bypass=True),
|
|
]
|
|
preset = Preset(name="bypass_test", chain=chain, master_volume=1.0)
|
|
pipeline.load_preset(preset)
|
|
out = pipeline.process(HALF_SCALE)
|
|
assert np.allclose(out, HALF_SCALE, atol=1e-6)
|
|
|
|
def test_global_bypass(self, pipeline):
|
|
"""Global bypass = dry output at master volume."""
|
|
_load_fx(pipeline, FXType.OVERDRIVE, {"drive": 1.0})
|
|
pipeline.bypassed = True
|
|
out = pipeline.process(HALF_SCALE)
|
|
assert np.allclose(out, HALF_SCALE, atol=1e-6)
|
|
|
|
def test_master_volume(self, pipeline):
|
|
_load_fx(pipeline, FXType.VOLUME, {"level": 1.0})
|
|
pipeline.master_volume = 0.5
|
|
out = pipeline.process(HALF_SCALE)
|
|
assert np.allclose(out, HALF_SCALE * 0.5, atol=1e-6)
|
|
|
|
|
|
# ═══════════════════════════════════════════════════════════════════
|
|
# 14. DelayLine unit tests
|
|
# ═══════════════════════════════════════════════════════════════════
|
|
|
|
class TestDelayLine:
|
|
def test_write_read_identity(self):
|
|
dl = _DelayLine(1024)
|
|
block = np.arange(BLOCK_SIZE, dtype=np.float32) * 0.001
|
|
dl.write_block(block)
|
|
out = dl.read_block(float(BLOCK_SIZE), BLOCK_SIZE)
|
|
assert np.allclose(out, block, atol=1e-5), \
|
|
"Read after write at exact delay should return original"
|
|
|
|
def test_fractional_interpolation(self):
|
|
dl = _DelayLine(128)
|
|
dl.write_block(np.array([1.0, 0.0, 0.0, 0.0], dtype=np.float32))
|
|
# Read at delay 2.5 — should interpolate between 0 and 0
|
|
dl.write_block(np.zeros(120, dtype=np.float32))
|
|
out = dl.read_block(2.5, 1)
|
|
assert 0.0 <= out[0] <= 0.6, \
|
|
f"Interpolation at 2.5 should be ~0.5 (±error), got {out[0]:.4f}"
|
|
|
|
def test_circular_wraparound(self):
|
|
dl = _DelayLine(4)
|
|
dl.write_block(np.array([1.0, 2.0, 3.0, 4.0], dtype=np.float32))
|
|
dl.write_block(np.array([5.0, 6.0, 0.0, 0.0], dtype=np.float32))
|
|
out = dl.read_block(2.0, 2)
|
|
# After two writes: buffer = [3, 4, 5, 6], write_idx=0
|
|
# Read at delay 2: idx = (0 - 2) % 4 = 2 -> buf[2]=5, idx=3-> buf[3]=6
|
|
assert np.allclose(out, [5.0, 6.0], atol=1e-5), \
|
|
f"Wraparound read should get [5, 6], got {out}"
|
|
|
|
|
|
class TestCombFilter:
|
|
def test_output_finite(self):
|
|
cf = _CombFilter(7)
|
|
out = cf.process(SINE_TONE * 0.5)
|
|
assert np.all(np.isfinite(out))
|
|
assert np.all(np.abs(out) < 10.0) # Should be well-behaved
|
|
|
|
|
|
class TestAllpassFilter:
|
|
def test_output_finite(self):
|
|
ap = _AllpassFilter(5)
|
|
out = ap.process(SINE_TONE * 0.5)
|
|
assert np.all(np.isfinite(out))
|
|
|
|
|
|
# ═══════════════════════════════════════════════════════════════════
|
|
# 15. State isolation between blocks
|
|
# ═══════════════════════════════════════════════════════════════════
|
|
|
|
class TestStateIsolation:
|
|
def test_two_reverbs_different(self, pipeline):
|
|
"""Two reverb blocks in chain should have separate state."""
|
|
chain = [
|
|
FXBlock(FXType.REVERB, params={"decay": 0.7, "mix": 0.5}),
|
|
FXBlock(FXType.REVERB, params={"decay": 0.7, "mix": 0.5}),
|
|
]
|
|
preset = Preset(name="dual_reverb", chain=chain, master_volume=1.0)
|
|
pipeline.load_preset(preset)
|
|
out = pipeline.process(SINE_TONE * 0.3)
|
|
assert np.all(np.isfinite(out))
|
|
assert np.all(out >= -1.0) and np.all(out <= 1.0)
|
|
|
|
def test_delay_and_reverb_state_independent(self, pipeline):
|
|
"""Delay and reverb should not share state."""
|
|
_load_fx(pipeline, FXType.DELAY, {"time": 100.0, "mix": 0.5})
|
|
pipeline.process(SINE_TONE * 0.3)
|
|
out1 = pipeline._state.get("fx_0", {}).get("delay", None)
|
|
assert out1 is not None, "Delay block should have 'delay' in state" |