diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2024-01-31 19:12:36 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2024-01-31 19:12:36 +0100 |
commit | ddabb4a61a496da14603573b700c5961a3e5b834 (patch) | |
tree | 45e6cf659b19b114e0fed9f6906715ad0bc6d812 | |
parent | 2a2db70bedf0c4a96282e417be433d2f23f6c465 (diff) | |
parent | 548021462b00165c317b168badb3d828c6834d12 (diff) | |
download | ayatana-indicator-datetime-ddabb4a61a496da14603573b700c5961a3e5b834.tar.gz ayatana-indicator-datetime-ddabb4a61a496da14603573b700c5961a3e5b834.tar.bz2 ayatana-indicator-datetime-ddabb4a61a496da14603573b700c5961a3e5b834.zip |
Merge branch 'luigi311-fix-tests'
Attributes GH PR #122: https://github.com/AyatanaIndicators/ayatana-indicator-datetime/pull/122
-rw-r--r-- | tests/test-menus.cpp | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/tests/test-menus.cpp b/tests/test-menus.cpp index e71c997..ea8cb30 100644 --- a/tests/test-menus.cpp +++ b/tests/test-menus.cpp @@ -274,16 +274,25 @@ private: // there shouldn't be any alarms when "show alarms" is false bool has_alarms = false; - m_state->settings->show_alarms.set(false); + wait_msec(); - for (int i=0, n=appointments.size(); i<n; i++) - if((has_alarms = appointments[i].is_alarm())) - break; + std::vector<Appointment> display_appointments = Menu::get_display_appointments(appointments, m_state->clock->localtime(), 5, m_state->settings->show_alarms.get()); + for (int i=0, n=display_appointments.size(); i<n; i++) + if ((has_alarms = display_appointments[i].is_alarm())) + break; EXPECT_FALSE(has_alarms); m_state->settings->show_alarms.set(true); + wait_msec(); + + display_appointments = Menu::get_display_appointments(appointments, m_state->clock->localtime(), 5, m_state->settings->show_alarms.get()); + for (int i=0, n=display_appointments.size(); i<n; i++) + if ((has_alarms = display_appointments[i].is_alarm())) + break; + + EXPECT_TRUE(has_alarms); //g_clear_object(§ion); //g_clear_object(&submenu); @@ -291,6 +300,7 @@ private: void InspectDesktopAppointments(GMenuModel* menu_model, bool can_open_planner) { + m_state->settings->show_alarms.set(true); const int n_add_event_buttons = can_open_planner ? 1 : 0; // get the Appointments section @@ -337,12 +347,13 @@ private: void InspectPhoneAppointments(GMenuModel* menu_model, bool can_open_planner) { + m_state->settings->show_alarms.set(true); auto submenu = g_menu_model_get_item_link(menu_model, 0, G_MENU_LINK_SUBMENU); // there shouldn't be any menuitems when "show events" is false m_state->settings->show_events.set(false); wait_msec(); - section = g_menu_model_get_item_link(submenu, Menu::Appointments, G_MENU_LINK_SECTION); + auto section = g_menu_model_get_item_link(submenu, Menu::Appointments, G_MENU_LINK_SECTION); EXPECT_EQ(0, g_menu_model_get_n_items(section)); g_clear_object(§ion); @@ -353,7 +364,7 @@ private: wait_msec(); // wait a moment for the menu to update // check that there's a "clock app" menuitem even when there are no appointments - auto section = g_menu_model_get_item_link(submenu, Menu::Appointments, G_MENU_LINK_SECTION); + section = g_menu_model_get_item_link(submenu, Menu::Appointments, G_MENU_LINK_SECTION); const char* expected_action = "phone.open-alarm-app"; EXPECT_EQ(1, g_menu_model_get_n_items(section)); gchar* action = nullptr; |