mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-07-31 20:32:20 +03:00
A base tinha base-red sistêmica herdada de PRs de outras sessões, bloqueando TODOS os PRs do ciclo (o TIA roda a suíte full em fail-safe p/ diffs hub). 4 Fast Quality Gates: - test-discovery (#4877): live-server-allowlist.test.ts em tests/unit/server/ (não-coletado) + vitest → nunca rodava. Convertido p/ node:test em tests/unit/security/. - any-budget:t11 (#4664): 3 explicit-any em tokenRefresh.ts tipados (sem crescer file-size). - docs-symbols (#4868): rotas inexistentes → /api/system/version e PUT /api/providers/{id} {isActive:false}. - docs-all fabricated-claim (#4868 + #4718): 5 bin/*.sh reais criados (rollback, snapshot-data, restore-data, restore-policies, cold-start-bench) + _ops-common.sh (snapshot VACUUM INTO, guards de confirmação/TTY, testes de contrato); NODE_EXTRA_CA_CERTS (env de runtime Node) na allowlist do checker. 7 testes unit base-red (de features alheias à quota): - oauth-providers-config (#4664): teste alinhado ao provider codebuddy-cn do registry. - antigravity-model-aliases (#4636): maxOutputTokens esperado 32769→16384 (cap intencional). - provider-request-capture #4091 (#4861): exemplo do teste trocado de mcp__ (que #4861 isenta de cloak por causa dos 400s de assimetria de histórico) para um tool de terceiro cloakável — preserva o invariante de #4091 SEM reverter #4861. - combo-error-response: convertido de vitest p/ node:test (era coletado pelo glob node:test e crashava); api/** e server/** removidos do vitest.config (config morta). Build MDX (dast-smoke, #4679): - docs/ops/RELEASE_GREEN.md não tinha frontmatter `title` → fumadocs-mdx rejeitava no webpack compile ("invalid frontmatter: title expected string"), quebrando o next build (e o deploy). Frontmatter title adicionado (único doc do collection sem ele). 17/17 Fast Quality Gates + suíte unit completa (17737 testes, 0 fail) + vitest verdes localmente. Co-authored-by: Diego Rodrigues de Sa e Souza <souzamiriamrodrigues790@gmail.com>
71 lines
2.6 KiB
Bash
71 lines
2.6 KiB
Bash
# bin/_ops-common.sh — shared helpers for the OmniRoute ops runbook scripts.
|
|
#
|
|
# Sourced (not executed) by rollback.sh / snapshot-data.sh / restore-data.sh /
|
|
# restore-policies.sh / cold-start-bench.sh. The runbook context lives in
|
|
# docs/INCIDENT_RESPONSE.md and docs/PERF_BUDGETS.md.
|
|
#
|
|
# Path resolution mirrors the app (src/lib/db/core.ts): the SQLite store is
|
|
# $DATA_DIR/storage.sqlite and managed backups go to $DATA_DIR/db_backups
|
|
# (overridable via DB_BACKUPS_DIR), so snapshots created here are interchangeable
|
|
# with the ones the server writes on migrations.
|
|
|
|
# Recompute the data-dir-derived paths. Called once on source, and again by
|
|
# scripts that accept a --data-dir override.
|
|
ops_set_data_dir() {
|
|
OMNIROUTE_DATA_DIR="$1"
|
|
OMNIROUTE_SQLITE="${OMNIROUTE_DATA_DIR}/storage.sqlite"
|
|
OMNIROUTE_BACKUPS_DIR="${DB_BACKUPS_DIR:-${OMNIROUTE_DATA_DIR}/db_backups}"
|
|
}
|
|
ops_set_data_dir "${DATA_DIR:-$HOME/.omniroute}"
|
|
|
|
ops_log() { printf '[%s] %s\n' "${SCRIPT_NAME:-ops}" "$*" >&2; }
|
|
ops_die() {
|
|
printf '[%s] ERROR: %s\n' "${SCRIPT_NAME:-ops}" "$*" >&2
|
|
exit 1
|
|
}
|
|
|
|
ops_require_cmd() {
|
|
command -v "$1" >/dev/null 2>&1 || ops_die "required command not found: $1"
|
|
}
|
|
|
|
# ops_confirm "<prompt>" — return 0 to proceed. Honors ASSUME_YES=1 (set by the
|
|
# --yes flag) and REFUSES a destructive action on a non-interactive stdin unless
|
|
# ASSUME_YES is set, so an unattended/CI invocation can never silently destroy data.
|
|
ops_confirm() {
|
|
local prompt="$1" reply
|
|
if [ "${ASSUME_YES:-0}" = "1" ]; then return 0; fi
|
|
if [ ! -t 0 ]; then
|
|
ops_die "refusing a destructive action without a TTY; pass --yes to proceed non-interactively"
|
|
fi
|
|
read -r -p "$prompt [y/N] " reply
|
|
case "$reply" in
|
|
[yY] | [yY][eE][sS]) return 0 ;;
|
|
*) return 1 ;;
|
|
esac
|
|
}
|
|
|
|
# ops_find_snapshot <id> — resolve a snapshot identifier (a snapshot dir name,
|
|
# a bare timestamp/sha, or an explicit path) to a directory containing
|
|
# storage.sqlite. Echoes the resolved dir or dies.
|
|
ops_find_snapshot() {
|
|
local id="$1" cand
|
|
[ -n "$id" ] || ops_die "snapshot id required (a timestamp/sha, dir name, or path)"
|
|
for cand in \
|
|
"$id" \
|
|
"$id/" \
|
|
"$OMNIROUTE_BACKUPS_DIR/$id" \
|
|
"$OMNIROUTE_BACKUPS_DIR/snapshot_$id"; do
|
|
if [ -f "${cand%/}/storage.sqlite" ]; then
|
|
printf '%s\n' "${cand%/}"
|
|
return 0
|
|
fi
|
|
done
|
|
# Fall back to a prefix match against snapshot_* dirs (e.g. a short sha/date).
|
|
if [ -d "$OMNIROUTE_BACKUPS_DIR" ]; then
|
|
for cand in "$OMNIROUTE_BACKUPS_DIR"/snapshot_*"$id"*; do
|
|
[ -f "$cand/storage.sqlite" ] && { printf '%s\n' "$cand"; return 0; }
|
|
done
|
|
fi
|
|
ops_die "no snapshot matching '$id' under $OMNIROUTE_BACKUPS_DIR (run bin/snapshot-data.sh first)"
|
|
}
|