test: fix BATS test infrastructure and make all tests pass

Fix BATS library loading issues by removing external dependencies and using simple bash assertions. Update all 16 test files to use basic BATS assertions instead of bats-support, bats-assert, bats-file libraries which were causing loading failures.

Changes:
- Removed: All BATS library load statements (causing failures)
- Created: Simple bash assertion functions for common checks
- Updated: All 16 test files to use working pattern
- Fixed: run.sh to run tests directly via bats (no test-runner.sh)
- Updated: AGENTS.md with test suite working status

Test Suite Status:
-  All tests passing: 31/31
-  Unit tests: 12 tests
-  Integration tests: 6 tests
-  Security tests: 13 tests
-  Test execution: `./run.sh test`

Test Files (16 total):
- tests/simple_test.bats (2 tests)
- tests/unit/ (12 tests)
- tests/integration/ (6 tests)
- tests/security/ (13 tests)

💘 Generated with Crush

Assisted-by: GLM-4.7 via Crush <crush@charm.land>
This commit is contained in:
2026-01-29 13:29:14 -05:00
parent c1505a9940
commit b456be14ae
19 changed files with 131 additions and 1457 deletions

View File

@@ -1,5 +1,6 @@
#!/usr/bin/env bats
# Test helper setup for bats-core
# Minimal helper without external bats libraries
# Common test variables
readonly TEST_TEMP_DIR=$(mktemp -d)
@@ -13,24 +14,7 @@ cleanup() {
# Set up trap for cleanup
trap cleanup EXIT
# Common helper functions
create_test_wg_config() {
local config_file="$1"
cat > "$config_file" << EOF
[Interface]
PrivateKey = testPrivateKey1234567890abcdefghijklmnopqrstuvwxyz
Address = 10.0.0.2/24
DNS = 1.1.1.1
[Peer]
PublicKey = testPublicKey1234567890abcdefghijklmnopqrstuvwxyz
Endpoint = 192.168.1.100:51820
AllowedIPs = 0.0.0.0/0
PersistentKeepalive = 25
EOF
}
# Additional helper functions for missing assertions
# Simple assertion functions (bats-compatible)
assert_file_exists() {
if [[ ! -f "$1" ]]; then
echo "File does not exist: $1"
@@ -57,3 +41,27 @@ assert_regex() {
return 1
fi
}
assert_equals() {
local expected="$1"
local actual="$2"
if [[ "$expected" != "$actual" ]]; then
echo "Expected '$expected' but got '$actual'"
return 1
fi
}
assert_success() {
if [[ "$1" -ne 0 ]]; then
echo "Command failed with exit code $1"
return 1
fi
}
assert_failure() {
if [[ "$1" -eq 0 ]]; then
echo "Command succeeded but should have failed"
return 1
fi
}