120 lines
3.3 KiB
JavaScript
120 lines
3.3 KiB
JavaScript
import { describe, it, expect, beforeEach } from 'vitest';
|
|
import request from 'supertest';
|
|
import app from '../../../../app.js';
|
|
import createAuthTokenByUserId from '../../../../helpers/create-auth-token-by-user-id';
|
|
import { createUser } from '../../../../../test/factories/user';
|
|
import { createFlow } from '../../../../../test/factories/flow.js';
|
|
import { createStep } from '../../../../../test/factories/step.js';
|
|
import { createExecution } from '../../../../../test/factories/execution.js';
|
|
import { createPermission } from '../../../../../test/factories/permission';
|
|
import getExecutionsMock from '../../../../../test/mocks/rest/api/v1/executions/get-executions';
|
|
|
|
describe('GET /api/v1/executions', () => {
|
|
let currentUser, currentUserRole, anotherUser, token;
|
|
|
|
beforeEach(async () => {
|
|
currentUser = await createUser();
|
|
currentUserRole = await currentUser.$relatedQuery('role');
|
|
|
|
anotherUser = await createUser();
|
|
|
|
token = createAuthTokenByUserId(currentUser.id);
|
|
});
|
|
|
|
it('should return the executions of current user', async () => {
|
|
const currentUserFlow = await createFlow({
|
|
userId: currentUser.id,
|
|
});
|
|
|
|
const stepOne = await createStep({
|
|
flowId: currentUserFlow.id,
|
|
type: 'trigger',
|
|
});
|
|
|
|
const stepTwo = await createStep({
|
|
flowId: currentUserFlow.id,
|
|
type: 'action',
|
|
});
|
|
|
|
const currentUserExecutionOne = await createExecution({
|
|
flowId: currentUserFlow.id,
|
|
});
|
|
|
|
const currentUserExecutionTwo = await createExecution({
|
|
flowId: currentUserFlow.id,
|
|
});
|
|
|
|
await currentUserExecutionTwo
|
|
.$query()
|
|
.patchAndFetch({ deletedAt: new Date().toISOString() });
|
|
|
|
await createPermission({
|
|
action: 'read',
|
|
subject: 'Execution',
|
|
roleId: currentUserRole.id,
|
|
conditions: ['isCreator'],
|
|
});
|
|
|
|
const response = await request(app)
|
|
.get('/api/v1/executions')
|
|
.set('Authorization', token)
|
|
.expect(200);
|
|
|
|
const expectedPayload = await getExecutionsMock(
|
|
[currentUserExecutionTwo, currentUserExecutionOne],
|
|
currentUserFlow,
|
|
[stepOne, stepTwo]
|
|
);
|
|
|
|
expect(response.body).toEqual(expectedPayload);
|
|
});
|
|
|
|
it('should return the executions of another user', async () => {
|
|
const anotherUserFlow = await createFlow({
|
|
userId: anotherUser.id,
|
|
});
|
|
|
|
const stepOne = await createStep({
|
|
flowId: anotherUserFlow.id,
|
|
type: 'trigger',
|
|
});
|
|
|
|
const stepTwo = await createStep({
|
|
flowId: anotherUserFlow.id,
|
|
type: 'action',
|
|
});
|
|
|
|
const anotherUserExecutionOne = await createExecution({
|
|
flowId: anotherUserFlow.id,
|
|
});
|
|
|
|
const anotherUserExecutionTwo = await createExecution({
|
|
flowId: anotherUserFlow.id,
|
|
});
|
|
|
|
await anotherUserExecutionTwo
|
|
.$query()
|
|
.patchAndFetch({ deletedAt: new Date().toISOString() });
|
|
|
|
await createPermission({
|
|
action: 'read',
|
|
subject: 'Execution',
|
|
roleId: currentUserRole.id,
|
|
conditions: [],
|
|
});
|
|
|
|
const response = await request(app)
|
|
.get('/api/v1/executions')
|
|
.set('Authorization', token)
|
|
.expect(200);
|
|
|
|
const expectedPayload = await getExecutionsMock(
|
|
[anotherUserExecutionTwo, anotherUserExecutionOne],
|
|
anotherUserFlow,
|
|
[stepOne, stepTwo]
|
|
);
|
|
|
|
expect(response.body).toEqual(expectedPayload);
|
|
});
|
|
});
|