You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-04 15:02:09 +03:00
Fix: XAUTOCLAIM after a TRIM with pending messages returns nil (#2565)
* fix(client): XCLAIM & XAUTOCLAIM after a TRIM might return nils * fix(client): Fix race condition in specs * revert test utils changes * make tests faster --------- Co-authored-by: Leibale Eidelman <me@leibale.com>
This commit is contained in:
@@ -23,20 +23,76 @@ describe('XAUTOCLAIM', () => {
|
||||
});
|
||||
});
|
||||
|
||||
testUtils.testWithClient('client.xAutoClaim', async client => {
|
||||
await Promise.all([
|
||||
client.xGroupCreate('key', 'group', '$', {
|
||||
MKSTREAM: true
|
||||
}),
|
||||
testUtils.testWithClient('client.xAutoClaim without messages', async client => {
|
||||
const [,, reply] = await Promise.all([
|
||||
client.xGroupCreate('key', 'group', '$', { MKSTREAM: true }),
|
||||
client.xGroupCreateConsumer('key', 'group', 'consumer'),
|
||||
client.xAutoClaim('key', 'group', 'consumer', 1, '0-0')
|
||||
]);
|
||||
|
||||
assert.deepEqual(
|
||||
await client.xAutoClaim('key', 'group', 'consumer', 1, '0-0'),
|
||||
{
|
||||
nextId: '0-0',
|
||||
messages: []
|
||||
}
|
||||
);
|
||||
assert.deepEqual(reply, {
|
||||
nextId: '0-0',
|
||||
messages: []
|
||||
});
|
||||
}, GLOBAL.SERVERS.OPEN);
|
||||
|
||||
testUtils.testWithClient('client.xAutoClaim with messages', async client => {
|
||||
const [,, id,, reply] = await Promise.all([
|
||||
client.xGroupCreate('key', 'group', '$', { MKSTREAM: true }),
|
||||
client.xGroupCreateConsumer('key', 'group', 'consumer'),
|
||||
client.xAdd('key', '*', { foo: 'bar' }),
|
||||
client.xReadGroup('group', 'consumer', { key: 'key', id: '>' }),
|
||||
client.xAutoClaim('key', 'group', 'consumer', 0, '0-0')
|
||||
]);
|
||||
|
||||
assert.deepEqual(reply, {
|
||||
nextId: '0-0',
|
||||
messages: [{
|
||||
id,
|
||||
message: Object.create(null, {
|
||||
foo: {
|
||||
value: 'bar',
|
||||
configurable: true,
|
||||
enumerable: true
|
||||
}
|
||||
})
|
||||
}]
|
||||
});
|
||||
}, GLOBAL.SERVERS.OPEN);
|
||||
|
||||
testUtils.testWithClient('client.xAutoClaim with trimmed messages', async client => {
|
||||
const [,,,,, id,, reply] = await Promise.all([
|
||||
client.xGroupCreate('key', 'group', '$', { MKSTREAM: true }),
|
||||
client.xGroupCreateConsumer('key', 'group', 'consumer'),
|
||||
client.xAdd('key', '*', { foo: 'bar' }),
|
||||
client.xReadGroup('group', 'consumer', { key: 'key', id: '>' }),
|
||||
client.xTrim('key', 'MAXLEN', 0),
|
||||
client.xAdd('key', '*', { bar: 'baz' }),
|
||||
client.xReadGroup('group', 'consumer', { key: 'key', id: '>' }),
|
||||
client.xAutoClaim('key', 'group', 'consumer', 0, '0-0')
|
||||
]);
|
||||
|
||||
assert.deepEqual(reply, {
|
||||
nextId: '0-0',
|
||||
messages: testUtils.isVersionGreaterThan([7, 0]) ? [{
|
||||
id,
|
||||
message: Object.create(null, {
|
||||
bar: {
|
||||
value: 'baz',
|
||||
configurable: true,
|
||||
enumerable: true
|
||||
}
|
||||
})
|
||||
}] : [null, {
|
||||
id,
|
||||
message: Object.create(null, {
|
||||
bar: {
|
||||
value: 'baz',
|
||||
configurable: true,
|
||||
enumerable: true
|
||||
}
|
||||
})
|
||||
}]
|
||||
});
|
||||
}, GLOBAL.SERVERS.OPEN);
|
||||
});
|
||||
|
@@ -1,5 +1,5 @@
|
||||
import { RedisCommandArgument, RedisCommandArguments } from '.';
|
||||
import { StreamMessagesReply, transformStreamMessagesReply } from './generic-transformers';
|
||||
import { StreamMessagesNullReply, transformStreamMessagesNullReply } from './generic-transformers';
|
||||
|
||||
export const FIRST_KEY_INDEX = 1;
|
||||
|
||||
@@ -28,12 +28,12 @@ type XAutoClaimRawReply = [RedisCommandArgument, Array<any>];
|
||||
|
||||
interface XAutoClaimReply {
|
||||
nextId: RedisCommandArgument;
|
||||
messages: StreamMessagesReply;
|
||||
messages: StreamMessagesNullReply;
|
||||
}
|
||||
|
||||
export function transformReply(reply: XAutoClaimRawReply): XAutoClaimReply {
|
||||
return {
|
||||
nextId: reply[0],
|
||||
messages: transformStreamMessagesReply(reply[1])
|
||||
messages: transformStreamMessagesNullReply(reply[1])
|
||||
};
|
||||
}
|
||||
|
@@ -83,8 +83,38 @@ describe('XCLAIM', () => {
|
||||
});
|
||||
|
||||
assert.deepEqual(
|
||||
await client.xClaim('key', 'group', 'consumer', 1, '0-0'),
|
||||
await client.xClaim('key', 'group', 'consumer', 0, '0-0'),
|
||||
[]
|
||||
);
|
||||
}, GLOBAL.SERVERS.OPEN);
|
||||
|
||||
testUtils.testWithClient('client.xClaim with a message', async client => {
|
||||
await client.xGroupCreate('key', 'group', '$', { MKSTREAM: true });
|
||||
const id = await client.xAdd('key', '*', { foo: 'bar' });
|
||||
await client.xReadGroup('group', 'consumer', { key: 'key', id: '>' });
|
||||
|
||||
assert.deepEqual(
|
||||
await client.xClaim('key', 'group', 'consumer', 0, id),
|
||||
[{
|
||||
id,
|
||||
message: Object.create(null, { 'foo': {
|
||||
value: 'bar',
|
||||
configurable: true,
|
||||
enumerable: true
|
||||
} })
|
||||
}]
|
||||
);
|
||||
}, GLOBAL.SERVERS.OPEN);
|
||||
|
||||
testUtils.testWithClient('client.xClaim with a trimmed message', async client => {
|
||||
await client.xGroupCreate('key', 'group', '$', { MKSTREAM: true });
|
||||
const id = await client.xAdd('key', '*', { foo: 'bar' });
|
||||
await client.xReadGroup('group', 'consumer', { key: 'key', id: '>' });
|
||||
await client.xTrim('key', 'MAXLEN', 0);
|
||||
|
||||
assert.deepEqual(
|
||||
await client.xClaim('key', 'group', 'consumer', 0, id),
|
||||
testUtils.isVersionGreaterThan([7, 0]) ? []: [null]
|
||||
);
|
||||
}, GLOBAL.SERVERS.OPEN);
|
||||
});
|
||||
|
@@ -45,4 +45,4 @@ export function transformArguments(
|
||||
return args;
|
||||
}
|
||||
|
||||
export { transformStreamMessagesReply as transformReply } from './generic-transformers';
|
||||
export { transformStreamMessagesNullReply as transformReply } from './generic-transformers';
|
||||
|
@@ -9,6 +9,7 @@ import {
|
||||
transformStringNumberInfinityArgument,
|
||||
transformTuplesReply,
|
||||
transformStreamMessagesReply,
|
||||
transformStreamMessagesNullReply,
|
||||
transformStreamsMessagesReply,
|
||||
transformSortedSetWithScoresReply,
|
||||
pushGeoCountArgument,
|
||||
@@ -219,6 +220,38 @@ describe('Generic Transformers', () => {
|
||||
);
|
||||
});
|
||||
|
||||
it('transformStreamMessagesNullReply', () => {
|
||||
assert.deepEqual(
|
||||
transformStreamMessagesNullReply([null, ['0-0', ['0key', '0value']]]),
|
||||
[null, {
|
||||
id: '0-0',
|
||||
message: Object.create(null, {
|
||||
'0key': {
|
||||
value: '0value',
|
||||
configurable: true,
|
||||
enumerable: true
|
||||
}
|
||||
})
|
||||
}]
|
||||
);
|
||||
});
|
||||
|
||||
it('transformStreamMessagesNullReply', () => {
|
||||
assert.deepEqual(
|
||||
transformStreamMessagesNullReply([null, ['0-1', ['11key', '11value']]]),
|
||||
[null, {
|
||||
id: '0-1',
|
||||
message: Object.create(null, {
|
||||
'11key': {
|
||||
value: '11value',
|
||||
configurable: true,
|
||||
enumerable: true
|
||||
}
|
||||
})
|
||||
}]
|
||||
);
|
||||
});
|
||||
|
||||
describe('transformStreamsMessagesReply', () => {
|
||||
it('null', () => {
|
||||
assert.equal(
|
||||
|
@@ -92,19 +92,27 @@ export interface StreamMessageReply {
|
||||
message: Record<string, RedisCommandArgument>;
|
||||
}
|
||||
|
||||
export function transformStreamMessageReply([id, message]: Array<any>): StreamMessageReply {
|
||||
return {
|
||||
id,
|
||||
message: transformTuplesReply(message)
|
||||
};
|
||||
}
|
||||
|
||||
export function transformStreamMessageNullReply(reply: Array<any>): StreamMessageReply | null {
|
||||
if (reply === null) return null;
|
||||
return transformStreamMessageReply(reply);
|
||||
}
|
||||
|
||||
|
||||
export type StreamMessagesReply = Array<StreamMessageReply>;
|
||||
|
||||
export function transformStreamMessagesReply(reply: Array<any>): StreamMessagesReply {
|
||||
const messages = [];
|
||||
return reply.map(transformStreamMessageReply);
|
||||
}
|
||||
|
||||
for (const [id, message] of reply) {
|
||||
messages.push({
|
||||
id,
|
||||
message: transformTuplesReply(message)
|
||||
});
|
||||
}
|
||||
|
||||
return messages;
|
||||
export type StreamMessagesNullReply = Array<StreamMessageReply | null>;
|
||||
export function transformStreamMessagesNullReply(reply: Array<any>): StreamMessagesNullReply {
|
||||
return reply.map(transformStreamMessageNullReply);
|
||||
}
|
||||
|
||||
export type StreamsMessagesReply = Array<{
|
||||
|
Reference in New Issue
Block a user