This directory contains test scripts for validating the OpenCode installer functionality and compatibility.
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/OpenAgents/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-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:
Note: This test creates temporary files and directories for testing collision scenarios.
# 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: