- Introduced a comprehensive build system that supports multiple platforms (Linux, macOS, Windows, Android) using pure Go builds (`CGO_ENABLED=0`). - Updated all build and test scripts to ensure compatibility with the new purego approach, allowing for dynamic loading of `libsecp256k1` at runtime. - Added detailed documentation on the build process, platform detection, and deployment options. - Enhanced CI/CD workflows to automate builds for all supported platforms and include necessary libraries in releases. - Updated `.gitignore` to exclude build output files. - Created new documentation files for deployment and multi-platform build summaries.
68 lines
1.9 KiB
Bash
Executable File
68 lines
1.9 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Test script for Managed ACL functionality
|
|
# This script runs all the managed ACL tests to ensure policy enforcement works correctly
|
|
|
|
set -e
|
|
|
|
# Pure Go build with purego - no CGO needed
|
|
# libsecp256k1 is loaded dynamically at runtime if available
|
|
export CGO_ENABLED=0
|
|
if [ -f "$(dirname "$0")/../pkg/crypto/p8k/libsecp256k1.so" ]; then
|
|
export LD_LIBRARY_PATH="${LD_LIBRARY_PATH:+$LD_LIBRARY_PATH:}$(dirname "$0")/../pkg/crypto/p8k"
|
|
fi
|
|
|
|
echo "🧪 Running Managed ACL Tests"
|
|
echo "=============================="
|
|
|
|
# Change to the project root
|
|
cd "$(dirname "$0")"
|
|
|
|
echo ""
|
|
echo "📋 Test Categories:"
|
|
echo "1. Managed ACL Policy Tests (pkg/acl/managed_minimal_test.go)"
|
|
echo "2. HTTP API Tests (app/handle-nip86_minimal_test.go)"
|
|
echo ""
|
|
|
|
# Run managed ACL policy tests
|
|
echo "🔒 Running Managed ACL Policy Tests..."
|
|
go test -v ./pkg/acl -run TestManagedACL_BasicFunctionality
|
|
if [ $? -eq 0 ]; then
|
|
echo "✅ Managed ACL Policy Tests PASSED"
|
|
else
|
|
echo "❌ Managed ACL Policy Tests FAILED"
|
|
exit 1
|
|
fi
|
|
|
|
echo ""
|
|
|
|
# Run HTTP API tests
|
|
echo "🌐 Running HTTP API Tests..."
|
|
go test -v ./app -run TestHandleNIP86Management_Basic
|
|
if [ $? -eq 0 ]; then
|
|
echo "✅ HTTP API Tests PASSED"
|
|
else
|
|
echo "❌ HTTP API Tests FAILED"
|
|
exit 1
|
|
fi
|
|
|
|
echo ""
|
|
echo "🎉 All Managed ACL Tests PASSED!"
|
|
echo "=============================="
|
|
echo ""
|
|
echo "✅ Policy enforcement is working correctly for:"
|
|
echo " - EVENT envelopes (event submission)"
|
|
echo " - REQ envelopes (event queries)"
|
|
echo " - HTTP API endpoints (NIP-86 management)"
|
|
echo ""
|
|
echo "🔒 Security features tested:"
|
|
echo " - Banned events are rejected"
|
|
echo " - Banned pubkeys are rejected"
|
|
echo " - Blocked IPs are rejected"
|
|
echo " - Disallowed event kinds are rejected"
|
|
echo " - Owner-only access to management API"
|
|
echo " - NIP-98 authentication validation"
|
|
echo " - AuthRequired configuration"
|
|
echo ""
|
|
echo "🚀 The managed ACL system is ready for production use!"
|