1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-06 02:15:48 +03:00
Files
node-redis/packages/client/lib/commands/XINFO_CONSUMERS.spec.ts
Codrin-Mihai Chira d4f194352f XINFO CONSUMERS - add support for the inactive field (#2490)
* Support XINFO CONSUMERS: Added the inactive field

* Update XINFO_CONSUMERS.ts

---------

Co-authored-by: Leibale Eidelman <me@leibale.com>
2023-05-21 08:06:46 -04:00

44 lines
1.3 KiB
TypeScript

import { strict as assert } from 'assert';
import testUtils, { GLOBAL } from '../test-utils';
import { transformArguments, transformReply } from './XINFO_CONSUMERS';
describe('XINFO CONSUMERS', () => {
it('transformArguments', () => {
assert.deepEqual(
transformArguments('key', 'group'),
['XINFO', 'CONSUMERS', 'key', 'group']
);
});
it('transformReply', () => {
assert.deepEqual(
transformReply([
['name', 'Alice', 'pending', 1, 'idle', 9104628, 'inactive', 9281221],
['name', 'Bob', 'pending', 1, 'idle', 83841983, 'inactive', 7213871]
]),
[{
name: 'Alice',
pending: 1,
idle: 9104628,
inactive: 9281221,
}, {
name: 'Bob',
pending: 1,
idle: 83841983,
inactive: 7213871,
}]
);
});
testUtils.testWithClient('client.xInfoConsumers', async client => {
await client.xGroupCreate('key', 'group', '$', {
MKSTREAM: true
});
assert.deepEqual(
await client.xInfoConsumers('key', 'group'),
[]
);
}, GLOBAL.SERVERS.OPEN);
});