#!/usr/bin/env bats # Encryption configuration tests @test "LUKS2 encryption configured" { grep -q "LUKS" /workspace/config/includes.installer/preseed.cfg } @test "AES cipher configured" { grep -qi "aes" /workspace/config/includes.installer/preseed.cfg } @test "encryption hooks exist" { [ -f "/workspace/config/hooks/installed/encryption-setup.sh" ] [ -f "/workspace/config/hooks/installed/encryption-validation.sh" ] }