You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-06 02:15:48 +03:00
V5 bringing RESP3, Sentinel and TypeMapping to node-redis
RESP3 Support - Some commands responses in RESP3 aren't stable yet and therefore return an "untyped" ReplyUnion. Sentinel TypeMapping Correctly types Multi commands Note: some API changes to be further documented in v4-to-v5.md
This commit is contained in:
@@ -1,30 +1,31 @@
|
||||
import { strict as assert } from 'assert';
|
||||
import { TimeSeriesAggregationType, TimeSeriesDuplicatePolicies } from '.';
|
||||
import { strict as assert } from 'node:assert';
|
||||
import { TIME_SERIES_DUPLICATE_POLICIES } from '.';
|
||||
import testUtils, { GLOBAL } from '../test-utils';
|
||||
import { assertInfo } from './INFO.spec';
|
||||
import { transformArguments } from './INFO_DEBUG';
|
||||
import INFO_DEBUG from './INFO_DEBUG';
|
||||
import { TIME_SERIES_AGGREGATION_TYPE } from './CREATERULE';
|
||||
|
||||
describe('INFO_DEBUG', () => {
|
||||
describe('TS.INFO_DEBUG', () => {
|
||||
it('transformArguments', () => {
|
||||
assert.deepEqual(
|
||||
transformArguments('key'),
|
||||
INFO_DEBUG.transformArguments('key'),
|
||||
['TS.INFO', 'key', 'DEBUG']
|
||||
);
|
||||
});
|
||||
|
||||
testUtils.testWithClient('client.ts.get', async client => {
|
||||
testUtils.testWithClient('client.ts.infoDebug', async client => {
|
||||
await Promise.all([
|
||||
client.ts.create('key', {
|
||||
LABELS: { id: '1' },
|
||||
DUPLICATE_POLICY: TimeSeriesDuplicatePolicies.LAST
|
||||
DUPLICATE_POLICY: TIME_SERIES_DUPLICATE_POLICIES.LAST
|
||||
}),
|
||||
client.ts.create('key2'),
|
||||
client.ts.createRule('key', 'key2', TimeSeriesAggregationType.COUNT, 5),
|
||||
client.ts.createRule('key', 'key2', TIME_SERIES_AGGREGATION_TYPE.COUNT, 5),
|
||||
client.ts.add('key', 1, 10)
|
||||
]);
|
||||
|
||||
const infoDebug = await client.ts.infoDebug('key');
|
||||
assertInfo(infoDebug);
|
||||
assertInfo(infoDebug as any);
|
||||
assert.equal(typeof infoDebug.keySelfName, 'string');
|
||||
assert.ok(Array.isArray(infoDebug.chunks));
|
||||
for (const chunk of infoDebug.chunks) {
|
||||
|
Reference in New Issue
Block a user