summaryrefslogtreecommitdiff
path: root/examples/redis-unstable/tests/modules/cmdintrospection.c
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2026-01-21 22:52:54 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2026-01-21 22:52:54 +0100
commitdcacc00e3750300617ba6e16eb346713f91a783a (patch)
tree38e2d4fb5ed9d119711d4295c6eda4b014af73fd /examples/redis-unstable/tests/modules/cmdintrospection.c
parent58dac10aeb8f5a041c46bddbeaf4c7966a99b998 (diff)
downloadcrep-dcacc00e3750300617ba6e16eb346713f91a783a.tar.gz
Remove testing data
Diffstat (limited to 'examples/redis-unstable/tests/modules/cmdintrospection.c')
-rw-r--r--examples/redis-unstable/tests/modules/cmdintrospection.c226
1 files changed, 0 insertions, 226 deletions
diff --git a/examples/redis-unstable/tests/modules/cmdintrospection.c b/examples/redis-unstable/tests/modules/cmdintrospection.c
deleted file mode 100644
index 48208ff..0000000
--- a/examples/redis-unstable/tests/modules/cmdintrospection.c
+++ /dev/null
@@ -1,226 +0,0 @@
-#include "redismodule.h"
-
-#define UNUSED(V) ((void) V)
-
-int cmd_xadd(RedisModuleCtx *ctx, RedisModuleString **argv, int argc) {
- UNUSED(argv);
- UNUSED(argc);
- RedisModule_ReplyWithSimpleString(ctx, "OK");
- return REDISMODULE_OK;
-}
-
-int RedisModule_OnLoad(RedisModuleCtx *ctx, RedisModuleString **argv, int argc) {
- REDISMODULE_NOT_USED(argv);
- REDISMODULE_NOT_USED(argc);
- if (RedisModule_Init(ctx, "cmdintrospection", 1, REDISMODULE_APIVER_1) == REDISMODULE_ERR)
- return REDISMODULE_ERR;
-
- if (RedisModule_CreateCommand(ctx,"cmdintrospection.xadd",cmd_xadd,"write deny-oom random fast",0,0,0) == REDISMODULE_ERR)
- return REDISMODULE_ERR;
-
- RedisModuleCommand *xadd = RedisModule_GetCommand(ctx,"cmdintrospection.xadd");
-
- RedisModuleCommandInfo info = {
- .version = REDISMODULE_COMMAND_INFO_VERSION,
- .arity = -5,
- .summary = "Appends a new message to a stream. Creates the key if it doesn't exist.",
- .since = "5.0.0",
- .complexity = "O(1) when adding a new entry, O(N) when trimming where N being the number of entries evicted.",
- .tips = "nondeterministic_output",
- .history = (RedisModuleCommandHistoryEntry[]){
- /* NOTE: All versions specified should be the module's versions, not
- * Redis'! We use Redis versions in this example for the purpose of
- * testing (comparing the output with the output of the vanilla
- * XADD). */
- {"6.2.0", "Added the `NOMKSTREAM` option, `MINID` trimming strategy and the `LIMIT` option."},
- {"7.0.0", "Added support for the `<ms>-*` explicit ID form."},
- {"8.2.0", "Added the `KEEPREF`, `DELREF` and `ACKED` options."},
- {0}
- },
- .key_specs = (RedisModuleCommandKeySpec[]){
- {
- .notes = "UPDATE instead of INSERT because of the optional trimming feature",
- .flags = REDISMODULE_CMD_KEY_RW | REDISMODULE_CMD_KEY_UPDATE,
- .begin_search_type = REDISMODULE_KSPEC_BS_INDEX,
- .bs.index.pos = 1,
- .find_keys_type = REDISMODULE_KSPEC_FK_RANGE,
- .fk.range = {0,1,0}
- },
- {0}
- },
- .args = (RedisModuleCommandArg[]){
- {
- .name = "key",
- .type = REDISMODULE_ARG_TYPE_KEY,
- .key_spec_index = 0
- },
- {
- .name = "nomkstream",
- .type = REDISMODULE_ARG_TYPE_PURE_TOKEN,
- .token = "NOMKSTREAM",
- .since = "6.2.0",
- .flags = REDISMODULE_CMD_ARG_OPTIONAL
- },
- {
- .name = "condition",
- .type = REDISMODULE_ARG_TYPE_ONEOF,
- .flags = REDISMODULE_CMD_ARG_OPTIONAL,
- .subargs = (RedisModuleCommandArg[]){
- {
- .name = "keepref",
- .type = REDISMODULE_ARG_TYPE_PURE_TOKEN,
- .token = "KEEPREF"
- },
- {
- .name = "delref",
- .type = REDISMODULE_ARG_TYPE_PURE_TOKEN,
- .token = "DELREF"
- },
- {
- .name = "acked",
- .type = REDISMODULE_ARG_TYPE_PURE_TOKEN,
- .token = "ACKED"
- },
- {0}
- }
- },
- {
- .name = "idmp",
- .type = REDISMODULE_ARG_TYPE_ONEOF,
- .flags = REDISMODULE_CMD_ARG_OPTIONAL,
- .subargs = (RedisModuleCommandArg[]){
- {
- .name = "idmpauto-with-pid",
- .type = REDISMODULE_ARG_TYPE_BLOCK,
- .subargs = (RedisModuleCommandArg[]){
- {
- .name = "idmpauto-token",
- .type = REDISMODULE_ARG_TYPE_PURE_TOKEN,
- .token = "IDMPAUTO"
- },
- {
- .name = "pid",
- .type = REDISMODULE_ARG_TYPE_STRING,
- },
- {0}
- }
- },
- {
- .name = "idmp-with-pid-iid",
- .type = REDISMODULE_ARG_TYPE_BLOCK,
- .subargs = (RedisModuleCommandArg[]){
- {
- .name = "idmp-token",
- .type = REDISMODULE_ARG_TYPE_PURE_TOKEN,
- .token = "IDMP"
- },
- {
- .name = "pid",
- .type = REDISMODULE_ARG_TYPE_STRING,
- },
- {
- .name = "iid",
- .type = REDISMODULE_ARG_TYPE_STRING,
- },
- {0}
- }
- },
- {0}
- }
- },
- {
- .name = "trim",
- .type = REDISMODULE_ARG_TYPE_BLOCK,
- .flags = REDISMODULE_CMD_ARG_OPTIONAL,
- .subargs = (RedisModuleCommandArg[]){
- {
- .name = "strategy",
- .type = REDISMODULE_ARG_TYPE_ONEOF,
- .subargs = (RedisModuleCommandArg[]){
- {
- .name = "maxlen",
- .type = REDISMODULE_ARG_TYPE_PURE_TOKEN,
- .token = "MAXLEN",
- },
- {
- .name = "minid",
- .type = REDISMODULE_ARG_TYPE_PURE_TOKEN,
- .token = "MINID",
- .since = "6.2.0",
- },
- {0}
- }
- },
- {
- .name = "operator",
- .type = REDISMODULE_ARG_TYPE_ONEOF,
- .flags = REDISMODULE_CMD_ARG_OPTIONAL,
- .subargs = (RedisModuleCommandArg[]){
- {
- .name = "equal",
- .type = REDISMODULE_ARG_TYPE_PURE_TOKEN,
- .token = "="
- },
- {
- .name = "approximately",
- .type = REDISMODULE_ARG_TYPE_PURE_TOKEN,
- .token = "~"
- },
- {0}
- }
- },
- {
- .name = "threshold",
- .type = REDISMODULE_ARG_TYPE_STRING,
- .display_text = "threshold" /* Just for coverage, doesn't have a visible effect */
- },
- {
- .name = "count",
- .type = REDISMODULE_ARG_TYPE_INTEGER,
- .token = "LIMIT",
- .since = "6.2.0",
- .flags = REDISMODULE_CMD_ARG_OPTIONAL
- },
- {0}
- }
- },
- {
- .name = "id-selector",
- .type = REDISMODULE_ARG_TYPE_ONEOF,
- .subargs = (RedisModuleCommandArg[]){
- {
- .name = "auto-id",
- .type = REDISMODULE_ARG_TYPE_PURE_TOKEN,
- .token = "*"
- },
- {
- .name = "id",
- .type = REDISMODULE_ARG_TYPE_STRING,
- },
- {0}
- }
- },
- {
- .name = "data",
- .type = REDISMODULE_ARG_TYPE_BLOCK,
- .flags = REDISMODULE_CMD_ARG_MULTIPLE,
- .subargs = (RedisModuleCommandArg[]){
- {
- .name = "field",
- .type = REDISMODULE_ARG_TYPE_STRING,
- },
- {
- .name = "value",
- .type = REDISMODULE_ARG_TYPE_STRING,
- },
- {0}
- }
- },
- {0}
- }
- };
- if (RedisModule_SetCommandInfo(xadd, &info) == REDISMODULE_ERR)
- return REDISMODULE_ERR;
-
- return REDISMODULE_OK;
-}