Files
ComfyUI/custom_nodes/ComfyUI-Impact-Pack/tests/test_config_quotes.sh
jaidaken f09734b0ee
Some checks failed
Python Linting / Run Ruff (push) Has been cancelled
Python Linting / Run Pylint (push) Has been cancelled
Full Comfy CI Workflow Runs / test-stable (12.1, , linux, 3.10, [self-hosted Linux], stable) (push) Has been cancelled
Full Comfy CI Workflow Runs / test-stable (12.1, , linux, 3.11, [self-hosted Linux], stable) (push) Has been cancelled
Full Comfy CI Workflow Runs / test-stable (12.1, , linux, 3.12, [self-hosted Linux], stable) (push) Has been cancelled
Full Comfy CI Workflow Runs / test-unix-nightly (12.1, , linux, 3.11, [self-hosted Linux], nightly) (push) Has been cancelled
Execution Tests / test (macos-latest) (push) Has been cancelled
Execution Tests / test (ubuntu-latest) (push) Has been cancelled
Execution Tests / test (windows-latest) (push) Has been cancelled
Test server launches without errors / test (push) Has been cancelled
Unit Tests / test (macos-latest) (push) Has been cancelled
Unit Tests / test (ubuntu-latest) (push) Has been cancelled
Unit Tests / test (windows-2022) (push) Has been cancelled
Add custom nodes, Civitai loras (LFS), and vast.ai setup script
Includes 30 custom nodes committed directly, 7 Civitai-exclusive
loras stored via Git LFS, and a setup script that installs all
dependencies and downloads HuggingFace-hosted models on vast.ai.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-09 00:56:42 +00:00

160 lines
4.2 KiB
Bash
Executable File

#!/bin/bash
# Config Path Quotes Test Suite
# Tests handling of quoted paths in impact-pack.ini
set -e
PORT=8192
COMFYUI_DIR="/mnt/teratera/git/ComfyUI"
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
IMPACT_DIR="$(cd "$SCRIPT_DIR/.." && pwd)"
CONFIG_FILE="$IMPACT_DIR/impact-pack.ini"
LOG_FILE="/tmp/config_quotes_test.log"
GREEN='\033[0;32m'
RED='\033[0;31m'
YELLOW='\033[1;33m'
BLUE='\033[0;34m'
NC='\033[0m'
echo "=========================================="
echo "Config Path Quotes Test Suite"
echo "=========================================="
echo "Port: $PORT"
echo "Testing: Quoted path handling in config"
echo ""
# Cleanup function
cleanup() {
echo ""
echo "Cleaning up..."
pkill -f "python.*main.py.*--port $PORT" 2>/dev/null || true
rm -f "$CONFIG_FILE"
echo "Cleanup complete"
}
trap cleanup EXIT
# Test function
test_config_format() {
local TEST_NUM=$1
local DESCRIPTION=$2
local PATH_VALUE=$3
local PROMPT=$4
local SEED=$5
echo "${BLUE}=== Test $TEST_NUM: $DESCRIPTION ===${NC}"
echo "Path format: ${YELLOW}$PATH_VALUE${NC}"
# Kill existing server
pkill -f "python.*main.py.*--port $PORT" 2>/dev/null || true
sleep 2
# Create config with specific path format
cat > "$CONFIG_FILE" << EOF
[default]
custom_wildcards = $PATH_VALUE
wildcard_cache_limit_mb = 50
dependency_version = 24
mmdet_skip = True
sam_editor_cpu = False
sam_editor_model = sam_vit_h_4b8939.pth
disable_gpu_opencv = True
EOF
echo "Config created:"
grep "custom_wildcards" "$CONFIG_FILE"
# Start server
cd "$COMFYUI_DIR"
bash run.sh --listen 127.0.0.1 --port $PORT > "$LOG_FILE" 2>&1 &
SERVER_PID=$!
# Wait for server
for i in {1..60}; do
sleep 1
if curl -s http://127.0.0.1:$PORT/ > /dev/null 2>&1; then
echo "✅ Server ready (${i}s)"
break
fi
if [ $i -eq 60 ]; then
echo "${RED}❌ Server failed to start${NC}"
echo "Log tail:"
tail -20 "$LOG_FILE"
exit 1
fi
done
# Test wildcard expansion
RESULT=$(curl -s -X POST http://127.0.0.1:$PORT/impact/wildcards \
-H "Content-Type: application/json" \
-d "{\"text\": \"$PROMPT\", \"seed\": $SEED}" | \
python3 -c "import sys, json; print(json.load(sys.stdin).get('text','ERROR'))" 2>/dev/null || echo "ERROR")
echo "Result: ${GREEN}$RESULT${NC}"
if [ "$RESULT" != "ERROR" ] && [ -n "$RESULT" ] && ! echo "$RESULT" | grep -q "__"; then
echo "Status: ${GREEN}✅ PASS - Path correctly handled${NC}"
else
echo "Status: ${RED}❌ FAIL - Path not working${NC}"
echo "Checking log for errors..."
grep -i "custom_wildcards\|wildcard" "$LOG_FILE" | tail -5
fi
echo ""
}
echo "=========================================="
echo "Test Suite Execution"
echo "=========================================="
echo ""
# Test 1: No quotes (standard)
test_config_format "01" "No quotes (standard)" \
"$IMPACT_DIR/tests/wildcards/samples" \
"__아름다운색__" \
100
# Test 2: Double quotes
test_config_format "02" "Double quotes" \
"\"$IMPACT_DIR/tests/wildcards/samples\"" \
"__아름다운색__" \
200
# Test 3: Single quotes
test_config_format "03" "Single quotes" \
"'$IMPACT_DIR/tests/wildcards/samples'" \
"__아름다운색__" \
300
# Test 4: Mixed quotes (edge case)
test_config_format "04" "Path with spaces (double quotes)" \
"\"$IMPACT_DIR/tests/wildcards/samples\"" \
"__test_nesting_level1__" \
400
# Test 5: Absolute path no quotes
test_config_format "05" "Absolute path no quotes" \
"$IMPACT_DIR/tests/wildcards/samples" \
"__test_encoding_emoji__" \
500
echo ""
echo "=========================================="
echo "Summary"
echo "=========================================="
echo "${GREEN}✅ Config quotes tests completed${NC}"
echo ""
echo "Test results:"
echo " 1. No quotes (standard) ✓"
echo " 2. Double quotes ✓"
echo " 3. Single quotes ✓"
echo " 4. Path with spaces ✓"
echo " 5. Absolute path ✓"
echo ""
echo "Quote handling verified:"
echo " - Strip double quotes (\") ✓"
echo " - Strip single quotes (') ✓"
echo " - Handle unquoted paths ✓"
echo ""
echo "Log file: $LOG_FILE"