#include "turns/ui/windows/participant_editor.hpp" #include "turns/core/disposition.hpp" #include "turns/core/participant.hpp" #include "turns/lang/messages.hpp" #include #include #include #include #include #include #include #include #include #include #include namespace turns::ui::windows::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 builder = Gtk::Builder::create_from_resource("/windows/participant_editor.ui"); auto instance = Gtk::Builder::get_widget_derived(builder, "participant_editor"); auto window = Gtk::Window{}; SECTION("was successfully constructed") { REQUIRE(instance); } SECTION("has a non-empty title") { auto widget = ADW_DIALOG(Glib::unwrap(instance)); REQUIRE(adw_dialog_get_title(widget)); } SECTION("has its title set according to the active language") { auto widget = ADW_DIALOG(Glib::unwrap(instance)); REQUIRE(adw_dialog_get_title(widget) == Glib::ustring{_(lang::add_participant)}); } SECTION("has an empty name field") { auto widget = GTK_EDITABLE(Glib::unwrap(builder->get_widget("name"))); REQUIRE(Glib::ustring{gtk_editable_get_text(widget)}.empty()); } SECTION("has a zero priority field") { auto widget = ADW_SPIN_ROW(Glib::unwrap(builder->get_widget("priority"))); REQUIRE(adw_spin_row_get_value(widget) == 0); } 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 builder = Gtk::Builder::create_from_resource("/windows/participant_editor.ui"); auto instance = Gtk::Builder::get_widget_derived(builder, "participant_editor", participant); auto window = Gtk::Window{}; SECTION("was successfully constructed") { REQUIRE(instance); } SECTION("has a non-empty title") { auto widget = ADW_DIALOG(Glib::unwrap(instance)); REQUIRE(adw_dialog_get_title(widget)); } SECTION("has its title set according to the active language") { auto widget = ADW_DIALOG(Glib::unwrap(instance)); REQUIRE(adw_dialog_get_title(widget) == Glib::ustring{_(lang::edit_participant)}); } SECTION("has its name field set according to its participant") { auto widget = GTK_EDITABLE(Glib::unwrap(builder->get_widget("name"))); REQUIRE(gtk_editable_get_text(widget) == participant->name().get_value()); } SECTION("has its priority field set according to its participant") { auto widget = ADW_SPIN_ROW(Glib::unwrap(builder->get_widget("priority"))); REQUIRE(adw_spin_row_get_value(widget) == participant->priority()); } SECTION("allows binding to the finished signal") { REQUIRE((instance->signal_finished().connect([](auto, auto, auto) {})).connected()); } } } // namespace turns::ui::windows::tests