#include "stdafx.h" static acl::string __keypre("test_key"); static bool test_set(acl::redis& cmd, int n) { acl::string key, val; for (int i = 0; i < n; i++) { key.format("%s_%d", __keypre.c_str(), i); val.format("val_%s", key.c_str()); cmd.clear(); if (cmd.set(key, val) == false) { printf("set key: %s error: %s\r\n", key.c_str(), cmd.result_error()); return false; } else if (i < 10) printf("set key: %s ok\r\n", key.c_str()); } return true; } static bool test_get(acl::redis& cmd, int n) { acl::string key, val; for (int i = 0; i < n; i++) { key.format("%s_%d", __keypre.c_str(), i); cmd.clear(); val.clear(); if (cmd.get(key, val) == false) { printf("get key: %s error: %s\r\n", key.c_str(), cmd.result_error()); return false; } else if (i < 10) printf("get key: %s ok, val: %s\r\n", key.c_str(), val.c_str()); } return true; } static bool test_del(acl::redis& cmd, int n) { acl::string key; for (int i = 0; i < n; i++) { key.format("%s_%d", __keypre.c_str(), i); cmd.clear(); int ret = cmd.del_one(key.c_str()); if (ret < 0) { printf("del key: %s error: %s\r\n", key.c_str(), cmd.result_error()); return false; } else if (i < 10) printf("del ok, key: %s\r\n", key.c_str()); } return true; } static bool test_expire(acl::redis& cmd, int n) { acl::string key; for (int i = 0; i < n; i++) { key.format("%s_%d", __keypre.c_str(), i); cmd.clear(); if (cmd.expire(key.c_str(), 100) < 0) { printf("expire key: %s error: %s\r\n", key.c_str(), cmd.result_error()); return false; } else if (i < 10) printf("expire ok, key: %s\r\n", key.c_str()); } return true; } static bool test_ttl(acl::redis& cmd, int n) { acl::string key; int ttl; for (int i = 0; i < n; i++) { key.format("%s_%d", __keypre.c_str(), i); cmd.clear(); if ((ttl = cmd.ttl(key.c_str())) < 0) { printf("get ttl key: %s error: %s\r\n", key.c_str(), cmd.result_error()); return false; } else if (i < 10) printf("ttl ok, key: %s, ttl: %d\r\n", key.c_str(), ttl); } return true; } static bool test_exists(acl::redis& cmd, int n) { acl::string key; for (int i = 0; i < n; i++) { key.format("%s_%d", __keypre.c_str(), i); cmd.clear(); if (cmd.exists(key.c_str()) == false) { if (i < 10) printf("no exists key: %s\r\n", key.c_str()); } else if (i < 10) printf("exists key: %s\r\n", key.c_str()); } return true; } static bool test_type(acl::redis& cmd, int n) { acl::string key; for (int i = 0; i < n; i++) { key.format("%s_%d", __keypre.c_str(), i); cmd.clear(); acl::redis_key_t ret = cmd.type(key.c_str()); if (ret == acl::REDIS_KEY_NONE) { printf("unknown type key: %s error: %s\r\n", key.c_str(), cmd.result_error()); return false; } else if (i < 10) printf("type ok, key: %s, ret: %d\r\n", key.c_str(), ret); } return true; } static void usage(const char* procname) { printf("usage: %s -h[help]\r\n" "-s redis_addr[127.0.0.1:6379]\r\n" "-S path_to_libpolarssl.so [if be set ssl will be used, default: false]\r\n" "-c [if using redis cluster mode, default: false]\r\n" "-p password[default: \"\"]\r\n" "-d dbnum[default: 0]\r\n" "-n count\r\n" "-C connect_timeout[default: 10]\r\n" "-T rw_timeout[default: 10]\r\n" "-a cmd[set|del|expire|ttl|exists|type|all]\r\n", procname); printf("sample:\r\n\r\n" "%s -s 127.0.0.1:6379 -c -S ./libpolarssl.so -a set\r\n", procname); } int main(int argc, char* argv[]) { int ch, n = 1, conn_timeout = 10, rw_timeout = 10, dbnum = 0; acl::string addr("127.0.0.1:6379"), command, passwd; acl::string ssl_libpath; bool cluster_mode = false; while ((ch = getopt(argc, argv, "hs:n:C:T:a:p:d:S:c")) > 0) { switch (ch) { case 'h': usage(argv[0]); return 0; case 's': addr = optarg; break; case 'n': n = atoi(optarg); break; case 'C': conn_timeout = atoi(optarg); break; case 'T': rw_timeout = atoi(optarg); break; case 'a': command = optarg; break; case 'p': passwd = optarg; break; case 'd': dbnum = atoi(optarg); break; case 'S': ssl_libpath = optarg; break; case 'c': cluster_mode = true; break; default: break; } } acl::acl_cpp_init(); acl::log::stdout_open(true); acl::redis cmd; acl::redis_client client(addr.c_str(), conn_timeout, rw_timeout); client.set_password(passwd); if (dbnum > 0) client.set_db(dbnum); acl::redis_client_cluster cluster; cluster.set(addr.c_str(), 0, conn_timeout, rw_timeout); acl::polarssl_conf* ssl_conf; // the global variable. if (!ssl_libpath.empty() && access(ssl_libpath.c_str(), R_OK) == 0) { // set the path of libpolarssl.so acl::polarssl_conf::set_libpath(ssl_libpath); // load libpolarssl.so dynamically acl::polarssl_conf::load(); ssl_conf = new acl::polarssl_conf; // bind libpolarssl client.set_ssl_conf(ssl_conf); cluster.set_ssl_conf(ssl_conf); printf("SSL communication will be used\r\n"); } else { ssl_conf = NULL; printf("no SSL\r\n"); } if (cluster_mode) cmd.set_cluster(&cluster, 0); else cmd.set_client(&client); bool ret; if (command == "set") ret = test_set(cmd, n); else if (command == "get") ret = test_get(cmd, n); else if (command == "del") ret = test_del(cmd, n); else if (command == "expire") ret = test_expire(cmd, n); else if (command == "ttl") ret = test_ttl(cmd, n); else if (command == "exists") ret = test_exists(cmd, n); else if (command == "type") ret = test_type(cmd, n); else if (command == "all") { ret = test_set(cmd, n) && test_get(cmd, n) && test_expire(cmd, n) && test_ttl(cmd, n) && test_exists(cmd, n) && test_type(cmd, n) && test_del(cmd, n); } else { ret = false; printf("unknown cmd: %s\r\n", command.c_str()); } if (ret == true) printf("test OK!\r\n"); else printf("test failed!\r\n"); #ifdef WIN32 printf("enter any key to exit\r\n"); getchar(); #endif delete ssl_conf; return 0; }