1
0
mirror of https://github.com/redis/node-redis.git synced 2025-12-11 09:22:35 +03:00
Files
node-redis/packages/client/lib/client/index.spec.ts
Nikolay Karadzhov e138cbd05b fix(init): option parsing (#3086)
* refactor(maint): rename options

* fix(init): option parsing

* refactor(client): #options cannot be undefined
2025-09-23 14:24:37 +03:00

1032 lines
29 KiB
TypeScript

import { strict as assert } from 'node:assert';
import testUtils, { GLOBAL, waitTillBeenCalled } from '../test-utils';
import RedisClient, { RedisClientOptions, RedisClientType } from '.';
import { AbortError, ClientClosedError, ClientOfflineError, ConnectionTimeoutError, DisconnectsClientError, ErrorReply, MultiErrorReply, TimeoutError, WatchError } from '../errors';
import { defineScript } from '../lua-script';
import { spy, stub } from 'sinon';
import { once } from 'node:events';
import { MATH_FUNCTION, loadMathFunction } from '../commands/FUNCTION_LOAD.spec';
import { RESP_TYPES } from '../RESP/decoder';
import { BlobStringReply, NumberReply } from '../RESP/types';
import { SortedSetMember } from '../commands/generic-transformers';
import { CommandParser } from './parser';
export const SQUARE_SCRIPT = defineScript({
SCRIPT:
`local number = redis.call('GET', KEYS[1])
return number * number`,
NUMBER_OF_KEYS: 1,
FIRST_KEY_INDEX: 0,
parseCommand(parser: CommandParser, key: string) {
parser.pushKey(key);
},
transformReply: undefined as unknown as () => NumberReply
});
describe('Client', () => {
describe('initialization', () => {
describe('clientSideCache validation', () => {
const clientSideCacheConfig = { ttl: 0, maxEntries: 0 };
it('should throw error when clientSideCache is enabled with RESP 2', () => {
assert.throws(
() => new RedisClient({
clientSideCache: clientSideCacheConfig,
RESP: 2,
}),
new Error('Client Side Caching is only supported with RESP3')
);
});
it('should throw error when clientSideCache is enabled with RESP undefined', () => {
assert.throws(
() => new RedisClient({
clientSideCache: clientSideCacheConfig,
}),
new Error('Client Side Caching is only supported with RESP3')
);
});
it('should not throw when clientSideCache is enabled with RESP 3', () => {
assert.doesNotThrow(() =>
new RedisClient({
clientSideCache: clientSideCacheConfig,
RESP: 3,
})
);
});
});
});
describe('parseURL', () => {
it('redis://user:secret@localhost:6379/0', async () => {
const result = RedisClient.parseURL('redis://user:secret@localhost:6379/0');
const expected: RedisClientOptions = {
socket: {
host: 'localhost',
port: 6379,
tls: false
},
username: 'user',
password: 'secret',
database: 0,
credentialsProvider: {
type: 'async-credentials-provider',
credentials: async () => ({
password: 'secret',
username: 'user'
})
}
};
// Compare everything except the credentials function
const { credentialsProvider: resultCredProvider, ...resultRest } = result;
const { credentialsProvider: expectedCredProvider, ...expectedRest } = expected;
// Compare non-function properties
assert.deepEqual(resultRest, expectedRest);
if (result?.credentialsProvider?.type === 'async-credentials-provider'
&& expected?.credentialsProvider?.type === 'async-credentials-provider') {
// Compare the actual output of the credentials functions
const resultCreds = await result.credentialsProvider?.credentials();
const expectedCreds = await expected.credentialsProvider?.credentials();
assert.deepEqual(resultCreds, expectedCreds);
} else {
assert.fail('Credentials provider type mismatch');
}
});
it('rediss://user:secret@localhost:6379/0', async () => {
const result = RedisClient.parseURL('rediss://user:secret@localhost:6379/0');
const expected: RedisClientOptions = {
socket: {
host: 'localhost',
port: 6379,
tls: true
},
username: 'user',
password: 'secret',
database: 0,
credentialsProvider: {
credentials: async () => ({
password: 'secret',
username: 'user'
}),
type: 'async-credentials-provider'
}
};
// Compare everything except the credentials function
const { credentialsProvider: resultCredProvider, ...resultRest } = result;
const { credentialsProvider: expectedCredProvider, ...expectedRest } = expected;
// Compare non-function properties
assert.deepEqual(resultRest, expectedRest);
assert.equal(resultCredProvider?.type, expectedCredProvider?.type);
if (result?.credentialsProvider?.type === 'async-credentials-provider' &&
expected?.credentialsProvider?.type === 'async-credentials-provider') {
// Compare the actual output of the credentials functions
const resultCreds = await result.credentialsProvider.credentials();
const expectedCreds = await expected.credentialsProvider.credentials();
assert.deepEqual(resultCreds, expectedCreds);
} else {
assert.fail('Credentials provider type mismatch');
}
})
it('Invalid protocol', () => {
assert.throws(
() => RedisClient.parseURL('redi://user:secret@localhost:6379/0'),
TypeError
);
});
it('Invalid pathname', () => {
assert.throws(
() => RedisClient.parseURL('redis://user:secret@localhost:6379/NaN'),
TypeError
);
});
it('redis://localhost', () => {
assert.deepEqual(
RedisClient.parseURL('redis://localhost'),
{
socket: {
host: 'localhost',
tls: false
}
}
);
});
it('DB in URL should be parsed', async () => {
const client = RedisClient.create({
url: 'redis://user:secret@localhost:6379/5'
});
assert.equal(client?.options?.database, 5);
})
});
describe('parseOptions', () => {
it('should throw error if tls socket option is set to true and the url protocol is "redis:"', () => {
assert.throws(
() => RedisClient.parseOptions({
url: 'redis://localhost',
socket: {
tls: true
}
}),
TypeError
);
});
it('should throw error if tls socket option is set to false and the url protocol is "rediss:"', () => {
assert.throws(
() => RedisClient.parseOptions({
url: 'rediss://localhost',
socket: {
tls: false
}
}),
TypeError
);
});
it('should not throw when tls socket option and url protocol matches"', () => {
assert.equal(
RedisClient.parseOptions({
url: 'rediss://localhost',
socket: {
tls: true
}
}).socket.tls,
true
);
assert.equal(
RedisClient.parseOptions({
url: 'redis://localhost',
socket: {
tls: false
}
}).socket.tls,
false
);
});
});
describe('authentication', () => {
testUtils.testWithClient('Client should be authenticated', async client => {
assert.equal(
await client.ping(),
'PONG'
);
}, GLOBAL.SERVERS.PASSWORD);
testUtils.testWithClient('Client can authenticate asynchronously ', async client => {
assert.equal(
await client.ping(),
'PONG'
);
}, GLOBAL.SERVERS.ASYNC_BASIC_AUTH);
testUtils.testWithClient('Client can authenticate using the streaming credentials provider for initial token acquisition',
async client => {
assert.equal(
await client.ping(),
'PONG'
);
}, GLOBAL.SERVERS.STREAMING_AUTH);
testUtils.testWithClient('should execute AUTH before SELECT', async client => {
assert.equal(
(await client.clientInfo()).db,
2
);
}, {
...GLOBAL.SERVERS.PASSWORD,
clientOptions: {
...GLOBAL.SERVERS.PASSWORD.clientOptions,
database: 2
},
minimumDockerVersion: [6, 2]
});
});
testUtils.testWithClient('should set connection name', async client => {
assert.equal(
await client.clientGetName(),
'name'
);
}, {
...GLOBAL.SERVERS.OPEN,
clientOptions: {
name: 'name'
}
});
// TODO: fix & uncomment
// testUtils.testWithClient('connect, ready and end events', async client => {
// await Promise.all([
// once(client, 'connect'),
// once(client, 'ready'),
// client.connect()
// ]);
// await Promise.all([
// once(client, 'end'),
// client.close()
// ]);
// }, {
// ...GLOBAL.SERVERS.OPEN,
// disableClientSetup: true
// });
describe('sendCommand', () => {
testUtils.testWithClient('PING', async client => {
assert.equal(await client.sendCommand(['PING']), 'PONG');
}, GLOBAL.SERVERS.OPEN);
testUtils.testWithClient('Unactivated AbortController should not abort', async client => {
await client.sendCommand(['PING'], {
abortSignal: new AbortController().signal
});
}, GLOBAL.SERVERS.OPEN);
testUtils.testWithClient('AbortError', async client => {
await blockSetImmediate(async () => {
await assert.rejects(client.sendCommand(['PING'], {
abortSignal: AbortSignal.timeout(5)
}), AbortError);
})
}, GLOBAL.SERVERS.OPEN);
testUtils.testWithClient('Timeout with custom timeout config', async client => {
await blockSetImmediate(async () => {
await assert.rejects(client.sendCommand(['PING'], {
timeout: 5
}), TimeoutError);
})
}, GLOBAL.SERVERS.OPEN);
testUtils.testWithCluster('Timeout with custom timeout config (cluster)', async cluster => {
await blockSetImmediate(async () => {
await assert.rejects(cluster.sendCommand(undefined, true, ['PING'], {
timeout: 5
}), TimeoutError);
})
}, GLOBAL.CLUSTERS.OPEN);
testUtils.testWithClientSentinel('Timeout with custom timeout config (sentinel)', async sentinel => {
await blockSetImmediate(async () => {
await assert.rejects(sentinel.sendCommand(true, ['PING'], {
timeout: 5
}), TimeoutError);
})
}, GLOBAL.CLUSTERS.OPEN);
testUtils.testWithClient('Timeout with global timeout config', async client => {
await blockSetImmediate(async () => {
await assert.rejects(client.ping(), TimeoutError);
await assert.rejects(client.sendCommand(['PING']), TimeoutError);
});
}, {
...GLOBAL.SERVERS.OPEN,
clientOptions: {
commandOptions: {
timeout: 5
}
}
});
testUtils.testWithCluster('Timeout with global timeout config (cluster)', async cluster => {
await blockSetImmediate(async () => {
await assert.rejects(cluster.HSET('key', 'foo', 'value'), TimeoutError);
await assert.rejects(cluster.sendCommand(undefined, true, ['PING']), TimeoutError);
});
}, {
...GLOBAL.CLUSTERS.OPEN,
clusterConfiguration: {
commandOptions: {
timeout: 5
}
}
});
testUtils.testWithClientSentinel('Timeout with global timeout config (sentinel)', async sentinel => {
await blockSetImmediate(async () => {
await assert.rejects(sentinel.HSET('key', 'foo', 'value'), TimeoutError);
await assert.rejects(sentinel.sendCommand(true, ['PING']), TimeoutError);
});
}, {
...GLOBAL.SENTINEL.OPEN,
clientOptions: {
commandOptions: {
timeout: 5
}
}
});
testUtils.testWithClient('undefined and null should not break the client', async client => {
await assert.rejects(
client.sendCommand([null as any, undefined as any]),
TypeError
);
assert.equal(
await client.ping(),
'PONG'
);
}, GLOBAL.SERVERS.OPEN);
});
describe('multi', () => {
testUtils.testWithClient('simple', async client => {
assert.deepEqual(
await client.multi()
.ping()
.set('key', 'value')
.get('key')
.exec(),
['PONG', 'OK', 'value']
);
}, GLOBAL.SERVERS.OPEN);
testUtils.testWithClient('should reject the whole chain on error', client => {
return assert.rejects(
client.multi()
.ping()
.addCommand(['INVALID COMMAND'])
.ping()
.exec()
);
}, GLOBAL.SERVERS.OPEN);
testUtils.testWithClient('should reject the whole chain upon client disconnect', async client => {
await client.close();
return assert.rejects(
client.multi()
.ping()
.set('key', 'value')
.get('key')
.exec(),
ClientClosedError
);
}, GLOBAL.SERVERS.OPEN);
testUtils.testWithClient('with script', async client => {
assert.deepEqual(
await client.multi()
.set('key', '2')
.square('key')
.exec(),
['OK', 4]
);
}, {
...GLOBAL.SERVERS.OPEN,
clientOptions: {
scripts: {
square: SQUARE_SCRIPT
}
}
});
testUtils.testWithClient('WatchError', async client => {
await client.watch('key');
const duplicate = await client.duplicate().connect();
try {
await client.set(
'key',
'1'
);
} finally {
duplicate.destroy();
}
await assert.rejects(
client.multi()
.decr('key')
.exec(),
WatchError
);
}, GLOBAL.SERVERS.OPEN);
describe('execAsPipeline', () => {
testUtils.testWithClient('exec(true)', async client => {
assert.deepEqual(
await client.multi()
.ping()
.exec(true),
['PONG']
);
}, GLOBAL.SERVERS.OPEN);
testUtils.testWithClient('empty execAsPipeline', async client => {
assert.deepEqual(
await client.multi().execAsPipeline(),
[]
);
}, GLOBAL.SERVERS.OPEN);
});
testUtils.testWithClient('should remember selected db', async client => {
await client.multi()
.select(1)
.exec();
await killClient(client);
assert.equal(
(await client.clientInfo()).db,
1
);
}, {
...GLOBAL.SERVERS.OPEN,
minimumDockerVersion: [6, 2] // CLIENT INFO
});
testUtils.testWithClient('should handle error replies (#2665)', async client => {
await assert.rejects(
client.multi()
.set('key', 'value')
.hGetAll('key')
.exec(),
err => {
assert.ok(err instanceof MultiErrorReply);
assert.equal(err.replies.length, 2);
assert.deepEqual(err.errorIndexes, [1]);
assert.ok(err.replies[1] instanceof ErrorReply);
// @ts-ignore TS2802
assert.deepEqual([...err.errors()], [err.replies[1]]);
return true;
}
);
}, GLOBAL.SERVERS.OPEN);
});
testUtils.testWithClient('scripts', async client => {
const [, reply] = await Promise.all([
client.set('key', '2'),
client.square('key')
]);
assert.equal(reply, 4);
}, {
...GLOBAL.SERVERS.OPEN,
clientOptions: {
scripts: {
square: SQUARE_SCRIPT
}
}
});
const module = {
echo: {
parseCommand(parser: CommandParser, message: string) {
parser.push('ECHO', message);
},
transformReply: undefined as unknown as () => BlobStringReply
}
};
testUtils.testWithClient('modules', async client => {
assert.equal(
await client.module.echo('message'),
'message'
);
}, {
...GLOBAL.SERVERS.OPEN,
clientOptions: {
modules: {
module
}
}
});
testUtils.testWithClient('functions', async client => {
const [, , reply] = await Promise.all([
loadMathFunction(client),
client.set('key', '2'),
client.math.square('key')
]);
assert.equal(reply, 4);
}, {
...GLOBAL.SERVERS.OPEN,
minimumDockerVersion: [7, 0],
clientOptions: {
functions: {
math: MATH_FUNCTION.library
}
}
});
testUtils.testWithClient('duplicate should reuse command options', async client => {
const duplicate = client.duplicate();
await duplicate.connect();
try {
assert.deepEqual(
await duplicate.ping(),
Buffer.from('PONG')
);
} finally {
duplicate.close();
}
}, {
...GLOBAL.SERVERS.OPEN,
clientOptions: {
commandOptions: {
typeMapping: {
[RESP_TYPES.SIMPLE_STRING]: Buffer
}
}
},
disableClientSetup: true,
});
async function killClient(
client: RedisClientType<any, any, any, any, any>,
errorClient: RedisClientType<any, any, any, any, any> = client
): Promise<void> {
const onceErrorPromise = once(errorClient, 'error');
await client.sendCommand(['QUIT']);
await Promise.all([
onceErrorPromise,
assert.rejects(client.ping())
]);
}
testUtils.testWithClient('should reconnect when socket disconnects', async client => {
await killClient(client);
await assert.doesNotReject(client.ping());
}, GLOBAL.SERVERS.OPEN);
testUtils.testWithClient('should remember selected db', async client => {
await client.select(1);
await killClient(client);
assert.equal(
(await client.clientInfo()).db,
1
);
}, {
...GLOBAL.SERVERS.OPEN,
minimumDockerVersion: [6, 2] // CLIENT INFO
});
testUtils.testWithClient('scanIterator', async client => {
const entries: Array<string> = [],
keys = new Set<string>();
for (let i = 0; i < 100; i++) {
const key = i.toString();
keys.add(key);
entries.push(key, '');
}
await client.mSet(entries);
const results = new Set();
for await (const keys of client.scanIterator()) {
for (const key of keys) {
results.add(key);
}
}
assert.deepEqual(keys, results);
}, GLOBAL.SERVERS.OPEN);
testUtils.testWithClient('hScanIterator', async client => {
const hash: Record<string, string> = {};
for (let i = 0; i < 100; i++) {
hash[i.toString()] = i.toString();
}
await client.hSet('key', hash);
const results: Record<string, string> = {};
for await (const entries of client.hScanIterator('key')) {
for (const { field, value } of entries) {
results[field] = value;
}
}
assert.deepEqual(hash, results);
}, GLOBAL.SERVERS.OPEN);
testUtils.testWithClient('hScanNoValuesIterator', async client => {
const hash: Record<string, string> = {};
const expectedFields: Array<string> = [];
for (let i = 0; i < 100; i++) {
hash[i.toString()] = i.toString();
expectedFields.push(i.toString());
}
await client.hSet('key', hash);
const actualFields: Array<string> = [];
for await (const fields of client.hScanNoValuesIterator('key')) {
for (const field of fields) {
actualFields.push(field);
}
}
function sort(a: string, b: string) {
return Number(a) - Number(b);
}
assert.deepEqual(actualFields.sort(sort), expectedFields);
}, {
...GLOBAL.SERVERS.OPEN,
minimumDockerVersion: [7, 4]
});
testUtils.testWithClient('sScanIterator', async client => {
const members = new Set<string>();
for (let i = 0; i < 100; i++) {
members.add(i.toString());
}
await client.sAdd('key', Array.from(members));
const results = new Set<string>();
for await (const members of client.sScanIterator('key')) {
for (const member of members) {
results.add(member);
}
}
assert.deepEqual(members, results);
}, GLOBAL.SERVERS.OPEN);
testUtils.testWithClient('zScanIterator', async client => {
const members: Array<SortedSetMember> = [],
map = new Map<string, number>();
for (let i = 0; i < 100; i++) {
const member = {
value: i.toString(),
score: 1
};
map.set(member.value, member.score);
members.push(member);
}
await client.zAdd('key', members);
const results = new Map<string, number>();
for await (const members of client.zScanIterator('key')) {
for (const { value, score } of members) {
results.set(value, score);
}
}
assert.deepEqual(map, results);
}, GLOBAL.SERVERS.OPEN);
describe('PubSub', () => {
testUtils.testWithClient('should be able to publish and subscribe to messages', async publisher => {
function assertStringListener(message: string, channel: string) {
assert.equal(typeof message, 'string');
assert.equal(typeof channel, 'string');
}
function assertBufferListener(message: Buffer, channel: Buffer) {
assert.ok(message instanceof Buffer);
assert.ok(channel instanceof Buffer);
}
const subscriber = await publisher.duplicate().connect();
try {
const channelListener1 = spy(assertBufferListener),
channelListener2 = spy(assertStringListener),
patternListener = spy(assertStringListener);
await Promise.all([
subscriber.subscribe('channel', channelListener1, true),
subscriber.subscribe('channel', channelListener2),
subscriber.pSubscribe('channel*', patternListener)
]);
await Promise.all([
waitTillBeenCalled(channelListener1),
waitTillBeenCalled(channelListener2),
waitTillBeenCalled(patternListener),
publisher.publish(Buffer.from('channel'), Buffer.from('message'))
]);
assert.ok(channelListener1.calledOnceWithExactly(Buffer.from('message'), Buffer.from('channel')));
assert.ok(channelListener2.calledOnceWithExactly('message', 'channel'));
assert.ok(patternListener.calledOnceWithExactly('message', 'channel'));
await subscriber.unsubscribe('channel', channelListener1, true);
await Promise.all([
waitTillBeenCalled(channelListener2),
waitTillBeenCalled(patternListener),
publisher.publish('channel', 'message')
]);
assert.ok(channelListener1.calledOnce);
assert.ok(channelListener2.calledTwice);
assert.ok(channelListener2.secondCall.calledWithExactly('message', 'channel'));
assert.ok(patternListener.calledTwice);
assert.ok(patternListener.secondCall.calledWithExactly('message', 'channel'));
await subscriber.unsubscribe('channel');
await Promise.all([
waitTillBeenCalled(patternListener),
publisher.publish('channel', 'message')
]);
assert.ok(channelListener1.calledOnce);
assert.ok(channelListener2.calledTwice);
assert.ok(patternListener.calledThrice);
assert.ok(patternListener.thirdCall.calledWithExactly('message', 'channel'));
await subscriber.pUnsubscribe();
await publisher.publish('channel', 'message');
assert.ok(channelListener1.calledOnce);
assert.ok(channelListener2.calledTwice);
assert.ok(patternListener.calledThrice);
// should be able to send commands when unsubsribed from all channels (see #1652)
await assert.doesNotReject(subscriber.ping());
} finally {
subscriber.destroy();
}
}, GLOBAL.SERVERS.OPEN);
testUtils.testWithClient('should resubscribe', async publisher => {
const subscriber = await publisher.duplicate().connect();
try {
const channelListener = spy();
await subscriber.subscribe('channel', channelListener);
const patternListener = spy();
await subscriber.pSubscribe('channe*', patternListener);
await Promise.all([
once(subscriber, 'error'),
publisher.clientKill({
filter: 'SKIPME',
skipMe: true
})
]);
await once(subscriber, 'ready');
await Promise.all([
waitTillBeenCalled(channelListener),
waitTillBeenCalled(patternListener),
publisher.publish('channel', 'message')
]);
} finally {
subscriber.destroy();
}
}, GLOBAL.SERVERS.OPEN);
testUtils.testWithClient('should not fail when message arrives right after subscribe', async publisher => {
const subscriber = await publisher.duplicate().connect();
try {
await assert.doesNotReject(Promise.all([
subscriber.subscribe('channel', () => {
// noop
}),
publisher.publish('channel', 'message')
]));
} finally {
subscriber.destroy();
}
}, GLOBAL.SERVERS.OPEN);
testUtils.testWithClient('should be able to quit in PubSub mode', async client => {
await client.subscribe('channel', () => {
// noop
});
await assert.doesNotReject(client.quit());
assert.equal(client.isOpen, false);
}, GLOBAL.SERVERS.OPEN);
});
testUtils.testWithClient('ConnectionTimeoutError', async client => {
const promise = assert.rejects(client.connect(), ConnectionTimeoutError),
start = process.hrtime.bigint();
while (process.hrtime.bigint() - start < 1_000_000) {
// block the event loop for 1ms, to make sure the connection will timeout
}
await promise;
}, {
...GLOBAL.SERVERS.OPEN,
clientOptions: {
socket: {
connectTimeout: 1
}
},
disableClientSetup: true
});
testUtils.testWithClient('client.quit', async client => {
await client.connect();
const pingPromise = client.ping(),
quitPromise = client.quit();
assert.equal(client.isOpen, false);
const [ping, quit] = await Promise.all([
pingPromise,
quitPromise,
assert.rejects(client.ping(), ClientClosedError)
]);
assert.equal(ping, 'PONG');
assert.equal(quit, 'OK');
}, {
...GLOBAL.SERVERS.OPEN,
disableClientSetup: true
});
testUtils.testWithClient('client.disconnect', async client => {
const pingPromise = client.ping(),
disconnectPromise = client.disconnect();
assert.equal(client.isOpen, false);
await Promise.all([
assert.rejects(pingPromise, DisconnectsClientError),
assert.doesNotReject(disconnectPromise),
assert.rejects(client.ping(), ClientClosedError)
]);
}, GLOBAL.SERVERS.OPEN);
testUtils.testWithClient('should be able to connect after disconnect (see #1801)', async client => {
await client.disconnect();
await client.connect();
}, GLOBAL.SERVERS.OPEN);
testUtils.testWithClient('should be able to use ref and unref', client => {
client.unref();
client.ref();
}, GLOBAL.SERVERS.OPEN);
testUtils.testWithClient('pingInterval', async client => {
assert.deepEqual(
await once(client, 'ping-interval'),
['PONG']
);
}, {
...GLOBAL.SERVERS.OPEN,
clientOptions: {
pingInterval: 1
}
});
testUtils.testWithClient('should reject commands in connect phase when `disableOfflineQueue`', async client => {
const connectPromise = client.connect();
await assert.rejects(
client.ping(),
ClientOfflineError
);
await connectPromise;
await client.disconnect();
}, {
...GLOBAL.SERVERS.OPEN,
clientOptions: {
disableOfflineQueue: true
},
disableClientSetup: true
});
describe('MONITOR', () => {
testUtils.testWithClient('should be able to monitor commands', async client => {
const duplicate = await client.duplicate().connect(),
listener = spy(message => assert.equal(typeof message, 'string'));
await duplicate.monitor(listener);
try {
await Promise.all([
waitTillBeenCalled(listener),
client.ping()
]);
} finally {
duplicate.destroy();
}
}, GLOBAL.SERVERS.OPEN);
testUtils.testWithClient('should keep monitoring after reconnection', async client => {
const duplicate = await client.duplicate().connect(),
listener = spy(message => assert.equal(typeof message, 'string'));
await duplicate.monitor(listener);
try {
await Promise.all([
once(duplicate, 'error'),
client.clientKill({
filter: 'SKIPME',
skipMe: true
})
]);
await once(duplicate, 'ready');
await Promise.all([
waitTillBeenCalled(listener),
client.ping()
]);
} finally {
duplicate.destroy();
}
}, GLOBAL.SERVERS.OPEN);
testUtils.testWithClient('should be able to go back to "normal mode"', async client => {
await Promise.all([
client.monitor(() => { }),
client.reset()
]);
await assert.doesNotReject(client.ping());
}, GLOBAL.SERVERS.OPEN);
testUtils.testWithClient('should respect type mapping', async client => {
const duplicate = await client.duplicate().connect(),
listener = spy(message => assert.ok(message instanceof Buffer));
await duplicate.withTypeMapping({
[RESP_TYPES.SIMPLE_STRING]: Buffer
}).monitor(listener);
try {
await Promise.all([
waitTillBeenCalled(listener),
client.ping()
]);
} finally {
duplicate.destroy();
}
}, GLOBAL.SERVERS.OPEN);
});
});
/**
* Executes the provided function in a context where setImmediate is stubbed to not do anything.
* This blocks setImmediate callbacks from executing
*/
async function blockSetImmediate(fn: () => Promise<unknown>) {
let setImmediateStub: any;
try {
setImmediateStub = stub(global, 'setImmediate');
setImmediateStub.callsFake(() => {
//Dont call the callback, effectively blocking execution
});
await fn();
} finally {
if (setImmediateStub) {
setImmediateStub.restore();
}
}
}