aboutsummaryrefslogtreecommitdiff
path: root/core/tests/participant.cpp
blob: a5265822a751ff20cd8c79155f677c597a88752f (plain)
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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
#include "turns/core/participant.hpp"

#include "turns/core/disposition.hpp"

#include <catch2/catch_approx.hpp>
#include <catch2/catch_test_macros.hpp>

#include <nlohmann/json.hpp>

#include <compare>

namespace turns::core::tests
{

  TEST_CASE("Constructing a participant", "[core][construction]")
  {
    auto constexpr name = "Participant #1";
    auto constexpr priority = 17;
    auto constexpr disposition = disposition::friendly;

    auto json = nlohmann::json::parse(R"(
    {
    "name": "Participant #1",
    "priority": 17,
    "disposition": 1,
    "is-active": false,
    "is-defeated": false
    }
    )");

    SECTION("Can be constructed using default ctor")
    {
      auto instance = participant{};
      REQUIRE(instance.name() == "");
      REQUIRE(instance.priority() == 0);
      REQUIRE(instance.disposition() == disposition::neutral);
      REQUIRE(!instance.is_active());
      REQUIRE(!instance.is_defeated());
    }

    SECTION("Can be constructed using ctor")
    {
      auto instance = participant{name, priority, disposition};
      REQUIRE(instance.name() == name);
      REQUIRE(instance.priority() == priority);
      REQUIRE(instance.disposition() == disposition);
      REQUIRE(!instance.is_active());
      REQUIRE(!instance.is_defeated());
    }

    SECTION("Can be constructed using factory")
    {
      auto instance = participant::create(name, priority, disposition);
      REQUIRE(instance->name() == name);
      REQUIRE(instance->priority() == priority);
      REQUIRE(instance->disposition() == disposition);
      REQUIRE(!instance->is_active());
      REQUIRE(!instance->is_defeated());
    }

    SECTION("Can be constructed using JSON factory", "[json]")
    {
      auto instance = participant::create(json);
      REQUIRE(instance->name() == name);
      REQUIRE(instance->priority() == priority);
      REQUIRE(instance->disposition() == disposition);
      REQUIRE(!instance->is_active());
      REQUIRE(!instance->is_defeated());
    }
  }

  TEST_CASE("Setting properties on participant", "[core][properties]")
  {
    auto constexpr name = "Participant #2";
    auto constexpr priority = 10;
    auto constexpr disposition = disposition::hostile;

    auto instance = participant{name, priority, disposition};

    SECTION("Setting '::disposition' via proxy changes the 'disposition' value")
    {
      auto old = instance.disposition().get_value();
      instance.disposition() = static_cast<core::disposition>(static_cast<int>(disposition) - 1);
      REQUIRE(instance.disposition() != old);
    }

    SECTION("Setting '::disposition' via glib changes the 'disposition' value")
    {
      auto old = instance.disposition().get_value();
      instance.set_property("disposition", static_cast<core::disposition>(static_cast<int>(disposition) - 1));
      REQUIRE(instance.disposition() != old);
    }

    SECTION("Setting '::is-active' via proxy changes the 'is_active' value")
    {
      auto old = instance.is_active().get_value();
      instance.is_active() = !old;
      REQUIRE(instance.is_active() != old);
    }

    SECTION("Setting '::is-active' via glib changes the 'is_active' value")
    {
      auto old = instance.is_active().get_value();
      instance.set_property("is-active", !old);
      REQUIRE(instance.is_active() != old);
    }

    SECTION("Setting '::is-defeated' via proxy changes the 'is_defeated' value")
    {
      auto old = instance.is_defeated().get_value();
      instance.is_defeated() = !old;
      REQUIRE(instance.is_defeated() != old);
    }

    SECTION("Setting '::is-defeated' via glib changes the 'is_defeated' value")
    {
      auto old = instance.is_defeated().get_value();
      instance.set_property("is-defeated", !old);
      REQUIRE(instance.is_defeated() != old);
    }

    SECTION("Setting '::name' via proxy changes the 'name' value")
    {
      auto old = instance.name().get_value();
      instance.name() = old + " Changed";
      REQUIRE(instance.name().get_value() != old);
    }

    SECTION("Setting '::name' via glib changes the 'name' value")
    {
      auto old = instance.name().get_value();
      instance.set_property("name", old + " Changed");
      REQUIRE(instance.name().get_value() != old);
    }

    SECTION("Setting '::priority' via proxy changes the 'priority' value")
    {
      auto old = instance.priority().get_value();
      instance.priority() = old + 1;
      REQUIRE(instance.priority() != old);
    }

    SECTION("Setting '::priority' via glib changes the 'priority' value")
    {
      auto old = instance.priority().get_value();
      instance.set_property("priority", old + 1);
      REQUIRE(instance.priority() != old);
    }
  }

