Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d6d74f2267 |
177
.github/workflows/ci.yml
vendored
177
.github/workflows/ci.yml
vendored
@@ -7,139 +7,132 @@ on:
|
|||||||
branches: [main, develop]
|
branches: [main, develop]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
# Frontend CI
|
# -------------------------------------------------------------------------
|
||||||
frontend-lint:
|
# Portal (Vite + React, lives at repo root after the webapp/ gitlink was
|
||||||
name: Frontend Lint
|
# removed in PR #4)
|
||||||
|
# -------------------------------------------------------------------------
|
||||||
|
portal-lint:
|
||||||
|
name: Portal Lint
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v5
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/setup-node@v6
|
- uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: "18"
|
node-version: "20"
|
||||||
cache: "npm"
|
cache: "npm"
|
||||||
cache-dependency-path: webapp/package-lock.json
|
- run: npm ci
|
||||||
- name: Install dependencies
|
- run: npm run lint
|
||||||
working-directory: webapp
|
|
||||||
run: npm ci
|
|
||||||
- name: Lint
|
|
||||||
working-directory: webapp
|
|
||||||
run: npm run lint
|
|
||||||
|
|
||||||
frontend-type-check:
|
portal-type-check:
|
||||||
name: Frontend Type Check
|
name: Portal Type Check
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v5
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/setup-node@v6
|
- uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: "18"
|
node-version: "20"
|
||||||
cache: "npm"
|
cache: "npm"
|
||||||
cache-dependency-path: webapp/package-lock.json
|
- run: npm ci
|
||||||
- name: Install dependencies
|
- run: npx tsc --noEmit
|
||||||
working-directory: webapp
|
|
||||||
run: npm ci
|
|
||||||
- name: Type check
|
|
||||||
working-directory: webapp
|
|
||||||
run: npx tsc --noEmit
|
|
||||||
|
|
||||||
frontend-build:
|
portal-build:
|
||||||
name: Frontend Build
|
name: Portal Build
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v5
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/setup-node@v6
|
- uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: "18"
|
node-version: "20"
|
||||||
cache: "npm"
|
cache: "npm"
|
||||||
cache-dependency-path: webapp/package-lock.json
|
- run: npm ci
|
||||||
- name: Install dependencies
|
- run: npm run build
|
||||||
working-directory: webapp
|
- uses: actions/upload-artifact@v4
|
||||||
run: npm ci
|
|
||||||
- name: Build
|
|
||||||
working-directory: webapp
|
|
||||||
run: npm run build
|
|
||||||
- name: Upload build artifacts
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
with:
|
||||||
name: frontend-build
|
name: portal-dist
|
||||||
path: webapp/.next
|
path: dist
|
||||||
|
|
||||||
frontend-e2e:
|
# -------------------------------------------------------------------------
|
||||||
name: Frontend E2E Tests
|
# Orchestrator (TypeScript + Express + Jest)
|
||||||
|
# -------------------------------------------------------------------------
|
||||||
|
orchestrator-type-check:
|
||||||
|
name: Orchestrator Type Check
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
defaults:
|
||||||
|
run:
|
||||||
|
working-directory: orchestrator
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v5
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/setup-node@v6
|
- uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: "18"
|
node-version: "20"
|
||||||
cache: "npm"
|
cache: "npm"
|
||||||
cache-dependency-path: webapp/package-lock.json
|
cache-dependency-path: orchestrator/package-lock.json
|
||||||
- name: Install dependencies
|
- run: npm ci
|
||||||
working-directory: webapp
|
- run: npx tsc --noEmit
|
||||||
run: npm ci
|
|
||||||
- name: Install Playwright
|
|
||||||
working-directory: webapp
|
|
||||||
run: npx playwright install --with-deps
|
|
||||||
- name: Run E2E tests
|
|
||||||
working-directory: webapp
|
|
||||||
run: npm run test:e2e
|
|
||||||
- name: Upload test results
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
if: always()
|
|
||||||
with:
|
|
||||||
name: playwright-report
|
|
||||||
path: webapp/playwright-report/
|
|
||||||
|
|
||||||
# Orchestrator CI
|
|
||||||
orchestrator-build:
|
orchestrator-build:
|
||||||
name: Orchestrator Build
|
name: Orchestrator Build
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
defaults:
|
||||||
|
run:
|
||||||
|
working-directory: orchestrator
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v5
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/setup-node@v6
|
- uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: "18"
|
node-version: "20"
|
||||||
cache: "npm"
|
cache: "npm"
|
||||||
cache-dependency-path: orchestrator/package-lock.json
|
cache-dependency-path: orchestrator/package-lock.json
|
||||||
- name: Install dependencies
|
- run: npm ci
|
||||||
working-directory: orchestrator
|
- run: npm run build
|
||||||
run: npm ci
|
|
||||||
- name: Build
|
|
||||||
working-directory: orchestrator
|
|
||||||
run: npm run build
|
|
||||||
|
|
||||||
# Smart Contracts CI
|
orchestrator-test:
|
||||||
|
name: Orchestrator Test
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
defaults:
|
||||||
|
run:
|
||||||
|
working-directory: orchestrator
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version: "20"
|
||||||
|
cache: "npm"
|
||||||
|
cache-dependency-path: orchestrator/package-lock.json
|
||||||
|
- run: npm ci
|
||||||
|
- run: npm test -- --ci
|
||||||
|
|
||||||
|
# -------------------------------------------------------------------------
|
||||||
|
# Smart Contracts (Hardhat)
|
||||||
|
# -------------------------------------------------------------------------
|
||||||
contracts-compile:
|
contracts-compile:
|
||||||
name: Contracts Compile
|
name: Contracts Compile
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
defaults:
|
||||||
|
run:
|
||||||
|
working-directory: contracts
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v5
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/setup-node@v6
|
- uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: "18"
|
node-version: "20"
|
||||||
cache: "npm"
|
cache: "npm"
|
||||||
cache-dependency-path: contracts/package-lock.json
|
cache-dependency-path: contracts/package-lock.json
|
||||||
- name: Install dependencies
|
- run: npm ci
|
||||||
working-directory: contracts
|
- run: npm run compile
|
||||||
run: npm ci
|
|
||||||
- name: Compile contracts
|
|
||||||
working-directory: contracts
|
|
||||||
run: npm run compile
|
|
||||||
|
|
||||||
contracts-test:
|
contracts-test:
|
||||||
name: Contracts Test
|
name: Contracts Test
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
defaults:
|
||||||
|
run:
|
||||||
|
working-directory: contracts
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v5
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/setup-node@v6
|
- uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: "18"
|
node-version: "20"
|
||||||
cache: "npm"
|
cache: "npm"
|
||||||
cache-dependency-path: contracts/package-lock.json
|
cache-dependency-path: contracts/package-lock.json
|
||||||
- name: Install dependencies
|
- run: npm ci
|
||||||
working-directory: contracts
|
- run: npm run test
|
||||||
run: npm ci
|
|
||||||
- name: Run tests
|
|
||||||
working-directory: contracts
|
|
||||||
run: npm run test
|
|
||||||
|
|
||||||
|
|||||||
@@ -22,6 +22,10 @@ const envSchema = z.object({
|
|||||||
CHAIN_138_CHAIN_ID: z.string().regex(/^\d+$/).optional(),
|
CHAIN_138_CHAIN_ID: z.string().regex(/^\d+$/).optional(),
|
||||||
NOTARY_REGISTRY_ADDRESS: z.string().regex(/^0x[0-9a-fA-F]{40}$/).optional(),
|
NOTARY_REGISTRY_ADDRESS: z.string().regex(/^0x[0-9a-fA-F]{40}$/).optional(),
|
||||||
ORCHESTRATOR_PRIVATE_KEY: z.string().regex(/^0x[0-9a-fA-F]{64}$/).optional(),
|
ORCHESTRATOR_PRIVATE_KEY: z.string().regex(/^0x[0-9a-fA-F]{64}$/).optional(),
|
||||||
|
// Event bus signing (arch §7 + §13 non-repudiation). Defaults to a
|
||||||
|
// dev placeholder; boot-time assertion refuses this placeholder in
|
||||||
|
// NODE_ENV=production.
|
||||||
|
EVENT_BUS_HMAC_SECRET: z.string().min(32).optional(),
|
||||||
});
|
});
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -44,8 +48,78 @@ export const env = envSchema.parse({
|
|||||||
CHAIN_138_CHAIN_ID: process.env.CHAIN_138_CHAIN_ID,
|
CHAIN_138_CHAIN_ID: process.env.CHAIN_138_CHAIN_ID,
|
||||||
NOTARY_REGISTRY_ADDRESS: process.env.NOTARY_REGISTRY_ADDRESS,
|
NOTARY_REGISTRY_ADDRESS: process.env.NOTARY_REGISTRY_ADDRESS,
|
||||||
ORCHESTRATOR_PRIVATE_KEY: process.env.ORCHESTRATOR_PRIVATE_KEY,
|
ORCHESTRATOR_PRIVATE_KEY: process.env.ORCHESTRATOR_PRIVATE_KEY,
|
||||||
|
EVENT_BUS_HMAC_SECRET: process.env.EVENT_BUS_HMAC_SECRET,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dev-mode placeholders that must never be used in NODE_ENV=production.
|
||||||
|
* Kept in sync with the `||` / `??` fallbacks sprinkled through the
|
||||||
|
* codebase (env.ts, eventBus.ts, …) — if those placeholders change,
|
||||||
|
* update this list too.
|
||||||
|
*/
|
||||||
|
const DEV_PLACEHOLDERS: readonly string[] = [
|
||||||
|
"dev-secret-change-in-production-min-32-chars",
|
||||||
|
"dev-event-bus-secret-change-in-production",
|
||||||
|
];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Boot-time assertion (arch §13 + gap-analysis v2 §8.1 / §8.4).
|
||||||
|
*
|
||||||
|
* Catches the silent-degrade failure mode where a production deployment
|
||||||
|
* is missing one of the critical envs and ends up:
|
||||||
|
* - using the dev placeholder for SESSION_SECRET / EVENT_BUS_HMAC_SECRET
|
||||||
|
* (no non-repudiation), or
|
||||||
|
* - writing tamper-evident anchors only to the mock notary
|
||||||
|
* (NotaryRegistry envs absent — Ledger Anchor is a lie again).
|
||||||
|
*
|
||||||
|
* Fails fast with process.exit(1) when NODE_ENV=production and any of
|
||||||
|
* these conditions hold. Called from src/index.ts on startup.
|
||||||
|
*/
|
||||||
|
export function assertProductionEnv(): void {
|
||||||
|
if ((process.env.NODE_ENV ?? "development") !== "production") return;
|
||||||
|
|
||||||
|
const failures: string[] = [];
|
||||||
|
|
||||||
|
const sessionSecret = process.env.SESSION_SECRET ?? "";
|
||||||
|
if (!sessionSecret || DEV_PLACEHOLDERS.includes(sessionSecret)) {
|
||||||
|
failures.push("SESSION_SECRET is unset or using the dev placeholder");
|
||||||
|
}
|
||||||
|
|
||||||
|
const eventSecret =
|
||||||
|
process.env.EVENT_BUS_HMAC_SECRET ?? process.env.SESSION_SECRET ?? "";
|
||||||
|
if (!eventSecret || DEV_PLACEHOLDERS.includes(eventSecret)) {
|
||||||
|
failures.push(
|
||||||
|
"EVENT_BUS_HMAC_SECRET is unset or using the dev placeholder — " +
|
||||||
|
"events would be signed with a known key (arch §7)",
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
const notaryEnvs = [
|
||||||
|
["CHAIN_138_RPC_URL", process.env.CHAIN_138_RPC_URL],
|
||||||
|
["NOTARY_REGISTRY_ADDRESS", process.env.NOTARY_REGISTRY_ADDRESS],
|
||||||
|
["ORCHESTRATOR_PRIVATE_KEY", process.env.ORCHESTRATOR_PRIVATE_KEY],
|
||||||
|
] as const;
|
||||||
|
const missingNotary = notaryEnvs.filter(([, v]) => !v).map(([k]) => k);
|
||||||
|
if (missingNotary.length > 0) {
|
||||||
|
failures.push(
|
||||||
|
`NotaryRegistry anchor would degrade to mock — missing: ${missingNotary.join(", ")} (arch §4.5)`,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!process.env.DATABASE_URL) {
|
||||||
|
failures.push("DATABASE_URL is required in production");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (failures.length > 0) {
|
||||||
|
console.error("❌ Production boot-time env assertions failed:");
|
||||||
|
failures.forEach((f) => console.error(` - ${f}`));
|
||||||
|
console.error(
|
||||||
|
"Set the missing envs or run with NODE_ENV=development for the mock/dev fallback path.",
|
||||||
|
);
|
||||||
|
process.exit(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Validate environment on startup
|
* Validate environment on startup
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import "dotenv/config";
|
import "dotenv/config";
|
||||||
import express from "express";
|
import express from "express";
|
||||||
import cors from "cors";
|
import cors from "cors";
|
||||||
import { validateEnv } from "./config/env";
|
import { validateEnv, assertProductionEnv } from "./config/env";
|
||||||
import {
|
import {
|
||||||
apiLimiter,
|
apiLimiter,
|
||||||
securityHeaders,
|
securityHeaders,
|
||||||
@@ -22,6 +22,7 @@ import { runMigration } from "./db/migrations";
|
|||||||
|
|
||||||
// Validate environment on startup
|
// Validate environment on startup
|
||||||
validateEnv();
|
validateEnv();
|
||||||
|
assertProductionEnv();
|
||||||
|
|
||||||
const app = express();
|
const app = express();
|
||||||
const PORT = process.env.PORT || 8080;
|
const PORT = process.env.PORT || 8080;
|
||||||
|
|||||||
126
orchestrator/tests/unit/env.test.ts
Normal file
126
orchestrator/tests/unit/env.test.ts
Normal file
@@ -0,0 +1,126 @@
|
|||||||
|
/**
|
||||||
|
* Tests for `assertProductionEnv` — arch §13 + gap-analysis v2 §8.1 / §8.4.
|
||||||
|
*
|
||||||
|
* These tests exercise the boot-time env assertion in isolation: they
|
||||||
|
* snapshot `process.env`, stub `process.exit`, flip envs, call the
|
||||||
|
* assertion, and restore.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import { assertProductionEnv } from "../../src/config/env";
|
||||||
|
|
||||||
|
describe("assertProductionEnv", () => {
|
||||||
|
const savedEnv = { ...process.env };
|
||||||
|
let exitSpy: jest.SpyInstance;
|
||||||
|
let errorSpy: jest.SpyInstance;
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
process.env = { ...savedEnv };
|
||||||
|
exitSpy = jest
|
||||||
|
.spyOn(process, "exit")
|
||||||
|
.mockImplementation(((code?: number | string | null) => {
|
||||||
|
throw new Error(`process.exit(${code})`);
|
||||||
|
}) as never);
|
||||||
|
errorSpy = jest.spyOn(console, "error").mockImplementation(() => {});
|
||||||
|
});
|
||||||
|
|
||||||
|
afterEach(() => {
|
||||||
|
exitSpy.mockRestore();
|
||||||
|
errorSpy.mockRestore();
|
||||||
|
process.env = { ...savedEnv };
|
||||||
|
});
|
||||||
|
|
||||||
|
it("does nothing when NODE_ENV is not production", () => {
|
||||||
|
process.env.NODE_ENV = "development";
|
||||||
|
expect(() => assertProductionEnv()).not.toThrow();
|
||||||
|
expect(exitSpy).not.toHaveBeenCalled();
|
||||||
|
});
|
||||||
|
|
||||||
|
it("fails fast when SESSION_SECRET is missing in production", () => {
|
||||||
|
process.env.NODE_ENV = "production";
|
||||||
|
delete process.env.SESSION_SECRET;
|
||||||
|
process.env.EVENT_BUS_HMAC_SECRET = "x".repeat(40);
|
||||||
|
process.env.CHAIN_138_RPC_URL = "https://rpc.example.com";
|
||||||
|
process.env.NOTARY_REGISTRY_ADDRESS =
|
||||||
|
"0x" + "a".repeat(40);
|
||||||
|
process.env.ORCHESTRATOR_PRIVATE_KEY = "0x" + "b".repeat(64);
|
||||||
|
process.env.DATABASE_URL = "postgres://localhost/db";
|
||||||
|
|
||||||
|
expect(() => assertProductionEnv()).toThrow("process.exit(1)");
|
||||||
|
const output = errorSpy.mock.calls.flat().join(" ");
|
||||||
|
expect(output).toMatch(/SESSION_SECRET/);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("fails fast when SESSION_SECRET is the dev placeholder", () => {
|
||||||
|
process.env.NODE_ENV = "production";
|
||||||
|
process.env.SESSION_SECRET =
|
||||||
|
"dev-secret-change-in-production-min-32-chars";
|
||||||
|
process.env.EVENT_BUS_HMAC_SECRET = "x".repeat(40);
|
||||||
|
process.env.CHAIN_138_RPC_URL = "https://rpc.example.com";
|
||||||
|
process.env.NOTARY_REGISTRY_ADDRESS = "0x" + "a".repeat(40);
|
||||||
|
process.env.ORCHESTRATOR_PRIVATE_KEY = "0x" + "b".repeat(64);
|
||||||
|
process.env.DATABASE_URL = "postgres://localhost/db";
|
||||||
|
|
||||||
|
expect(() => assertProductionEnv()).toThrow("process.exit(1)");
|
||||||
|
expect(errorSpy.mock.calls.flat().join(" ")).toMatch(
|
||||||
|
/SESSION_SECRET.*dev placeholder/,
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("fails fast when NotaryRegistry envs are absent", () => {
|
||||||
|
process.env.NODE_ENV = "production";
|
||||||
|
process.env.SESSION_SECRET = "s".repeat(40);
|
||||||
|
process.env.EVENT_BUS_HMAC_SECRET = "x".repeat(40);
|
||||||
|
process.env.DATABASE_URL = "postgres://localhost/db";
|
||||||
|
delete process.env.CHAIN_138_RPC_URL;
|
||||||
|
delete process.env.NOTARY_REGISTRY_ADDRESS;
|
||||||
|
delete process.env.ORCHESTRATOR_PRIVATE_KEY;
|
||||||
|
|
||||||
|
expect(() => assertProductionEnv()).toThrow("process.exit(1)");
|
||||||
|
const output = errorSpy.mock.calls.flat().join(" ");
|
||||||
|
expect(output).toMatch(/NotaryRegistry/);
|
||||||
|
expect(output).toMatch(/CHAIN_138_RPC_URL/);
|
||||||
|
expect(output).toMatch(/NOTARY_REGISTRY_ADDRESS/);
|
||||||
|
expect(output).toMatch(/ORCHESTRATOR_PRIVATE_KEY/);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("fails fast when EVENT_BUS_HMAC_SECRET falls back to dev placeholder", () => {
|
||||||
|
process.env.NODE_ENV = "production";
|
||||||
|
process.env.SESSION_SECRET = "s".repeat(40);
|
||||||
|
delete process.env.EVENT_BUS_HMAC_SECRET;
|
||||||
|
process.env.CHAIN_138_RPC_URL = "https://rpc.example.com";
|
||||||
|
process.env.NOTARY_REGISTRY_ADDRESS = "0x" + "a".repeat(40);
|
||||||
|
process.env.ORCHESTRATOR_PRIVATE_KEY = "0x" + "b".repeat(64);
|
||||||
|
process.env.DATABASE_URL = "postgres://localhost/db";
|
||||||
|
|
||||||
|
// eventSecret falls back to SESSION_SECRET which is valid, so this
|
||||||
|
// path should *succeed* — SESSION_SECRET is a legitimate source of
|
||||||
|
// signing material per the getSigningSecret fallback chain.
|
||||||
|
expect(() => assertProductionEnv()).not.toThrow();
|
||||||
|
});
|
||||||
|
|
||||||
|
it("passes when all envs are set to real values in production", () => {
|
||||||
|
process.env.NODE_ENV = "production";
|
||||||
|
process.env.SESSION_SECRET = "s".repeat(40);
|
||||||
|
process.env.EVENT_BUS_HMAC_SECRET = "e".repeat(40);
|
||||||
|
process.env.CHAIN_138_RPC_URL = "https://rpc.example.com";
|
||||||
|
process.env.NOTARY_REGISTRY_ADDRESS = "0x" + "a".repeat(40);
|
||||||
|
process.env.ORCHESTRATOR_PRIVATE_KEY = "0x" + "b".repeat(64);
|
||||||
|
process.env.DATABASE_URL = "postgres://localhost/db";
|
||||||
|
|
||||||
|
expect(() => assertProductionEnv()).not.toThrow();
|
||||||
|
expect(exitSpy).not.toHaveBeenCalled();
|
||||||
|
});
|
||||||
|
|
||||||
|
it("reports DATABASE_URL missing in production", () => {
|
||||||
|
process.env.NODE_ENV = "production";
|
||||||
|
process.env.SESSION_SECRET = "s".repeat(40);
|
||||||
|
process.env.EVENT_BUS_HMAC_SECRET = "e".repeat(40);
|
||||||
|
process.env.CHAIN_138_RPC_URL = "https://rpc.example.com";
|
||||||
|
process.env.NOTARY_REGISTRY_ADDRESS = "0x" + "a".repeat(40);
|
||||||
|
process.env.ORCHESTRATOR_PRIVATE_KEY = "0x" + "b".repeat(64);
|
||||||
|
delete process.env.DATABASE_URL;
|
||||||
|
|
||||||
|
expect(() => assertProductionEnv()).toThrow("process.exit(1)");
|
||||||
|
expect(errorSpy.mock.calls.flat().join(" ")).toMatch(/DATABASE_URL/);
|
||||||
|
});
|
||||||
|
});
|
||||||
Reference in New Issue
Block a user