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 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283
|
/******************************************************************************
* ____ _ _____ *
* / ___| / \ | ___| C++ *
* | | / _ \ | |_ Actor *
* | |___ / ___ \| _| Framework *
* \____/_/ \_|_| *
* *
* Copyright 2011-2018 Dominik Charousset *
* *
* Distributed under the terms and conditions of the BSD 3-Clause License or *
* (at your option) under the terms and conditions of the Boost Software *
* License 1.0. See accompanying files LICENSE and LICENSE_ALTERNATIVE. *
* *
* If you did not receive a copy of the license files, see *
* http://opensource.org/licenses/BSD-3-Clause and *
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
#include <set>
#include <map>
#include <list>
#include <vector>
#include <string>
#include <unordered_set>
#include <unordered_map>
#include "caf/config.hpp"
#define CAF_SUITE inspector
#include "caf/test/unit_test.hpp"
#include "caf/actor_system.hpp"
#include "caf/type_erased_value.hpp"
#include "caf/binary_serializer.hpp"
#include "caf/actor_system_config.hpp"
#include "caf/binary_deserializer.hpp"
#include "caf/make_type_erased_value.hpp"
#include "caf/detail/stringification_inspector.hpp"
using namespace caf;
namespace {
template <class T>
class inspector_adapter_base {
public:
inspector_adapter_base(T& impl) : impl_(impl) {
// nop
}
protected:
T& impl_;
};
template <class RoundtripPolicy>
struct check_impl {
RoundtripPolicy& p_;
template <class T>
bool operator()(T x) {
return p_(x);
}
};
template <class T>
using nl = std::numeric_limits<T>;
// an empty type
struct dummy_tag_type {};
constexpr bool operator==(dummy_tag_type, dummy_tag_type) {
return true;
}
// a POD type
struct dummy_struct {
int a;
std::string b;
};
bool operator==(const dummy_struct& x, const dummy_struct& y) {
return x.a == y.a && x.b == y.b;
}
template <class Inspector>
typename Inspector::result_type inspect(Inspector& f, dummy_struct& x) {
return f(meta::type_name("dummy_struct"), x.a, x.b);
}
// two different styles of enums
enum dummy_enum { de_foo, de_bar };
enum dummy_enum_class : short { foo, bar };
std::string to_string(dummy_enum_class x) {
return x == dummy_enum_class::foo ? "foo" : "bar";
}
template <class Policy>
void test_impl(Policy& p) {
check_impl<Policy> check{p};
// check primitive types
CAF_CHECK(check(true));
CAF_CHECK(check(false));
CAF_CHECK(check(nl<int8_t>::lowest()));
CAF_CHECK(check(nl<int8_t>::max()));
CAF_CHECK(check(nl<uint8_t>::lowest()));
CAF_CHECK(check(nl<uint8_t>::max()));
CAF_CHECK(check(nl<int16_t>::lowest()));
CAF_CHECK(check(nl<int16_t>::max()));
CAF_CHECK(check(nl<uint16_t>::lowest()));
CAF_CHECK(check(nl<uint16_t>::max()));
CAF_CHECK(check(nl<int32_t>::lowest()));
CAF_CHECK(check(nl<int32_t>::max()));
CAF_CHECK(check(nl<uint32_t>::lowest()));
CAF_CHECK(check(nl<uint32_t>::max()));
CAF_CHECK(check(nl<int64_t>::lowest()));
CAF_CHECK(check(nl<int64_t>::max()));
CAF_CHECK(check(nl<uint64_t>::lowest()));
CAF_CHECK(check(nl<uint64_t>::max()));
CAF_CHECK(check(nl<float>::lowest()));
CAF_CHECK(check(nl<float>::max()));
CAF_CHECK(check(nl<double>::lowest()));
CAF_CHECK(check(nl<double>::max()));
CAF_CHECK(check(nl<long double>::lowest()));
CAF_CHECK(check(nl<long double>::max()));
// atoms
CAF_CHECK(check(atom("")));
CAF_CHECK(check(atom("0123456789")));
// various containers
CAF_CHECK(check(std::array<int, 3>{{1, 2, 3}}));
CAF_CHECK(check(std::vector<char>{}));
CAF_CHECK(check(std::vector<char>{1, 2, 3}));
CAF_CHECK(check(std::vector<int>{}));
CAF_CHECK(check(std::vector<int>{1, 2, 3}));
CAF_CHECK(check(std::list<int>{}));
CAF_CHECK(check(std::list<int>{1, 2, 3}));
CAF_CHECK(check(std::set<int>{}));
CAF_CHECK(check(std::set<int>{1, 2, 3}));
CAF_CHECK(check(std::unordered_set<int>{}));
CAF_CHECK(check(std::unordered_set<int>{1, 2, 3}));
CAF_CHECK(check(std::map<int, int>{}));
CAF_CHECK(check(std::map<int, int>{{1, 1}, {2, 2}, {3, 3}}));
CAF_CHECK(check(std::unordered_map<int, int>{}));
CAF_CHECK(check(std::unordered_map<int, int>{{1, 1}, {2, 2}, {3, 3}}));
// user-defined types
CAF_CHECK(check(dummy_struct{10, "hello"}));
// optionals
CAF_CHECK(check(optional<int>{}));
CAF_CHECK(check(optional<int>{42}));
// strings
CAF_CHECK(check(std::string{}));
CAF_CHECK(check(std::string{""}));
CAF_CHECK(check(std::string{"test"}));
CAF_CHECK(check(std::u16string{}));
CAF_CHECK(check(std::u16string{u""}));
CAF_CHECK(check(std::u16string{u"test"}));
CAF_CHECK(check(std::u32string{}));
CAF_CHECK(check(std::u32string{U""}));
CAF_CHECK(check(std::u32string{U"test"}));
// enums
CAF_CHECK(check(de_foo));
CAF_CHECK(check(de_bar));
CAF_CHECK(check(dummy_enum_class::foo));
CAF_CHECK(check(dummy_enum_class::bar));
// empty type
CAF_CHECK(check(dummy_tag_type{}));
// pair and tuple
CAF_CHECK(check(std::make_pair(std::string("hello"), 42)));
CAF_CHECK(check(std::make_pair(std::make_pair(1, 2), 3)));
CAF_CHECK(check(std::make_pair(std::make_tuple(1, 2), 3)));
CAF_CHECK(check(std::make_tuple(1, 2, 3, 4)));
CAF_CHECK(check(std::make_tuple(std::make_tuple(1, 2, 3), 4)));
CAF_CHECK(check(std::make_tuple(std::make_pair(1, 2), 3, 4)));
// variant<>
CAF_CHECK(check(variant<none_t>{}));
CAF_CHECK(check(variant<none_t, int, std::string>{}));
CAF_CHECK(check(variant<none_t, int, std::string>{42}));
CAF_CHECK(check(variant<none_t, int, std::string>{std::string{"foo"}}));
}
} // namespace
namespace {
struct stringification_inspector_policy {
template <class T>
std::string f(T& x) {
std::string str;
detail::stringification_inspector fun{str};
fun(x);
return str;
}
// only check for compilation for complex types
template <class T>
typename std::enable_if<!std::is_integral<T>::value, bool>::type
operator()(T& x) {
CAF_MESSAGE("f(x) = " << f(x));
return true;
}
// check result for integral types
template <class T>
typename std::enable_if<std::is_integral<T>::value, bool>::type
operator()(T& x) {
CAF_CHECK_EQUAL(f(x), std::to_string(x));
return true;
}
// check result for bool
bool operator()(bool& x) {
CAF_CHECK_EQUAL(f(x), std::string{x ? "true" : "false"});
return true;
}
// check result for atoms
bool operator()(atom_value& x) {
CAF_CHECK_EQUAL(f(x), "'" + to_string(x) + "'");
return true;
}
};
} // namespace
CAF_TEST(stringification_inspector) {
stringification_inspector_policy p;
test_impl(p);
}
namespace {
template <class T>
struct is_integral_or_enum {
static constexpr bool value = std::is_integral<T>::value
|| std::is_enum<T>::value;
};
struct binary_serialization_policy {
execution_unit& context;
template <class T>
std::vector<char> to_buf(const T& x) {
std::vector<char> result;
binary_serializer sink{&context, result};
if (auto err = sink(x))
CAF_FAIL("failed to serialize " << x << ": " << err);
return result;
}
template <class T>
detail::enable_if_t<is_integral_or_enum<T>::value, bool> operator()(T& x) {
auto buf = to_buf(x);
binary_deserializer source{&context, buf};
auto y = static_cast<T>(0);
if (auto err = source(y))
CAF_FAIL("failed to deserialize from buffer: " << err);
CAF_CHECK_EQUAL(x, y);
return detail::safe_equal(x, y);
}
template <class T>
detail::enable_if_t<!is_integral_or_enum<T>::value, bool> operator()(T& x) {
auto buf = to_buf(x);
binary_deserializer source{&context, buf};
T y;
if (auto err = source(y))
CAF_FAIL("failed to deserialize from buffer: " << err);
CAF_CHECK_EQUAL(x, y);
return detail::safe_equal(x, y);
}
};
} // namespace
CAF_TEST(binary_serialization_inspectors) {
actor_system_config cfg;
cfg.add_message_type<dummy_struct>("dummy_struct");
actor_system sys{cfg};
scoped_execution_unit context;
binary_serialization_policy p{context};
test_impl(p);
}
|