You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-04 15:02:09 +03:00
49 lines
1.3 KiB
TypeScript
49 lines
1.3 KiB
TypeScript
import { strict as assert } from 'assert';
|
|
import testUtils, { GLOBAL } from '../test-utils';
|
|
import { transformArguments } from './ZUNION';
|
|
|
|
describe('ZUNION', () => {
|
|
testUtils.isVersionGreaterThanHook([6, 2]);
|
|
|
|
describe('transformArguments', () => {
|
|
it('key (string)', () => {
|
|
assert.deepEqual(
|
|
transformArguments('key'),
|
|
['ZUNION', '1', 'key']
|
|
);
|
|
});
|
|
|
|
it('keys (array)', () => {
|
|
assert.deepEqual(
|
|
transformArguments(['1', '2']),
|
|
['ZUNION', '2', '1', '2']
|
|
);
|
|
});
|
|
|
|
it('with WEIGHTS', () => {
|
|
assert.deepEqual(
|
|
transformArguments('key', {
|
|
WEIGHTS: [1]
|
|
}),
|
|
['ZUNION', '1', 'key', 'WEIGHTS', '1']
|
|
);
|
|
});
|
|
|
|
it('with AGGREGATE', () => {
|
|
assert.deepEqual(
|
|
transformArguments('key', {
|
|
AGGREGATE: 'SUM'
|
|
}),
|
|
['ZUNION', '1', 'key', 'AGGREGATE', 'SUM']
|
|
);
|
|
});
|
|
});
|
|
|
|
testUtils.testWithClient('client.zUnion', async client => {
|
|
assert.deepEqual(
|
|
await client.zUnion('key'),
|
|
[]
|
|
);
|
|
}, GLOBAL.SERVERS.OPEN);
|
|
});
|