Files
twenty/packages/twenty-server/test/integration/graphql/suites/object-generated/search-message-channel-message-associations.integration-spec.ts
Marie 12cc61e096 [permissions] Add workspace + security settings permission gates (#10204)
In this PR

- closing https://github.com/twentyhq/core-team-issues/issues/313
- adding permission gates on workspace settings and security settings
- adding integration tests for each of the protected setting and
security
2025-02-14 17:32:42 +01:00

78 lines
2.3 KiB
TypeScript

import request from 'supertest';
const client = request(`http://localhost:${APP_PORT}`);
describe('searchMessageChannelMessageAssociationsResolver (e2e)', () => {
it('should find many searchMessageChannelMessageAssociations', () => {
const queryData = {
query: `
query searchMessageChannelMessageAssociations {
searchMessageChannelMessageAssociations {
edges {
node {
messageExternalId
messageThreadExternalId
direction
id
createdAt
updatedAt
deletedAt
messageChannelId
messageId
}
}
}
}
`,
};
return client
.post('/graphql')
.set('Authorization', `Bearer ${ADMIN_ACCESS_TOKEN}`)
.send(queryData)
.expect(200)
.expect((res) => {
expect(res.body.data).toBeDefined();
expect(res.body.errors).toBeUndefined();
})
.expect((res) => {
const data = res.body.data.searchMessageChannelMessageAssociations;
expect(data).toBeDefined();
expect(Array.isArray(data.edges)).toBe(true);
const edges = data.edges;
if (edges.length > 0) {
const searchMessageChannelMessageAssociations = edges[0].node;
expect(searchMessageChannelMessageAssociations).toHaveProperty(
'messageExternalId',
);
expect(searchMessageChannelMessageAssociations).toHaveProperty(
'messageThreadExternalId',
);
expect(searchMessageChannelMessageAssociations).toHaveProperty(
'direction',
);
expect(searchMessageChannelMessageAssociations).toHaveProperty('id');
expect(searchMessageChannelMessageAssociations).toHaveProperty(
'createdAt',
);
expect(searchMessageChannelMessageAssociations).toHaveProperty(
'updatedAt',
);
expect(searchMessageChannelMessageAssociations).toHaveProperty(
'deletedAt',
);
expect(searchMessageChannelMessageAssociations).toHaveProperty(
'messageChannelId',
);
expect(searchMessageChannelMessageAssociations).toHaveProperty(
'messageId',
);
}
});
});
});