mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 09:04:07 -08:00
5156313074
Some checks are pending
Test Master / install-and-build (push) Waiting to run
Test Master / Unit tests (18.x) (push) Blocked by required conditions
Test Master / Unit tests (20.x) (push) Blocked by required conditions
Test Master / Unit tests (22.4) (push) Blocked by required conditions
Test Master / Lint (push) Blocked by required conditions
Test Master / Notify Slack on failure (push) Blocked by required conditions
Benchmark Docker Image CI / build (push) Waiting to run
36 lines
1.2 KiB
TypeScript
36 lines
1.2 KiB
TypeScript
import { Container } from 'typedi';
|
|
|
|
import { ClearLicenseCommand } from '@/commands/license/clear';
|
|
import { SETTINGS_LICENSE_CERT_KEY } from '@/constants';
|
|
import { SettingsRepository } from '@/databases/repositories/settings.repository';
|
|
import { License } from '@/license';
|
|
import { LoadNodesAndCredentials } from '@/load-nodes-and-credentials';
|
|
import { setupTestCommand } from '@test-integration/utils/test-command';
|
|
|
|
import { mockInstance } from '../../shared/mocking';
|
|
|
|
mockInstance(LoadNodesAndCredentials);
|
|
const license = mockInstance(License);
|
|
const command = setupTestCommand(ClearLicenseCommand);
|
|
|
|
test('license:clear invokes shutdown() to release any floating entitlements', async () => {
|
|
await command.run();
|
|
|
|
expect(license.init).toHaveBeenCalledTimes(1);
|
|
expect(license.shutdown).toHaveBeenCalledTimes(1);
|
|
});
|
|
|
|
test('license:clear deletes the license from the DB even if shutdown() fails', async () => {
|
|
license.shutdown.mockRejectedValueOnce(new Error('shutdown failed'));
|
|
|
|
const settingsRepository = Container.get(SettingsRepository);
|
|
|
|
settingsRepository.delete = jest.fn();
|
|
|
|
await command.run();
|
|
|
|
expect(settingsRepository.delete).toHaveBeenCalledWith({
|
|
key: SETTINGS_LICENSE_CERT_KEY,
|
|
});
|
|
});
|