Files
twenty/packages/twenty-server/test/integration/graphql/suites/view/view-field/failing-create-view-field.integration-spec.ts
T
Weiko 6aca1dd013 Introducing view field group syncable entity (#17867)
## Context
Introduces a new viewFieldGroup entity that allows grouping view fields
into sections (e.g. "General", "Additional", "Other") within a view.

The page layout fields widget needs a way to organize fields into
sections. Today, views have no concept of field grouping. This PR
introduces the viewFieldGroup entity which sits between a view and its
viewFields, enabling section-based organization.

<img width="401" height="724" alt="Layout - V2 (customize visibility)"
src="https://github.com/user-attachments/assets/6376e2ab-44db-42bf-9d2c-758f56f6b548"
/>

---------

Co-authored-by: Charles Bochet <charles@twenty.com>
2026-02-11 22:02:58 +01:00

166 lines
4.8 KiB
TypeScript

import { faker } from '@faker-js/faker';
import {
cleanupViewFieldTest,
setupViewFieldTest,
type ViewFieldTestSetup,
} from 'test/integration/graphql/suites/view/utils/setup-view-field-test.util';
import { createOneCoreViewField } from 'test/integration/metadata/suites/view-field/utils/create-one-core-view-field.util';
import { deleteOneCoreViewField } from 'test/integration/metadata/suites/view-field/utils/delete-one-core-view-field.util';
import { destroyOneCoreViewField } from 'test/integration/metadata/suites/view-field/utils/destroy-one-core-view-field.util';
import { findCoreViewFields } from 'test/integration/metadata/suites/view-field/utils/find-core-view-fields.util';
import { extractRecordIdsAndDatesAsExpectAny } from 'test/utils/extract-record-ids-and-dates-as-expect-any';
import {
eachTestingContextFilter,
type EachTestingContext,
} from 'twenty-shared/testing';
import { type CreateViewFieldInput } from 'src/engine/metadata-modules/view-field/dtos/inputs/create-view-field.input';
const normalizeErrorMessage = (error: any) => {
const UUID_REGEX =
/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/gi;
return {
...error,
message: error.message?.replace(UUID_REGEX, '{{UUID}}') || error.message,
};
};
describe('View Field Resolver - Failing Create Operation', () => {
let testSetup: ViewFieldTestSetup;
let createdFlatViewFieldIds: string[] = [];
beforeAll(async () => {
testSetup = await setupViewFieldTest();
});
afterEach(async () => {
for (const viewFieldId of createdFlatViewFieldIds) {
await deleteOneCoreViewField({
input: {
id: viewFieldId,
},
expectToFail: false,
});
await destroyOneCoreViewField({
input: {
id: viewFieldId,
},
expectToFail: false,
});
}
});
afterAll(async () => {
await cleanupViewFieldTest(testSetup.testObjectMetadataId);
});
type CreateViewFieldTestCase = (testSetup: ViewFieldTestSetup) => {
input: CreateViewFieldInput;
};
const createViewFieldTestCases: EachTestingContext<CreateViewFieldTestCase>[] =
[
{
title: 'non-existent field metadata',
context: (testSetup) => ({
input: {
viewId: testSetup.testViewId,
fieldMetadataId: faker.string.uuid(),
},
}),
},
{
title: 'non-existent view metadata',
context: (testSetup) => ({
input: {
viewId: faker.string.uuid(),
fieldMetadataId: testSetup.testFieldMetadataId,
},
}),
},
];
it.each(eachTestingContextFilter(createViewFieldTestCases))(
'should fail to create view field when $title',
async ({ context }) => {
const { input } = context(testSetup);
const response = await createOneCoreViewField({
input,
expectToFail: true,
});
expect(response.errors).toBeDefined();
expect(response.errors.length).toBe(1);
const [firstError] = response.errors;
expect(firstError.extensions.code).not.toBe('INTERNAL_SERVER_ERROR');
const normalizedError = normalizeErrorMessage(firstError);
expect(normalizedError).toMatchSnapshot(
extractRecordIdsAndDatesAsExpectAny(normalizedError),
);
},
);
it('Should fail to create a conflicting view field on view and field metadata', async () => {
const viewFieldId = '20202020-7ace-42ee-aecf-2b1c1bd34bce';
const {
data: {
createCoreViewField: { id: createdFlatViewFieldId },
},
} = await createOneCoreViewField({
input: {
id: viewFieldId,
fieldMetadataId: testSetup.testFieldMetadataId,
viewId: testSetup.testViewId,
},
expectToFail: false,
});
createdFlatViewFieldIds.push(createdFlatViewFieldId);
const {
data: { getCoreViewFields },
} = await findCoreViewFields({
viewId: testSetup.testViewId,
expectToFail: false,
gqlFields: `
id
fieldMetadataId
viewId
`,
});
expect(getCoreViewFields).toStrictEqual([
{
id: viewFieldId,
fieldMetadataId: testSetup.testFieldMetadataId,
viewId: testSetup.testViewId,
},
]);
const response = await createOneCoreViewField({
input: {
fieldMetadataId: testSetup.testFieldMetadataId,
viewId: testSetup.testViewId,
},
expectToFail: true,
});
expect(response.errors).toBeDefined();
expect(response.errors.length).toBe(1);
const [firstError] = response.errors;
expect(firstError.extensions.code).not.toBe('INTERNAL_SERVER_ERROR');
const normalizedError = normalizeErrorMessage(firstError);
expect(normalizedError).toMatchSnapshot(
extractRecordIdsAndDatesAsExpectAny(normalizedError),
);
});
});