mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
e5620ab1e4
* feat(cli): Implement users account quota guards Signed-off-by: Oleg Ivaniv <me@olegivaniv.com> * Remove comment Signed-off-by: Oleg Ivaniv <me@olegivaniv.com> * Address PR comments - Getting `usersQuota` from `Settings` repo - Revert `isUserManagementEnabled` helper - Fix FE listing of users Signed-off-by: Oleg Ivaniv <me@olegivaniv.com> * Refactor isWithinUserQuota getter and fix tests Signed-off-by: Oleg Ivaniv <me@olegivaniv.com> * Revert testDb.ts changes Signed-off-by: Oleg Ivaniv <me@olegivaniv.com> * Cleanup & improve types Signed-off-by: Oleg Ivaniv <me@olegivaniv.com> * Fix duplicated method * Fix failing test * Remove `isUserManagementEnabled` completely Signed-off-by: Oleg Ivaniv <me@olegivaniv.com> * Check for globalRole.name to determine if user is owner Signed-off-by: Oleg Ivaniv <me@olegivaniv.com> * Fix unit tests Signed-off-by: Oleg Ivaniv <me@olegivaniv.com> * Set isInstanceOwnerSetUp in specs * Fix SettingsUserView UM Signed-off-by: Oleg Ivaniv <me@olegivaniv.com> * refactor: License typings suggestions for users quota guards (#6636) refactor: License typings suggestions * Update packages/cli/src/Ldap/helpers.ts Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * Update packages/cli/test/integration/shared/utils.ts Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * Address PR comments Signed-off-by: Oleg Ivaniv <me@olegivaniv.com> * Use 403 for all user quota related errors Signed-off-by: Oleg Ivaniv <me@olegivaniv.com> --------- Signed-off-by: Oleg Ivaniv <me@olegivaniv.com> Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
145 lines
4.1 KiB
TypeScript
145 lines
4.1 KiB
TypeScript
import { LicenseManager } from '@n8n_io/license-sdk';
|
|
import config from '@/config';
|
|
import { License } from '@/License';
|
|
import { N8N_VERSION } from '@/constants';
|
|
|
|
jest.mock('@n8n_io/license-sdk');
|
|
|
|
const MOCK_SERVER_URL = 'https://server.com/v1';
|
|
const MOCK_RENEW_OFFSET = 259200;
|
|
const MOCK_INSTANCE_ID = 'instance-id';
|
|
const MOCK_ACTIVATION_KEY = 'activation-key';
|
|
const MOCK_FEATURE_FLAG = 'feat:sharing';
|
|
const MOCK_MAIN_PLAN_ID = '1b765dc4-d39d-4ffe-9885-c56dd67c4b26';
|
|
|
|
describe('License', () => {
|
|
beforeAll(() => {
|
|
config.set('license.serverUrl', MOCK_SERVER_URL);
|
|
config.set('license.autoRenewEnabled', true);
|
|
config.set('license.autoRenewOffset', MOCK_RENEW_OFFSET);
|
|
});
|
|
|
|
let license: License;
|
|
|
|
beforeEach(async () => {
|
|
license = new License();
|
|
await license.init(MOCK_INSTANCE_ID);
|
|
});
|
|
|
|
test('initializes license manager', async () => {
|
|
expect(LicenseManager).toHaveBeenCalledWith({
|
|
autoRenewEnabled: true,
|
|
autoRenewOffset: MOCK_RENEW_OFFSET,
|
|
deviceFingerprint: expect.any(Function),
|
|
productIdentifier: `n8n-${N8N_VERSION}`,
|
|
logger: expect.anything(),
|
|
loadCertStr: expect.any(Function),
|
|
saveCertStr: expect.any(Function),
|
|
server: MOCK_SERVER_URL,
|
|
tenantId: 1,
|
|
});
|
|
});
|
|
|
|
test('attempts to activate license with provided key', async () => {
|
|
await license.activate(MOCK_ACTIVATION_KEY);
|
|
|
|
expect(LicenseManager.prototype.activate).toHaveBeenCalledWith(MOCK_ACTIVATION_KEY);
|
|
});
|
|
|
|
test('renews license', async () => {
|
|
await license.renew();
|
|
|
|
expect(LicenseManager.prototype.renew).toHaveBeenCalled();
|
|
});
|
|
|
|
test('check if feature is enabled', async () => {
|
|
await license.isFeatureEnabled(MOCK_FEATURE_FLAG);
|
|
|
|
expect(LicenseManager.prototype.hasFeatureEnabled).toHaveBeenCalledWith(MOCK_FEATURE_FLAG);
|
|
});
|
|
|
|
test('check if sharing feature is enabled', async () => {
|
|
await license.isFeatureEnabled(MOCK_FEATURE_FLAG);
|
|
|
|
expect(LicenseManager.prototype.hasFeatureEnabled).toHaveBeenCalledWith(MOCK_FEATURE_FLAG);
|
|
});
|
|
|
|
test('check fetching entitlements', async () => {
|
|
await license.getCurrentEntitlements();
|
|
|
|
expect(LicenseManager.prototype.getCurrentEntitlements).toHaveBeenCalled();
|
|
});
|
|
|
|
test('check fetching feature values', async () => {
|
|
license.getFeatureValue(MOCK_FEATURE_FLAG);
|
|
|
|
expect(LicenseManager.prototype.getFeatureValue).toHaveBeenCalledWith(MOCK_FEATURE_FLAG);
|
|
});
|
|
|
|
test('check management jwt', async () => {
|
|
await license.getManagementJwt();
|
|
|
|
expect(LicenseManager.prototype.getManagementJwt).toHaveBeenCalled();
|
|
});
|
|
|
|
test('getMainPlan() returns the right entitlement', async () => {
|
|
// mock entitlements response
|
|
License.prototype.getCurrentEntitlements = jest.fn().mockReturnValue([
|
|
{
|
|
id: '84a9c852-1349-478d-9ad1-b3f55510e477',
|
|
productId: '670650f2-72d8-4397-898c-c249906e2cc2',
|
|
productMetadata: {},
|
|
features: {},
|
|
featureOverrides: {},
|
|
validFrom: new Date(),
|
|
validTo: new Date(),
|
|
},
|
|
{
|
|
id: MOCK_MAIN_PLAN_ID,
|
|
productId: '670650f2-72d8-4397-898c-c249906e2cc2',
|
|
productMetadata: {
|
|
terms: {
|
|
isMainPlan: true,
|
|
},
|
|
},
|
|
features: {},
|
|
featureOverrides: {},
|
|
validFrom: new Date(),
|
|
validTo: new Date(),
|
|
},
|
|
]);
|
|
jest.fn(license.getMainPlan).mockReset();
|
|
|
|
const mainPlan = license.getMainPlan();
|
|
expect(mainPlan?.id).toBe(MOCK_MAIN_PLAN_ID);
|
|
});
|
|
|
|
test('getMainPlan() returns undefined if there is no main plan', async () => {
|
|
// mock entitlements response
|
|
License.prototype.getCurrentEntitlements = jest.fn().mockReturnValue([
|
|
{
|
|
id: '84a9c852-1349-478d-9ad1-b3f55510e477',
|
|
productId: '670650f2-72d8-4397-898c-c249906e2cc2',
|
|
productMetadata: {}, // has no `productMetadata.terms.isMainPlan`!
|
|
features: {},
|
|
featureOverrides: {},
|
|
validFrom: new Date(),
|
|
validTo: new Date(),
|
|
},
|
|
{
|
|
id: 'c1aae471-c24e-4874-ad88-b97107de486c',
|
|
productId: '670650f2-72d8-4397-898c-c249906e2cc2',
|
|
productMetadata: {}, // has no `productMetadata.terms.isMainPlan`!
|
|
features: {},
|
|
featureOverrides: {},
|
|
validFrom: new Date(),
|
|
validTo: new Date(),
|
|
},
|
|
]);
|
|
jest.fn(license.getMainPlan).mockReset();
|
|
|
|
const mainPlan = license.getMainPlan();
|
|
expect(mainPlan).toBeUndefined();
|
|
});
|
|
});
|