NodeRedis/node-redis

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

Summary

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

describe('BITCOUNT', () => {
  describe('parseCommand', () => {
    it('simple', () => {
      assert.deepEqual(
        parseArgs(BITCOUNT, 'key'),
        ['BITCOUNT', 'key']
      );
    });

    describe('with range', () => {
      it('simple', () => {
        assert.deepEqual(
          parseArgs(BITCOUNT, 'key', {
            start: 0,
            end: 1
          }),
          ['BITCOUNT', 'key', '0', '1']
        );
      });

      it('with mode', () => {
        assert.deepEqual(
          parseArgs(BITCOUNT, 'key', {
            start: 0,
            end: 1,
            mode: 'BIT'
          }),
          ['BITCOUNT', 'key', '0', '1', 'BIT']
        );
      });
    });
  });

  testUtils.testAll('bitCount', async client => {
    assert.equal(
      await client.bitCount('key'),
      0
    );
  }, {
    client: GLOBAL.SERVERS.OPEN,
    cluster: GLOBAL.CLUSTERS.OPEN
  });
});