Files
WeHub Mirror 6bf8bebf51
CI / Test and Build (push) Failing after 1s
CI / Migrate Dev DB (push) Has been skipped
CI / Migrate DB (push) Has been skipped
CodeQL / Analyze actions (push) Has been cancelled
CodeQL / Analyze javascript-typescript (push) Has been cancelled
CI / Detect Version (push) Has been cancelled
CI / Detect Desktop Changes (push) Has been cancelled
CI / Build AMD64 (blacksmith-2vcpu-ubuntu-2404, ./docker/cron.Dockerfile, ubuntu-latest, ghcr.io/simstudioai/cron) (push) Has been cancelled
CI / Build AMD64 (blacksmith-2vcpu-ubuntu-2404, ./docker/db.Dockerfile, ECR_MIGRATIONS, ubuntu-latest, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (blacksmith-4vcpu-ubuntu-2404, ./docker/pii.Dockerfile, ECR_PII, ubuntu-latest, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (blacksmith-4vcpu-ubuntu-2404, ./docker/realtime.Dockerfile, ECR_REALTIME, ubuntu-latest, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build AMD64 (blacksmith-8vcpu-ubuntu-2404, ./docker/app.Dockerfile, ECR_APP, linux-x64-8-core, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (blacksmith-4vcpu-ubuntu-2404-arm, ./docker/cron.Dockerfile, ubuntu-24.04-arm, ghcr.io/simstudioai/cron) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (blacksmith-4vcpu-ubuntu-2404-arm, ./docker/db.Dockerfile, ubuntu-24.04-arm, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (blacksmith-4vcpu-ubuntu-2404-arm, ./docker/pii.Dockerfile, ubuntu-24.04-arm, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (blacksmith-4vcpu-ubuntu-2404-arm, ./docker/realtime.Dockerfile, ubuntu-24.04-arm, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (blacksmith-8vcpu-ubuntu-2404-arm, ./docker/app.Dockerfile, linux-arm64-8-core, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
Publish CLI Package / publish-npm (push) Has been cancelled
Publish Python SDK / publish-pypi (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
Helm Chart / Lint, test, and validate chart (push) Has been cancelled
Helm Chart / Chart version bumped (push) Has been cancelled
Publish TypeScript SDK / publish-npm (push) Has been cancelled
CI / Build Dev ECR (blacksmith-8vcpu-ubuntu-2404, ./docker/app.Dockerfile, ECR_APP, linux-x64-8-core) (push) Has been cancelled
CI / Promote Images (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/cron) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build Dev ECR (blacksmith-2vcpu-ubuntu-2404, ./docker/db.Dockerfile, ECR_MIGRATIONS, ubuntu-latest) (push) Has been cancelled
CI / Build Dev ECR (blacksmith-4vcpu-ubuntu-2404, ./docker/pii.Dockerfile, ECR_PII, ubuntu-latest) (push) Has been cancelled
CI / Build Dev ECR (blacksmith-4vcpu-ubuntu-2404, ./docker/realtime.Dockerfile, ECR_REALTIME, ubuntu-latest) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Check Desktop Signing Secrets (push) Has been cancelled
CI / Desktop Release (push) Has been cancelled
CI / Create Desktop Prerelease (push) Has been cancelled
CI / Desktop Prerelease Build (push) Has been cancelled
CI / Publish Desktop Prerelease (push) Has been cancelled
CI / Prune Desktop Prereleases (push) Has been cancelled
Helm Chart / Install on kind and run helm test (push) Has been cancelled
WeHub snapshot of cb28d14c6f2c081de7a0d8729a8c816c9adef67a
2026-08-10 11:17:50 +08:00

141 lines
4.8 KiB
TypeScript

import { describe, expect, it } from 'bun:test'
import type { ConfigurationSource } from './configuration-sources'
import { buildSetupStatusReport, renderSetupStatusReport } from './setup-status'
function source(values: Record<string, string>): ConfigurationSource {
return {
kind: 'dev',
label: 'Local dev',
location: 'apps/sim/.env',
values: new Map(Object.entries(values)),
managedByCurrentCheckout: true,
}
}
const CORE_VALUES = {
DATABASE_URL: 'postgresql://postgres:postgres@localhost:5432/sim',
BETTER_AUTH_SECRET: 'a'.repeat(32),
BETTER_AUTH_URL: 'http://localhost:3000',
NEXT_PUBLIC_APP_URL: 'http://localhost:3000',
ENCRYPTION_KEY: 'b'.repeat(64),
INTERNAL_API_SECRET: 'c'.repeat(32),
}
describe('setup status', () => {
it('renders providers and missing integrations without exposing configured values', () => {
const report = buildSetupStatusReport(
source({
...CORE_VALUES,
RESEND_API_KEY: 'resend-super-secret',
SLACK_CLIENT_ID: 'slack-client-secret-value',
SLACK_CLIENT_SECRET: 'slack-client-secret',
})
)
const output = renderSetupStatusReport(report)
expect(report.failed).toBe(false)
expect(output).toContain('Email delivery: Resend')
expect(output).toContain('OAuth ready')
expect(output).toContain('Slack')
expect(output).toContain('Unavailable')
expect(output).not.toContain('resend-super-secret')
expect(output).not.toContain('slack-client-secret-value')
expect(output).not.toContain('slack-client-secret')
expect(report.source).not.toHaveProperty('values')
})
it('fails on partial configuration while continuing to render other capabilities', () => {
const report = buildSetupStatusReport(
source({
...CORE_VALUES,
SMTP_HOST: 'localhost',
MICROSOFT_CLIENT_ID: 'partial-client',
})
)
const output = renderSetupStatusReport(report)
expect(report.failed).toBe(true)
expect(output).toContain('Email delivery: Not configured')
expect(output).toContain('SMTP_PORT')
expect(output).toContain('Misconfigured')
expect(output).toContain('MICROSOFT_CLIENT_SECRET')
expect(output).not.toContain('partial-client')
})
it('warns about an incomplete email fallback without failing a configured provider', () => {
const report = buildSetupStatusReport(
source({
...CORE_VALUES,
RESEND_API_KEY: 'resend-super-secret',
SMTP_HOST: 'localhost',
})
)
const output = renderSetupStatusReport(report)
expect(report.failed).toBe(false)
expect(report.capabilityStatus?.features.email.state).toBe('configured')
expect(output).toContain('Email delivery: Resend')
expect(output).toContain('SMTP_PORT')
expect(output).toContain('configure: bun run setup email')
expect(output).not.toContain('resend-super-secret')
})
it('marks an unreadable effective source unknown instead of missing', () => {
const unknown: ConfigurationSource = {
kind: 'helm',
label: 'Helm release sim',
location: 'context prod · namespace sim',
values: null,
warning: 'cannot read app Secret',
managedByCurrentCheckout: false,
}
const report = buildSetupStatusReport(unknown)
const output = renderSetupStatusReport(report)
expect(report.failed).toBe(true)
expect(output).toContain('Effective environment is unavailable')
expect(output).not.toContain('Not configured')
})
it('fails on a partial OAuth client even when it is not in the visible catalog', () => {
const report = buildSetupStatusReport(
source({
...CORE_VALUES,
SPOTIFY_CLIENT_ID: 'partial-client-value',
})
)
const output = renderSetupStatusReport(report)
expect(report.failed).toBe(true)
expect(output).toContain('Spotify OAuth client: partial')
expect(output).toContain('SPOTIFY_CLIENT_SECRET')
expect(output).not.toContain('partial-client-value')
})
it('names fields missing from an explicitly selected storage provider', () => {
const report = buildSetupStatusReport(
source({
...CORE_VALUES,
STORAGE_PROVIDER: 's3',
AWS_REGION: 'us-east-1',
})
)
const output = renderSetupStatusReport(report)
expect(report.failed).toBe(true)
expect(output).toContain('S3_BUCKET_NAME')
})
it('fails on missing split-development files without retaining source values', () => {
const development = source(CORE_VALUES)
development.configurationIssues = ['apps/realtime/.env is missing']
const report = buildSetupStatusReport(development)
const output = renderSetupStatusReport(report)
expect(report.failed).toBe(true)
expect(output).toContain('apps/realtime/.env is missing')
expect(report.source).not.toHaveProperty('values')
})
})