feat: expand test coverage and configure comprehensive alerting
- Add unit tests for all core services (identity, intake, finance, dataroom) - Create integration test framework with shared setup utilities - Add E2E test suite for complete user workflows - Add test utilities package (server factory) - Configure Prometheus alert rules (service health, infrastructure, database, Azure) - Add alert rules ConfigMap for Kubernetes - Update Prometheus deployment with alert rules - Fix tsconfig.json to include test files - Add tests/tsconfig.json for integration/E2E tests - Fix server-factory.ts linting issues
This commit is contained in:
61
tests/integration/document-workflow.test.ts
Normal file
61
tests/integration/document-workflow.test.ts
Normal file
@@ -0,0 +1,61 @@
|
||||
/**
|
||||
* Integration Test: Document Workflow
|
||||
* Tests document creation, versioning, and workflow
|
||||
*/
|
||||
|
||||
import { describe, it, expect, beforeAll, afterAll } from 'vitest';
|
||||
import { setupTestContext, teardownTestContext, cleanupDatabase, TestContext } from './setup';
|
||||
|
||||
describe('Document Workflow - Integration', () => {
|
||||
let context: TestContext;
|
||||
|
||||
beforeAll(async () => {
|
||||
context = await setupTestContext();
|
||||
await cleanupDatabase(context.dbPool);
|
||||
});
|
||||
|
||||
afterAll(async () => {
|
||||
await cleanupDatabase(context.dbPool);
|
||||
await teardownTestContext(context);
|
||||
});
|
||||
|
||||
describe('Document Lifecycle', () => {
|
||||
it('should create, update, and version a document', async () => {
|
||||
// 1. Create document via intake service
|
||||
const createResponse = await context.intakeService.inject({
|
||||
method: 'POST',
|
||||
url: '/api/v1/documents',
|
||||
payload: {
|
||||
title: 'Test Document',
|
||||
contentType: 'application/pdf',
|
||||
// Add other required fields
|
||||
},
|
||||
});
|
||||
|
||||
expect(createResponse.statusCode).toBe(201);
|
||||
const document = createResponse.json();
|
||||
|
||||
// 2. Update document
|
||||
const updateResponse = await context.intakeService.inject({
|
||||
method: 'PATCH',
|
||||
url: `/api/v1/documents/${document.id}`,
|
||||
payload: {
|
||||
title: 'Updated Test Document',
|
||||
},
|
||||
});
|
||||
|
||||
expect(updateResponse.statusCode).toBe(200);
|
||||
|
||||
// 3. Check version history
|
||||
const versionsResponse = await context.intakeService.inject({
|
||||
method: 'GET',
|
||||
url: `/api/v1/documents/${document.id}/versions`,
|
||||
});
|
||||
|
||||
expect(versionsResponse.statusCode).toBe(200);
|
||||
const versions = versionsResponse.json();
|
||||
expect(versions).toHaveLength(2); // Original + update
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
63
tests/integration/identity-credential-flow.test.ts
Normal file
63
tests/integration/identity-credential-flow.test.ts
Normal file
@@ -0,0 +1,63 @@
|
||||
/**
|
||||
* Integration Test: Identity Credential Flow
|
||||
* Tests the complete flow of credential issuance and verification
|
||||
*/
|
||||
|
||||
import { describe, it, expect, beforeAll, afterAll } from 'vitest';
|
||||
import { setupTestContext, teardownTestContext, cleanupDatabase, TestContext } from './setup';
|
||||
|
||||
describe('Identity Credential Flow - Integration', () => {
|
||||
let context: TestContext;
|
||||
|
||||
beforeAll(async () => {
|
||||
context = await setupTestContext();
|
||||
await cleanupDatabase(context.dbPool);
|
||||
});
|
||||
|
||||
afterAll(async () => {
|
||||
await cleanupDatabase(context.dbPool);
|
||||
await teardownTestContext(context);
|
||||
});
|
||||
|
||||
describe('Credential Issuance Flow', () => {
|
||||
it('should issue a verifiable credential end-to-end', async () => {
|
||||
// 1. Create identity
|
||||
const identityResponse = await context.identityService.inject({
|
||||
method: 'POST',
|
||||
url: '/api/v1/identities',
|
||||
payload: {
|
||||
did: 'did:example:123',
|
||||
eidasLevel: 'substantial',
|
||||
},
|
||||
});
|
||||
|
||||
expect(identityResponse.statusCode).toBe(201);
|
||||
const identity = identityResponse.json();
|
||||
|
||||
// 2. Issue credential
|
||||
const credentialResponse = await context.identityService.inject({
|
||||
method: 'POST',
|
||||
url: '/api/v1/credentials/issue',
|
||||
payload: {
|
||||
identityId: identity.id,
|
||||
credentialType: 'membership',
|
||||
claims: {
|
||||
name: 'Test User',
|
||||
membershipNumber: '12345',
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
expect(credentialResponse.statusCode).toBe(201);
|
||||
const credential = credentialResponse.json();
|
||||
expect(credential).toHaveProperty('id');
|
||||
expect(credential).toHaveProperty('credentialType', 'membership');
|
||||
});
|
||||
|
||||
it('should verify a credential', async () => {
|
||||
// This would test credential verification
|
||||
// Implementation depends on verifier-sdk
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
64
tests/integration/setup.ts
Normal file
64
tests/integration/setup.ts
Normal file
@@ -0,0 +1,64 @@
|
||||
/**
|
||||
* Integration Test Setup
|
||||
* Provides shared utilities and fixtures for integration tests
|
||||
*/
|
||||
|
||||
import { FastifyInstance } from 'fastify';
|
||||
import { getPool } from '@the-order/database';
|
||||
|
||||
export interface TestContext {
|
||||
identityService: FastifyInstance;
|
||||
intakeService: FastifyInstance;
|
||||
financeService: FastifyInstance;
|
||||
dataroomService: FastifyInstance;
|
||||
dbPool: ReturnType<typeof getPool>;
|
||||
}
|
||||
|
||||
export async function setupTestContext(): Promise<TestContext> {
|
||||
// Import services dynamically to avoid circular dependencies
|
||||
const { createServer: createIdentityServer } = await import('../../services/identity/src/index');
|
||||
const { createServer: createIntakeServer } = await import('../../services/intake/src/index');
|
||||
const { createServer: createFinanceServer } = await import('../../services/finance/src/index');
|
||||
const { createServer: createDataroomServer } = await import('../../services/dataroom/src/index');
|
||||
|
||||
const identityService = await createIdentityServer();
|
||||
const intakeService = await createIntakeServer();
|
||||
const financeService = await createFinanceServer();
|
||||
const dataroomService = await createDataroomServer();
|
||||
|
||||
await Promise.all([
|
||||
identityService.ready(),
|
||||
intakeService.ready(),
|
||||
financeService.ready(),
|
||||
dataroomService.ready(),
|
||||
]);
|
||||
|
||||
const dbPool = getPool({
|
||||
connectionString: process.env.TEST_DATABASE_URL || process.env.DATABASE_URL || '',
|
||||
});
|
||||
|
||||
return {
|
||||
identityService,
|
||||
intakeService,
|
||||
financeService,
|
||||
dataroomService,
|
||||
dbPool,
|
||||
};
|
||||
}
|
||||
|
||||
export async function teardownTestContext(context: TestContext): Promise<void> {
|
||||
await Promise.all([
|
||||
context.identityService.close(),
|
||||
context.intakeService.close(),
|
||||
context.financeService.close(),
|
||||
context.dataroomService.close(),
|
||||
]);
|
||||
|
||||
await context.dbPool.end();
|
||||
}
|
||||
|
||||
export async function cleanupDatabase(pool: ReturnType<typeof getPool>): Promise<void> {
|
||||
// Clean up test data
|
||||
await pool.query('TRUNCATE TABLE credentials, documents, payments, deals CASCADE');
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user