This adds remove bond success test case. SSP as pairing mode. --- android/android-tester.c | 49 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) diff --git a/android/android-tester.c b/android/android-tester.c index e0f006b..22e17e5 100644 --- a/android/android-tester.c +++ b/android/android-tester.c @@ -1211,6 +1211,29 @@ static void bond_test_state_changed_cb(bt_status_t status, } } +static void bond_remove_success_state_changed_cb(bt_status_t status, + bt_bdaddr_t *remote_bd_addr, bt_bond_state_t state) +{ + struct test_data *data = tester_get_data(); + bt_status_t remove_status; + uint8_t *bdaddr = (uint8_t *)hciemu_get_client_bdaddr(data->hciemu); + bt_bdaddr_t remote_addr; + + bdaddr2android((const bdaddr_t *)bdaddr, &remote_addr.address); + + if (state == BT_BOND_STATE_BONDED) { + data->cb_count--; + remove_status = data->if_bluetooth->remove_bond(&remote_addr); + check_expected_status(remove_status); + return; + } + + if (state == BT_BOND_STATE_NONE) { + data->cb_count--; + check_cb_count(); + } +} + static gboolean bond_state_changed(gpointer user_data) { struct test_data *data = tester_get_data(); @@ -2452,6 +2475,15 @@ static const struct generic_data bt_bond_cancel_success_test = { .expected_adapter_status = BT_STATUS_SUCCESS, }; +static const struct generic_data bt_bond_remove_success_test = { + .expected_hal_cb.device_found_cb = bond_nostatus_device_found_cb, + .expected_hal_cb.bond_state_changed_cb = + bond_remove_success_state_changed_cb, + .expected_hal_cb.ssp_request_cb = bond_create_ssp_success_request_cb, + .expected_cb_count = 4, + .expected_adapter_status = BT_STATUS_SUCCESS, +}; + static bt_callbacks_t bt_callbacks = { .size = sizeof(bt_callbacks), .adapter_state_changed_cb = adapter_state_changed_cb, @@ -3311,6 +3343,18 @@ static void test_bond_cancel_success(const void *test_data) data->if_bluetooth->start_discovery(); } +static void test_bond_remove_success(const void *test_data) +{ + struct test_data *data = tester_get_data(); + struct bthost *bthost = hciemu_client_get_host(data->hciemu); + + init_test_conditions(data); + + bthost_write_ssp_mode(bthost, 0x01); + + data->if_bluetooth->start_discovery(); +} + /* Test Socket HAL */ static gboolean adapter_socket_state_changed(gpointer user_data) @@ -4684,6 +4728,11 @@ int main(int argc, char *argv[]) setup_enabled_adapter, test_bond_cancel_success, teardown); + test_bredrle("Bluetooth Remove Bond - Success", + &bt_bond_remove_success_test, + setup_enabled_adapter, + test_bond_remove_success, teardown); + test_bredrle("Socket Init", NULL, setup_socket_interface, test_dummy, teardown); -- 1.8.5.2 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html