mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 09:36:44 +00:00
feat: PAY-2613 add missing status field for select (#19071)
Co-authored-by: Stephen Wright <stephen.wright@Mac.Home>
This commit is contained in:
@@ -706,6 +706,7 @@ export class ExecutionRepository extends Repository<ExecutionEntity> {
|
||||
'workflowId',
|
||||
'waitTill',
|
||||
'finished',
|
||||
'status',
|
||||
],
|
||||
where,
|
||||
order: { id: 'DESC' },
|
||||
|
||||
@@ -33,3 +33,6 @@ properties:
|
||||
format: date-time
|
||||
customData:
|
||||
type: object
|
||||
status:
|
||||
type: string
|
||||
enum: ['canceled', 'crashed', 'error', 'new', 'running', 'success', 'unknown', 'waiting']
|
||||
|
||||
@@ -263,6 +263,7 @@ describe('GET /executions', () => {
|
||||
stoppedAt,
|
||||
workflowId,
|
||||
waitTill,
|
||||
status,
|
||||
} = response.body.data[0];
|
||||
|
||||
expect(id).toBeDefined();
|
||||
@@ -274,6 +275,7 @@ describe('GET /executions', () => {
|
||||
expect(stoppedAt).not.toBeNull();
|
||||
expect(workflowId).toBe(successfulExecution.workflowId);
|
||||
expect(waitTill).toBeNull();
|
||||
expect(status).toBe(successfulExecution.status);
|
||||
});
|
||||
|
||||
test('should paginate two executions', async () => {
|
||||
@@ -317,6 +319,7 @@ describe('GET /executions', () => {
|
||||
stoppedAt,
|
||||
workflowId,
|
||||
waitTill,
|
||||
status,
|
||||
} = executions[i];
|
||||
|
||||
expect(id).toBeDefined();
|
||||
@@ -328,6 +331,7 @@ describe('GET /executions', () => {
|
||||
expect(stoppedAt).not.toBeNull();
|
||||
expect(workflowId).toBe(successfulExecutions[i].workflowId);
|
||||
expect(waitTill).toBeNull();
|
||||
expect(status).toBe(successfulExecutions[i].status);
|
||||
}
|
||||
});
|
||||
|
||||
@@ -356,6 +360,7 @@ describe('GET /executions', () => {
|
||||
stoppedAt,
|
||||
workflowId,
|
||||
waitTill,
|
||||
status,
|
||||
} = response.body.data[0];
|
||||
|
||||
expect(id).toBeDefined();
|
||||
@@ -367,6 +372,7 @@ describe('GET /executions', () => {
|
||||
expect(stoppedAt).not.toBeNull();
|
||||
expect(workflowId).toBe(errorExecution.workflowId);
|
||||
expect(waitTill).toBeNull();
|
||||
expect(status).toBe(errorExecution.status);
|
||||
});
|
||||
|
||||
test('should return all waiting executions', async () => {
|
||||
@@ -396,6 +402,7 @@ describe('GET /executions', () => {
|
||||
stoppedAt,
|
||||
workflowId,
|
||||
waitTill,
|
||||
status,
|
||||
} = response.body.data[0];
|
||||
|
||||
expect(id).toBeDefined();
|
||||
@@ -407,6 +414,7 @@ describe('GET /executions', () => {
|
||||
expect(stoppedAt).not.toBeNull();
|
||||
expect(workflowId).toBe(waitingExecution.workflowId);
|
||||
expect(new Date(waitTill).getTime()).toBeGreaterThan(Date.now() - 1000);
|
||||
expect(status).toBe(waitingExecution.status);
|
||||
});
|
||||
|
||||
test('should retrieve all executions of specific workflow', async () => {
|
||||
@@ -434,6 +442,7 @@ describe('GET /executions', () => {
|
||||
stoppedAt,
|
||||
workflowId,
|
||||
waitTill,
|
||||
status,
|
||||
} = execution;
|
||||
|
||||
expect(savedExecutions.some((exec) => exec.id === id)).toBe(true);
|
||||
@@ -445,6 +454,7 @@ describe('GET /executions', () => {
|
||||
expect(stoppedAt).not.toBeNull();
|
||||
expect(workflowId).toBe(workflow.id);
|
||||
expect(waitTill).toBeNull();
|
||||
expect(status).toBe(execution.status);
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user