You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-12-12 21:21:15 +03:00
* feat: add digest command and tests * feat: add delex command and tests * feat: add more conditional options to SET update tests
36 lines
1013 B
TypeScript
36 lines
1013 B
TypeScript
import { strict as assert } from "node:assert";
|
|
import DIGEST from "./DIGEST";
|
|
import { parseArgs } from "./generic-transformers";
|
|
import testUtils, { GLOBAL } from "../test-utils";
|
|
|
|
describe("DIGEST", () => {
|
|
describe("transformArguments", () => {
|
|
it("digest", () => {
|
|
assert.deepEqual(parseArgs(DIGEST, "key"), ["DIGEST", "key"]);
|
|
});
|
|
});
|
|
|
|
testUtils.testAll(
|
|
"existing key",
|
|
async (client) => {
|
|
await client.set("key{tag}", "value");
|
|
assert.equal(typeof await client.digest("key{tag}"), "string");
|
|
},
|
|
{
|
|
client: { ...GLOBAL.SERVERS.OPEN, minimumDockerVersion: [8, 4] },
|
|
cluster: { ...GLOBAL.CLUSTERS.OPEN, minimumDockerVersion: [8, 4] },
|
|
}
|
|
);
|
|
|
|
testUtils.testAll(
|
|
"non-existing key",
|
|
async (client) => {
|
|
assert.equal(await client.digest("key{tag}"), null);
|
|
},
|
|
{
|
|
client: { ...GLOBAL.SERVERS.OPEN, minimumDockerVersion: [8, 4] },
|
|
cluster: { ...GLOBAL.CLUSTERS.OPEN, minimumDockerVersion: [8, 4] },
|
|
}
|
|
);
|
|
});
|