unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
50 lines • 1.85 kB
JavaScript
import { withDbLock } from './db-lock.js';
import { getDbConfig } from '../../test/e2e/helpers/database-config.js';
test('should lock access to any action', async () => {
const lock = withDbLock(getDbConfig());
const asyncAction = (input) => Promise.resolve(`result: ${input}`);
const result = await lock(asyncAction)('data');
expect(result).toBe('result: data');
});
const ms = (millis) => new Promise((resolve) => {
setTimeout(() => resolve('time'), millis);
});
test('should await other actions on lock', async () => {
const lock = withDbLock(getDbConfig());
const results = [];
const slowAsyncAction = (input) => {
return new Promise((resolve) => {
setTimeout(() => {
results.push(input);
resolve(input);
}, 200);
});
};
const fastAction = async (input) => {
results.push(input);
};
const lockedAction = lock(slowAsyncAction);
const lockedAnotherAction = lock(fastAction);
// deliberately skipped await to simulate another server running slow operation
lockedAction('first');
await ms(100); // start fast action after slow action established DB connection
await lockedAnotherAction('second');
expect(results).toStrictEqual(['first', 'second']);
});
test('should handle lock timeout', async () => {
const timeoutMs = 10;
let loggedError = '';
const lock = withDbLock(getDbConfig(), {
lockKey: 1,
timeout: timeoutMs,
logger: {
error(msg) {
loggedError = msg;
},
},
});
const asyncAction = () => ms(100);
await expect(lock(asyncAction)()).rejects.toStrictEqual(new Error('Query read timeout'));
expect(loggedError).toBe('Locking error: Query read timeout');
});
//# sourceMappingURL=db-lock.test.js.map