mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-08-17 12:42:21 +03:00
feat(homolog): L0 avaliador de paridade de deploy (TDD)
This commit is contained in:
15
scripts/homolog/lib/parity.mjs
Normal file
15
scripts/homolog/lib/parity.mjs
Normal file
@@ -0,0 +1,15 @@
|
||||
/**
|
||||
* Avaliação pura de paridade do deploy (testável sem rede).
|
||||
* @param {{status?: string, version?: string}} health corpo de /api/monitoring/health
|
||||
* @param {{expectedVersion: string, httpStatus: number}} ctx
|
||||
* @returns {{ok: boolean, failures: string[]}}
|
||||
*/
|
||||
export function evaluateParity(health, ctx) {
|
||||
const failures = [];
|
||||
if (ctx.httpStatus !== 200) failures.push(`health HTTP ${ctx.httpStatus} (esperado 200)`);
|
||||
if (health?.status !== "healthy")
|
||||
failures.push(`status "${health?.status}" (esperado "healthy")`);
|
||||
if (health?.version !== ctx.expectedVersion)
|
||||
failures.push(`version "${health?.version}" (esperado "${ctx.expectedVersion}")`);
|
||||
return { ok: failures.length === 0, failures };
|
||||
}
|
||||
Reference in New Issue
Block a user