NodeRedis/node-redis

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

Summary

Maintainability
B
4 hrs
Test Coverage
import { strict as assert } from 'node:assert';
import testUtils, { GLOBAL, BLOCKING_MIN_VALUE } from '../test-utils';
import BLMPOP from './BLMPOP';
import { parseArgs } from './generic-transformers';

describe('BLMPOP', () => {
  testUtils.isVersionGreaterThanHook([7]);

  describe('transformArguments', () => {
    it('simple', () => {
      assert.deepEqual(
        parseArgs(BLMPOP, 0, 'key', 'LEFT'),
        ['BLMPOP', '0', '1', 'key', 'LEFT']
      );
    });

    it('with COUNT', () => {
      assert.deepEqual(
        parseArgs(BLMPOP, 0, 'key', 'LEFT', {
          COUNT: 1
        }),
        ['BLMPOP', '0', '1', 'key', 'LEFT', 'COUNT', '1']
      );
    });
  });

  testUtils.testAll('blmPop - null', async client => {
    assert.equal(
      await client.blmPop(BLOCKING_MIN_VALUE, 'key', 'RIGHT'),
      null
    );
  }, {
    client: GLOBAL.SERVERS.OPEN,
    cluster: GLOBAL.CLUSTERS.OPEN
  });

  testUtils.testAll('blmPop - with member', async client => {
    const [, reply] = await Promise.all([
      client.lPush('key', 'element'),
      client.blmPop(BLOCKING_MIN_VALUE, 'key', 'RIGHT')
    ]);
    assert.deepEqual(reply, [
      'key',
      ['element']
    ]);
  }, {
    client: GLOBAL.SERVERS.OPEN,
    cluster: GLOBAL.CLUSTERS.OPEN
  });  
});