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:
53
packages/client/lib/commands/GEORADIUSSTORE.spec.ts
Normal file
53
packages/client/lib/commands/GEORADIUSSTORE.spec.ts
Normal file
@@ -0,0 +1,53 @@
|
||||
import { strict as assert } from 'assert';
|
||||
import testUtils, { GLOBAL } from '../test-utils';
|
||||
import { transformArguments, transformReply } from './GEORADIUSSTORE';
|
||||
|
||||
describe('GEORADIUSSTORE', () => {
|
||||
describe('transformArguments', () => {
|
||||
it('STORE', () => {
|
||||
assert.deepEqual(
|
||||
transformArguments('key', {longitude: 1, latitude: 2}, 3 , 'm', 'dest', {
|
||||
SORT: 'ASC',
|
||||
COUNT: {
|
||||
value: 1,
|
||||
ANY: true
|
||||
}
|
||||
}),
|
||||
['GEORADIUS', 'key', '1', '2', '3', 'm', 'ASC', 'COUNT', '1', 'ANY', 'STORE', 'dest']
|
||||
);
|
||||
});
|
||||
|
||||
it('STOREDIST', () => {
|
||||
assert.deepEqual(
|
||||
transformArguments('key', {longitude: 1, latitude: 2}, 3 , 'm', 'dest', { STOREDIST: true }),
|
||||
['GEORADIUS', 'key', '1', '2', '3', 'm', 'STOREDIST', 'dest']
|
||||
);
|
||||
});
|
||||
});
|
||||
|
||||
testUtils.testWithClient('client.geoRadiusStore', async client => {
|
||||
await client.geoAdd('source', {
|
||||
longitude: 1,
|
||||
latitude: 1,
|
||||
member: 'member'
|
||||
});
|
||||
|
||||
assert.equal(
|
||||
await client.geoRadiusStore('source', {longitude: 1, latitude: 1}, 3 , 'm', 'dest'),
|
||||
1
|
||||
);
|
||||
}, GLOBAL.SERVERS.OPEN);
|
||||
|
||||
testUtils.testWithCluster('cluster.geoRadiusStore', async cluster => {
|
||||
await cluster.geoAdd('{tag}source', {
|
||||
longitude: 1,
|
||||
latitude: 1,
|
||||
member: 'member'
|
||||
});
|
||||
|
||||
assert.equal(
|
||||
await cluster.geoRadiusStore('{tag}source', {longitude: 1, latitude: 1}, 3 , 'm', '{tag}destination'),
|
||||
1
|
||||
);
|
||||
}, GLOBAL.CLUSTERS.OPEN);
|
||||
});
|
Reference in New Issue
Block a user