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
|
//
// lager - library for functional interactive c++ programs
// Copyright (C) 2017 Juan Pedro Bolivar Puente
//
// This file is part of lager.
//
// lager is free software: you can redistribute it and/or modify
// it under the terms of the MIT License, as detailed in the LICENSE
// file located at the root of this source code distribution,
// or here: <https://github.com/arximboldi/lager/blob/master/LICENSE>
//
#include "test/cereal/cerealize.hpp"
#include <catch2/catch.hpp>
#include <lager/extra/cereal/struct.hpp>
#include <lager/extra/struct.hpp>
namespace ns {
struct foo
{
int a;
float b;
};
} // namespace ns
LAGER_STRUCT(ns, foo, a, b);
TEST_CASE("basic")
{
auto x = ns::foo{42, 12};
auto y = cerealize(x);
CHECK(x.a == y.a);
CHECK(x.b == y.b);
}
namespace ns {
struct empty_foo
{};
} // namespace ns
LAGER_STRUCT(ns, empty_foo);
TEST_CASE("empty")
{
auto x = ns::empty_foo{};
auto y = cerealize(x);
(void) x;
(void) y;
}
namespace ns {
template <typename A, typename B>
struct foo_tpl
{
A a;
B b;
};
} // namespace ns
LAGER_STRUCT_TEMPLATE(ns, (class A, class B), (foo_tpl<A, B>), a, b);
TEST_CASE("template")
{
auto x = ns::foo_tpl<float, int>{42, 12};
auto y = cerealize(x);
CHECK(x.a == y.a);
CHECK(x.b == y.b);
}
namespace ns {
template <typename A, typename B>
struct foo_tpl2
{
struct nested
{
A a;
B b;
LAGER_STRUCT_NESTED(nested, a, b);
};
};
} // namespace ns
TEST_CASE("template_nested")
{
auto x = ns::foo_tpl2<float, int>::nested{42, 12};
auto y = cerealize(x);
CHECK(x.a == y.a);
CHECK(x.b == y.b);
}
|