Files
rudder-js-sdk/test/e2e-prod/health.e2e.test.ts
T

26 lines
911 B
TypeScript
Raw Normal View History

2026-08-12 14:02:25 +03:00
import { describe, it, expect, beforeAll } from 'vitest';
import { loadArtifact } from './_setup/harness.js';
// Smoke gate: if egress to prod is blocked or the gateway is down, fail fast here.
describe('e2e-prod: health', () => {
let baseUrl: string;
beforeAll(() => {
baseUrl = loadArtifact().baseUrl;
});
it('GET /health is ok', async () => {
const res = await fetch(`${baseUrl}/health`);
expect(res.ok).toBe(true);
const body = (await res.json()) as { status?: string };
expect(body.status).toBe('ok');
});
it('GET /readyz reports every backing store ready', async () => {
2026-08-12 14:02:25 +03:00
const res = await fetch(`${baseUrl}/readyz`);
expect(res.ok).toBe(true);
const body = (await res.json()) as { status?: string; checks?: Record<string, string> };
expect(body.status).toBe('ready');
expect(body.checks).toMatchObject({ db: 'ok', redis: 'ok', s3: 'ok' });
2026-08-12 14:02:25 +03:00
});
});