Some checks failed
Go / build (push) Has been cancelled
- Introduced a new policy system for event processing, allowing fine-grained control over event storage and retrieval based on various criteria. - Added support for policy configuration via JSON files, including whitelists, blacklists, and custom scripts. - Implemented a test suite for the policy system, ensuring 100% test coverage of core functionality and edge cases. - Created benchmark tests to evaluate policy performance under various conditions. - Updated event handling to integrate policy checks for both read and write access. - Enhanced documentation with examples and usage instructions for the policy system. - Bumped version to v0.16.0.
54 lines
1.4 KiB
Bash
Executable File
54 lines
1.4 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Policy System Test Runner
|
|
# This script runs all policy-related tests and benchmarks
|
|
|
|
set -e
|
|
|
|
echo "🧪 Running Policy System Tests"
|
|
echo "================================"
|
|
|
|
# Change to the project directory
|
|
cd "$(dirname "$0")"
|
|
|
|
# Run policy package tests
|
|
echo ""
|
|
echo "📦 Running Policy Package Tests..."
|
|
go test -v ./pkg/policy/... -run "Test.*" -timeout 30s
|
|
|
|
# Run policy integration tests
|
|
echo ""
|
|
echo "🔗 Running Policy Integration Tests..."
|
|
go test -v ./app/... -run "TestPolicy.*" -timeout 30s
|
|
|
|
# Run policy benchmarks
|
|
echo ""
|
|
echo "⚡ Running Policy Benchmarks..."
|
|
go test -v ./pkg/policy/... -run "Benchmark.*" -bench=. -benchmem -timeout 60s
|
|
|
|
# Run edge case tests
|
|
echo ""
|
|
echo "🔍 Running Edge Case Tests..."
|
|
go test -v ./pkg/policy/... -run "TestEdge.*" -timeout 30s
|
|
|
|
# Run race condition tests
|
|
echo ""
|
|
echo "🏃 Running Race Condition Tests..."
|
|
go test -v ./pkg/policy/... -race -timeout 30s
|
|
|
|
# Run coverage analysis
|
|
echo ""
|
|
echo "📊 Running Coverage Analysis..."
|
|
go test -v ./pkg/policy/... -coverprofile=coverage.out
|
|
go tool cover -html=coverage.out -o coverage.html
|
|
echo "Coverage report generated: coverage.html"
|
|
|
|
# Check for any linting issues
|
|
echo ""
|
|
echo "🔍 Running Linter Checks..."
|
|
golangci-lint run ./pkg/policy/... || echo "Linter not available, skipping..."
|
|
|
|
echo ""
|
|
echo "✅ All Policy Tests Completed!"
|
|
echo "================================"
|