1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-07 13:22:56 +03:00

fix HGETALL spec

This commit is contained in:
dovi
2023-05-03 16:48:52 -04:00
parent 9177315667
commit 3bda368acb

View File

@@ -1,41 +1,35 @@
import { strict as assert } from 'assert'; import { strict as assert } from 'assert';
import testUtils, { GLOBAL } from '../test-utils'; import testUtils, { GLOBAL } from '../test-utils';
import { transformReply } from './HGETALL';
describe('HGETALL', () => { describe('HGETALL', () => {
describe('transformReply', () => {
it('empty', () => { testUtils.testAll('hGetAll empty', async client => {
assert.deepEqual( assert.deepEqual(
transformReply([]), await client.hGetAll('key'),
Object.create(null) Object.create(null)
); );
}, {
client: GLOBAL.SERVERS.OPEN,
cluster: GLOBAL.CLUSTERS.OPEN
}); });
it('with values', () => { testUtils.testAll('hGetAll with value', async client => {
const [, reply] = await Promise.all([
client.hSet('key', 'field', 'value'),
client.hGetAll('key')
]);
assert.deepEqual( assert.deepEqual(
transformReply(['key1', 'value1', 'key2', 'value2']), reply,
Object.create(null, { Object.create(null, {
key1: { field: {
value: 'value1', value: 'value',
configurable: true,
enumerable: true,
writable: true
},
key2: {
value: 'value2',
configurable: true,
enumerable: true, enumerable: true,
writable: true writable: true
} }
}) })
); );
}, {
client: GLOBAL.SERVERS.OPEN,
cluster: GLOBAL.CLUSTERS.OPEN
}); });
}); });
testUtils.testWithClient('client.hGetAll', async client => {
assert.deepEqual(
await client.hGetAll('key'),
Object.create(null)
);
}, GLOBAL.SERVERS.OPEN);
});