1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
|
/* Copyright (c) 2025 Ruben Perez Hidalgo (rubenperez038 at gmail dot com)
*
* Distributed under the Boost Software License, Version 1.0. (See
* accompanying file LICENSE.txt)
*/
#include <boost/redis/connection.hpp>
#include <boost/redis/ignore.hpp>
#include <boost/system/error_code.hpp>
#define BOOST_TEST_MODULE conversions
#include <boost/test/included/unit_test.hpp>
#include "common.hpp"
namespace net = boost::asio;
using boost::redis::connection;
using boost::redis::ignore_t;
using boost::redis::request;
using boost::redis::response;
using boost::system::error_code;
namespace {
BOOST_AUTO_TEST_CASE(ints)
{
// Setup
net::io_context ioc;
auto conn = std::make_shared<connection>(ioc);
run(conn);
// Get an integer key as all possible C++ integral types
request req;
req.push("SET", "key", 42);
for (int i = 0; i < 10; ++i)
req.push("GET", "key");
response<
ignore_t,
signed char,
unsigned char,
short,
unsigned short,
int,
unsigned int,
long,
unsigned long,
long long,
unsigned long long>
resp;
bool finished = false;
conn->async_exec(req, resp, [conn, &finished](error_code ec, std::size_t) {
finished = true;
BOOST_TEST(ec == error_code());
conn->cancel();
});
// Run the operations
ioc.run_for(test_timeout);
BOOST_TEST(finished);
// Check
BOOST_TEST(std::get<1>(resp).value() == 42);
BOOST_TEST(std::get<2>(resp).value() == 42u);
BOOST_TEST(std::get<3>(resp).value() == 42);
BOOST_TEST(std::get<4>(resp).value() == 42u);
BOOST_TEST(std::get<5>(resp).value() == 42);
BOOST_TEST(std::get<6>(resp).value() == 42u);
BOOST_TEST(std::get<7>(resp).value() == 42);
BOOST_TEST(std::get<8>(resp).value() == 42u);
BOOST_TEST(std::get<9>(resp).value() == 42);
BOOST_TEST(std::get<10>(resp).value() == 42u);
}
BOOST_AUTO_TEST_CASE(bools)
{
// Setup
net::io_context ioc;
auto conn = std::make_shared<connection>(ioc);
run(conn);
// Get a boolean
request req;
req.push("SET", "key_true", "t");
req.push("SET", "key_false", "f");
req.push("GET", "key_true");
req.push("GET", "key_false");
response<ignore_t, ignore_t, bool, bool> resp;
bool finished = false;
conn->async_exec(req, resp, [conn, &finished](error_code ec, std::size_t) {
finished = true;
BOOST_TEST(ec == error_code());
conn->cancel();
});
// Run the operations
ioc.run_for(test_timeout);
// Check
BOOST_TEST(std::get<2>(resp).value() == true);
BOOST_TEST(std::get<3>(resp).value() == false);
}
BOOST_AUTO_TEST_CASE(floating_points)
{
// Setup
net::io_context ioc;
auto conn = std::make_shared<connection>(ioc);
run(conn);
// Get a boolean
request req;
req.push("SET", "key", "4.12");
req.push("GET", "key");
response<ignore_t, double> resp;
bool finished = false;
conn->async_exec(req, resp, [conn, &finished](error_code ec, std::size_t) {
finished = true;
BOOST_TEST(ec == error_code());
conn->cancel();
});
// Run the operations
ioc.run_for(test_timeout);
BOOST_TEST(finished);
// Check
BOOST_TEST(std::get<1>(resp).value() == 4.12);
}
} // namespace
|