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
149 lines
4.0 KiB
TypeScript
149 lines
4.0 KiB
TypeScript
/**
|
|
* @vitest-environment node
|
|
*/
|
|
|
|
import { Value } from 'typebox/value'
|
|
import { describe, expect, it } from 'vitest'
|
|
import {
|
|
parseReviewComments,
|
|
parseReviewFindings,
|
|
REVIEW_BODY_MAX_LENGTH,
|
|
REVIEW_COMMENT_MAX_COUNT,
|
|
reviewFindingsSchema,
|
|
} from '@/tools/github/review-schema'
|
|
|
|
describe('GitHub review schema', () => {
|
|
it('accepts summary-only and valid multiline findings', () => {
|
|
expect(parseReviewFindings({ body: 'Summary' })).toEqual({ body: 'Summary', comments: [] })
|
|
expect(
|
|
parseReviewFindings({
|
|
body: ' Review summary ',
|
|
comments: [
|
|
{
|
|
path: 'src/a.ts',
|
|
body: ' Tighten this branch ',
|
|
line: 12,
|
|
side: 'RIGHT',
|
|
start_line: 10,
|
|
start_side: 'RIGHT',
|
|
},
|
|
],
|
|
})
|
|
).toEqual({
|
|
body: 'Review summary',
|
|
comments: [
|
|
{
|
|
path: 'src/a.ts',
|
|
body: 'Tighten this branch',
|
|
line: 12,
|
|
side: 'RIGHT',
|
|
start_line: 10,
|
|
start_side: 'RIGHT',
|
|
},
|
|
],
|
|
})
|
|
})
|
|
|
|
it.each([
|
|
{ body: '' },
|
|
{ body: ' ' },
|
|
{ body: 'x', comments: null },
|
|
{ body: 'x', extra: true },
|
|
{ body: 'x'.repeat(REVIEW_BODY_MAX_LENGTH + 1) },
|
|
{
|
|
body: 'x',
|
|
comments: Array.from({ length: REVIEW_COMMENT_MAX_COUNT + 1 }, () => ({
|
|
path: 'a.ts',
|
|
body: 'x',
|
|
line: 1,
|
|
side: 'RIGHT',
|
|
})),
|
|
},
|
|
])('rejects malformed findings %#', (value) => {
|
|
expect(() => parseReviewFindings(value)).toThrow()
|
|
})
|
|
|
|
it.each(['12', 0, -1, 1.5, Number.NaN, Number.POSITIVE_INFINITY])(
|
|
'rejects the invalid line value %s when called with unnormalized input',
|
|
(line) => {
|
|
expect(() => parseReviewComments([{ path: 'a.ts', body: 'x', line, side: 'RIGHT' }])).toThrow(
|
|
/comments is invalid/
|
|
)
|
|
}
|
|
)
|
|
|
|
it('normalizes numeric strings on the Pi TypeBox validation path', () => {
|
|
const findings = {
|
|
body: 'Summary',
|
|
comments: [{ path: 'a.ts', body: 'Finding', line: '12', side: 'RIGHT' }],
|
|
}
|
|
|
|
Value.Convert(reviewFindingsSchema, findings)
|
|
|
|
expect(parseReviewFindings(findings)).toEqual({
|
|
body: 'Summary',
|
|
comments: [{ path: 'a.ts', body: 'Finding', line: 12, side: 'RIGHT' }],
|
|
})
|
|
})
|
|
|
|
it('requires explicit sides and complete, ordered multiline coordinates', () => {
|
|
expect(() => parseReviewComments([{ path: 'a.ts', body: 'x', line: 2 }])).toThrow(/side/)
|
|
expect(() =>
|
|
parseReviewComments([{ path: 'a.ts', body: 'x', line: 3, side: 'RIGHT', start_line: 1 }])
|
|
).toThrow(/comments is invalid/)
|
|
expect(() =>
|
|
parseReviewComments([
|
|
{
|
|
path: 'a.ts',
|
|
body: 'x',
|
|
line: 3,
|
|
side: 'RIGHT',
|
|
start_side: 'RIGHT',
|
|
},
|
|
])
|
|
).toThrow(/comments is invalid/)
|
|
expect(() =>
|
|
parseReviewComments([
|
|
{
|
|
path: 'a.ts',
|
|
body: 'x',
|
|
line: 3,
|
|
side: 'RIGHT',
|
|
start_line: 3,
|
|
start_side: 'RIGHT',
|
|
},
|
|
])
|
|
).toThrow(/must be less than/)
|
|
})
|
|
|
|
it('rejects blank fields and unknown comment properties', () => {
|
|
expect(() => parseReviewComments([{ path: ' ', body: 'x', line: 1, side: 'RIGHT' }])).toThrow(
|
|
/leading or trailing whitespace/
|
|
)
|
|
expect(() =>
|
|
parseReviewComments([{ path: 'a.ts', body: ' ', line: 1, side: 'RIGHT' }])
|
|
).toThrow(/body must not be blank/)
|
|
expect(() =>
|
|
parseReviewComments([{ path: 'a.ts', body: 'x', line: 1, side: 'RIGHT', position: 4 }])
|
|
).toThrow(/additional properties/)
|
|
})
|
|
|
|
it('requires canonical paths and keeps multiline ranges on one side', () => {
|
|
expect(() =>
|
|
parseReviewComments([{ path: './a.ts', body: 'x', line: 1, side: 'RIGHT' }])
|
|
).toThrow(/canonical repository-relative path/)
|
|
expect(() =>
|
|
parseReviewComments([
|
|
{
|
|
path: 'a.ts',
|
|
body: 'x',
|
|
line: 3,
|
|
side: 'RIGHT',
|
|
start_line: 1,
|
|
start_side: 'LEFT',
|
|
},
|
|
])
|
|
).toThrow(/must stay on one diff side/)
|
|
})
|
|
})
|