You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-10 11:43:01 +03:00
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
67 lines
1.7 KiB
TypeScript
67 lines
1.7 KiB
TypeScript
import { strict as assert } from 'node:assert';
|
|
import testUtils, { GLOBAL } from '../test-utils';
|
|
import MRANGE_GROUPBY, { TIME_SERIES_REDUCERS } from './MRANGE_GROUPBY';
|
|
import { TIME_SERIES_AGGREGATION_TYPE } from './CREATERULE';
|
|
|
|
describe('TS.MRANGE_GROUPBY', () => {
|
|
it('transformArguments', () => {
|
|
assert.deepEqual(
|
|
MRANGE_GROUPBY.transformArguments('-', '+', 'label=value', {
|
|
REDUCE: TIME_SERIES_REDUCERS.AVG,
|
|
label: 'label'
|
|
}, {
|
|
LATEST: true,
|
|
FILTER_BY_TS: [0],
|
|
FILTER_BY_VALUE: {
|
|
min: 0,
|
|
max: 1
|
|
},
|
|
COUNT: 1,
|
|
ALIGN: '-',
|
|
AGGREGATION: {
|
|
type: TIME_SERIES_AGGREGATION_TYPE.AVG,
|
|
timeBucket: 1
|
|
}
|
|
}),
|
|
[
|
|
'TS.MRANGE', '-', '+',
|
|
'LATEST',
|
|
'FILTER_BY_TS', '0',
|
|
'FILTER_BY_VALUE', '0', '1',
|
|
'COUNT', '1',
|
|
'ALIGN', '-', 'AGGREGATION', 'AVG', '1',
|
|
'FILTER', 'label=value',
|
|
'GROUPBY', 'label', 'REDUCE', 'AVG'
|
|
]
|
|
);
|
|
});
|
|
|
|
testUtils.testWithClient('client.ts.mRangeGroupBy', async client => {
|
|
const [, reply] = await Promise.all([
|
|
client.ts.add('key', 0, 0, {
|
|
LABELS: { label: 'value' }
|
|
}),
|
|
client.ts.mRangeGroupBy('-', '+', 'label=value', {
|
|
REDUCE: TIME_SERIES_REDUCERS.AVG,
|
|
label: 'label'
|
|
})
|
|
]);
|
|
|
|
assert.deepStrictEqual(
|
|
reply,
|
|
Object.create(null, {
|
|
'label=value': {
|
|
configurable: true,
|
|
enumerable: true,
|
|
value: {
|
|
samples: [{
|
|
timestamp: 0,
|
|
value: 0
|
|
}]
|
|
}
|
|
}
|
|
})
|
|
);
|
|
}, GLOBAL.SERVERS.OPEN);
|
|
});
|