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 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577
|
/*
* Copyright 2013 Canonical Ltd.
* Copyright 2021 Robert Tari
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 3, as published
* by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranties of
* MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Authors:
* Charles Kerr <charles.kerr@canonical.com>
* Robert Tari <robert@tari.in>
*/
#include "actions-mock.h"
#include "state-fixture.h"
#include <datetime/clock-mock.h>
#include <datetime/locations.h>
#include <datetime/menu.h>
#include <datetime/state.h>
#include <gio/gio.h>
using namespace ayatana::indicator::datetime;
class MenuFixture: public StateFixture
{
private:
typedef StateFixture super;
protected:
std::shared_ptr<MenuFactory> m_menu_factory;
std::vector<std::shared_ptr<Menu>> m_menus;
void SetUp() override
{
super::SetUp();
// build the menus on top of the actions and state
m_menu_factory.reset(new MenuFactory(m_actions, m_state));
for(int i=0; i<Menu::NUM_PROFILES; i++)
m_menus.push_back(m_menu_factory->buildMenu(Menu::Profile(i)));
}
void TearDown() override
{
m_menus.clear();
m_menu_factory.reset();
super::TearDown();
}
void InspectHeader(GMenuModel* menu_model, const std::string& name)
{
// check that there's a header menuitem
EXPECT_EQ(1,g_menu_model_get_n_items(menu_model));
gchar* str = nullptr;
g_menu_model_get_item_attribute(menu_model, 0, "x-ayatana-type", "s", &str);
EXPECT_STREQ("org.ayatana.indicator.root", str);
g_clear_pointer(&str, g_free);
g_menu_model_get_item_attribute(menu_model, 0, G_MENU_ATTRIBUTE_ACTION, "s", &str);
const auto action_name = name + "-header";
EXPECT_EQ(std::string("indicator.")+action_name, str);
g_clear_pointer(&str, g_free);
// check the header
auto dict = g_action_group_get_action_state(m_actions->action_group(), action_name.c_str());
EXPECT_TRUE(dict != nullptr);
EXPECT_TRUE(g_variant_is_of_type(dict, G_VARIANT_TYPE_VARDICT));
auto v = g_variant_lookup_value(dict, "accessible-desc", G_VARIANT_TYPE_STRING);
EXPECT_TRUE(v != nullptr);
g_variant_unref(v);
v = g_variant_lookup_value(dict, "label", G_VARIANT_TYPE_STRING);
EXPECT_TRUE(v != nullptr);
g_variant_unref(v);
v = g_variant_lookup_value(dict, "title", G_VARIANT_TYPE_STRING);
EXPECT_TRUE(v != nullptr);
g_variant_unref(v);
v = g_variant_lookup_value(dict, "visible", G_VARIANT_TYPE_BOOLEAN);
EXPECT_TRUE(v != nullptr);
g_variant_unref(v);
g_variant_unref(dict);
}
void InspectCalendar(GMenuModel* menu_model, Menu::Profile profile)
{
gchar* str = nullptr;
const char * expected_action;
if (profile == Menu::Desktop)
expected_action = "indicator.desktop.open-calendar-app";
else if (profile == Menu::Phone)
expected_action = "indicator.phone.open-calendar-app";
else
expected_action = nullptr;
const auto calendar_expected = ((profile == Menu::Desktop) || (profile == Menu::DesktopGreeter) || (profile == Menu::Phone))
&& (m_state->settings->show_calendar.get());
// get the calendar section
auto submenu = g_menu_model_get_item_link(menu_model, 0, G_MENU_LINK_SUBMENU);
auto section = g_menu_model_get_item_link(submenu, Menu::Calendar, G_MENU_LINK_SECTION);
// should be one or two items: a date label and maybe a calendar
ASSERT_TRUE(section != nullptr);
auto n_expected = calendar_expected ? 2 : 1;
EXPECT_EQ(n_expected, g_menu_model_get_n_items(section));
// look at the date menuitem
g_menu_model_get_item_attribute(section, 0, G_MENU_ATTRIBUTE_LABEL, "s", &str);
const auto now = m_state->clock->localtime();
EXPECT_EQ(now.format("%A, %e %B %Y"), str);
g_clear_pointer(&str, g_free);
g_menu_model_get_item_attribute(section, 0, G_MENU_ATTRIBUTE_ACTION, "s", &str);
if (expected_action != nullptr)
EXPECT_STREQ(expected_action, str);
else
EXPECT_TRUE(str == nullptr);
g_clear_pointer(&str, g_free);
// look at the calendar menuitem
if (calendar_expected)
{
g_menu_model_get_item_attribute(section, 1, "x-ayatana-type", "s", &str);
EXPECT_STREQ("org.ayatana.indicator.calendar", str);
g_clear_pointer(&str, g_free);
g_menu_model_get_item_attribute(section, 1, G_MENU_ATTRIBUTE_ACTION, "s", &str);
EXPECT_STREQ("indicator.calendar", str);
g_clear_pointer(&str, g_free);
g_menu_model_get_item_attribute(section, 1, "activation-action", "s", &str);
if (expected_action != nullptr)
EXPECT_STREQ(expected_action, str);
else
EXPECT_TRUE(str == nullptr);
g_clear_pointer(&str, g_free);
}
g_clear_object(§ion);
// now change the clock and see if the date label changes appropriately
auto tomorrow = now.add_days(1).start_of_day();
m_mock_state->mock_clock->set_localtime(tomorrow);
wait_msec();
section = g_menu_model_get_item_link(submenu, Menu::Calendar, G_MENU_LINK_SECTION);
g_menu_model_get_item_attribute(section, 0, G_MENU_ATTRIBUTE_LABEL, "s", &str);
EXPECT_EQ(tomorrow.format("%A, %e %B %Y"), str);
g_clear_pointer(&str, g_free);
g_clear_object(§ion);
// cleanup
g_object_unref(submenu);
}
private:
void InspectEmptySection(GMenuModel* menu_model, Menu::Section section)
{
// get the Appointments section
auto submenu = g_menu_model_get_item_link(menu_model, 0, G_MENU_LINK_SUBMENU);
auto menu_section = g_menu_model_get_item_link(submenu, section, G_MENU_LINK_SECTION);
EXPECT_EQ(0, g_menu_model_get_n_items(menu_section));
g_clear_object(&menu_section);
g_clear_object(&submenu);
}
std::vector<Appointment> build_some_appointments()
{
const auto now = m_state->clock->localtime();
const auto tomorrow = now.add_days(1);
Appointment a1; // an alarm clock appointment
a1.color = "red";
a1.summary = "http://www.example.com/";
a1.uid = "example";
a1.type = Appointment::ALARM;
a1.begin = a1.end = tomorrow;
Appointment a2; // a non-alarm appointment
a2.color = "green";
a2.summary = "http://www.monkey.com/";
a2.uid = "monkey";
a2.type = Appointment::EVENT;
a2.begin = a2.end = tomorrow;
return std::vector<Appointment>({a1, a2});
}
void InspectAppointmentMenuItem(GMenuModel* section,
int index,
const Appointment& appt)
{
// confirm it has the right x-ayatana-type
gchar * str = nullptr;
g_menu_model_get_item_attribute(section, index, "x-ayatana-type", "s", &str);
if (appt.is_alarm())
EXPECT_STREQ("org.ayatana.indicator.alarm", str);
else
EXPECT_STREQ("org.ayatana.indicator.appointment", str);
g_clear_pointer(&str, g_free);
// confirm it has a nonempty x-ayatana-time-format
g_menu_model_get_item_attribute(section, index, "x-ayatana-time-format", "s", &str);
EXPECT_TRUE(str && *str);
g_clear_pointer(&str, g_free);
// confirm the color hint, if it exists,
// is in the x-ayatana-color attribute
if (appt.color.empty())
{
EXPECT_FALSE(g_menu_model_get_item_attribute(section,
index,
"x-ayatana-color",
"s",
&str));
}
else
{
EXPECT_TRUE(g_menu_model_get_item_attribute(section,
index,
"x-ayatana-color",
"s",
&str));
EXPECT_EQ(appt.color, str);
}
g_clear_pointer(&str, g_free);
// confirm that alarms have an icon
if (appt.is_alarm())
{
auto v = g_menu_model_get_item_attribute_value(section,
index,
G_MENU_ATTRIBUTE_ICON,
nullptr);
EXPECT_TRUE(v != nullptr);
auto icon = g_icon_deserialize(v);
EXPECT_TRUE(icon != nullptr);
g_clear_object(&icon);
g_clear_pointer(&v, g_variant_unref);
}
}
void InspectAppointmentMenuItems(GMenuModel* section,
int first_appt_index,
const std::vector<Appointment>& appointments,
bool can_open_planner)
{
// try adding a few appointments and see if the menu updates itself
m_state->calendar_upcoming->appointments().set(appointments);
wait_msec(); // wait a moment for the menu to update
//auto submenu = g_menu_model_get_item_link(menu_model, 0, G_MENU_LINK_SUBMENU);
//auto section = g_menu_model_get_item_link(submenu, Menu::Appointments, G_MENU_LINK_SECTION);
const int n_add_event_buttons = can_open_planner ? 1 : 0;
EXPECT_EQ(n_add_event_buttons + appointments.size(), g_menu_model_get_n_items(section));
for (int i=0, n=appointments.size(); i<n; i++)
InspectAppointmentMenuItem(section, first_appt_index+i, appointments[i]);
// there shouldn't be any alarms when "show alarms" is false
bool has_alarms = false;
m_state->settings->show_alarms.set(false);
wait_msec();
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);
}
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
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();
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);
std::vector<Appointment> appointments;
m_state->settings->show_events.set(true);
m_state->calendar_upcoming->appointments().set(appointments);
wait_msec();
section = g_menu_model_get_item_link(submenu, Menu::Appointments, G_MENU_LINK_SECTION);
EXPECT_EQ(n_add_event_buttons, g_menu_model_get_n_items(section));
if (can_open_planner)
{
// when "show_events" is true,
// there should be an "add event" button even if there aren't any appointments
gchar* action = nullptr;
EXPECT_TRUE(g_menu_model_get_item_attribute(section, 0, G_MENU_ATTRIBUTE_ACTION, "s", &action));
const char* expected_action = "desktop.open-calendar-app";
EXPECT_EQ(std::string("indicator.")+expected_action, action);
EXPECT_TRUE(g_action_group_has_action(m_actions->action_group(), expected_action));
g_free(action);
}
g_clear_object(§ion);
// try adding a few appointments and see if the menu updates itself
appointments = build_some_appointments();
m_state->calendar_upcoming->appointments().set(appointments);
wait_msec(); // wait a moment for the menu to update
section = g_menu_model_get_item_link(submenu, Menu::Appointments, G_MENU_LINK_SECTION);
EXPECT_EQ(n_add_event_buttons + 2, g_menu_model_get_n_items(section));
InspectAppointmentMenuItems(section, 0, appointments, can_open_planner);
g_clear_object(§ion);
// cleanup
g_clear_object(&submenu);
}
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();
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);
// clear all the appointments
std::vector<Appointment> appointments;
m_state->settings->show_events.set(true);
m_state->calendar_upcoming->appointments().set(appointments);
wait_msec(); // wait a moment for the menu to update
// check that there's a "clock app" menuitem even when there are no appointments
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;
EXPECT_TRUE(g_menu_model_get_item_attribute(section, 0, G_MENU_ATTRIBUTE_ACTION, "s", &action));
EXPECT_EQ(std::string("indicator.")+expected_action, action);
EXPECT_TRUE(g_action_group_has_action(m_actions->action_group(), expected_action));
g_free(action);
g_clear_object(§ion);
// add some appointments and test them
appointments = build_some_appointments();
m_state->calendar_upcoming->appointments().set(appointments);
wait_msec(); // wait a moment for the menu to update
section = g_menu_model_get_item_link(submenu, Menu::Appointments, G_MENU_LINK_SECTION);
EXPECT_EQ(3, g_menu_model_get_n_items(section));
InspectAppointmentMenuItems(section, 1, appointments, can_open_planner);
g_clear_object(§ion);
// cleanup
g_clear_object(&submenu);
}
protected:
void InspectAppointments(GMenuModel* menu_model, Menu::Profile profile)
{
const auto can_open_planner = m_actions->desktop_has_calendar_app();
switch (profile)
{
case Menu::Desktop:
InspectDesktopAppointments(menu_model, can_open_planner);
break;
case Menu::DesktopGreeter:
InspectEmptySection(menu_model, Menu::Appointments);
break;
case Menu::Phone:
InspectPhoneAppointments(menu_model, can_open_planner);
break;
case Menu::PhoneGreeter:
InspectEmptySection(menu_model, Menu::Appointments);
break;
default:
g_warn_if_reached();
break;
}
}
void CompareLocationsTo(GMenuModel* menu_model, const std::vector<Location>& locations)
{
// get the Locations section
auto submenu = g_menu_model_get_item_link(menu_model, 0, G_MENU_LINK_SUBMENU);
auto section = g_menu_model_get_item_link(submenu, Menu::Locations, G_MENU_LINK_SECTION);
// confirm that section's menuitems mirror the "locations" vector
const auto n = locations.size();
ASSERT_EQ(n, g_menu_model_get_n_items(section));
for (guint i=0; i<n; i++)
{
gchar* str = nullptr;
// confirm that the x-ayatana-type is right
g_menu_model_get_item_attribute(section, i, "x-ayatana-type", "s", &str);
EXPECT_STREQ("org.ayatana.indicator.location", str);
g_clear_pointer(&str, g_free);
// confirm that the timezones match the ones in the vector
g_menu_model_get_item_attribute(section, i, "x-ayatana-timezone", "s", &str);
EXPECT_EQ(locations[i].zone(), str);
g_clear_pointer(&str, g_free);
// confirm that x-ayatana-time-format has some kind of time format string
g_menu_model_get_item_attribute(section, i, "x-ayatana-time-format", "s", &str);
EXPECT_TRUE(str && *str && (strchr(str,'%')!=nullptr));
g_clear_pointer(&str, g_free);
}
g_clear_object(§ion);
g_clear_object(&submenu);
}
void InspectLocations(GMenuModel* menu_model, Menu::Profile profile)
{
const bool locations_expected = (profile == Menu::Desktop) || (profile == Menu::Phone);
// when there aren't any locations, confirm the menu is empty
const std::vector<Location> empty;
m_state->locations->locations.set(empty);
wait_msec();
CompareLocationsTo(menu_model, empty);
// add some locations and confirm the menu picked up our changes
Location l1 ("America/Chicago", "Dallas");
Location l2 ("America/Arizona", "Phoenix");
std::vector<Location> locations({l1, l2});
m_state->locations->locations.set(locations);
wait_msec();
CompareLocationsTo(menu_model, locations_expected ? locations : empty);
// now remove one of the locations...
locations.pop_back();
m_state->locations->locations.set(locations);
wait_msec();
CompareLocationsTo(menu_model, locations_expected ? locations : empty);
}
void InspectSettings(GMenuModel* menu_model, Menu::Profile profile)
{
std::string expected_action;
if (profile == Menu::Desktop)
expected_action = "indicator.desktop.open-settings-app";
else if (profile == Menu::Phone)
expected_action = "indicator.phone.open-settings-app";
// get the Settings section
auto submenu = g_menu_model_get_item_link(menu_model, 0, G_MENU_LINK_SUBMENU);
auto section = g_menu_model_get_item_link(submenu, Menu::Settings, G_MENU_LINK_SECTION);
if (expected_action.empty())
{
EXPECT_EQ(0, g_menu_model_get_n_items(section));
}
else
{
EXPECT_EQ(1, g_menu_model_get_n_items(section));
gchar* str = nullptr;
g_menu_model_get_item_attribute(section, 0, G_MENU_ATTRIBUTE_ACTION, "s", &str);
EXPECT_EQ(expected_action, str);
g_clear_pointer(&str, g_free);
}
g_clear_object(§ion);
g_object_unref(submenu);
}
};
TEST_F(MenuFixture, HelloWorld)
{
EXPECT_EQ(Menu::NUM_PROFILES, m_menus.size());
for (int i=0; i<Menu::NUM_PROFILES; i++)
{
EXPECT_TRUE(m_menus[i].get() != nullptr);
EXPECT_TRUE(m_menus[i]->menu_model() != nullptr);
EXPECT_EQ(i, m_menus[i]->profile());
}
EXPECT_EQ(m_menus[Menu::Desktop]->name(), "desktop");
}
TEST_F(MenuFixture, Header)
{
for(auto& menu : m_menus)
InspectHeader(menu->menu_model(), menu->name());
}
TEST_F(MenuFixture, Sections)
{
for(auto& menu : m_menus)
{
// check that the header has a submenu
auto menu_model = menu->menu_model();
auto submenu = g_menu_model_get_item_link(menu_model, 0, G_MENU_LINK_SUBMENU);
EXPECT_TRUE(submenu != nullptr);
EXPECT_EQ(Menu::NUM_SECTIONS, g_menu_model_get_n_items(submenu));
g_object_unref(submenu);
}
}
TEST_F(MenuFixture, Calendar)
{
m_state->settings->show_calendar.set(true);
for(auto& menu : m_menus)
InspectCalendar(menu->menu_model(), menu->profile());
m_state->settings->show_calendar.set(false);
for(auto& menu : m_menus)
InspectCalendar(menu->menu_model(), menu->profile());
}
TEST_F(MenuFixture, Appointments)
{
for(auto& menu : m_menus)
InspectAppointments(menu->menu_model(), menu->profile());
// toggle can_open_planner() and test the desktop again
// to confirm that the "Add Event…" menuitem appears iff
// there's a calendar available user-agent
m_mock_actions->set_desktop_has_calendar_app (!m_actions->desktop_has_calendar_app());
std::shared_ptr<Menu> menu = m_menu_factory->buildMenu(Menu::Desktop);
InspectAppointments(menu->menu_model(), menu->profile());
}
TEST_F(MenuFixture, Locations)
{
for(auto& menu : m_menus)
InspectLocations(menu->menu_model(), menu->profile());
}
TEST_F(MenuFixture, Settings)
{
for(auto& menu : m_menus)
InspectSettings(menu->menu_model(), menu->profile());
}
|