pebble/tests/fw/services/timeline/test_alarm_layout.c
2025-01-27 11:38:16 -08:00

91 lines
3.1 KiB
C

/*
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "clar.h"
#include "services/common/clock.h"
#include "services/normal/alarms/alarm.h"
#include "services/normal/timeline/alarm_layout.h"
#include "services/normal/timeline/attribute.h"
// Stubs
////////////////////////////////////////////////////////////////
#include "stubs_activity.h"
#include "stubs_alarm_pin.h"
#include "stubs_analytics.h"
#include "stubs_app_install_manager.h"
#include "stubs_clock.h"
#include "stubs_cron.h"
#include "stubs_events.h"
#include "stubs_i18n.h"
#include "stubs_layout_node.h"
#include "stubs_logging.h"
#include "stubs_mutex.h"
#include "stubs_new_timer.h"
#include "stubs_passert.h"
#include "stubs_pbl_malloc.h"
#include "stubs_rtc.h"
#include "stubs_settings_file.h"
#include "stubs_system_task.h"
#include "stubs_timeline_event.h"
#include "stubs_timeline_layout.h"
// Functions under test
/////////////////////////
void prv_get_subtitle_from_attributes(AttributeList *attributes, char *buffer, size_t buffer_size,
const void *i18n_owner);
// Setup
/////////////////////////
void test_alarm_layout__initialize(void) {
}
void test_alarm_layout__cleanup(void) {
}
// Tests
///////////////////////////
void test_alarm_layout__get_subtitle_from_attributes(void) {
char buffer[TIME_STRING_REQUIRED_LENGTH] = {0};
const size_t buffer_size = sizeof(buffer);
const void *dummy_i18n_owner = (void *)1234;
AttributeList attribute_list = {0};
AttributeList *attribute_list_ref = &attribute_list;
// For legacy reasons (see PBL-33899), an alarm pin that only has a subtitle attribute should use
// that subtitle, manually making it all-caps using toupper_str() on rectangular displays
attribute_list_add_cstring(attribute_list_ref, AttributeIdSubtitle, "Weekdays");
prv_get_subtitle_from_attributes(attribute_list_ref, buffer, buffer_size, dummy_i18n_owner);
cl_assert_equal_s(buffer, PBL_IF_RECT_ELSE("WEEKDAYS", "Weekdays"));
// An alarm pin that has both a subtitle attribute and an AlarmKind attribute should create the
// subtitle using the AlarmKind (ignoring the subtitle attribute), respecting the desire to
// all-caps the subtitle on rectangular displays
attribute_list = (AttributeList) {0};
attribute_list_add_cstring(attribute_list_ref, AttributeIdSubtitle, "Ignore me!");
attribute_list_add_uint8(attribute_list_ref, AttributeIdAlarmKind, (uint8_t)ALARM_KIND_JUST_ONCE);
prv_get_subtitle_from_attributes(attribute_list_ref, buffer, buffer_size, dummy_i18n_owner);
cl_assert_equal_s(buffer, PBL_IF_RECT_ELSE("ONCE", "Once"));
attribute_list_destroy_list(attribute_list_ref);
}