e27bbaaa43
Add an accept_until helper that only sends "y" when a new [Y/n] prompt appears in the tmux pane, replacing the fixed-count blind send loops that could race ahead of prompts or send stray input. Resilient to changes in the number of apply-phase prompts. Relates to #51 Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
85 lines
2.6 KiB
Bash
Executable File
85 lines
2.6 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# Interactive test: identity guard prevents useConfigOnly lockout
|
|
# Verifies: when user.name/email are missing, the script prompts for them
|
|
# before enabling useConfigOnly; after providing both, useConfigOnly is set.
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
set -o pipefail
|
|
IFS=$'\n\t'
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
# shellcheck source=helpers.sh
|
|
source "${SCRIPT_DIR}/helpers.sh"
|
|
|
|
main() {
|
|
trap cleanup EXIT
|
|
|
|
printf 'Test: Identity guard — missing name/email\n' >&2
|
|
|
|
# Remove identity AND useConfigOnly so the guard triggers
|
|
git config --global --unset user.name 2>/dev/null || true
|
|
git config --global --unset user.email 2>/dev/null || true
|
|
git config --global --unset user.useConfigOnly 2>/dev/null || true
|
|
|
|
# Remove signing keys so wizard shows options (not existing key prompt)
|
|
rm -f "${HOME}/.ssh/id_ed25519_signing" "${HOME}/.ssh/id_ed25519_signing.pub"
|
|
rm -f "${HOME}/.ssh/id_ed25519" "${HOME}/.ssh/id_ed25519.pub"
|
|
|
|
start_session
|
|
|
|
# Safety review gate
|
|
wait_for "reviewed this script"
|
|
send "y" Enter
|
|
|
|
# Proceed with hardening
|
|
wait_for "Proceed with hardening"
|
|
send "y" Enter
|
|
|
|
# Accept all [Y/n] prompts until identity guard
|
|
accept_until "Enter your name"
|
|
|
|
# Identity guard: enter name
|
|
wait_for "Enter your name" 15
|
|
send "Test User" Enter
|
|
|
|
# Identity guard: enter email
|
|
wait_for "Enter your email" 10
|
|
send "test@example.com" Enter
|
|
|
|
# Accept remaining [Y/n] prompts until signing wizard
|
|
accept_until "Signing key options"
|
|
|
|
# Skip signing
|
|
if tmux capture-pane -t "$TMUX_SESSION" -p | grep -qF "Signing key options"; then
|
|
send "s" Enter
|
|
fi
|
|
|
|
# Wait for completion
|
|
sleep 2
|
|
capture_output >/dev/null 2>&1 || true
|
|
|
|
# Verify: useConfigOnly was set
|
|
local use_config_only
|
|
use_config_only="$(git config --global --get user.useConfigOnly 2>/dev/null || true)"
|
|
if [ "$use_config_only" = "true" ]; then
|
|
pass "Identity guard: useConfigOnly=true set after providing name/email"
|
|
else
|
|
fail "Identity guard: useConfigOnly not set (expected true, got '${use_config_only}')"
|
|
exit 1
|
|
fi
|
|
|
|
# Verify: name and email were set
|
|
local name email
|
|
name="$(git config --global --get user.name 2>/dev/null || true)"
|
|
email="$(git config --global --get user.email 2>/dev/null || true)"
|
|
if [ "$name" = "Test User" ] && [ "$email" = "test@example.com" ]; then
|
|
pass "Identity guard: user.name and user.email configured"
|
|
else
|
|
fail "Identity guard: identity not configured (name='${name}', email='${email}')"
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
main
|