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
|
// Copyright Maarten L. Hekkelman 2026
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#include <catch2/catch_test_macros.hpp>
#include <zeep/el/object.hpp>
#include <zeep/el/serializer.hpp>
#include <zeep/http/scope.hpp>
#include <zeem/serialize.hpp>
#include <chrono>
#include <iostream>
#include <map>
#include <optional>
#include <string>
#include <type_traits>
#include <vector>
using namespace std;
namespace e = zeep::el;
struct Opname
{
string id;
map<string, float> standen;
template <typename Archive>
void serialize(Archive &ar, uint64_t /*version*/)
{
// clang-format off
ar & zeem::name_value_pair("id", id)
& zeem::name_value_pair("standen", standen);
// clang-format on
}
auto operator<=>(const Opname &) const = default;
};
static_assert(not std::is_constructible_v<e::object, Opname>);
using a_map_type = map<string, float>;
static_assert(e::is_serializable_map_type_v<a_map_type>);
static_assert(std::is_constructible_v<e::object, std::string>);
TEST_CASE("test-1")
{
Opname opn{ "1", { { "een", 0.1f },
{ "twee", 0.2f } } };
e::object o = e::serializer<Opname>::serialize(opn);
std::cout << o << "\n";
Opname opn2 = e::serializer<Opname>::deserialize(o);
CHECK(opn == opn2);
}
TEST_CASE("test-2")
{
std::vector<Opname> opnames{
{ "1", { { "een", 0.1f },
{ "twee", 0.2f } } },
{ "2", { { "drie", 0.3f },
{ "vier", 0.4f } } },
};
e::object o = e::serializer<std::vector<Opname>>::serialize(opnames);
std::cout << o << "\n";
auto opn2 = e::serializer<std::vector<Opname>>::deserialize(o);
CHECK(opnames == opn2);
}
TEST_CASE("test-3")
{
Opname opn{ "1", { { "een", 0.1f },
{ "twee", 0.2f } } };
auto o_opn = std::make_optional<Opname>(opn);
// static_assert(zeep::el::is_serializable_optional_type_v<std::optional<Opname>>, "");
e::object o = e::serializer<std::optional<Opname>>::serialize(o_opn);
std::cout << o << "\n";
auto opn2 = e::serializer<std::optional<Opname>>::deserialize(o);
CHECK(*o_opn == opn2);
// check with empty
o_opn.reset();
o = e::serializer<std::optional<Opname>>::serialize(o_opn);
std::cout << o << "\n";
opn2 = e::serializer<std::optional<Opname>>::deserialize(o);
CHECK_FALSE(opn2.has_value());
}
TEST_CASE("test-4")
{
auto now = std::chrono::system_clock::now();
auto o = e::serializer<decltype(now)>::serialize(now);
std::cout << o << '\n';
auto n = e::serializer<decltype(now)>::deserialize(o);
CHECK(n == now);
}
TEST_CASE("test-5")
{
zeep::http::scope scope;
Opname opn{ "1", { { "een", 0.1f },
{ "twee", 0.2f } } };
static_assert(e::is_serializable_to_object_v<Opname>);
scope.put("o1", e::to_object(opn));
std::vector<Opname> opn_v{ opn, opn };
scope.put("o2", e::to_object(opn_v));
}
TEST_CASE("test-6")
{
enum class Status
{
RUNNING,
STOPPED
};
zeem::value_serializer<Status>::init({ { Status::RUNNING, "running" },
{ Status::STOPPED, "stopped" } });
Status status = Status::RUNNING;
e::object o = e::serializer<Status>::serialize(status);
std::cout << o << "\n";
auto status2 = e::serializer<Status>::deserialize(o);
CHECK(status == status2);
}
|