This adds device UUIDS property success test case. --- android/android-tester.c | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/android/android-tester.c b/android/android-tester.c index bddcf7c..dbfde85 100644 --- a/android/android-tester.c +++ b/android/android-tester.c @@ -1334,6 +1334,26 @@ static const struct generic_data bt_dev_getprop_bdname_success_test = { .expected_adapter_status = BT_STATUS_SUCCESS, }; +static struct priority_property remote_getprop_uuids_props[] = { + { + .prop.type = BT_PROPERTY_UUIDS, + .prop.val = NULL, + .prop.len = 0, + }, +}; + +static const struct generic_data bt_dev_getprop_uuids_success_test = { + .expected_hal_cb.discovery_state_changed_cb = + remote_discovery_state_changed_cb, + .expected_hal_cb.device_found_cb = remote_get_property_device_found_cb, + .expected_hal_cb.remote_device_properties_cb = + remote_test_device_properties_cb, + .expected_cb_count = 3, + .expected_properties_num = 1, + .expected_properties = remote_getprop_uuids_props, + .expected_adapter_status = BT_STATUS_SUCCESS, +}; + static bt_callbacks_t bt_callbacks = { .size = sizeof(bt_callbacks), .adapter_state_changed_cb = adapter_state_changed_cb, @@ -1865,6 +1885,15 @@ static void test_dev_getprop_bdname_success(const void *test_data) data->if_bluetooth->start_discovery(); } +static void test_dev_getprop_uuids_success(const void *test_data) +{ + struct test_data *data = tester_get_data(); + + init_test_conditions(data); + + data->if_bluetooth->start_discovery(); +} + /* Test Socket HAL */ static void adapter_socket_state_changed_cb(bt_state_t state) @@ -2476,6 +2505,11 @@ int main(int argc, char *argv[]) setup_enabled_adapter, test_dev_getprop_bdname_success, teardown); + test_bredrle("Bluetooth Device Get UUIDS - Success", + &bt_dev_getprop_uuids_success_test, + setup_enabled_adapter, + test_dev_getprop_uuids_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