summaryrefslogtreecommitdiff
path: root/gui/ui/tests
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@gmail.com>2025-05-23 14:04:27 +0200
committerFelix Morgner <felix.morgner@gmail.com>2025-05-23 14:04:27 +0200
commit5d8f799a1171f92054d4b45ba130cd7fdad0bd01 (patch)
tree0f51290b3a60d71d25d7a49b66d5bd54dd7a4156 /gui/ui/tests
parentc45004b73bb045328a724d1d860df6d1515af6d4 (diff)
downloadturns-5d8f799a1171f92054d4b45ba130cd7fdad0bd01.tar.xz
turns-5d8f799a1171f92054d4b45ba130cd7fdad0bd01.zip
app: prepare restructuring
Diffstat (limited to 'gui/ui/tests')
-rw-r--r--gui/ui/tests/gtk_test_init.cpp41
-rw-r--r--gui/ui/tests/participant_editor.cpp150
-rw-r--r--gui/ui/tests/participant_row.cpp30
-rw-r--r--gui/ui/tests/resources.cpp21
-rw-r--r--gui/ui/tests/tracker.cpp79
5 files changed, 321 insertions, 0 deletions
diff --git a/gui/ui/tests/gtk_test_init.cpp b/gui/ui/tests/gtk_test_init.cpp
new file mode 100644
index 0000000..bfa885f
--- /dev/null
+++ b/gui/ui/tests/gtk_test_init.cpp
@@ -0,0 +1,41 @@
+#include "turns/core/init.hpp"
+#include "turns/ui/init.hpp"
+
+#include <catch2/reporters/catch_reporter_event_listener.hpp>
+#include <catch2/reporters/catch_reporter_registrars.hpp>
+
+#include <glibmm/i18n.h>
+
+#include <gtkmm/init.h>
+
+#include <adwaitamm/application.hpp>
+#include <adwaitamm/wrap_init.hpp>
+
+#include <libintl.h>
+
+#include <clocale>
+
+namespace turns::ui::tests
+{
+
+ struct gtk_test_init : Catch::EventListenerBase
+ {
+ using Catch::EventListenerBase::EventListenerBase;
+
+ auto testRunStarting(Catch::TestRunInfo const &) -> void override
+ {
+ setlocale(LC_ALL, "");
+ bindtextdomain("turns", TESTLOCALEDIR);
+ bind_textdomain_codeset("turns", "UTF-8");
+ textdomain("turns");
+
+ [[maybe_unused]] auto app = Adwaita::Application::create("ch.arknet.turns.tests.ui");
+
+ core::register_types();
+ ui::register_types();
+ }
+ };
+
+ CATCH_REGISTER_LISTENER(gtk_test_init);
+
+} // namespace turns::ui::tests \ No newline at end of file
diff --git a/gui/ui/tests/participant_editor.cpp b/gui/ui/tests/participant_editor.cpp
new file mode 100644
index 0000000..fee0313
--- /dev/null
+++ b/gui/ui/tests/participant_editor.cpp
@@ -0,0 +1,150 @@
+#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
diff --git a/gui/ui/tests/participant_row.cpp b/gui/ui/tests/participant_row.cpp
new file mode 100644
index 0000000..20eaa5c
--- /dev/null
+++ b/gui/ui/tests/participant_row.cpp
@@ -0,0 +1,30 @@
+#include "turns/ui/participant_row.hpp"
+
+#include "turns/core/disposition.hpp"
+#include "turns/core/participant.hpp"
+
+#include <catch2/catch_test_macros.hpp>
+
+#include <glibmm/refptr.h>
+
+#include <gtkmm/object.h>
+
+#include <memory>
+
+namespace turns::ui::tests
+{
+
+ TEST_CASE("A freshly constructed participant row")
+ {
+ SECTION("can be created without a participant")
+ {
+ REQUIRE(std::make_shared<ParticipantRow>(Glib::RefPtr<core::Participant>{}));
+ }
+
+ SECTION("can be created with a participant")
+ {
+ REQUIRE(std::make_shared<ParticipantRow>(core::Participant::create("Tazmyla Fireforge", 13, core::Disposition::Secret)));
+ }
+ }
+
+} // namespace turns::ui::widgets::tests \ No newline at end of file
diff --git a/gui/ui/tests/resources.cpp b/gui/ui/tests/resources.cpp
new file mode 100644
index 0000000..a091266
--- /dev/null
+++ b/gui/ui/tests/resources.cpp
@@ -0,0 +1,21 @@
+#include <catch2/catch_test_macros.hpp>
+#include <catch2/generators/catch_generators.hpp>
+
+#include <giomm/resource.h>
+
+#include <format>
+
+TEST_CASE("UI resources")
+{
+
+ auto file = GENERATE("/ch/arknet/Turns/participant_editor.ui",
+ "/ch/arknet/Turns/participant_row.ui",
+ "/ch/arknet/Turns/preferences.ui",
+ "/ch/arknet/Turns/tracker.ui",
+ "/ch/arknet/Turns/turn_order_view.ui");
+
+ SECTION(std::format("contains {}", file))
+ {
+ REQUIRE(Gio::Resource::get_file_exists_global_nothrow(file));
+ }
+}
diff --git a/gui/ui/tests/tracker.cpp b/gui/ui/tests/tracker.cpp
new file mode 100644
index 0000000..0d5e983
--- /dev/null
+++ b/gui/ui/tests/tracker.cpp
@@ -0,0 +1,79 @@
+#include "turns/ui/tracker.hpp"
+
+#include "turns/core/settings.hpp"
+#include "turns/lang/messages.hpp"
+
+#include <catch2/catch_test_macros.hpp>
+#include <catch2/generators/catch_generators.hpp>
+
+#include <glibmm/i18n.h>
+#include <glibmm/wrap.h>
+
+#include <gtkmm/builder.h>
+#include <gtkmm/button.h>
+#include <gtkmm/menubutton.h>
+#include <gtkmm/widget.h>
+
+#include <adwaitamm/application.hpp>
+#include <adwaitamm/windowtitle.hpp>
+
+#include <clocale>
+#include <memory>
+
+namespace turns::ui::tests
+{
+
+ TEST_CASE("A freshly constructed tracker window", "[windows]")
+ {
+ auto locale = GENERATE("en_US.UTF-8", "de_CH.UTF-8");
+ setlocale(LC_ALL, locale);
+
+ auto app = Adwaita::Application::create("ch.arknet.Turns.test");
+ auto instance = std::make_shared<Tracker>(app, core::get_settings());
+
+ SECTION("was successfully constructed")
+ {
+ REQUIRE(instance);
+ }
+
+ // SECTION("has a non-empty subtitle")
+ // {
+ // auto widget = instance->get_ builder->get_widget<Adwaita::WindowTitle>("title");
+ // REQUIRE_FALSE(widget->get_subtitle().empty());
+ // }
+
+ // SECTION("has its subtitle set according to the active language")
+ // {
+ // auto widget = builder->get_widget<Adwaita::WindowTitle>("title");
+ // REQUIRE(widget->get_subtitle() == _(lang::no_active_turn_order));
+ // }
+
+ // SECTION("has a non-empty title")
+ // {
+ // auto widget = builder->get_widget<Adwaita::WindowTitle>("title");
+ // REQUIRE_FALSE(widget->get_title().empty());
+ // }
+
+ // SECTION("has its title set according to the active language")
+ // {
+ // auto widget = builder->get_widget<Adwaita::WindowTitle>("title");
+ // REQUIRE(widget->get_title() == _(lang::turns));
+ // }
+
+ // SECTION("has its add_participant button's tooltip set according to the active language")
+ // {
+ // auto widget = builder->get_widget<Gtk::Button>("add_participant");
+ // REQUIRE(widget->get_tooltip_text() == _(lang::add_participant));
+ // }
+
+ // SECTION("as its open_main_menu button's tooltip set according to the active language")
+ // {
+ // auto widget = builder->get_widget<Gtk::MenuButton>("open_main_menu");
+ // REQUIRE(widget->get_tooltip_text() == _(lang::main_menu));
+ // }
+
+ // instance->destroy();
+ // delete instance;
+ }
+
+} // namespace turns::ui::tests \ No newline at end of file