1
0
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:
Pavel Pashov
2025-07-25 17:58:28 +03:00
committed by GitHub
parent ff8319d2d7
commit d941ec5a4c
19 changed files with 746 additions and 22 deletions

View File

@@ -2,6 +2,7 @@ import { strict as assert } from 'node:assert';
import testUtils, { GLOBAL } from '../test-utils';
import XADD_NOMKSTREAM from './XADD_NOMKSTREAM';
import { parseArgs } from './generic-transformers';
import { STREAM_DELETION_POLICY } from './common-stream.types';
describe('XADD NOMKSTREAM', () => {
testUtils.isVersionGreaterThanHook([6, 2]);
@@ -80,17 +81,82 @@ describe('XADD NOMKSTREAM', () => {
['XADD', 'key', 'NOMKSTREAM', '1000', 'LIMIT', '1', '*', 'field', 'value']
);
});
it('with TRIM.policy', () => {
assert.deepEqual(
parseArgs(XADD_NOMKSTREAM, 'key', '*', {
field: 'value'
}, {
TRIM: {
threshold: 1000,
policy: STREAM_DELETION_POLICY.DELREF
}
}),
['XADD', 'key', 'NOMKSTREAM', '1000', 'DELREF', '*', 'field', 'value']
);
});
it('with all TRIM options', () => {
assert.deepEqual(
parseArgs(XADD_NOMKSTREAM, 'key', '*', {
field: 'value'
}, {
TRIM: {
strategy: 'MAXLEN',
strategyModifier: '~',
threshold: 1000,
limit: 100,
policy: STREAM_DELETION_POLICY.ACKED
}
}),
['XADD', 'key', 'NOMKSTREAM', 'MAXLEN', '~', '1000', 'LIMIT', '100', 'ACKED', '*', 'field', 'value']
);
});
});
testUtils.testAll('xAddNoMkStream', async client => {
assert.equal(
await client.xAddNoMkStream('key', '*', {
field: 'value'
}),
null
);
}, {
client: GLOBAL.SERVERS.OPEN,
cluster: GLOBAL.CLUSTERS.OPEN
});
testUtils.testAll(
'xAddNoMkStream - null when stream does not exist',
async (client) => {
assert.equal(
await client.xAddNoMkStream('{tag}nonexistent-stream', '*', {
field: 'value'
}),
null
);
},
{
client: GLOBAL.SERVERS.OPEN,
cluster: GLOBAL.CLUSTERS.OPEN,
}
);
testUtils.testAll(
'xAddNoMkStream - with all TRIM options',
async (client) => {
const streamKey = '{tag}stream';
// Create stream and add some messages
await client.xAdd(streamKey, '*', { field: 'value1' });
// Use NOMKSTREAM with all TRIM options
const messageId = await client.xAddNoMkStream(streamKey, '*',
{ field: 'value2' },
{
TRIM: {
strategyModifier: '~',
limit: 1,
strategy: 'MAXLEN',
threshold: 2,
policy: STREAM_DELETION_POLICY.DELREF
}
}
);
assert.equal(typeof messageId, 'string');
},
{
client: { ...GLOBAL.SERVERS.OPEN, minimumDockerVersion: [8, 2] },
cluster: { ...GLOBAL.CLUSTERS.OPEN, minimumDockerVersion: [8, 2] },
}
);
});