1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-09 00:22:08 +03:00
Files
node-redis/packages/client/lib/commands/ZPOPMAX.spec.ts
Leibale 2b318d4100 WIP
2023-06-22 18:18:23 -04:00

40 lines
862 B
TypeScript

import { strict as assert } from 'assert';
import testUtils, { GLOBAL } from '../test-utils';
import ZPOPMAX from './ZPOPMAX';
describe('ZPOPMAX', () => {
it('transformArguments', () => {
assert.deepEqual(
ZPOPMAX.transformArguments('key'),
['ZPOPMAX', 'key']
);
});
testUtils.testAll('zPopMax - null', async client => {
assert.equal(
await client.zPopMax('key'),
null
);
}, {
client: GLOBAL.SERVERS.OPEN,
cluster: GLOBAL.SERVERS.OPEN
});
testUtils.testAll('zPopMax - with member', async client => {
const member = {
value: 'value',
score: 1
};
const [, reply] = await Promise.all([
client.zAdd('key', member),
client.zPopMax('key')
]);
assert.deepEqual(reply, member);
}, {
client: GLOBAL.SERVERS.OPEN,
cluster: GLOBAL.SERVERS.OPEN
});
});