/* * Copyright (c) 2023 Nordic Semiconductor * * SPDX-License-Identifier: Apache-2.0 */ #include #include #include #include #include #include #include "bs_types.h" #include "bs_tracing.h" #include "time_machine.h" #include "bstests.h" #include LOG_MODULE_REGISTER(bt_bsim_mtu_update, LOG_LEVEL_DBG); extern void run_central_sample(void *cb); extern void run_peripheral_sample(uint8_t *notify_data, size_t notify_data_size, uint16_t seconds); #define FAIL(...) \ do { \ bst_result = Failed; \ bs_trace_error_time_line(__VA_ARGS__); \ } while (0) #define PASS(...) \ do { \ bst_result = Passed; \ bs_trace_info_time(1, __VA_ARGS__); \ } while (0) extern enum bst_result_t bst_result; #define CREATE_FLAG(flag) static atomic_t flag = (atomic_t)false #define SET_FLAG(flag) (void)atomic_set(&flag, (atomic_t)true) #define WAIT_FOR_FLAG(flag) \ while (!(bool)atomic_get(&flag)) { \ (void)k_sleep(K_MSEC(1)); \ } #define WAIT_TIME (20e6) /* 20 seconds */ #define PERIPHERAL_NOTIFY_TIME ((WAIT_TIME - 10e6) / 1e6) CREATE_FLAG(flag_notification_received); uint8_t notify_data[100] = {}; uint8_t is_data_equal; static uint8_t notify_cb(struct bt_conn *conn, struct bt_gatt_subscribe_params *params, const void *data, uint16_t length) { printk("BSIM NOTIFY_CALLBACK\n"); is_data_equal = (length == sizeof(notify_data) && !memcmp(notify_data, data, length)); LOG_HEXDUMP_DBG(data, length, "notification data"); LOG_HEXDUMP_DBG(notify_data, sizeof(notify_data), "expected data"); SET_FLAG(flag_notification_received); return 0; } static void test_central_main(void) { notify_data[13] = 0x7f; notify_data[99] = 0x55; run_central_sample(notify_cb); WAIT_FOR_FLAG(flag_notification_received); if (is_data_equal) { PASS("MTU Update test passed\n"); } else { FAIL("MTU Update test failed\n"); } } static void test_peripheral_main(void) { notify_data[13] = 0x7f; notify_data[99] = 0x55; run_peripheral_sample(notify_data, sizeof(notify_data), PERIPHERAL_NOTIFY_TIME); PASS("MTU Update test passed\n"); } void test_tick(bs_time_t HW_device_time) { if (bst_result != Passed) { FAIL("Test failed (not passed after %i seconds)\n", WAIT_TIME); } } static void test_mtu_update_init(void) { bst_ticker_set_next_tick_absolute(WAIT_TIME); bst_result = In_progress; } static const struct bst_test_instance test_def[] = { { .test_id = "central", .test_descr = "Central GATT MTU Update", .test_post_init_f = test_mtu_update_init, .test_tick_f = test_tick, .test_main_f = test_central_main }, { .test_id = "peripheral", .test_descr = "Peripheral GATT MTU Update", .test_post_init_f = test_mtu_update_init, .test_tick_f = test_tick, .test_main_f = test_peripheral_main }, BSTEST_END_MARKER }; struct bst_test_list *test_mtu_update_install(struct bst_test_list *tests) { return bst_add_tests(tests, test_def); } bst_test_install_t test_installers[] = { test_mtu_update_install, NULL }; int main(void) { bst_main(); return 0; }