| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- #!/usr/bin/env bash
- # Test: Plugin Loading
- # Verifies that the superpowers plugin loads correctly in OpenCode
- set -euo pipefail
- SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
- echo "=== Test: Plugin Loading ==="
- # Source setup to create isolated environment
- source "$SCRIPT_DIR/setup.sh"
- # Trap to cleanup on exit
- trap cleanup_test_env EXIT
- plugin_link="$OPENCODE_CONFIG_DIR/plugins/superpowers.js"
- # Test 1: Verify plugin file exists and is registered
- echo "Test 1: Checking plugin registration..."
- if [ -L "$plugin_link" ]; then
- echo " [PASS] Plugin symlink exists"
- else
- echo " [FAIL] Plugin symlink not found at $plugin_link"
- exit 1
- fi
- # Verify symlink target exists
- if [ -f "$(readlink -f "$plugin_link")" ]; then
- echo " [PASS] Plugin symlink target exists"
- else
- echo " [FAIL] Plugin symlink target does not exist"
- exit 1
- fi
- # Test 2: Verify skills directory is populated
- echo "Test 2: Checking skills directory..."
- skill_count=$(find "$SUPERPOWERS_SKILLS_DIR" -name "SKILL.md" | wc -l)
- if [ "$skill_count" -gt 0 ]; then
- echo " [PASS] Found $skill_count skills"
- else
- echo " [FAIL] No skills found in $SUPERPOWERS_SKILLS_DIR"
- exit 1
- fi
- # Test 3: Check using-superpowers skill exists (critical for bootstrap)
- echo "Test 3: Checking using-superpowers skill (required for bootstrap)..."
- if [ -f "$SUPERPOWERS_SKILLS_DIR/using-superpowers/SKILL.md" ]; then
- echo " [PASS] using-superpowers skill exists"
- else
- echo " [FAIL] using-superpowers skill not found (required for bootstrap)"
- exit 1
- fi
- # Test 4: Verify plugin JavaScript syntax (basic check)
- echo "Test 4: Checking plugin JavaScript syntax..."
- if node --check "$SUPERPOWERS_PLUGIN_FILE" 2>/dev/null; then
- echo " [PASS] Plugin JavaScript syntax is valid"
- else
- echo " [FAIL] Plugin has JavaScript syntax errors"
- exit 1
- fi
- # Test 5: Verify bootstrap text does not reference a hardcoded skills path
- echo "Test 5: Checking bootstrap does not advertise a wrong skills path..."
- if grep -q 'configDir}/skills/superpowers/' "$SUPERPOWERS_PLUGIN_FILE"; then
- echo " [FAIL] Plugin still references old configDir skills path"
- exit 1
- else
- echo " [PASS] Plugin does not advertise a misleading skills path"
- fi
- # Test 6: Verify personal test skill was created
- echo "Test 6: Checking test fixtures..."
- if [ -f "$OPENCODE_CONFIG_DIR/skills/personal-test/SKILL.md" ]; then
- echo " [PASS] Personal test skill fixture created"
- else
- echo " [FAIL] Personal test skill fixture not found"
- exit 1
- fi
- echo ""
- echo "=== All plugin loading tests passed ==="
|