twenty/packages/twenty-server/test/integration/graphql/suites/all-message-channel-message-associations-resolvers.integration-spec.ts
gitstart-app[bot] bf0a059751
[Server Integration tests] Enrich integration GraphQL API tests #3 (#7931)
This PR was created by [GitStart](https://gitstart.com/) to address the
requirements from this ticket:
[TWNTY-7526](https://clients.gitstart.com/twenty/5449/tickets/TWNTY-7526).

 --- 

### Description

NoteTargets and MessageThreads are special cases because they do not
have a notable property that we could use in "update" the test cases,\
for NoteTargets we are using the personId, testing the relation, but for
MessageThreads we are using updatedAt. To test the relations for
MessageThreads\
we would need to update another object (Message) because the relation is
ONE_TO_MANY, updating another object in a test that would update the
current tested object sounds incorrect.\
In the NoteTargets, we can update the NoteTarget object because the
relation is MANY_TO_ONE\
for some tests we need an account ID, we are using Tim's account for all
the tests (the token in jest-integration.config.ts), so we are using a
constant to use the account ID

### Refs

#7526

### Demo


![](https://assets-service.gitstart.com/28455/7f1c520e-78e4-43c3-aa89-f6fc09e0a056.png)

---------

Co-authored-by: gitstart-twenty <gitstart-twenty@users.noreply.github.com>
Co-authored-by: gitstart-twenty <140154534+gitstart-twenty@users.noreply.github.com>
2024-10-22 10:17:10 +02:00

494 lines
18 KiB
TypeScript

import { createManyOperationFactory } from 'test/integration/graphql/utils/create-many-operation-factory.util';
import { createOneOperationFactory } from 'test/integration/graphql/utils/create-one-operation-factory.util';
import { deleteManyOperationFactory } from 'test/integration/graphql/utils/delete-many-operation-factory.util';
import { deleteOneOperationFactory } from 'test/integration/graphql/utils/delete-one-operation-factory.util';
import { destroyManyOperationFactory } from 'test/integration/graphql/utils/destroy-many-operation-factory.util';
import { destroyOneOperationFactory } from 'test/integration/graphql/utils/destroy-one-operation-factory.util';
import { findManyOperationFactory } from 'test/integration/graphql/utils/find-many-operation-factory.util';
import { findOneOperationFactory } from 'test/integration/graphql/utils/find-one-operation-factory.util';
import { makeGraphqlAPIRequest } from 'test/integration/graphql/utils/make-graphql-api-request.util';
import { updateManyOperationFactory } from 'test/integration/graphql/utils/update-many-operation-factory.util';
import { updateOneOperationFactory } from 'test/integration/graphql/utils/update-one-operation-factory.util';
import { generateRecordName } from 'test/integration/utils/generate-record-name';
const MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_1_ID =
'777a8457-eb2d-40ac-a707-551b615b6987';
const MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_2_ID =
'777a8457-eb2d-40ac-a707-551b615b6988';
const MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_3_ID =
'777a8457-eb2d-40ac-a707-551b615b6989';
const MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_GQL_FIELDS = `
id
messageExternalId
createdAt
updatedAt
deletedAt
messageChannelId
messageId
direction
`;
describe('messageChannelMessageAssociations resolvers (integration)', () => {
it('1. should create and return messageChannelMessageAssociations', async () => {
const messageExternalId1 = generateRecordName(
MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_1_ID,
);
const messageExternalId2 = generateRecordName(
MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_2_ID,
);
const graphqlOperation = createManyOperationFactory({
objectMetadataSingularName: 'messageChannelMessageAssociation',
objectMetadataPluralName: 'messageChannelMessageAssociations',
gqlFields: MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_GQL_FIELDS,
data: [
{
id: MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_1_ID,
messageExternalId: messageExternalId1,
},
{
id: MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_2_ID,
messageExternalId: messageExternalId2,
},
],
});
const response = await makeGraphqlAPIRequest(graphqlOperation);
expect(
response.body.data.createMessageChannelMessageAssociations,
).toHaveLength(2);
response.body.data.createMessageChannelMessageAssociations.forEach(
(messageChannelMessageAssociation) => {
expect(messageChannelMessageAssociation).toHaveProperty(
'messageExternalId',
);
expect([messageExternalId1, messageExternalId2]).toContain(
messageChannelMessageAssociation.messageExternalId,
);
expect(messageChannelMessageAssociation).toHaveProperty('id');
expect(messageChannelMessageAssociation).toHaveProperty('createdAt');
expect(messageChannelMessageAssociation).toHaveProperty('updatedAt');
expect(messageChannelMessageAssociation).toHaveProperty('deletedAt');
expect(messageChannelMessageAssociation).toHaveProperty(
'messageChannelId',
);
expect(messageChannelMessageAssociation).toHaveProperty('messageId');
expect(messageChannelMessageAssociation).toHaveProperty('direction');
},
);
});
it('1b. should create and return one messageChannelMessageAssociation', async () => {
const messageExternalId3 = generateRecordName(
MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_3_ID,
);
const graphqlOperation = createOneOperationFactory({
objectMetadataSingularName: 'messageChannelMessageAssociation',
gqlFields: MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_GQL_FIELDS,
data: {
id: MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_3_ID,
messageExternalId: messageExternalId3,
},
});
const response = await makeGraphqlAPIRequest(graphqlOperation);
const createdMessageChannelMessageAssociation =
response.body.data.createMessageChannelMessageAssociation;
expect(createdMessageChannelMessageAssociation).toHaveProperty(
'messageExternalId',
);
expect(createdMessageChannelMessageAssociation.messageExternalId).toEqual(
messageExternalId3,
);
expect(createdMessageChannelMessageAssociation).toHaveProperty('id');
expect(createdMessageChannelMessageAssociation).toHaveProperty('createdAt');
expect(createdMessageChannelMessageAssociation).toHaveProperty('updatedAt');
expect(createdMessageChannelMessageAssociation).toHaveProperty('deletedAt');
expect(createdMessageChannelMessageAssociation).toHaveProperty(
'messageChannelId',
);
expect(createdMessageChannelMessageAssociation).toHaveProperty('messageId');
expect(createdMessageChannelMessageAssociation).toHaveProperty('direction');
});
it('2. should find many messageChannelMessageAssociations', async () => {
const graphqlOperation = findManyOperationFactory({
objectMetadataSingularName: 'messageChannelMessageAssociation',
objectMetadataPluralName: 'messageChannelMessageAssociations',
gqlFields: MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_GQL_FIELDS,
});
const response = await makeGraphqlAPIRequest(graphqlOperation);
const data = response.body.data.messageChannelMessageAssociations;
expect(data).toBeDefined();
expect(Array.isArray(data.edges)).toBe(true);
const edges = data.edges;
if (edges.length > 0) {
const messageChannelMessageAssociation = edges[0].node;
expect(messageChannelMessageAssociation).toHaveProperty(
'messageExternalId',
);
expect(messageChannelMessageAssociation).toHaveProperty('id');
expect(messageChannelMessageAssociation).toHaveProperty('createdAt');
expect(messageChannelMessageAssociation).toHaveProperty('updatedAt');
expect(messageChannelMessageAssociation).toHaveProperty('deletedAt');
expect(messageChannelMessageAssociation).toHaveProperty(
'messageChannelId',
);
expect(messageChannelMessageAssociation).toHaveProperty('messageId');
expect(messageChannelMessageAssociation).toHaveProperty('direction');
}
});
it('2b. should find one messageChannelMessageAssociation', async () => {
const graphqlOperation = findOneOperationFactory({
objectMetadataSingularName: 'messageChannelMessageAssociation',
gqlFields: MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_GQL_FIELDS,
filter: {
id: {
eq: MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_3_ID,
},
},
});
const response = await makeGraphqlAPIRequest(graphqlOperation);
const messageChannelMessageAssociation =
response.body.data.messageChannelMessageAssociation;
expect(messageChannelMessageAssociation).toHaveProperty(
'messageExternalId',
);
expect(messageChannelMessageAssociation).toHaveProperty('id');
expect(messageChannelMessageAssociation).toHaveProperty('createdAt');
expect(messageChannelMessageAssociation).toHaveProperty('updatedAt');
expect(messageChannelMessageAssociation).toHaveProperty('deletedAt');
expect(messageChannelMessageAssociation).toHaveProperty('messageChannelId');
expect(messageChannelMessageAssociation).toHaveProperty('messageId');
expect(messageChannelMessageAssociation).toHaveProperty('direction');
});
it('3. should update many messageChannelMessageAssociations', async () => {
const graphqlOperation = updateManyOperationFactory({
objectMetadataSingularName: 'messageChannelMessageAssociation',
objectMetadataPluralName: 'messageChannelMessageAssociations',
gqlFields: MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_GQL_FIELDS,
data: {
messageExternalId: 'updated-message-external-id',
},
filter: {
id: {
in: [
MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_1_ID,
MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_2_ID,
],
},
},
});
const response = await makeGraphqlAPIRequest(graphqlOperation);
const updatedmessageChannelMessageAssociations =
response.body.data.updateMessageChannelMessageAssociations;
expect(updatedmessageChannelMessageAssociations).toHaveLength(2);
updatedmessageChannelMessageAssociations.forEach(
(messageChannelMessageAssociation) => {
expect(messageChannelMessageAssociation.messageExternalId).toEqual(
'updated-message-external-id',
);
},
);
});
it('3b. should update one messageChannelMessageAssociation', async () => {
const graphqlOperation = updateOneOperationFactory({
objectMetadataSingularName: 'messageChannelMessageAssociation',
gqlFields: MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_GQL_FIELDS,
data: {
messageExternalId: 'new-message-external-id',
},
recordId: MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_3_ID,
});
const response = await makeGraphqlAPIRequest(graphqlOperation);
const updatedmessageChannelMessageAssociation =
response.body.data.updateMessageChannelMessageAssociation;
expect(updatedmessageChannelMessageAssociation.messageExternalId).toEqual(
'new-message-external-id',
);
});
it('4. should find many messageChannelMessageAssociations with updated messageExternalId', async () => {
const graphqlOperation = findManyOperationFactory({
objectMetadataSingularName: 'messageChannelMessageAssociation',
objectMetadataPluralName: 'messageChannelMessageAssociations',
gqlFields: MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_GQL_FIELDS,
filter: {
messageExternalId: {
eq: 'updated-message-external-id',
},
},
});
const response = await makeGraphqlAPIRequest(graphqlOperation);
expect(
response.body.data.messageChannelMessageAssociations.edges,
).toHaveLength(2);
});
it('4b. should find one messageChannelMessageAssociation with updated messageExternalId', async () => {
const graphqlOperation = findOneOperationFactory({
objectMetadataSingularName: 'messageChannelMessageAssociation',
gqlFields: MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_GQL_FIELDS,
filter: {
messageExternalId: {
eq: 'new-message-external-id',
},
},
});
const response = await makeGraphqlAPIRequest(graphqlOperation);
expect(
response.body.data.messageChannelMessageAssociation.messageExternalId,
).toEqual('new-message-external-id');
});
it('5. should delete many messageChannelMessageAssociations', async () => {
const graphqlOperation = deleteManyOperationFactory({
objectMetadataSingularName: 'messageChannelMessageAssociation',
objectMetadataPluralName: 'messageChannelMessageAssociations',
gqlFields: MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_GQL_FIELDS,
filter: {
id: {
in: [
MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_1_ID,
MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_2_ID,
],
},
},
});
const response = await makeGraphqlAPIRequest(graphqlOperation);
const deleteMessageChannelMessageAssociations =
response.body.data.deleteMessageChannelMessageAssociations;
expect(deleteMessageChannelMessageAssociations).toHaveLength(2);
deleteMessageChannelMessageAssociations.forEach(
(messageChannelMessageAssociation) => {
expect(messageChannelMessageAssociation.deletedAt).toBeTruthy();
},
);
});
it('5b. should delete one messageChannelMessageAssociation', async () => {
const graphqlOperation = deleteOneOperationFactory({
objectMetadataSingularName: 'messageChannelMessageAssociation',
gqlFields: MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_GQL_FIELDS,
recordId: MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_3_ID,
});
const response = await makeGraphqlAPIRequest(graphqlOperation);
expect(
response.body.data.deleteMessageChannelMessageAssociation.deletedAt,
).toBeTruthy();
});
it('6. should not find many messageChannelMessageAssociations anymore', async () => {
const graphqlOperation = findManyOperationFactory({
objectMetadataSingularName: 'messageChannelMessageAssociation',
objectMetadataPluralName: 'messageChannelMessageAssociations',
gqlFields: MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_GQL_FIELDS,
filter: {
id: {
in: [
MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_1_ID,
MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_2_ID,
],
},
},
});
const findMessageChannelMessageAssociationsResponse =
await makeGraphqlAPIRequest(graphqlOperation);
expect(
findMessageChannelMessageAssociationsResponse.body.data
.messageChannelMessageAssociations.edges,
).toHaveLength(0);
});
it('6b. should not find one messageChannelMessageAssociation anymore', async () => {
const graphqlOperation = findOneOperationFactory({
objectMetadataSingularName: 'messageChannelMessageAssociation',
gqlFields: MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_GQL_FIELDS,
filter: {
id: {
eq: MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_3_ID,
},
},
});
const response = await makeGraphqlAPIRequest(graphqlOperation);
expect(response.body.data.messageChannelMessageAssociation).toBeNull();
});
it('7. should find many deleted messageChannelMessageAssociations with deletedAt filter', async () => {
const graphqlOperation = findManyOperationFactory({
objectMetadataSingularName: 'messageChannelMessageAssociation',
objectMetadataPluralName: 'messageChannelMessageAssociations',
gqlFields: MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_GQL_FIELDS,
filter: {
id: {
in: [
MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_1_ID,
MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_2_ID,
],
},
not: {
deletedAt: {
is: 'NULL',
},
},
},
});
const response = await makeGraphqlAPIRequest(graphqlOperation);
expect(
response.body.data.messageChannelMessageAssociations.edges,
).toHaveLength(2);
});
it('7b. should find one deleted messageChannelMessageAssociation with deletedAt filter', async () => {
const graphqlOperation = findOneOperationFactory({
objectMetadataSingularName: 'messageChannelMessageAssociation',
gqlFields: MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_GQL_FIELDS,
filter: {
id: {
eq: MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_3_ID,
},
not: {
deletedAt: {
is: 'NULL',
},
},
},
});
const response = await makeGraphqlAPIRequest(graphqlOperation);
expect(response.body.data.messageChannelMessageAssociation.id).toEqual(
MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_3_ID,
);
});
it('8. should destroy many messageChannelMessageAssociations', async () => {
const graphqlOperation = destroyManyOperationFactory({
objectMetadataSingularName: 'messageChannelMessageAssociation',
objectMetadataPluralName: 'messageChannelMessageAssociations',
gqlFields: MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_GQL_FIELDS,
filter: {
id: {
in: [
MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_1_ID,
MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_2_ID,
],
},
},
});
const response = await makeGraphqlAPIRequest(graphqlOperation);
expect(
response.body.data.destroyMessageChannelMessageAssociations,
).toHaveLength(2);
});
it('8b. should destroy one messageChannelMessageAssociation', async () => {
const graphqlOperation = destroyOneOperationFactory({
objectMetadataSingularName: 'messageChannelMessageAssociation',
gqlFields: MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_GQL_FIELDS,
recordId: MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_3_ID,
});
const destroyMessageChannelMessageAssociationResponse =
await makeGraphqlAPIRequest(graphqlOperation);
expect(
destroyMessageChannelMessageAssociationResponse.body.data
.destroyMessageChannelMessageAssociation,
).toBeTruthy();
});
it('9. should not find many messageChannelMessageAssociations anymore', async () => {
const graphqlOperation = findManyOperationFactory({
objectMetadataSingularName: 'messageChannelMessageAssociation',
objectMetadataPluralName: 'messageChannelMessageAssociations',
gqlFields: MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_GQL_FIELDS,
filter: {
id: {
in: [
MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_1_ID,
MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_2_ID,
],
},
not: {
deletedAt: {
is: 'NULL',
},
},
},
});
const response = await makeGraphqlAPIRequest(graphqlOperation);
expect(
response.body.data.messageChannelMessageAssociations.edges,
).toHaveLength(0);
});
it('9b. should not find one messageChannelMessageAssociation anymore', async () => {
const graphqlOperation = findOneOperationFactory({
objectMetadataSingularName: 'messageChannelMessageAssociation',
gqlFields: MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_GQL_FIELDS,
filter: {
id: {
eq: MESSAGE_CHANNEL_MESSAGE_ASSOCIATION_3_ID,
},
not: {
deletedAt: {
is: 'NULL',
},
},
},
});
const response = await makeGraphqlAPIRequest(graphqlOperation);
expect(response.body.data.messageChannelMessageAssociation).toBeNull();
});
});