NodeRedis/node-redis

View on GitHub
packages/client/lib/commands/HGETALL.spec.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { strict as assert } from 'node:assert';
import testUtils, { GLOBAL } from '../test-utils';

describe('HGETALL', () => {

  testUtils.testAll('hGetAll empty', async client => {
    assert.deepEqual(
      await client.hGetAll('key'),
      Object.create(null)
    );
  }, {
    client: GLOBAL.SERVERS.OPEN,
    cluster: GLOBAL.CLUSTERS.OPEN
  });

  testUtils.testAll('hGetAll with value', async client => {
    const [, reply] = await Promise.all([
      client.hSet('key', 'field', 'value'),
      client.hGetAll('key')
    ]);
    assert.deepEqual(
      reply,
      Object.create(null, {
        field: {
          value: 'value',
          enumerable: true
        }
      })
    );
  }, {
    client: GLOBAL.SERVERS.OPEN,
    cluster: GLOBAL.CLUSTERS.OPEN
  });
});