2025-07-15 16:24:31 -06:00
|
|
|
const fs = require('fs');
|
|
|
|
|
|
|
|
describe('cacheConfig', () => {
|
|
|
|
let originalEnv;
|
|
|
|
let originalReadFileSync;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
originalEnv = { ...process.env };
|
|
|
|
originalReadFileSync = fs.readFileSync;
|
|
|
|
|
|
|
|
// Clear all related env vars first
|
|
|
|
delete process.env.REDIS_URI;
|
|
|
|
delete process.env.REDIS_CA;
|
|
|
|
delete process.env.REDIS_KEY_PREFIX_VAR;
|
|
|
|
delete process.env.REDIS_KEY_PREFIX;
|
|
|
|
delete process.env.USE_REDIS;
|
2025-08-16 19:41:53 +01:00
|
|
|
delete process.env.USE_REDIS_CLUSTER;
|
2025-07-25 09:00:02 -06:00
|
|
|
delete process.env.REDIS_PING_INTERVAL;
|
2025-07-25 08:23:36 -06:00
|
|
|
delete process.env.FORCED_IN_MEMORY_CACHE_NAMESPACES;
|
2025-07-15 16:24:31 -06:00
|
|
|
|
|
|
|
// Clear require cache
|
|
|
|
jest.resetModules();
|
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
process.env = originalEnv;
|
|
|
|
fs.readFileSync = originalReadFileSync;
|
|
|
|
jest.resetModules();
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('REDIS_KEY_PREFIX validation and resolution', () => {
|
|
|
|
test('should throw error when both REDIS_KEY_PREFIX_VAR and REDIS_KEY_PREFIX are set', () => {
|
|
|
|
process.env.REDIS_KEY_PREFIX_VAR = 'DEPLOYMENT_ID';
|
|
|
|
process.env.REDIS_KEY_PREFIX = 'manual-prefix';
|
|
|
|
|
|
|
|
expect(() => {
|
|
|
|
require('./cacheConfig');
|
|
|
|
}).toThrow('Only either REDIS_KEY_PREFIX_VAR or REDIS_KEY_PREFIX can be set.');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('should resolve REDIS_KEY_PREFIX from variable reference', () => {
|
|
|
|
process.env.REDIS_KEY_PREFIX_VAR = 'DEPLOYMENT_ID';
|
|
|
|
process.env.DEPLOYMENT_ID = 'test-deployment-123';
|
|
|
|
|
|
|
|
const { cacheConfig } = require('./cacheConfig');
|
|
|
|
expect(cacheConfig.REDIS_KEY_PREFIX).toBe('test-deployment-123');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('should use direct REDIS_KEY_PREFIX value', () => {
|
|
|
|
process.env.REDIS_KEY_PREFIX = 'direct-prefix';
|
|
|
|
|
|
|
|
const { cacheConfig } = require('./cacheConfig');
|
|
|
|
expect(cacheConfig.REDIS_KEY_PREFIX).toBe('direct-prefix');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('should default to empty string when no prefix is configured', () => {
|
|
|
|
const { cacheConfig } = require('./cacheConfig');
|
|
|
|
expect(cacheConfig.REDIS_KEY_PREFIX).toBe('');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('should handle empty variable reference', () => {
|
|
|
|
process.env.REDIS_KEY_PREFIX_VAR = 'EMPTY_VAR';
|
|
|
|
process.env.EMPTY_VAR = '';
|
|
|
|
|
|
|
|
const { cacheConfig } = require('./cacheConfig');
|
|
|
|
expect(cacheConfig.REDIS_KEY_PREFIX).toBe('');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('should handle undefined variable reference', () => {
|
|
|
|
process.env.REDIS_KEY_PREFIX_VAR = 'UNDEFINED_VAR';
|
|
|
|
|
|
|
|
const { cacheConfig } = require('./cacheConfig');
|
|
|
|
expect(cacheConfig.REDIS_KEY_PREFIX).toBe('');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('USE_REDIS and REDIS_URI validation', () => {
|
|
|
|
test('should throw error when USE_REDIS is enabled but REDIS_URI is not set', () => {
|
|
|
|
process.env.USE_REDIS = 'true';
|
|
|
|
|
|
|
|
expect(() => {
|
|
|
|
require('./cacheConfig');
|
|
|
|
}).toThrow('USE_REDIS is enabled but REDIS_URI is not set.');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('should not throw error when USE_REDIS is enabled and REDIS_URI is set', () => {
|
|
|
|
process.env.USE_REDIS = 'true';
|
|
|
|
process.env.REDIS_URI = 'redis://localhost:6379';
|
|
|
|
|
|
|
|
expect(() => {
|
|
|
|
require('./cacheConfig');
|
|
|
|
}).not.toThrow();
|
|
|
|
});
|
|
|
|
|
|
|
|
test('should handle empty REDIS_URI when USE_REDIS is enabled', () => {
|
|
|
|
process.env.USE_REDIS = 'true';
|
|
|
|
process.env.REDIS_URI = '';
|
|
|
|
|
|
|
|
expect(() => {
|
|
|
|
require('./cacheConfig');
|
|
|
|
}).toThrow('USE_REDIS is enabled but REDIS_URI is not set.');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2025-08-16 19:41:53 +01:00
|
|
|
describe('USE_REDIS_CLUSTER configuration', () => {
|
|
|
|
test('should default to false when USE_REDIS_CLUSTER is not set', () => {
|
|
|
|
const { cacheConfig } = require('./cacheConfig');
|
|
|
|
expect(cacheConfig.USE_REDIS_CLUSTER).toBe(false);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('should be false when USE_REDIS_CLUSTER is set to false', () => {
|
|
|
|
process.env.USE_REDIS_CLUSTER = 'false';
|
|
|
|
|
|
|
|
const { cacheConfig } = require('./cacheConfig');
|
|
|
|
expect(cacheConfig.USE_REDIS_CLUSTER).toBe(false);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('should be true when USE_REDIS_CLUSTER is set to true', () => {
|
|
|
|
process.env.USE_REDIS_CLUSTER = 'true';
|
|
|
|
|
|
|
|
const { cacheConfig } = require('./cacheConfig');
|
|
|
|
expect(cacheConfig.USE_REDIS_CLUSTER).toBe(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('should work with USE_REDIS enabled and REDIS_URI set', () => {
|
|
|
|
process.env.USE_REDIS_CLUSTER = 'true';
|
|
|
|
process.env.USE_REDIS = 'true';
|
|
|
|
process.env.REDIS_URI = 'redis://localhost:6379';
|
|
|
|
|
|
|
|
const { cacheConfig } = require('./cacheConfig');
|
|
|
|
expect(cacheConfig.USE_REDIS_CLUSTER).toBe(true);
|
|
|
|
expect(cacheConfig.USE_REDIS).toBe(true);
|
|
|
|
expect(cacheConfig.REDIS_URI).toBe('redis://localhost:6379');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2025-07-15 16:24:31 -06:00
|
|
|
describe('REDIS_CA file reading', () => {
|
|
|
|
test('should be null when REDIS_CA is not set', () => {
|
|
|
|
const { cacheConfig } = require('./cacheConfig');
|
|
|
|
expect(cacheConfig.REDIS_CA).toBeNull();
|
|
|
|
});
|
|
|
|
});
|
2025-07-25 08:23:36 -06:00
|
|
|
|
2025-07-25 09:00:02 -06:00
|
|
|
describe('REDIS_PING_INTERVAL configuration', () => {
|
|
|
|
test('should default to 0 when REDIS_PING_INTERVAL is not set', () => {
|
|
|
|
const { cacheConfig } = require('./cacheConfig');
|
|
|
|
expect(cacheConfig.REDIS_PING_INTERVAL).toBe(0);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('should use provided REDIS_PING_INTERVAL value', () => {
|
|
|
|
process.env.REDIS_PING_INTERVAL = '300';
|
|
|
|
|
|
|
|
const { cacheConfig } = require('./cacheConfig');
|
|
|
|
expect(cacheConfig.REDIS_PING_INTERVAL).toBe(300);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2025-07-25 08:23:36 -06:00
|
|
|
describe('FORCED_IN_MEMORY_CACHE_NAMESPACES validation', () => {
|
|
|
|
test('should parse comma-separated cache keys correctly', () => {
|
|
|
|
process.env.FORCED_IN_MEMORY_CACHE_NAMESPACES = ' ROLES, STATIC_CONFIG ,MESSAGES ';
|
|
|
|
|
|
|
|
const { cacheConfig } = require('./cacheConfig');
|
|
|
|
expect(cacheConfig.FORCED_IN_MEMORY_CACHE_NAMESPACES).toEqual([
|
|
|
|
'ROLES',
|
|
|
|
'STATIC_CONFIG',
|
|
|
|
'MESSAGES',
|
|
|
|
]);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('should throw error for invalid cache keys', () => {
|
|
|
|
process.env.FORCED_IN_MEMORY_CACHE_NAMESPACES = 'INVALID_KEY,ROLES';
|
|
|
|
|
|
|
|
expect(() => {
|
|
|
|
require('./cacheConfig');
|
|
|
|
}).toThrow('Invalid cache keys in FORCED_IN_MEMORY_CACHE_NAMESPACES: INVALID_KEY');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('should handle empty string gracefully', () => {
|
|
|
|
process.env.FORCED_IN_MEMORY_CACHE_NAMESPACES = '';
|
|
|
|
|
|
|
|
const { cacheConfig } = require('./cacheConfig');
|
|
|
|
expect(cacheConfig.FORCED_IN_MEMORY_CACHE_NAMESPACES).toEqual([]);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('should handle undefined env var gracefully', () => {
|
|
|
|
const { cacheConfig } = require('./cacheConfig');
|
|
|
|
expect(cacheConfig.FORCED_IN_MEMORY_CACHE_NAMESPACES).toEqual([]);
|
|
|
|
});
|
|
|
|
});
|
2025-07-15 16:24:31 -06:00
|
|
|
});
|