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
|
/*
* This source code is released into the public domain.
*/
#include <concepts>
#include <cstdint>
#include <string>
#include <catch2/catch_test_macros.hpp>
#include <ucl.h>
import nihil.ucl;
TEST_CASE("ucl: integer: invariants", "[ucl]")
{
using namespace nihil::ucl;
static_assert(std::same_as<std::int64_t, integer::contained_type>);
REQUIRE(integer::ucl_type == object_type::integer);
REQUIRE(static_cast<::ucl_type>(integer::ucl_type) == UCL_INT);
static_assert(std::destructible<integer>);
static_assert(std::default_initializable<integer>);
static_assert(std::move_constructible<integer>);
static_assert(std::copy_constructible<integer>);
static_assert(std::equality_comparable<integer>);
static_assert(std::totally_ordered<integer>);
static_assert(std::swappable<integer>);
}
TEST_CASE("ucl: integer: default construct", "[ucl]")
{
auto i = nihil::ucl::integer();
REQUIRE(i == 0);
}
TEST_CASE("ucl: integer: construct", "[ucl]")
{
auto i = nihil::ucl::integer(42);
REQUIRE(i == 42);
}
TEST_CASE("ucl: integer: swap", "[ucl]")
{
// do not add using namespace nihil::ucl
auto i1 = nihil::ucl::integer(1);
auto i2 = nihil::ucl::integer(2);
swap(i1, i2);
REQUIRE(i1 == 2);
REQUIRE(i2 == 1);
}
TEST_CASE("ucl: integer: value()", "[ucl]")
{
auto i = nihil::ucl::integer(42);
REQUIRE(i.value() == 42);
}
TEST_CASE("ucl: integer: key()", "[ucl]")
{
using namespace nihil::ucl;
auto obj = parse("an_int = 42");
REQUIRE(object_cast<integer>(obj["an_int"]).key() == "an_int");
auto i = nihil::ucl::integer(42);
REQUIRE(i.key() == "");
}
TEST_CASE("ucl: integer: operator==", "[ucl]")
{
auto i = nihil::ucl::integer(42);
REQUIRE(i == 42);
REQUIRE(i == nihil::ucl::integer(42));
REQUIRE(i != 1);
REQUIRE(i != nihil::ucl::integer(1));
}
TEST_CASE("ucl: integer: operator<=>", "[ucl]")
{
auto i = nihil::ucl::integer(42);
REQUIRE(i < 43);
REQUIRE(i < nihil::ucl::integer(43));
REQUIRE(i > 1);
REQUIRE(i > nihil::ucl::integer(1));
}
TEST_CASE("ucl: integer: parse", "[ucl]")
{
using namespace std::literals;
auto obj = nihil::ucl::parse("value = 42"sv);
auto v = obj["value"];
REQUIRE(v.key() == "value");
REQUIRE(object_cast<nihil::ucl::integer>(v) == 42);
}
TEST_CASE("ucl: integer: emit", "[ucl]")
{
auto i = nihil::ucl::integer(42);
auto str = std::format("{}", i);
REQUIRE(str == "42");
}
TEST_CASE("ucl: integer: parse and emit", "[ucl]")
{
auto ucl = nihil::ucl::parse("int = 42;");
auto output = std::string();
emit(ucl, nihil::ucl::emitter::configuration,
std::back_inserter(output));
REQUIRE(output == "int = 42;\n");
}
|