1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-04 15:02:09 +03:00

V5 bringing RESP3, Sentinel and TypeMapping to node-redis

RESP3 Support
   - Some commands responses in RESP3 aren't stable yet and therefore return an "untyped" ReplyUnion.
 
Sentinel

TypeMapping

Correctly types Multi commands

Note: some API changes to be further documented in v4-to-v5.md
This commit is contained in:
Shaya Potter
2024-10-15 17:46:52 +03:00
committed by GitHub
parent 2fc79bdfb3
commit b2d35c5286
1174 changed files with 45931 additions and 36274 deletions

View File

@@ -1,76 +1,71 @@
import { strict as assert } from 'assert';
import { strict as assert } from 'node:assert';
import testUtils, { GLOBAL } from '../test-utils';
import { transformArguments } from './HELLO';
import HELLO from './HELLO';
describe('HELLO', () => {
testUtils.isVersionGreaterThanHook([6]);
testUtils.isVersionGreaterThanHook([6]);
describe('transformArguments', () => {
it('simple', () => {
assert.deepEqual(
transformArguments(),
['HELLO']
);
});
it('with protover', () => {
assert.deepEqual(
transformArguments({
protover: 3
}),
['HELLO', '3']
);
});
it('with protover, auth', () => {
assert.deepEqual(
transformArguments({
protover: 3,
auth: {
username: 'username',
password: 'password'
}
}),
['HELLO', '3', 'AUTH', 'username', 'password']
);
});
it('with protover, clientName', () => {
assert.deepEqual(
transformArguments({
protover: 3,
clientName: 'clientName'
}),
['HELLO', '3', 'SETNAME', 'clientName']
);
});
it('with protover, auth, clientName', () => {
assert.deepEqual(
transformArguments({
protover: 3,
auth: {
username: 'username',
password: 'password'
},
clientName: 'clientName'
}),
['HELLO', '3', 'AUTH', 'username', 'password', 'SETNAME', 'clientName']
);
});
describe('transformArguments', () => {
it('simple', () => {
assert.deepEqual(
HELLO.transformArguments(),
['HELLO']
);
});
testUtils.testWithClient('client.hello', async client => {
const reply = await client.hello();
assert.equal(reply.server, 'redis');
assert.equal(typeof reply.version, 'string');
assert.equal(reply.proto, 2);
assert.equal(typeof reply.id, 'number');
assert.equal(reply.mode, 'standalone');
assert.equal(reply.role, 'master');
assert.deepEqual(reply.modules, []);
}, {
...GLOBAL.SERVERS.OPEN,
minimumDockerVersion: [6, 2]
it('with protover', () => {
assert.deepEqual(
HELLO.transformArguments(3),
['HELLO', '3']
);
});
it('with protover, AUTH', () => {
assert.deepEqual(
HELLO.transformArguments(3, {
AUTH: {
username: 'username',
password: 'password'
}
}),
['HELLO', '3', 'AUTH', 'username', 'password']
);
});
it('with protover, SETNAME', () => {
assert.deepEqual(
HELLO.transformArguments(3, {
SETNAME: 'name'
}),
['HELLO', '3', 'SETNAME', 'name']
);
});
it('with protover, AUTH, SETNAME', () => {
assert.deepEqual(
HELLO.transformArguments(3, {
AUTH: {
username: 'username',
password: 'password'
},
SETNAME: 'name'
}),
['HELLO', '3', 'AUTH', 'username', 'password', 'SETNAME', 'name']
);
});
});
testUtils.testWithClient('client.hello', async client => {
const reply = await client.hello();
assert.equal(reply.server, 'redis');
assert.equal(typeof reply.version, 'string');
assert.equal(reply.proto, 2);
assert.equal(typeof reply.id, 'number');
assert.equal(reply.mode, 'standalone');
assert.equal(reply.role, 'master');
assert.ok(reply.modules instanceof Array);
}, {
...GLOBAL.SERVERS.OPEN,
minimumDockerVersion: [6, 2]
});
});