Files
twenty/packages/twenty-server/test/integration/metadata/suites/application/failing-install-application-validation-errors.integration-spec.ts
T
76ea0f37ed Surface structured validation errors during application install (#19787)
## Summary
- Add `WorkspaceMigrationGraphqlApiExceptionInterceptor` to
`MarketplaceResolver` and `ApplicationInstallResolver` so validation
failures during app install return `METADATA_VALIDATION_FAILED` with
structured `extensions.errors` instead of generic
`INTERNAL_SERVER_ERROR`
- Update SDK `installTarballApp()` to pass the full GraphQL error object
(including extensions) through the install flow
- Add `formatInstallValidationErrors` utility to format structured
validation errors for CLI output
- Add integration test verifying structured error responses for invalid
navigation menu items and view fields

---------

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-17 11:29:33 +00:00

185 lines
5.4 KiB
TypeScript

import crypto from 'crypto';
import { promises as fs } from 'fs';
import { tmpdir } from 'os';
import { join } from 'path';
import * as tar from 'tar';
import { installApplication } from 'test/integration/metadata/suites/application/utils/install-application.util';
import { uploadAppTarball } from 'test/integration/metadata/suites/application/utils/upload-app-tarball.util';
import { STANDARD_OBJECTS } from 'twenty-shared/metadata';
import { type DataSource } from 'typeorm';
const createTestTarball = async (
files: Record<string, string>,
): Promise<Buffer> => {
const tempId = crypto.randomUUID();
const sourceDir = join(tmpdir(), `test-tarball-src-${tempId}`);
const tarballPath = join(tmpdir(), `test-tarball-${tempId}.tar.gz`);
await fs.mkdir(sourceDir, { recursive: true });
for (const [name, content] of Object.entries(files)) {
const filePath = join(sourceDir, name);
const dir = filePath.substring(0, filePath.lastIndexOf('/'));
if (dir !== sourceDir) {
await fs.mkdir(dir, { recursive: true });
}
await fs.writeFile(filePath, content);
}
await tar.create(
{
file: tarballPath,
gzip: true,
cwd: sourceDir,
},
Object.keys(files),
);
const buffer = await fs.readFile(tarballPath);
await fs.rm(sourceDir, { recursive: true, force: true });
await fs.rm(tarballPath, { force: true });
return buffer;
};
const buildManifestWithCrossEntityIdentifierConflict = (
universalIdentifier: string,
roleUniversalIdentifier: string,
duplicatedUniversalIdentifier: string,
) =>
JSON.stringify({
application: {
universalIdentifier,
displayName: 'Test App With Cross Entity Identifier Conflict',
description:
'A test app whose manifest reuses a universalIdentifier across entity types',
icon: 'IconTestPipe',
defaultRoleUniversalIdentifier: roleUniversalIdentifier,
applicationVariables: {},
packageJsonChecksum: null,
yarnLockChecksum: null,
},
roles: [
{
universalIdentifier: roleUniversalIdentifier,
label: 'First Role',
description: 'First role',
},
{
universalIdentifier: duplicatedUniversalIdentifier,
label: 'Second Role',
description: 'Second role',
objectPermissions: [
{
universalIdentifier: duplicatedUniversalIdentifier,
objectUniversalIdentifier:
STANDARD_OBJECTS.company.universalIdentifier,
canReadObjectRecords: true,
canUpdateObjectRecords: false,
canSoftDeleteObjectRecords: false,
canDestroyObjectRecords: false,
},
],
},
],
skills: [],
agents: [],
objects: [],
fields: [],
logicFunctions: [],
frontComponents: [],
publicAssets: [],
views: [],
navigationMenuItems: [],
pageLayouts: [],
});
describe('Install application should return structured validation errors', () => {
let ds: DataSource;
const createdRegistrationIds: string[] = [];
const createdApplicationUniversalIdentifiers: string[] = [];
beforeAll(() => {
jest.useRealTimers();
ds = globalThis.testDataSource;
});
afterAll(async () => {
for (const uid of createdApplicationUniversalIdentifiers) {
await ds.query(
`DELETE FROM core."file" WHERE "applicationId" IN (
SELECT id FROM core."application" WHERE "universalIdentifier" = $1
)`,
[uid],
);
await ds.query(
`DELETE FROM core."application" WHERE "universalIdentifier" = $1`,
[uid],
);
}
for (const id of createdRegistrationIds) {
await ds.query(
`DELETE FROM core."applicationRegistration" WHERE id = $1`,
[id],
);
}
jest.useFakeTimers();
});
it('should return METADATA_VALIDATION_FAILED with structured errors when installing an app whose manifest has validation errors', async () => {
const universalIdentifier = crypto.randomUUID();
const roleUniversalIdentifier = crypto.randomUUID();
const duplicatedUniversalIdentifier = crypto.randomUUID();
const manifest = buildManifestWithCrossEntityIdentifierConflict(
universalIdentifier,
roleUniversalIdentifier,
duplicatedUniversalIdentifier,
);
const tarball = await createTestTarball({
'manifest.json': manifest,
'package.json': JSON.stringify({
name: 'test-cross-entity-identifier-conflict-app',
version: '1.0.0',
}),
});
const uploadResult = await uploadAppTarball({
tarballBuffer: tarball,
universalIdentifier,
});
expect(uploadResult.errors).toBeUndefined();
expect(uploadResult.data?.uploadAppTarball.id).toBeDefined();
const registrationId = uploadResult.data!.uploadAppTarball.id;
createdRegistrationIds.push(registrationId);
createdApplicationUniversalIdentifiers.push(universalIdentifier);
const { errors } = await installApplication({
input: {
appRegistrationId: registrationId,
},
expectToFail: true,
});
expect(errors).toBeDefined();
expect(errors.length).toBe(1);
const [error] = errors;
expect(error.extensions.code).toBe('METADATA_VALIDATION_FAILED');
expect(error.extensions.errors).toBeDefined();
expect(error.extensions.summary).toBeDefined();
expect(error.extensions.summary.totalErrors).toBeGreaterThan(0);
expect(error.extensions.message).toMatch(/Validation failed for/);
}, 120000);
});