You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-06 02:15:48 +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:
@@ -1,40 +1,48 @@
|
||||
import { strict as assert } from 'assert';
|
||||
import { strict as assert } from 'node:assert';
|
||||
import testUtils, { GLOBAL } from '../test-utils';
|
||||
import { RedisCommandArguments } from '.';
|
||||
import { GeoReplyWith } from './generic-transformers';
|
||||
import { transformArguments } from './GEORADIUS_WITH';
|
||||
import GEORADIUS_WITH from './GEORADIUS_WITH';
|
||||
import { GEO_REPLY_WITH } from './GEOSEARCH_WITH';
|
||||
import { CommandArguments } from '../RESP/types';
|
||||
|
||||
describe('GEORADIUS WITH', () => {
|
||||
it('transformArguments', () => {
|
||||
const expectedReply: RedisCommandArguments = ['GEORADIUS', 'key', '1', '2', '3', 'm', 'WITHDIST'];
|
||||
expectedReply.preserve = ['WITHDIST'];
|
||||
it('transformArguments', () => {
|
||||
const expectedReply: CommandArguments = ['GEORADIUS', 'key', '1', '2', '3', 'm', 'WITHDIST'];
|
||||
expectedReply.preserve = ['WITHDIST'];
|
||||
|
||||
assert.deepEqual(
|
||||
transformArguments('key', {
|
||||
longitude: 1,
|
||||
latitude: 2
|
||||
}, 3 , 'm', [GeoReplyWith.DISTANCE]),
|
||||
expectedReply
|
||||
);
|
||||
});
|
||||
assert.deepEqual(
|
||||
GEORADIUS_WITH.transformArguments('key', {
|
||||
longitude: 1,
|
||||
latitude: 2
|
||||
}, 3, 'm', [GEO_REPLY_WITH.DISTANCE]),
|
||||
expectedReply
|
||||
);
|
||||
});
|
||||
|
||||
testUtils.testWithClient('client.geoRadiusWith', async client => {
|
||||
assert.deepEqual(
|
||||
await client.geoRadiusWith('key', {
|
||||
longitude: 1,
|
||||
latitude: 2
|
||||
}, 3 , 'm', [GeoReplyWith.DISTANCE]),
|
||||
[]
|
||||
);
|
||||
}, GLOBAL.SERVERS.OPEN);
|
||||
testUtils.testAll('geoRadiusWith', async client => {
|
||||
const [, reply] = await Promise.all([
|
||||
client.geoAdd('key', {
|
||||
member: 'member',
|
||||
longitude: 1,
|
||||
latitude: 2
|
||||
}),
|
||||
client.geoRadiusWith('key', {
|
||||
longitude: 1,
|
||||
latitude: 2
|
||||
}, 1, 'm', [
|
||||
GEO_REPLY_WITH.HASH,
|
||||
GEO_REPLY_WITH.DISTANCE,
|
||||
GEO_REPLY_WITH.COORDINATES
|
||||
])
|
||||
]);
|
||||
|
||||
testUtils.testWithCluster('cluster.geoRadiusWith', async cluster => {
|
||||
assert.deepEqual(
|
||||
await cluster.geoRadiusWith('key', {
|
||||
longitude: 1,
|
||||
latitude: 2
|
||||
}, 3 , 'm', [GeoReplyWith.DISTANCE]),
|
||||
[]
|
||||
);
|
||||
}, GLOBAL.CLUSTERS.OPEN);
|
||||
assert.equal(reply.length, 1);
|
||||
assert.equal(reply[0].member, 'member');
|
||||
assert.equal(typeof reply[0].distance, 'string');
|
||||
assert.equal(typeof reply[0].hash, 'number');
|
||||
assert.equal(typeof reply[0].coordinates?.longitude, 'string');
|
||||
assert.equal(typeof reply[0].coordinates?.latitude, 'string');
|
||||
}, {
|
||||
client: GLOBAL.SERVERS.OPEN,
|
||||
cluster: GLOBAL.CLUSTERS.OPEN
|
||||
});
|
||||
});
|
||||
|
Reference in New Issue
Block a user