This directory contains test scripts for validating the OpenCode installer functionality and compatibility.
CI Integration: These tests run automatically via .github/workflows/installer-checks.yml on any PR that modifies install.sh, update.sh, or registry.json.
# Run all installer tests
for test in scripts/tests/test-*.sh; do bash "$test"; done
# Run specific test
bash scripts/tests/test-non-interactive.sh
test-compatibility.sh)Tests the installer's compatibility across different platforms and bash versions.
Run locally:
bash scripts/tests/test-compatibility.sh
Run remotely:
curl -fsSL https://raw.githubusercontent.com/darrenhinde/OpenAgentsControl/main/scripts/tests/test-compatibility.sh | bash
What it tests:
Expected output:
╔════════════════════════════════════════════════════════════════╗
║ OpenCode Installer Compatibility Test ║
╚════════════════════════════════════════════════════════════════╝
System Information:
Platform: macOS
Bash Version: 3.2.57(1)-release
Shell: /bin/bash
[12 tests run...]
╔════════════════════════════════════════════════════════════════╗
║ All Tests Passed! ✓ ║
╚════════════════════════════════════════════════════════════════╝
test-non-interactive.sh)Critical test - validates piped execution (curl | bash) scenarios.
Run locally:
bash scripts/tests/test-non-interactive.sh
What it tests:
curl | bash -s profile)Why this matters: Catches bugs where interactive prompts fail silently when stdin is not a terminal.
test-e2e-install.sh)Full installation workflow validation.
Run locally:
bash scripts/tests/test-e2e-install.sh
What it tests:
test-collision-detection.sh)Tests the installer's file collision detection and handling strategies.
Run locally:
bash scripts/tests/test-collision-detection.sh
What it tests:
# From repository root
for test in scripts/tests/test-*.sh; do
echo "Running $test..."
bash "$test"
echo ""
done
All tests require:
When adding new test scripts:
test-<feature>.shchmod +x scripts/tests/test-<feature>.sh#!/usr/bin/env bashExample test structure:
#!/usr/bin/env bash
set -e
GREEN='\033[0;32m'
RED='\033[0;31m'
NC='\033[0m'
echo "Testing feature X..."
# Test 1
if [[ condition ]]; then
echo -e "${GREEN}✓${NC} Test 1 passed"
else
echo -e "${RED}✗${NC} Test 1 failed"
exit 1
fi
echo "All tests passed!"
These tests can be integrated into CI/CD pipelines:
GitHub Actions example:
name: Test Installer
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
if [[ "$OSTYPE" == "darwin"* ]]; then
brew install jq
else
sudo apt-get install -y jq
fi
- name: Run compatibility tests
run: bash scripts/tests/test-compatibility.sh
Install missing dependencies:
# macOS
brew install curl jq
# Ubuntu/Debian
sudo apt-get install curl jq
# Fedora/RHEL
sudo dnf install curl jq
Check internet connectivity:
curl -I https://github.com
Make sure scripts are executable:
chmod +x scripts/tests/*.sh
Current test coverage:
Future test additions:
When contributing tests: