1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-03 04:01:40 +03:00
Files
node-redis/packages/client/lib/commands/SPOP_COUNT.spec.ts
Nikolay Karadzhov 742d5713e8 fix(commands): sPopCount return Array<string> (#3006)
Also, touch the tests for spop and spopcount
to use the new parseCommand API

fixes #3004
2025-06-25 13:15:44 +03:00

39 lines
882 B
TypeScript

import { strict as assert } from 'node:assert';
import testUtils, { GLOBAL } from '../test-utils';
import SPOP_COUNT from './SPOP_COUNT';
import { BasicCommandParser } from '../client/parser';
describe('SPOP_COUNT', () => {
it('transformArguments', () => {
const parser = new BasicCommandParser();
SPOP_COUNT.parseCommand(parser, 'key', 1);
assert.deepEqual(
parser.redisArgs,
['SPOP', 'key', '1']
);
});
testUtils.testAll('sPopCount', async client => {
assert.deepEqual(
await client.sPopCount('key', 1),
[]
);
await Promise.all([
client.sAdd('key', 'member'),
client.sAdd('key', 'member2'),
client.sAdd('key', 'member3')
])
assert.deepEqual(
(await client.sPopCount('key', 3)).length,
3
);
}, {
client: GLOBAL.SERVERS.OPEN,
cluster: GLOBAL.CLUSTERS.OPEN
});
});