30c13fc947
In this PR : - New field type FieldMetadataType.FILES added (as jsonb in DB) - Backend: GraphQL types, validation, REST API schema, data processor handling - Frontend: field configuration in settings - Feature flag IS_FILES_FIELD_ENABLED to gate the feature - Integration tests for create/filter validation - Dev seed: Feature flag enabled + FILES field on survey result object To do in next PRs : - Backend : -- new workspaceFile controller (for download) & new workspaceFile upload resolver (for upload) -- pre-hook/post-hook to ensure fileId existence + listener to ensure cleaning - Frontend : FILES field display/edit in table view, record, ...
136 lines
5.1 KiB
TypeScript
136 lines
5.1 KiB
TypeScript
import { failingCreateInputByFieldMetadataType } from 'test/integration/graphql/suites/inputs-validation/create-validation/constants/failing-create-input-by-field-metadata-type.constant';
|
|
import { successfulCreateInputByFieldMetadataType } from 'test/integration/graphql/suites/inputs-validation/create-validation/constants/successful-create-input-by-field-metadata-type.constant';
|
|
import { expectGqlCreateInputValidationError } from 'test/integration/graphql/suites/inputs-validation/create-validation/utils/expect-gql-create-input-validation-error.util';
|
|
import { expectGqlCreateInputValidationSuccess } from 'test/integration/graphql/suites/inputs-validation/create-validation/utils/expect-gql-create-input-validation-success.util';
|
|
import { expectRestCreateInputValidationError } from 'test/integration/graphql/suites/inputs-validation/create-validation/utils/expect-rest-create-input-validation-error.util';
|
|
import { expectRestCreateInputValidationSuccess } from 'test/integration/graphql/suites/inputs-validation/create-validation/utils/expect-rest-create-input-validation-success.util';
|
|
import { destroyManyObjectsMetadata } from 'test/integration/graphql/suites/inputs-validation/utils/destroy-many-objects-metadata';
|
|
import { setupTestObjectsWithAllFieldTypes } from 'test/integration/graphql/suites/inputs-validation/utils/setup-test-objects-with-all-field-types.util';
|
|
import { makeGraphqlAPIRequest } from 'test/integration/graphql/utils/make-graphql-api-request.util';
|
|
import { updateFeatureFlagFactory } from 'test/integration/graphql/utils/update-feature-flag-factory.util';
|
|
import { FieldMetadataType } from 'twenty-shared/types';
|
|
|
|
import { FeatureFlagKey } from 'src/engine/core-modules/feature-flag/enums/feature-flag-key.enum';
|
|
import { SEED_APPLE_WORKSPACE_ID } from 'src/engine/workspace-manager/dev-seeder/core/constants/seeder-workspaces.constant';
|
|
|
|
const FIELD_METADATA_TYPE = FieldMetadataType.FILES;
|
|
|
|
const failingTestCases =
|
|
failingCreateInputByFieldMetadataType[FIELD_METADATA_TYPE];
|
|
const successfulTestCases =
|
|
successfulCreateInputByFieldMetadataType[FIELD_METADATA_TYPE];
|
|
|
|
describe(`Create input validation - ${FIELD_METADATA_TYPE}`, () => {
|
|
let objectMetadataId: string;
|
|
let objectMetadataSingularName: string;
|
|
let objectMetadataPluralName: string;
|
|
let targetObjectMetadata1Id: string;
|
|
let targetObjectMetadata2Id: string;
|
|
|
|
beforeAll(async () => {
|
|
await makeGraphqlAPIRequest(
|
|
updateFeatureFlagFactory(
|
|
SEED_APPLE_WORKSPACE_ID,
|
|
FeatureFlagKey.IS_FILES_FIELD_ENABLED,
|
|
true,
|
|
),
|
|
);
|
|
|
|
const setupTest = await setupTestObjectsWithAllFieldTypes(true);
|
|
|
|
objectMetadataId = setupTest.objectMetadataId;
|
|
objectMetadataSingularName = setupTest.objectMetadataSingularName;
|
|
objectMetadataPluralName = setupTest.objectMetadataPluralName;
|
|
targetObjectMetadata1Id = setupTest.targetObjectMetadata1Id;
|
|
targetObjectMetadata2Id = setupTest.targetObjectMetadata2Id;
|
|
});
|
|
|
|
afterAll(async () => {
|
|
await destroyManyObjectsMetadata([
|
|
objectMetadataId,
|
|
targetObjectMetadata1Id,
|
|
targetObjectMetadata2Id,
|
|
]);
|
|
|
|
await makeGraphqlAPIRequest(
|
|
updateFeatureFlagFactory(
|
|
SEED_APPLE_WORKSPACE_ID,
|
|
FeatureFlagKey.IS_FILES_FIELD_ENABLED,
|
|
false,
|
|
),
|
|
);
|
|
});
|
|
|
|
describe('Gql create input - failure', () => {
|
|
it.each(
|
|
failingTestCases.map((testCase) => ({
|
|
...testCase,
|
|
stringifiedInput: JSON.stringify(testCase.input),
|
|
})),
|
|
)(
|
|
`${FIELD_METADATA_TYPE} - should fail with : $stringifiedInput`,
|
|
async ({ input }) => {
|
|
await expectGqlCreateInputValidationError(
|
|
objectMetadataSingularName,
|
|
input,
|
|
);
|
|
},
|
|
);
|
|
});
|
|
|
|
describe('Rest create input - failure', () => {
|
|
it.each(
|
|
failingTestCases.map((testCase) => ({
|
|
...testCase,
|
|
stringifiedInput: JSON.stringify(testCase.input),
|
|
})),
|
|
)(
|
|
`${FIELD_METADATA_TYPE} - should fail with : $stringifiedInput`,
|
|
async ({ input }) => {
|
|
await expectRestCreateInputValidationError(
|
|
objectMetadataPluralName,
|
|
input,
|
|
);
|
|
},
|
|
);
|
|
});
|
|
|
|
describe('Gql create input - success', () => {
|
|
it.each(
|
|
successfulTestCases.map((testCase) => ({
|
|
...testCase,
|
|
stringifiedInput: JSON.stringify(testCase.input),
|
|
})),
|
|
)(
|
|
`${FIELD_METADATA_TYPE} - should succeed with : $stringifiedInput`,
|
|
async ({ input, validateInput }) => {
|
|
await expectGqlCreateInputValidationSuccess(
|
|
objectMetadataSingularName,
|
|
input,
|
|
validateInput,
|
|
true,
|
|
);
|
|
},
|
|
);
|
|
});
|
|
|
|
describe('Rest create input - success', () => {
|
|
it.each(
|
|
successfulTestCases.map((testCase) => ({
|
|
...testCase,
|
|
stringifiedInput: JSON.stringify(testCase.input),
|
|
})),
|
|
)(
|
|
`${FIELD_METADATA_TYPE} - should succeed with : $stringifiedInput`,
|
|
async ({ input, validateInput }) => {
|
|
await expectRestCreateInputValidationSuccess(
|
|
objectMetadataPluralName,
|
|
objectMetadataSingularName,
|
|
input,
|
|
validateInput,
|
|
);
|
|
},
|
|
);
|
|
});
|
|
});
|