1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-04 15:02:09 +03:00
Files
node-redis/packages/client/lib/commands/VSIM_WITHSCORES.spec.ts
Nikolay Karadzhov c5b4f47975 feat: add support for vector sets (#2998)
* wip

* improve the vadd api

* resp3 tests

* fix some tests

* extract json helper functions in client package

* use transformJsonReply

* remove the CACHEABLE flag for all vector set commands

currently, client side caching is not supported
for vector set commands by the server

* properly transform vinfo result

* add resp3 test for vlinks

* add more tests for vrandmember

* fix vrem return types

* fix vsetattr return type

* fix vsim_withscores

* implement vlinks_withscores

* set minimum docker image version to 8

* align return types

* add RAW variant for VEMB -> VEMB_RAW

* use the new parseCommand api
2025-06-24 13:35:29 +03:00

63 lines
1.9 KiB
TypeScript

import { strict as assert } from 'node:assert';
import testUtils, { GLOBAL } from '../test-utils';
import VSIM_WITHSCORES from './VSIM_WITHSCORES';
import { BasicCommandParser } from '../client/parser';
describe('VSIM WITHSCORES', () => {
it('parseCommand', () => {
const parser = new BasicCommandParser();
VSIM_WITHSCORES.parseCommand(parser, 'key', 'element')
assert.deepEqual(parser.redisArgs, [
'VSIM',
'key',
'ELE',
'element',
'WITHSCORES'
]);
});
testUtils.testAll(
'vSimWithScores',
async client => {
await client.vAdd('key', [1.0, 2.0, 3.0], 'element1');
await client.vAdd('key', [1.1, 2.1, 3.1], 'element2');
const result = await client.vSimWithScores('key', 'element1');
assert.ok(typeof result === 'object');
assert.ok('element1' in result);
assert.ok('element2' in result);
assert.equal(typeof result['element1'], 'number');
assert.equal(typeof result['element2'], 'number');
},
{
client: { ...GLOBAL.SERVERS.OPEN, minimumDockerVersion: [8, 0] },
cluster: { ...GLOBAL.CLUSTERS.OPEN, minimumDockerVersion: [8, 0] }
}
);
testUtils.testWithClient(
'vSimWithScores with RESP3 - returns Map with scores',
async client => {
await client.vAdd('resp3-key', [1.0, 2.0, 3.0], 'element1');
await client.vAdd('resp3-key', [1.1, 2.1, 3.1], 'element2');
await client.vAdd('resp3-key', [2.0, 3.0, 4.0], 'element3');
const result = await client.vSimWithScores('resp3-key', 'element1');
assert.ok(typeof result === 'object');
assert.ok('element1' in result);
assert.ok('element2' in result);
assert.equal(typeof result['element1'], 'number');
assert.equal(typeof result['element2'], 'number');
},
{
...GLOBAL.SERVERS.OPEN,
clientOptions: {
RESP: 3
},
minimumDockerVersion: [8, 0]
}
);
});