You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-06 02:15:48 +03:00
Support all GEORADIUS Commands (#2017)
* Support all GEORADIUS Commands * move store bool to options * simplify transformReply for store commands * clean code Co-authored-by: leibale <leibale1998@gmail.com>
This commit is contained in:
35
packages/client/lib/commands/GEORADIUS.spec.ts
Normal file
35
packages/client/lib/commands/GEORADIUS.spec.ts
Normal file
@@ -0,0 +1,35 @@
|
||||
import { strict as assert } from 'assert';
|
||||
import testUtils, { GLOBAL } from '../test-utils';
|
||||
import { transformArguments } from './GEORADIUS';
|
||||
|
||||
describe('GEORADIUS', () => {
|
||||
it('transformArguments', () => {
|
||||
assert.deepEqual(
|
||||
transformArguments('key', {
|
||||
longitude: 1,
|
||||
latitude: 2
|
||||
}, 3 , 'm'),
|
||||
['GEORADIUS', 'key', '1', '2', '3', 'm']
|
||||
);
|
||||
});
|
||||
|
||||
testUtils.testWithClient('client.geoRadius', async client => {
|
||||
assert.deepEqual(
|
||||
await client.geoRadius('key', {
|
||||
longitude: 1,
|
||||
latitude: 2
|
||||
}, 3 , 'm'),
|
||||
[]
|
||||
);
|
||||
}, GLOBAL.SERVERS.OPEN);
|
||||
|
||||
testUtils.testWithCluster('cluster.geoRadius', async cluster => {
|
||||
assert.deepEqual(
|
||||
await cluster.geoRadius('key', {
|
||||
longitude: 1,
|
||||
latitude: 2
|
||||
}, 3 , 'm'),
|
||||
[]
|
||||
);
|
||||
}, GLOBAL.CLUSTERS.OPEN);
|
||||
});
|
Reference in New Issue
Block a user