  TEST_CASE("A freshly constructed participant")
  {
    auto constexpr constructed_name = "Vana Thistletop";
    auto constexpr constructed_priority = 17;
    auto constexpr constructed_disposition = disposition::friendly;
    auto instance = participant{constructed_name, constructed_priority, constructed_disposition};

    SECTION("can be created")
    {
      REQUIRE(participant::create(constructed_name, constructed_priority, constructed_disposition));
    }

    SECTION("allows access to its disposition")
    {
      SECTION("allowing to get it")
      {
        REQUIRE(instance.disposition() == constructed_disposition);
      }

      SECTION("allowing to get it via a constant object")
      {
        auto const & cref = instance;
        REQUIRE(cref.disposition() == constructed_disposition);
      }

      SECTION("allowing to set it")
      {
        instance.disposition() = disposition::hostile;
        REQUIRE(instance.disposition() == disposition::hostile);
      }
    }

    SECTION("allows access to its name")
    {
      SECTION("allowing to get it")
      {
        REQUIRE(instance.name() == constructed_name);
      }

      SECTION("allowing to get it via a constant object")
      {
        auto const & cref = instance;
        REQUIRE(cref.name() == constructed_name);
      }

      SECTION("allowing to set it")
      {
        instance.name() = "replaced";
        REQUIRE(instance.name() == "replaced");
      }
    }

    SECTION("allows access to its priority")
    {
      SECTION("allowing to get it")
      {
        REQUIRE(instance.priority() == constructed_priority);
      }

      SECTION("allowing to get it via a constant object")
      {
        auto const & cref = instance;
        REQUIRE(cref.priority() == constructed_priority);
      }

      SECTION("allowing to set it")
      {
        instance.priority() = 4;
        REQUIRE(instance.priority() == 4);
      }
    }

    SECTION("can be compared with another participant")
    {
      auto equivalent_instance = participant{"Equivalent", constructed_priority, constructed_disposition};
      auto lesser_instance = participant{"Lesser", constructed_priority - 1, constructed_disposition};
      auto greater_instance = participant{"Greater", constructed_priority + 1, constructed_disposition};

      SECTION("yielding std::partial_ordering::equivalent for itself")
      {
        REQUIRE((instance <=> equivalent_instance) == std::partial_ordering::equivalent);
      }

      SECTION("yielding std::partial_ordering::equivalent for an equivalent participant")
      {
        REQUIRE((instance <=> equivalent_instance) == std::partial_ordering::equivalent);
      }

      SECTION("yielding std::partial_ordering::greater for a lesser participant")
      {
        REQUIRE((instance <=> lesser_instance) == std::partial_ordering::greater);
      }

      SECTION("yielding std::partial_ordering::less for a greater participant")
      {
        REQUIRE((instance <=> greater_instance) == std::partial_ordering::less);
      }
    }
  }

  TEST_CASE("Serializing a participant")
  {
    auto instance = participant::create("Participant #0", 17.2, disposition::friendly);
    auto serialized = instance->serialize();

    SECTION("the active state is serialized correctly")
    {
      REQUIRE_FALSE(serialized.at("is-active"));
    }

    SECTION("the disposition is serialized correctly")
    {
      REQUIRE(serialized.at("disposition") == disposition::friendly);
    }

    SECTION("the name is serialized correctly")
    {
      REQUIRE(serialized.at("name") == "Participant #0");
    }

    SECTION("the priority is serialized correctly")
    {
      REQUIRE(serialized.at("priority") == Catch::Approx{17.2});
    }
  }

  TEST_CASE("De-Serializing a participant")
  {
    auto serialized = nlohmann::json::parse(R"(
    {
    "name": "Participant #1",
    "priority": -2.3,
    "disposition": 2,
    "is-active": true
    }
    )");
    auto instance = participant::create(serialized);

    SECTION("the active state is de-serialized correctly")
    {
      REQUIRE(instance->is_active());
    }

    SECTION("the disposition is de-serialized correctly")
    {
      REQUIRE(instance->disposition() == disposition::hostile);
    }

    SECTION("the name is de-serialized correctly")
    {
      REQUIRE(instance->name() == "Participant #1");
    }

    SECTION("the priority is de-serialized correctly")
    {
      REQUIRE(instance->priority() == Catch::Approx{-2.3});
    }
  }

}  // namespace turns::core::tests