25 lines
796 B
Bash
Executable File
25 lines
796 B
Bash
Executable File
#!/bin/bash
|
||
|
||
echo "🧪 Running HeroDB Redis Compatibility Tests"
|
||
echo "=========================================="
|
||
|
||
echo ""
|
||
echo "1️⃣ Running Simple Redis Tests (4 tests)..."
|
||
echo "----------------------------------------------"
|
||
cargo test --test simple_redis_test -- --nocapture
|
||
|
||
echo ""
|
||
echo "2️⃣ Running Comprehensive Redis Integration Tests (13 tests)..."
|
||
echo "----------------------------------------------------------------"
|
||
cargo test --test redis_integration_tests -- --nocapture
|
||
cargo test --test redis_basic_client -- --nocapture
|
||
cargo test --test debug_hset -- --nocapture
|
||
cargo test --test debug_hset_simple -- --nocapture
|
||
|
||
echo ""
|
||
echo "3️⃣ Running All Tests..."
|
||
echo "------------------------"
|
||
cargo test -- --nocapture
|
||
|
||
echo ""
|
||
echo "✅ Test execution completed!" |