48 lines
1.7 KiB
Bash
Executable File
48 lines
1.7 KiB
Bash
Executable File
#!/bin/sh
|
|
set -eu
|
|
|
|
ROOT="$(cd "$(dirname "$0")/.." && pwd)"
|
|
TMP_DIR="$(mktemp -d)"
|
|
trap 'rm -rf "$TMP_DIR"' EXIT INT TERM
|
|
|
|
export HOME="$TMP_DIR/home"
|
|
export LEMANA_VPN_BIN_DIR="$HOME/bin"
|
|
export LEMANA_VPN_CONFIG_DIR="$HOME/.config/lemana-vpn"
|
|
export OPENCONNECT_LITE_CONFIG_DIR="$HOME/.config/openconnect-lite"
|
|
mkdir -p "$HOME"
|
|
|
|
output="$(cd "$ROOT" && sh install.sh --dry-run --non-interactive --minimal)"
|
|
|
|
printf '%s\n' "$output" | grep -q 'Detected state:'
|
|
printf '%s\n' "$output" | grep -q 'Interactive prompts: off'
|
|
printf '%s\n' "$output" | grep -q 'Modules: bitwarden=0 touchid=0 sudoers=1 shell=1 app=1 autostart=1'
|
|
printf '%s\n' "$output" | grep -q 'sudo install -d -m 755 -o root -g wheel /usr/local/sbin'
|
|
printf '%s\n' "$output" | grep -q 'swift build -c release --package-path'
|
|
printf '%s\n' "$output" | grep -q 'launchctl load'
|
|
printf '%s\n' "$output" | grep -q 'restart LemanaVPN.app if running'
|
|
|
|
status_json="$(bash "$ROOT/bin/vpn-lemanapro.sh" --status --json)"
|
|
printf '%s\n' "$status_json" | grep -q '"modules":'
|
|
printf '%s\n' "$status_json" | grep -q '"app":'
|
|
|
|
status_text="$(bash "$ROOT/bin/vpn-lemanapro.sh" --status)"
|
|
printf '%s\n' "$status_text" | grep -q 'app='
|
|
printf '%s\n' "$status_text" | grep -q 'autostart='
|
|
|
|
fake_pwd="$TMP_DIR/fake-pwd"
|
|
mkdir -p "$fake_pwd/bin"
|
|
printf 'stale local cli\n' > "$fake_pwd/bin/vpn-lemanapro.sh"
|
|
|
|
piped_output="$(
|
|
cd "$fake_pwd" &&
|
|
LEMANA_VPN_RAW_BASE_URL="file://$ROOT" sh -s -- --dry-run --non-interactive --minimal --without-app < "$ROOT/install.sh"
|
|
)"
|
|
|
|
printf '%s\n' "$piped_output" | grep -q "curl -fsSL file://$ROOT/bin/vpn-lemanapro.sh"
|
|
if printf '%s\n' "$piped_output" | grep -q "$fake_pwd/bin/vpn-lemanapro.sh"; then
|
|
echo "piped install used stale PWD/bin/vpn-lemanapro.sh" >&2
|
|
exit 1
|
|
fi
|
|
|
|
printf 'smoke ok\n'
|