You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-06 02:15:48 +03:00
Add Redis 8.2 New Stream Commands (#3029)
* chore: update Redis version from 8.2-RC1-pre to 8.2-rc1 * feat: implement XDELEX command for Redis 8.2 * feat: implement XACKDEL command for Redis 8.2 * refactor: create shared stream deletion types for Redis 8.2 commands * feat: add Redis 8.2 deletion policies to XTRIM command * feat: add Redis 8.2 deletion policies to XADD commands * fix: correct XDELEX command method name and test parameter
This commit is contained in:
@@ -2,6 +2,7 @@ import { strict as assert } from 'node:assert';
|
||||
import testUtils, { GLOBAL } from '../test-utils';
|
||||
import XADD from './XADD';
|
||||
import { parseArgs } from './generic-transformers';
|
||||
import { STREAM_DELETION_POLICY } from './common-stream.types';
|
||||
|
||||
describe('XADD', () => {
|
||||
describe('transformArguments', () => {
|
||||
@@ -78,6 +79,37 @@ describe('XADD', () => {
|
||||
['XADD', 'key', '1000', 'LIMIT', '1', '*', 'field', 'value']
|
||||
);
|
||||
});
|
||||
|
||||
it('with TRIM.policy', () => {
|
||||
assert.deepEqual(
|
||||
parseArgs(XADD, 'key', '*', {
|
||||
field: 'value'
|
||||
}, {
|
||||
TRIM: {
|
||||
threshold: 1000,
|
||||
policy: STREAM_DELETION_POLICY.DELREF
|
||||
}
|
||||
}),
|
||||
['XADD', 'key', '1000', 'DELREF', '*', 'field', 'value']
|
||||
);
|
||||
});
|
||||
|
||||
it('with all TRIM options', () => {
|
||||
assert.deepEqual(
|
||||
parseArgs(XADD, 'key', '*', {
|
||||
field: 'value'
|
||||
}, {
|
||||
TRIM: {
|
||||
strategy: 'MAXLEN',
|
||||
strategyModifier: '~',
|
||||
threshold: 1000,
|
||||
limit: 100,
|
||||
policy: STREAM_DELETION_POLICY.ACKED
|
||||
}
|
||||
}),
|
||||
['XADD', 'key', 'MAXLEN', '~', '1000', 'LIMIT', '100', 'ACKED', '*', 'field', 'value']
|
||||
);
|
||||
});
|
||||
});
|
||||
|
||||
testUtils.testAll('xAdd', async client => {
|
||||
@@ -91,4 +123,52 @@ describe('XADD', () => {
|
||||
client: GLOBAL.SERVERS.OPEN,
|
||||
cluster: GLOBAL.CLUSTERS.OPEN
|
||||
});
|
||||
|
||||
testUtils.testAll(
|
||||
'xAdd with TRIM policy',
|
||||
async (client) => {
|
||||
assert.equal(
|
||||
typeof await client.xAdd('{tag}key', '*',
|
||||
{ field: 'value' },
|
||||
{
|
||||
TRIM: {
|
||||
strategy: 'MAXLEN',
|
||||
threshold: 1000,
|
||||
policy: STREAM_DELETION_POLICY.KEEPREF
|
||||
}
|
||||
}
|
||||
),
|
||||
'string'
|
||||
);
|
||||
},
|
||||
{
|
||||
client: { ...GLOBAL.SERVERS.OPEN, minimumDockerVersion: [8, 2] },
|
||||
cluster: { ...GLOBAL.CLUSTERS.OPEN, minimumDockerVersion: [8, 2] },
|
||||
}
|
||||
);
|
||||
|
||||
testUtils.testAll(
|
||||
'xAdd with all TRIM options',
|
||||
async (client) => {
|
||||
assert.equal(
|
||||
typeof await client.xAdd('{tag}key2', '*',
|
||||
{ field: 'value' },
|
||||
{
|
||||
TRIM: {
|
||||
strategy: 'MAXLEN',
|
||||
strategyModifier: '~',
|
||||
threshold: 1000,
|
||||
limit: 10,
|
||||
policy: STREAM_DELETION_POLICY.DELREF
|
||||
}
|
||||
}
|
||||
),
|
||||
'string'
|
||||
);
|
||||
},
|
||||
{
|
||||
client: { ...GLOBAL.SERVERS.OPEN, minimumDockerVersion: [8, 2] },
|
||||
cluster: { ...GLOBAL.CLUSTERS.OPEN, minimumDockerVersion: [8, 2] },
|
||||
}
|
||||
);
|
||||
});
|
||||
|
Reference in New Issue
Block a user