You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-04 15:02:09 +03:00
58 lines
1.6 KiB
TypeScript
58 lines
1.6 KiB
TypeScript
import { strict as assert } from 'assert';
|
|
import testUtils, { GLOBAL } from '../test-utils';
|
|
import { transformArguments } from './GEODIST';
|
|
|
|
describe('GEODIST', () => {
|
|
describe('transformArguments', () => {
|
|
it('simple', () => {
|
|
assert.deepEqual(
|
|
transformArguments('key', '1', '2'),
|
|
['GEODIST', 'key', '1', '2']
|
|
);
|
|
});
|
|
|
|
it('with unit', () => {
|
|
assert.deepEqual(
|
|
transformArguments('key', '1', '2', 'm'),
|
|
['GEODIST', 'key', '1', '2', 'm']
|
|
);
|
|
});
|
|
});
|
|
|
|
describe('client.geoDist', () => {
|
|
testUtils.testWithClient('null', async client => {
|
|
assert.equal(
|
|
await client.geoDist('key', '1', '2'),
|
|
null
|
|
);
|
|
}, GLOBAL.SERVERS.OPEN);
|
|
|
|
testUtils.testWithClient('with value', async client => {
|
|
const [, dist] = await Promise.all([
|
|
client.geoAdd('key', [{
|
|
member: '1',
|
|
longitude: 1,
|
|
latitude: 1
|
|
}, {
|
|
member: '2',
|
|
longitude: 2,
|
|
latitude: 2
|
|
}]),
|
|
client.geoDist('key', '1', '2')
|
|
]);
|
|
|
|
assert.equal(
|
|
dist,
|
|
157270.0561
|
|
);
|
|
}, GLOBAL.SERVERS.OPEN);
|
|
});
|
|
|
|
testUtils.testWithCluster('cluster.geoDist', async cluster => {
|
|
assert.equal(
|
|
await cluster.geoDist('key', '1', '2'),
|
|
null
|
|
);
|
|
}, GLOBAL.CLUSTERS.OPEN);
|
|
});
|