import { strict as assert } from 'assert'; import testUtils, { GLOBAL } from '../test-utils'; import { transformArguments } from './STRLEN'; describe('STRLEN', () => { describe('transformArguments', () => { it('without path', () => { assert.deepEqual( transformArguments('key'), ['JSON.STRLEN', 'key'] ); }); it('with path', () => { assert.deepEqual( transformArguments('key', '$'), ['JSON.STRLEN', 'key', '$'] ); }); }); testUtils.testWithClient('client.json.strLen', async client => { await client.json.set('key', '$', ''); assert.deepEqual( await client.json.strLen('key', '$'), [0] ); }, GLOBAL.SERVERS.OPEN); });