mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-24 04:04:06 -08:00
refactor(core): Add central license mock for integration tests (no-changelog) (#7871)
Github issue / Community forum post (link here to close automatically):
This commit is contained in:
parent
b16dd21909
commit
5f4a9524ec
|
@ -24,15 +24,13 @@ import {
|
|||
let authOwnerAgent: SuperAgentTest;
|
||||
let authMemberAgent: SuperAgentTest;
|
||||
|
||||
const licenseLike = mockInstance(License, {
|
||||
isExternalSecretsEnabled: jest.fn().mockReturnValue(true),
|
||||
isWithinUsersLimit: jest.fn().mockReturnValue(true),
|
||||
});
|
||||
|
||||
const mockProvidersInstance = new MockProviders();
|
||||
mockInstance(ExternalSecretsProviders, mockProvidersInstance);
|
||||
|
||||
const testServer = setupTestServer({ endpointGroups: ['externalSecrets'] });
|
||||
const testServer = setupTestServer({
|
||||
endpointGroups: ['externalSecrets'],
|
||||
enabledFeatures: ['feat:externalSecrets'],
|
||||
});
|
||||
|
||||
const connectedDate = '2023-08-01T12:32:29.000Z';
|
||||
|
||||
|
@ -57,7 +55,7 @@ const resetManager = async () => {
|
|||
new ExternalSecretsManager(
|
||||
mock(),
|
||||
Container.get(SettingsRepository),
|
||||
licenseLike,
|
||||
Container.get(License),
|
||||
mockProvidersInstance,
|
||||
Container.get(Cipher),
|
||||
),
|
||||
|
@ -107,8 +105,6 @@ beforeAll(async () => {
|
|||
});
|
||||
|
||||
beforeEach(async () => {
|
||||
licenseLike.isExternalSecretsEnabled.mockReturnValue(true);
|
||||
|
||||
mockProvidersInstance.setProviders({
|
||||
dummy: DummyProvider,
|
||||
});
|
||||
|
@ -339,7 +335,7 @@ describe('POST /external-secrets/providers/:provider/update', () => {
|
|||
'update',
|
||||
);
|
||||
|
||||
licenseLike.isExternalSecretsEnabled.mockReturnValue(false);
|
||||
testServer.license.disable('feat:externalSecrets');
|
||||
|
||||
const resp = await authOwnerAgent.post('/external-secrets/providers/dummy/update');
|
||||
expect(resp.status).toBe(400);
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
import type { SuperAgentTest } from 'supertest';
|
||||
import { Container } from 'typedi';
|
||||
import { License } from '@/License';
|
||||
import validator from 'validator';
|
||||
import config from '@/config';
|
||||
import { AUTH_COOKIE_NAME } from '@/constants';
|
||||
|
@ -21,6 +20,7 @@ let authOwnerAgent: SuperAgentTest;
|
|||
const ownerPassword = randomValidPassword();
|
||||
|
||||
const testServer = utils.setupTestServer({ endpointGroups: ['auth'] });
|
||||
const license = testServer.license;
|
||||
|
||||
beforeAll(async () => {
|
||||
globalOwnerRole = await getGlobalOwnerRole();
|
||||
|
@ -79,7 +79,7 @@ describe('POST /login', () => {
|
|||
});
|
||||
|
||||
test('should throw AuthError for non-owner if not within users limit quota', async () => {
|
||||
jest.spyOn(Container.get(License), 'isWithinUsersLimit').mockReturnValueOnce(false);
|
||||
license.setQuota('quota:users', 0);
|
||||
const password = 'testpassword';
|
||||
const member = await createUser({
|
||||
password,
|
||||
|
@ -93,7 +93,7 @@ describe('POST /login', () => {
|
|||
});
|
||||
|
||||
test('should not throw AuthError for owner if not within users limit quota', async () => {
|
||||
jest.spyOn(Container.get(License), 'isWithinUsersLimit').mockReturnValueOnce(false);
|
||||
license.setQuota('quota:users', 0);
|
||||
const ownerUser = await createUser({
|
||||
password: randomValidPassword(),
|
||||
globalRole: globalOwnerRole,
|
||||
|
@ -315,7 +315,7 @@ describe('GET /resolve-signup-token', () => {
|
|||
});
|
||||
|
||||
test('should return 403 if user quota reached', async () => {
|
||||
jest.spyOn(Container.get(License), 'isWithinUsersLimit').mockReturnValueOnce(false);
|
||||
license.setQuota('quota:users', 0);
|
||||
const memberShell = await createUserShell(globalMemberRole);
|
||||
|
||||
const response = await authOwnerAgent
|
||||
|
|
|
@ -5,7 +5,6 @@ import type { User } from '@db/entities/User';
|
|||
import * as UserManagementHelpers from '@/UserManagement/UserManagementHelper';
|
||||
import Container from 'typedi';
|
||||
import config from '@/config';
|
||||
import { License } from '@/License';
|
||||
import { SourceControlPreferencesService } from '@/environments/sourceControl/sourceControlPreferences.service.ee';
|
||||
import { SourceControlService } from '@/environments/sourceControl/sourceControl.service.ee';
|
||||
import type { SourceControlledFile } from '@/environments/sourceControl/types/sourceControlledFile';
|
||||
|
@ -32,7 +31,6 @@ beforeAll(async () => {
|
|||
authOwnerAgent = testServer.authAgentFor(owner);
|
||||
authMemberAgent = testServer.authAgentFor(member);
|
||||
|
||||
Container.get(License).isSourceControlLicensed = () => true;
|
||||
Container.get(SourceControlPreferencesService).isSourceControlConnected = () => true;
|
||||
});
|
||||
|
||||
|
|
|
@ -2,7 +2,6 @@ import type { SuperAgentTest } from 'supertest';
|
|||
import Container from 'typedi';
|
||||
import type { INode } from 'n8n-workflow';
|
||||
import { STARTING_NODES } from '@/constants';
|
||||
import { License } from '@/License';
|
||||
import type { Role } from '@db/entities/Role';
|
||||
import type { TagEntity } from '@db/entities/TagEntity';
|
||||
import type { User } from '@db/entities/User';
|
||||
|
@ -10,7 +9,6 @@ import { SharedWorkflowRepository } from '@db/repositories/sharedWorkflow.reposi
|
|||
import { WorkflowHistoryRepository } from '@db/repositories/workflowHistory.repository';
|
||||
import type { ActiveWorkflowRunner } from '@/ActiveWorkflowRunner';
|
||||
|
||||
import { mockInstance } from '../../shared/mocking';
|
||||
import { randomApiKey } from '../shared/random';
|
||||
import * as utils from '../shared/utils/';
|
||||
import * as testDb from '../shared/testDb';
|
||||
|
@ -27,11 +25,7 @@ let authMemberAgent: SuperAgentTest;
|
|||
let workflowRunner: ActiveWorkflowRunner;
|
||||
|
||||
const testServer = utils.setupTestServer({ endpointGroups: ['publicApi'] });
|
||||
|
||||
const licenseLike = mockInstance(License, {
|
||||
isWorkflowHistoryLicensed: jest.fn().mockReturnValue(false),
|
||||
isWithinUsersLimit: jest.fn().mockReturnValue(true),
|
||||
});
|
||||
const license = testServer.license;
|
||||
|
||||
beforeAll(async () => {
|
||||
const [globalOwnerRole, globalMemberRole, fetchedWorkflowOwnerRole] = await getAllRoles();
|
||||
|
@ -64,7 +58,6 @@ beforeEach(async () => {
|
|||
|
||||
authOwnerAgent = testServer.publicApiAgentFor(owner);
|
||||
authMemberAgent = testServer.publicApiAgentFor(member);
|
||||
licenseLike.isWorkflowHistoryLicensed.mockReturnValue(false);
|
||||
});
|
||||
|
||||
afterEach(async () => {
|
||||
|
@ -700,7 +693,7 @@ describe('POST /workflows', () => {
|
|||
});
|
||||
|
||||
test('should create workflow history version when licensed', async () => {
|
||||
licenseLike.isWorkflowHistoryLicensed.mockReturnValue(true);
|
||||
license.enable('feat:workflowHistory');
|
||||
const payload = {
|
||||
name: 'testing',
|
||||
nodes: [
|
||||
|
@ -746,7 +739,7 @@ describe('POST /workflows', () => {
|
|||
});
|
||||
|
||||
test('should not create workflow history version when not licensed', async () => {
|
||||
licenseLike.isWorkflowHistoryLicensed.mockReturnValue(false);
|
||||
license.disable('feat:workflowHistory');
|
||||
const payload = {
|
||||
name: 'testing',
|
||||
nodes: [
|
||||
|
@ -940,7 +933,7 @@ describe('PUT /workflows/:id', () => {
|
|||
});
|
||||
|
||||
test('should create workflow history version when licensed', async () => {
|
||||
licenseLike.isWorkflowHistoryLicensed.mockReturnValue(true);
|
||||
license.enable('feat:workflowHistory');
|
||||
const workflow = await createWorkflow({}, member);
|
||||
const payload = {
|
||||
name: 'name updated',
|
||||
|
@ -995,7 +988,7 @@ describe('PUT /workflows/:id', () => {
|
|||
});
|
||||
|
||||
test('should not create workflow history when not licensed', async () => {
|
||||
licenseLike.isWorkflowHistoryLicensed.mockReturnValue(false);
|
||||
license.disable('feat:workflowHistory');
|
||||
const workflow = await createWorkflow({}, member);
|
||||
const payload = {
|
||||
name: 'name updated',
|
||||
|
|
|
@ -1,20 +1,17 @@
|
|||
import { License } from '@/License';
|
||||
|
||||
import * as utils from './shared/utils/';
|
||||
import * as testDb from './shared/testDb';
|
||||
import { mockInstance } from '../shared/mocking';
|
||||
import { createAdmin, createMember, createOwner } from './shared/db/users';
|
||||
|
||||
import type { SuperAgentTest } from 'supertest';
|
||||
import type { User } from '@db/entities/User';
|
||||
|
||||
const testServer = utils.setupTestServer({ endpointGroups: ['role'] });
|
||||
|
||||
const license = mockInstance(License, {
|
||||
isAdvancedPermissionsLicensed: jest.fn().mockReturnValue(true),
|
||||
isWithinUsersLimit: jest.fn().mockReturnValue(true),
|
||||
const testServer = utils.setupTestServer({
|
||||
endpointGroups: ['role'],
|
||||
enabledFeatures: ['feat:advancedPermissions'],
|
||||
});
|
||||
|
||||
const license = testServer.license;
|
||||
|
||||
describe('GET /roles', () => {
|
||||
let owner: User;
|
||||
let admin: User;
|
||||
|
@ -46,7 +43,7 @@ describe('GET /roles', () => {
|
|||
|
||||
describe('with advanced permissions licensed', () => {
|
||||
test.each(['owner', 'admin', 'member'])('should return all roles to %s', async (user) => {
|
||||
license.isAdvancedPermissionsLicensed.mockReturnValue(true);
|
||||
license.enable('feat:advancedPermissions');
|
||||
|
||||
const response = await toAgent[user].get('/roles').expect(200);
|
||||
|
||||
|
@ -64,7 +61,7 @@ describe('GET /roles', () => {
|
|||
|
||||
describe('with advanced permissions not licensed', () => {
|
||||
test.each(['owner', 'admin', 'member'])('should return all roles to %s', async (user) => {
|
||||
license.isAdvancedPermissionsLicensed.mockReturnValue(false);
|
||||
license.disable('feat:advancedPermissions');
|
||||
|
||||
const response = await toAgent[user].get('/roles').expect(200);
|
||||
|
||||
|
|
59
packages/cli/test/integration/shared/license.ts
Normal file
59
packages/cli/test/integration/shared/license.ts
Normal file
|
@ -0,0 +1,59 @@
|
|||
import type { BooleanLicenseFeature, NumericLicenseFeature } from '@/Interfaces';
|
||||
import type { License } from '@/License';
|
||||
|
||||
export interface LicenseMockDefaults {
|
||||
features?: BooleanLicenseFeature[];
|
||||
quota?: Partial<{ [K in NumericLicenseFeature]: number }>;
|
||||
}
|
||||
|
||||
export class LicenseMocker {
|
||||
private _enabledFeatures: Set<BooleanLicenseFeature> = new Set();
|
||||
|
||||
private _defaultFeatures: Set<BooleanLicenseFeature> = new Set();
|
||||
|
||||
private _featureQuotas: Map<NumericLicenseFeature, number> = new Map();
|
||||
|
||||
private _defaultQuotas: Map<NumericLicenseFeature, number> = new Map();
|
||||
|
||||
mock(license: License) {
|
||||
license.isFeatureEnabled = this.isFeatureEnabled.bind(this);
|
||||
license.getFeatureValue = this.getFeatureValue.bind(this);
|
||||
}
|
||||
|
||||
reset() {
|
||||
this._enabledFeatures = new Set(this._defaultFeatures);
|
||||
this._featureQuotas = new Map(this._defaultQuotas);
|
||||
}
|
||||
|
||||
setDefaults(defaults: LicenseMockDefaults) {
|
||||
this._defaultFeatures = new Set(defaults.features ?? []);
|
||||
this._defaultQuotas = new Map(
|
||||
Object.entries(defaults.quota ?? {}) as Array<[NumericLicenseFeature, number]>,
|
||||
);
|
||||
}
|
||||
|
||||
isFeatureEnabled(feature: BooleanLicenseFeature): boolean {
|
||||
return this._enabledFeatures.has(feature);
|
||||
}
|
||||
|
||||
getFeatureValue(feature: string): boolean | number | undefined {
|
||||
if (this._featureQuotas.has(feature as NumericLicenseFeature)) {
|
||||
return this._featureQuotas.get(feature as NumericLicenseFeature);
|
||||
} else if (this._enabledFeatures.has(feature as BooleanLicenseFeature)) {
|
||||
return true;
|
||||
}
|
||||
return undefined;
|
||||
}
|
||||
|
||||
enable(feature: BooleanLicenseFeature) {
|
||||
this._enabledFeatures.add(feature);
|
||||
}
|
||||
|
||||
disable(feature: BooleanLicenseFeature) {
|
||||
this._enabledFeatures.delete(feature);
|
||||
}
|
||||
|
||||
setQuota(feature: NumericLicenseFeature, quota: number) {
|
||||
this._featureQuotas.set(feature, quota);
|
||||
}
|
||||
}
|
|
@ -6,6 +6,7 @@ import type { Server } from 'http';
|
|||
import type { CredentialsEntity } from '@db/entities/CredentialsEntity';
|
||||
import type { User } from '@db/entities/User';
|
||||
import type { BooleanLicenseFeature, ICredentialsDb } from '@/Interfaces';
|
||||
import type { LicenseMocker } from './license';
|
||||
|
||||
type EndpointGroup =
|
||||
| 'me'
|
||||
|
@ -45,6 +46,7 @@ export interface TestServer {
|
|||
authAgentFor: (user: User) => SuperAgentTest;
|
||||
publicApiAgentFor: (user: User) => SuperAgentTest;
|
||||
authlessAgent: SuperAgentTest;
|
||||
license: LicenseMocker;
|
||||
}
|
||||
|
||||
export type CredentialPayload = {
|
||||
|
|
|
@ -20,6 +20,7 @@ import * as testDb from '../../shared/testDb';
|
|||
import { AUTHLESS_ENDPOINTS, PUBLIC_API_REST_PATH_SEGMENT, REST_PATH_SEGMENT } from '../constants';
|
||||
import type { SetupProps, TestServer } from '../types';
|
||||
import { InternalHooks } from '@/InternalHooks';
|
||||
import { LicenseMocker } from '../license';
|
||||
|
||||
/**
|
||||
* Plugin to prefix a path segment into a request URL pathname.
|
||||
|
@ -83,6 +84,7 @@ export const setupTestServer = ({
|
|||
authAgentFor: (user: User) => createAgent(app, { auth: true, user }),
|
||||
authlessAgent: createAgent(app),
|
||||
publicApiAgentFor: (user) => publicApiAgent(app, { user }),
|
||||
license: new LicenseMocker(),
|
||||
};
|
||||
|
||||
beforeAll(async () => {
|
||||
|
@ -91,8 +93,11 @@ export const setupTestServer = ({
|
|||
config.set('userManagement.jwtSecret', 'My JWT secret');
|
||||
config.set('userManagement.isInstanceOwnerSetUp', true);
|
||||
|
||||
testServer.license.mock(Container.get(License));
|
||||
if (enabledFeatures) {
|
||||
Container.get(License).isFeatureEnabled = (feature) => enabledFeatures.includes(feature);
|
||||
testServer.license.setDefaults({
|
||||
features: enabledFeatures,
|
||||
});
|
||||
}
|
||||
|
||||
const enablePublicAPI = endpointGroups?.includes('publicApi');
|
||||
|
@ -166,7 +171,7 @@ export const setupTestServer = ({
|
|||
const { LdapManager } = await import('@/Ldap/LdapManager.ee');
|
||||
const { handleLdapInit } = await import('@/Ldap/helpers');
|
||||
const { LdapController } = await import('@/controllers/ldap.controller');
|
||||
Container.get(License).isLdapEnabled = () => true;
|
||||
testServer.license.enable('feat:ldap');
|
||||
await handleLdapInit();
|
||||
const { service, sync } = LdapManager.getInstance();
|
||||
registerController(
|
||||
|
@ -312,5 +317,9 @@ export const setupTestServer = ({
|
|||
testServer.httpServer.close();
|
||||
});
|
||||
|
||||
beforeEach(() => {
|
||||
testServer.license.reset();
|
||||
});
|
||||
|
||||
return testServer;
|
||||
};
|
||||
|
|
|
@ -3,10 +3,8 @@ import type { SuperAgentTest } from 'supertest';
|
|||
import type { Variables } from '@db/entities/Variables';
|
||||
import { VariablesRepository } from '@db/repositories/variables.repository';
|
||||
import { generateNanoId } from '@db/utils/generators';
|
||||
import { License } from '@/License';
|
||||
import { VariablesService } from '@/environments/variables/variables.service.ee';
|
||||
|
||||
import { mockInstance } from '../shared/mocking';
|
||||
import * as testDb from './shared/testDb';
|
||||
import * as utils from './shared/utils/';
|
||||
import { createOwner, createUser } from './shared/db/users';
|
||||
|
@ -14,14 +12,8 @@ import { createOwner, createUser } from './shared/db/users';
|
|||
let authOwnerAgent: SuperAgentTest;
|
||||
let authMemberAgent: SuperAgentTest;
|
||||
|
||||
const licenseLike = {
|
||||
isFeatureEnabled: jest.fn().mockReturnValue(true),
|
||||
isVariablesEnabled: () => licenseLike.isFeatureEnabled(),
|
||||
getVariablesLimit: jest.fn().mockReturnValue(-1),
|
||||
isWithinUsersLimit: jest.fn().mockReturnValue(true),
|
||||
};
|
||||
|
||||
const testServer = utils.setupTestServer({ endpointGroups: ['variables'] });
|
||||
const license = testServer.license;
|
||||
|
||||
async function createVariable(key: string, value: string) {
|
||||
const result = await Container.get(VariablesRepository).save({
|
||||
|
@ -50,18 +42,21 @@ async function getVariableById(id: string) {
|
|||
}
|
||||
|
||||
beforeAll(async () => {
|
||||
mockInstance(License, licenseLike);
|
||||
|
||||
const owner = await createOwner();
|
||||
authOwnerAgent = testServer.authAgentFor(owner);
|
||||
const member = await createUser();
|
||||
authMemberAgent = testServer.authAgentFor(member);
|
||||
|
||||
license.setDefaults({
|
||||
features: ['feat:variables'],
|
||||
// quota: {
|
||||
// 'quota:maxVariables': -1,
|
||||
// },
|
||||
});
|
||||
});
|
||||
|
||||
beforeEach(async () => {
|
||||
await testDb.truncate(['Variables']);
|
||||
licenseLike.isFeatureEnabled.mockReturnValue(true);
|
||||
licenseLike.getVariablesLimit.mockReturnValue(-1);
|
||||
});
|
||||
|
||||
// ----------------------------------------
|
||||
|
@ -159,7 +154,7 @@ describe('POST /variables', () => {
|
|||
});
|
||||
|
||||
test("POST /variables should not create a new variable and return it if the instance doesn't have a license", async () => {
|
||||
licenseLike.isFeatureEnabled.mockReturnValue(false);
|
||||
license.disable('feat:variables');
|
||||
const response = await authOwnerAgent.post('/variables').send(toCreate);
|
||||
expect(response.statusCode).toBe(403);
|
||||
expect(response.body.data?.key).not.toBe(toCreate.key);
|
||||
|
@ -178,7 +173,7 @@ describe('POST /variables', () => {
|
|||
});
|
||||
|
||||
test('should not fail if variable limit not reached', async () => {
|
||||
licenseLike.getVariablesLimit.mockReturnValue(5);
|
||||
license.setQuota('quota:maxVariables', 5);
|
||||
let i = 1;
|
||||
let toCreate = generatePayload(i);
|
||||
while (i < 3) {
|
||||
|
@ -193,7 +188,7 @@ describe('POST /variables', () => {
|
|||
});
|
||||
|
||||
test('should fail if variable limit reached', async () => {
|
||||
licenseLike.getVariablesLimit.mockReturnValue(5);
|
||||
license.setQuota('quota:maxVariables', 5);
|
||||
let i = 1;
|
||||
let toCreate = generatePayload(i);
|
||||
while (i < 6) {
|
||||
|
|
|
@ -1,8 +1,6 @@
|
|||
import type { SuperAgentTest } from 'supertest';
|
||||
import { License } from '@/License';
|
||||
import type { User } from '@db/entities/User';
|
||||
|
||||
import { mockInstance } from '../shared/mocking';
|
||||
import * as testDb from './shared/testDb';
|
||||
import * as utils from './shared/utils/';
|
||||
import { createOwner, createUser } from './shared/db/users';
|
||||
|
@ -14,13 +12,11 @@ let authOwnerAgent: SuperAgentTest;
|
|||
let member: User;
|
||||
let authMemberAgent: SuperAgentTest;
|
||||
|
||||
const licenseLike = mockInstance(License, {
|
||||
isWorkflowHistoryLicensed: jest.fn().mockReturnValue(true),
|
||||
isWithinUsersLimit: jest.fn().mockReturnValue(true),
|
||||
const testServer = utils.setupTestServer({
|
||||
endpointGroups: ['workflowHistory'],
|
||||
enabledFeatures: ['feat:workflowHistory'],
|
||||
});
|
||||
|
||||
const testServer = utils.setupTestServer({ endpointGroups: ['workflowHistory'] });
|
||||
|
||||
beforeAll(async () => {
|
||||
owner = await createOwner();
|
||||
authOwnerAgent = testServer.authAgentFor(owner);
|
||||
|
@ -28,17 +24,13 @@ beforeAll(async () => {
|
|||
authMemberAgent = testServer.authAgentFor(member);
|
||||
});
|
||||
|
||||
beforeEach(() => {
|
||||
licenseLike.isWorkflowHistoryLicensed.mockReturnValue(true);
|
||||
});
|
||||
|
||||
afterEach(async () => {
|
||||
await testDb.truncate(['Workflow', 'SharedWorkflow', 'WorkflowHistory']);
|
||||
});
|
||||
|
||||
describe('GET /workflow-history/:workflowId', () => {
|
||||
test('should not work when license is not available', async () => {
|
||||
licenseLike.isWorkflowHistoryLicensed.mockReturnValue(false);
|
||||
testServer.license.disable('feat:workflowHistory');
|
||||
const resp = await authOwnerAgent.get('/workflow-history/workflow/badid');
|
||||
expect(resp.status).toBe(403);
|
||||
expect(resp.text).toBe('Workflow History license data not found');
|
||||
|
@ -165,7 +157,7 @@ describe('GET /workflow-history/:workflowId', () => {
|
|||
|
||||
describe('GET /workflow-history/workflow/:workflowId/version/:versionId', () => {
|
||||
test('should not work when license is not available', async () => {
|
||||
licenseLike.isWorkflowHistoryLicensed.mockReturnValue(false);
|
||||
testServer.license.disable('feat:workflowHistory');
|
||||
const resp = await authOwnerAgent.get('/workflow-history/workflow/badid/version/badid');
|
||||
expect(resp.status).toBe(403);
|
||||
expect(resp.text).toBe('Workflow History license data not found');
|
||||
|
|
|
@ -6,7 +6,6 @@ import type { INode } from 'n8n-workflow';
|
|||
import * as UserManagementHelpers from '@/UserManagement/UserManagementHelper';
|
||||
import type { User } from '@db/entities/User';
|
||||
import { getSharedWorkflowIds } from '@/WorkflowHelpers';
|
||||
import { License } from '@/License';
|
||||
import { WorkflowHistoryRepository } from '@db/repositories/workflowHistory.repository';
|
||||
import { ActiveWorkflowRunner } from '@/ActiveWorkflowRunner';
|
||||
|
||||
|
@ -31,10 +30,6 @@ let authMemberAgent: SuperAgentTest;
|
|||
let authAnotherMemberAgent: SuperAgentTest;
|
||||
let saveCredential: SaveCredentialFunction;
|
||||
|
||||
const licenseLike = mockInstance(License, {
|
||||
isWorkflowHistoryLicensed: jest.fn().mockReturnValue(false),
|
||||
isWithinUsersLimit: jest.fn().mockReturnValue(true),
|
||||
});
|
||||
const activeWorkflowRunnerLike = mockInstance(ActiveWorkflowRunner);
|
||||
|
||||
const sharingSpy = jest.spyOn(UserManagementHelpers, 'isSharingEnabled').mockReturnValue(true);
|
||||
|
@ -42,6 +37,7 @@ const testServer = utils.setupTestServer({
|
|||
endpointGroups: ['workflows'],
|
||||
enabledFeatures: ['feat:sharing'],
|
||||
});
|
||||
const license = testServer.license;
|
||||
|
||||
beforeAll(async () => {
|
||||
const globalOwnerRole = await getGlobalOwnerRole();
|
||||
|
@ -66,7 +62,6 @@ beforeEach(async () => {
|
|||
activeWorkflowRunnerLike.remove.mockReset();
|
||||
|
||||
await testDb.truncate(['Workflow', 'SharedWorkflow', 'WorkflowHistory']);
|
||||
licenseLike.isWorkflowHistoryLicensed.mockReturnValue(false);
|
||||
});
|
||||
|
||||
describe('router should switch based on flag', () => {
|
||||
|
@ -490,7 +485,7 @@ describe('POST /workflows', () => {
|
|||
});
|
||||
|
||||
test('Should create workflow history version when licensed', async () => {
|
||||
licenseLike.isWorkflowHistoryLicensed.mockReturnValue(true);
|
||||
license.enable('feat:workflowHistory');
|
||||
const payload = {
|
||||
name: 'testing',
|
||||
nodes: [
|
||||
|
@ -539,7 +534,7 @@ describe('POST /workflows', () => {
|
|||
});
|
||||
|
||||
test('Should not create workflow history version when not licensed', async () => {
|
||||
licenseLike.isWorkflowHistoryLicensed.mockReturnValue(false);
|
||||
license.disable('feat:workflowHistory');
|
||||
const payload = {
|
||||
name: 'testing',
|
||||
nodes: [
|
||||
|
@ -1013,7 +1008,7 @@ describe('getSharedWorkflowIds', () => {
|
|||
|
||||
describe('PATCH /workflows/:id - workflow history', () => {
|
||||
test('Should create workflow history version when licensed', async () => {
|
||||
licenseLike.isWorkflowHistoryLicensed.mockReturnValue(true);
|
||||
license.enable('feat:workflowHistory');
|
||||
const workflow = await createWorkflow({}, owner);
|
||||
const payload = {
|
||||
name: 'name updated',
|
||||
|
@ -1071,7 +1066,7 @@ describe('PATCH /workflows/:id - workflow history', () => {
|
|||
});
|
||||
|
||||
test('Should not create workflow history version when not licensed', async () => {
|
||||
licenseLike.isWorkflowHistoryLicensed.mockReturnValue(false);
|
||||
license.disable('feat:workflowHistory');
|
||||
const workflow = await createWorkflow({}, owner);
|
||||
const payload = {
|
||||
name: 'name updated',
|
||||
|
@ -1123,7 +1118,7 @@ describe('PATCH /workflows/:id - workflow history', () => {
|
|||
|
||||
describe('PATCH /workflows/:id - activate workflow', () => {
|
||||
test('should activate workflow without changing version ID', async () => {
|
||||
licenseLike.isWorkflowHistoryLicensed.mockReturnValue(false);
|
||||
license.disable('feat:workflowHistory');
|
||||
const workflow = await createWorkflow({}, owner);
|
||||
const payload = {
|
||||
versionId: workflow.versionId,
|
||||
|
@ -1145,7 +1140,7 @@ describe('PATCH /workflows/:id - activate workflow', () => {
|
|||
});
|
||||
|
||||
test('should deactivate workflow without changing version ID', async () => {
|
||||
licenseLike.isWorkflowHistoryLicensed.mockReturnValue(false);
|
||||
license.disable('feat:workflowHistory');
|
||||
const workflow = await createWorkflow({ active: true }, owner);
|
||||
const payload = {
|
||||
versionId: workflow.versionId,
|
||||
|
|
|
@ -6,7 +6,6 @@ import { v4 as uuid } from 'uuid';
|
|||
import { RoleService } from '@/services/role.service';
|
||||
import Container from 'typedi';
|
||||
import type { ListQuery } from '@/requests';
|
||||
import { License } from '@/License';
|
||||
import { WorkflowHistoryRepository } from '@db/repositories/workflowHistory.repository';
|
||||
import { ActiveWorkflowRunner } from '@/ActiveWorkflowRunner';
|
||||
|
||||
|
@ -25,14 +24,10 @@ let authOwnerAgent: SuperAgentTest;
|
|||
|
||||
jest.spyOn(UserManagementHelpers, 'isSharingEnabled').mockReturnValue(false);
|
||||
const testServer = utils.setupTestServer({ endpointGroups: ['workflows'] });
|
||||
const license = testServer.license;
|
||||
|
||||
const { objectContaining, arrayContaining, any } = expect;
|
||||
|
||||
const licenseLike = mockInstance(License, {
|
||||
isWorkflowHistoryLicensed: jest.fn().mockReturnValue(false),
|
||||
isWithinUsersLimit: jest.fn().mockReturnValue(true),
|
||||
});
|
||||
|
||||
const activeWorkflowRunnerLike = mockInstance(ActiveWorkflowRunner);
|
||||
|
||||
beforeAll(async () => {
|
||||
|
@ -43,7 +38,6 @@ beforeAll(async () => {
|
|||
beforeEach(async () => {
|
||||
jest.resetAllMocks();
|
||||
await testDb.truncate(['Workflow', 'SharedWorkflow', 'Tag', 'WorkflowHistory']);
|
||||
licenseLike.isWorkflowHistoryLicensed.mockReturnValue(false);
|
||||
});
|
||||
|
||||
describe('POST /workflows', () => {
|
||||
|
@ -65,7 +59,7 @@ describe('POST /workflows', () => {
|
|||
});
|
||||
|
||||
test('should create workflow history version when licensed', async () => {
|
||||
licenseLike.isWorkflowHistoryLicensed.mockReturnValue(true);
|
||||
license.enable('feat:workflowHistory');
|
||||
const payload = {
|
||||
name: 'testing',
|
||||
nodes: [
|
||||
|
@ -114,7 +108,7 @@ describe('POST /workflows', () => {
|
|||
});
|
||||
|
||||
test('should not create workflow history version when not licensed', async () => {
|
||||
licenseLike.isWorkflowHistoryLicensed.mockReturnValue(false);
|
||||
license.disable('feat:workflowHistory');
|
||||
const payload = {
|
||||
name: 'testing',
|
||||
nodes: [
|
||||
|
@ -428,7 +422,7 @@ describe('GET /workflows', () => {
|
|||
|
||||
describe('PATCH /workflows/:id', () => {
|
||||
test('should create workflow history version when licensed', async () => {
|
||||
licenseLike.isWorkflowHistoryLicensed.mockReturnValue(true);
|
||||
license.enable('feat:workflowHistory');
|
||||
const workflow = await createWorkflow({}, owner);
|
||||
const payload = {
|
||||
name: 'name updated',
|
||||
|
@ -486,7 +480,7 @@ describe('PATCH /workflows/:id', () => {
|
|||
});
|
||||
|
||||
test('should not create workflow history version when not licensed', async () => {
|
||||
licenseLike.isWorkflowHistoryLicensed.mockReturnValue(false);
|
||||
license.disable('feat:workflowHistory');
|
||||
const workflow = await createWorkflow({}, owner);
|
||||
const payload = {
|
||||
name: 'name updated',
|
||||
|
@ -536,7 +530,7 @@ describe('PATCH /workflows/:id', () => {
|
|||
});
|
||||
|
||||
test('should activate workflow without changing version ID', async () => {
|
||||
licenseLike.isWorkflowHistoryLicensed.mockReturnValue(false);
|
||||
license.disable('feat:workflowHistory');
|
||||
const workflow = await createWorkflow({}, owner);
|
||||
const payload = {
|
||||
versionId: workflow.versionId,
|
||||
|
@ -558,7 +552,7 @@ describe('PATCH /workflows/:id', () => {
|
|||
});
|
||||
|
||||
test('should deactivate workflow without changing version ID', async () => {
|
||||
licenseLike.isWorkflowHistoryLicensed.mockReturnValue(false);
|
||||
license.disable('feat:workflowHistory');
|
||||
const workflow = await createWorkflow({ active: true }, owner);
|
||||
const payload = {
|
||||
versionId: workflow.versionId,
|
||||
|
|
Loading…
Reference in a new issue