mirror of
https://github.com/google/pebble.git
synced 2025-07-10 00:36:20 +00:00
Import of the watch repository from Pebble
This commit is contained in:
commit
3b92768480
10334 changed files with 2564465 additions and 0 deletions
123
tests/fw/services/blob_db/test_notif_db.c
Normal file
123
tests/fw/services/blob_db/test_notif_db.c
Normal file
|
@ -0,0 +1,123 @@
|
|||
/*
|
||||
* 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 "util/uuid.h"
|
||||
#include "services/normal/filesystem/pfs.h"
|
||||
#include "services/normal/blob_db/notif_db.h"
|
||||
#include "services/normal/notifications/notification_storage.h"
|
||||
|
||||
// Fixture
|
||||
////////////////////////////////////////////////////////////////
|
||||
|
||||
// Fakes
|
||||
////////////////////////////////////////////////////////////////
|
||||
#include "fake_spi_flash.h"
|
||||
#include "fake_system_task.h"
|
||||
#include "fake_kernel_services_notifications.h"
|
||||
|
||||
// Stubs
|
||||
////////////////////////////////////////////////////////////////
|
||||
#include "stubs_analytics.h"
|
||||
#include "stubs_hexdump.h"
|
||||
#include "stubs_layout_layer.h"
|
||||
#include "stubs_logging.h"
|
||||
#include "stubs_mutex.h"
|
||||
#include "stubs_passert.h"
|
||||
#include "stubs_pbl_malloc.h"
|
||||
#include "stubs_prompt.h"
|
||||
#include "stubs_rand_ptr.h"
|
||||
#include "stubs_sleep.h"
|
||||
#include "stubs_task_watchdog.h"
|
||||
|
||||
void test_notif_db__initialize(void) {
|
||||
fake_spi_flash_init(0, 0x1000000);
|
||||
pfs_init(false);
|
||||
notification_storage_reset();
|
||||
}
|
||||
|
||||
void test_notif_db__cleanup(void) {
|
||||
}
|
||||
|
||||
void test_notif_db__get_length(void) {
|
||||
SerializedTimelineItemHeader hdr = {
|
||||
.common = {
|
||||
.ancs_uid = 1,
|
||||
.layout = 0,
|
||||
.flags = 0,
|
||||
.timestamp = 0,
|
||||
},
|
||||
};
|
||||
uuid_generate(&hdr.common.id);
|
||||
cl_assert_equal_i(notif_db_insert((uint8_t *)&hdr, UUID_SIZE, (uint8_t *)&hdr, sizeof(hdr)), 0);
|
||||
cl_assert_equal_i(notif_db_get_len((uint8_t *)&hdr, UUID_SIZE), sizeof(hdr));
|
||||
}
|
||||
|
||||
void test_notif_db__insert_remove(void) {
|
||||
SerializedTimelineItemHeader hdr = {
|
||||
.common = {
|
||||
.ancs_uid = 1,
|
||||
.layout = 0,
|
||||
.flags = 0,
|
||||
.timestamp = 0,
|
||||
},
|
||||
};
|
||||
uuid_generate(&hdr.common.id);
|
||||
cl_assert_equal_i(notif_db_insert((uint8_t *)&hdr, UUID_SIZE, (uint8_t *)&hdr, sizeof(hdr)), 0);
|
||||
cl_assert_equal_i(notif_db_delete((uint8_t *)&hdr, UUID_SIZE), 0);
|
||||
cl_assert_equal_i(notif_db_get_len((uint8_t *)&hdr, UUID_SIZE), 0);
|
||||
}
|
||||
|
||||
void test_notif_db__flush(void) {
|
||||
SerializedTimelineItemHeader hdr1 = {
|
||||
.common = {
|
||||
.ancs_uid = 1,
|
||||
.layout = 0,
|
||||
.flags = 0,
|
||||
.timestamp = 0,
|
||||
},
|
||||
};
|
||||
uuid_generate(&hdr1.common.id);
|
||||
SerializedTimelineItemHeader hdr2 = {
|
||||
.common = {
|
||||
.ancs_uid = 1,
|
||||
.layout = 0,
|
||||
.flags = 0,
|
||||
.timestamp = 0,
|
||||
},
|
||||
};
|
||||
uuid_generate(&hdr2.common.id);
|
||||
SerializedTimelineItemHeader hdr3 = {
|
||||
.common = {
|
||||
.ancs_uid = 1,
|
||||
.layout = 0,
|
||||
.flags = 0,
|
||||
.timestamp = 0,
|
||||
},
|
||||
};
|
||||
uuid_generate(&hdr3.common.id);
|
||||
|
||||
cl_assert_equal_i(notif_db_insert((uint8_t *)&hdr1, UUID_SIZE, (uint8_t *)&hdr1, sizeof(hdr1)), 0);
|
||||
cl_assert_equal_i(notif_db_insert((uint8_t *)&hdr2, UUID_SIZE, (uint8_t *)&hdr2, sizeof(hdr2)), 0);
|
||||
cl_assert_equal_i(notif_db_insert((uint8_t *)&hdr3, UUID_SIZE, (uint8_t *)&hdr3, sizeof(hdr3)), 0);
|
||||
cl_assert_equal_i(notif_db_flush(), 0);
|
||||
fake_system_task_callbacks_invoke_pending();
|
||||
cl_assert_equal_i(notif_db_get_len((uint8_t *)&hdr1, UUID_SIZE), 0);
|
||||
cl_assert_equal_i(notif_db_get_len((uint8_t *)&hdr2, UUID_SIZE), 0);
|
||||
cl_assert_equal_i(notif_db_get_len((uint8_t *)&hdr3, UUID_SIZE), 0);
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue