summaryrefslogtreecommitdiff
path: root/gui/tests/participant_editor.cpp
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@gmail.com>2025-05-24 11:58:39 +0200
committerFelix Morgner <felix.morgner@gmail.com>2025-05-24 11:58:39 +0200
commit72ab1fb4c1bf363f46470816d8b914a78ac493c4 (patch)
tree27349a1bacbab4ea698be35d2d3d9b5184b15ca1 /gui/tests/participant_editor.cpp
parentb7f2ff4d991ae068f7834bf8e565f6261bf7fff1 (diff)
downloadturns-72ab1fb4c1bf363f46470816d8b914a78ac493c4.tar.xz
turns-72ab1fb4c1bf363f46470816d8b914a78ac493c4.zip
gui: restructure file layout and apply licenses
Diffstat (limited to 'gui/tests/participant_editor.cpp')
-rw-r--r--gui/tests/participant_editor.cpp155
1 files changed, 155 insertions, 0 deletions
diff --git a/gui/tests/participant_editor.cpp b/gui/tests/participant_editor.cpp
new file mode 100644
index 0000000..b5ddb9f
--- /dev/null
+++ b/gui/tests/participant_editor.cpp
@@ -0,0 +1,155 @@
+/*
+ * SPDX-FileCopyrightText: 2025 Felix Morgner <felix.morgner@gmail.com>
+ * SPDX-License-Identifier: LGPL-2.1-only
+ */
+
+#include "turns/ui/participant_editor.hpp"
+
+#include "turns/core/disposition.hpp"
+#include "turns/core/participant.hpp"
+#include "turns/lang/messages.hpp"
+
+#include <catch2/catch_test_macros.hpp>
+#include <catch2/generators/catch_generators.hpp>
+
+#include <glibmm/i18n.h>
+#include <glibmm/ustring.h>
+#include <glibmm/wrap.h>
+
+#include <gtkmm/builder.h>
+#include <gtkmm/listboxrow.h>
+#include <gtkmm/window.h>
+
+#include <adwaitamm/entryrow.hpp>
+#include <adwaitamm/spinrow.hpp>
+
+#include <gtk/gtk.h>
+
+#include <clocale>
+#include <memory>
+
+namespace turns::ui::tests
+{
+
+ TEST_CASE("A freshly constructed participant editor without a participant", "[windows]")
+ {
+ auto locale = GENERATE("en_US.UTF-8", "de_CH.UTF-8");
+ setlocale(LC_ALL, locale);
+
+ auto participant = core::Participant::create("Frederick Thumblewackle", 7.2, core::Disposition::Friendly);
+ auto instance = std::make_shared<ParticipantEditor>(nullptr);
+ auto window = Gtk::Window{};
+
+ SECTION("was successfully constructed")
+ {
+ REQUIRE(instance);
+ }
+
+ SECTION("has a non-empty title")
+ {
+ REQUIRE_FALSE(instance->get_title().empty());
+ }
+
+ SECTION("has its title set according to the active language")
+ {
+ REQUIRE(instance->get_title() == _(lang::add_participant));
+ }
+
+ SECTION("has an empty name")
+ {
+ REQUIRE(instance->get_name().empty());
+ }
+
+ SECTION("has a zero priority")
+ {
+ REQUIRE(instance->get_priority() == 0);
+ }
+
+ SECTION("has neutral disposition")
+ {
+ REQUIRE(instance->get_disposition() == core::Disposition::Neutral);
+ }
+
+ SECTION("has a null participant")
+ {
+ REQUIRE_FALSE(instance->get_participant());
+ }
+
+ WHEN("setting a new participant")
+ {
+ instance->set_participant(participant);
+
+ THEN("getting the participant returns the new one")
+ {
+ REQUIRE(instance->get_participant() == participant);
+ }
+
+ THEN("changes to the name propagate to the participant")
+ {
+ CHECK(participant->get_name() != "REPLACED");
+ instance->set_name("REPLACED");
+ REQUIRE(participant->get_name() == "REPLACED");
+ }
+
+ THEN("changes to the priority propagate to the participant")
+ {
+ CHECK(participant->get_priority() != 0);
+ instance->set_priority(0);
+ REQUIRE(participant->get_priority() == 0);
+ }
+
+ THEN("changes to the disposition propagate to the participant")
+ {
+ CHECK(participant->get_disposition() != core::Disposition::Secret);
+ instance->set_disposition(core::Disposition::Secret);
+ REQUIRE(participant->get_disposition() == core::Disposition::Secret);
+ }
+ }
+
+ SECTION("allows binding to the finished signal")
+ {
+ REQUIRE((instance->signal_finished().connect([](auto, auto, auto) {})).connected());
+ }
+ }
+
+ TEST_CASE("A freshly constructed participant editor with a participant", "[windows]")
+ {
+ auto locale = GENERATE("en_US.UTF-8", "de_CH.UTF-8");
+ setlocale(LC_ALL, locale);
+
+ auto participant = core::Participant::create("Qibi Babblebranch", 12, core::Disposition::Neutral);
+ auto instance = std::make_shared<ParticipantEditor>(participant);
+ auto window = Gtk::Window{};
+
+ SECTION("was successfully constructed")
+ {
+ REQUIRE(instance);
+ }
+
+ SECTION("has a non-empty title")
+ {
+ REQUIRE_FALSE(instance->get_title().empty());
+ }
+
+ SECTION("has its title set according to the active language")
+ {
+ REQUIRE(instance->get_title() == _(lang::edit_participant));
+ }
+
+ SECTION("has its name field set according to its participant")
+ {
+ REQUIRE(instance->get_name() == participant->property_name().get_value());
+ }
+
+ SECTION("has its priority field set according to its participant")
+ {
+ REQUIRE(instance->get_priority() == participant->property_priority());
+ }
+
+ SECTION("allows binding to the finished signal")
+ {
+ REQUIRE((instance->signal_finished().connect([](auto, auto, auto) {})).connected());
+ }
+ }
+
+} // namespace turns::ui::tests \ No newline at end of file