NodeRedis/node-redis

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

Summary

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

describe('GETEX', () => {
  testUtils.isVersionGreaterThanHook([6, 2]);

  describe('transformArguments', () => {
    it('EX | PX', () => {
      assert.deepEqual(
        parseArgs(GETEX, 'key', {
          type: 'EX',
          value: 1
        }),
        ['GETEX', 'key', 'EX', '1']
      );
    });

    it('EX (backwards compatibility)', () => {
      assert.deepEqual(
        parseArgs(GETEX, 'key', {
          EX: 1
        }),
        ['GETEX', 'key', 'EX', '1']
      );
    });

    it('PX (backwards compatibility)', () => {
      assert.deepEqual(
        parseArgs(GETEX, 'key', {
          PX: 1
        }),
        ['GETEX', 'key', 'PX', '1']
      );
    });

    describe('EXAT | PXAT', () => {
      it('number', () => {
        assert.deepEqual(
          parseArgs(GETEX, 'key', {
            type: 'EXAT',
            value: 1
          }),
          ['GETEX', 'key', 'EXAT', '1']
        );
      });

      it('date', () => {
        const d = new Date();
        assert.deepEqual(
          parseArgs(GETEX, 'key', {
            EXAT: d
          }),
          ['GETEX', 'key', 'EXAT', Math.floor(d.getTime() / 1000).toString()]
        );
      });
    });

    describe('EXAT (backwards compatibility)', () => {
      it('number', () => {
        assert.deepEqual(
          parseArgs(GETEX, 'key', {
            EXAT: 1
          }),
          ['GETEX', 'key', 'EXAT', '1']
        );
      });

      it('date', () => {
        const d = new Date();
        assert.deepEqual(
          parseArgs(GETEX, 'key', {
            EXAT: d
          }),
          ['GETEX', 'key', 'EXAT', Math.floor(d.getTime() / 1000).toString()]
        );
      });
    });

    describe('PXAT (backwards compatibility)', () => {
      it('number', () => {
        assert.deepEqual(
          parseArgs(GETEX, 'key', {
            PXAT: 1
          }),
          ['GETEX', 'key', 'PXAT', '1']
        );
      });

      it('date', () => {
        const d = new Date();
        assert.deepEqual(
          parseArgs(GETEX, 'key', {
            PXAT: d
          }),
          ['GETEX', 'key', 'PXAT', d.getTime().toString()]
        );
      });
    });

    it('PERSIST (backwards compatibility)', () => {
      assert.deepEqual(
        parseArgs(GETEX, 'key', {
          PERSIST: true
        }),
        ['GETEX', 'key', 'PERSIST']
      );
    });
  });

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