/** * Test configuration for Stack.Gallery Registry tests * Uses @push.rocks/qenv to read from .nogit/env.json */ import { Qenv } from '@push.rocks/qenv'; const testQenv = new Qenv('./', '.nogit/', false); const mongoUrl = await testQenv.getEnvVarOnDemand('MONGODB_URL') || 'mongodb://testadmin:testpass@localhost:27117/test-registry?authSource=admin'; const mongoName = await testQenv.getEnvVarOnDemand('MONGODB_NAME') || 'test-registry'; const s3Endpoint = await testQenv.getEnvVarOnDemand('S3_ENDPOINT') || 'localhost'; const s3Port = await testQenv.getEnvVarOnDemand('S3_PORT') || '9100'; const s3AccessKey = await testQenv.getEnvVarOnDemand('S3_ACCESSKEY') || 'testadmin'; const s3SecretKey = await testQenv.getEnvVarOnDemand('S3_SECRETKEY') || 'testpassword'; const s3Bucket = await testQenv.getEnvVarOnDemand('S3_BUCKET') || 'test-registry'; const s3UseSsl = await testQenv.getEnvVarOnDemand('S3_USESSL'); const s3Protocol = s3UseSsl === 'true' ? 'https' : 'http'; const s3EndpointUrl = `${s3Protocol}://${s3Endpoint}:${s3Port}`; export const testConfig = { mongodb: { url: mongoUrl, name: mongoName, }, s3: { endpoint: s3EndpointUrl, accessKey: s3AccessKey, secretKey: s3SecretKey, bucket: s3Bucket, region: 'us-east-1', }, jwt: { secret: 'test-jwt-secret-for-testing-only', refreshSecret: 'test-refresh-secret-for-testing-only', }, registry: { url: 'http://localhost:3000', port: 3000, }, testUser: { email: 'test@stack.gallery', password: 'TestPassword123!', username: 'testuser', }, adminUser: { email: 'admin@stack.gallery', password: 'admin', username: 'admin', }, }; /** * Get test config (kept for backward compatibility) */ export function getTestConfig() { return testConfig; }