mirror of
https://github.com/directus/directus.git
synced 2026-04-25 03:00:53 -04:00
46 lines
969 B
TypeScript
46 lines
969 B
TypeScript
import { afterEach, beforeAll, expect, test, vi } from 'vitest';
|
|
|
|
import logger from '../logger.js';
|
|
import { validateEnv } from './validate-env.js';
|
|
|
|
vi.mock('../env.js', async () => {
|
|
const { mockEnv } = await import('../__utils__/mock-env.js');
|
|
return mockEnv({
|
|
env: {
|
|
PRESENT_TEST_VARIABLE: 'true',
|
|
},
|
|
});
|
|
});
|
|
|
|
vi.mock('../logger', () => ({
|
|
default: {
|
|
error: vi.fn(),
|
|
},
|
|
}));
|
|
|
|
vi.mock('process', () => ({
|
|
exit: vi.fn(),
|
|
}));
|
|
|
|
beforeAll(() => {
|
|
vi.spyOn(process, 'exit').mockImplementation(() => undefined as never);
|
|
});
|
|
|
|
afterEach(() => {
|
|
vi.clearAllMocks();
|
|
});
|
|
|
|
test('should not have any error when key is present', () => {
|
|
validateEnv(['PRESENT_TEST_VARIABLE']);
|
|
|
|
expect(logger.error).not.toHaveBeenCalled();
|
|
expect(process.exit).not.toHaveBeenCalled();
|
|
});
|
|
|
|
test('should have error when key is missing', () => {
|
|
validateEnv(['ABSENT_TEST_VARIABLE']);
|
|
|
|
expect(logger.error).toHaveBeenCalled();
|
|
expect(process.exit).toHaveBeenCalled();
|
|
});
|