diff options
author | Grzegorz Kolodziejczyk <grzegorz.kolodziejczyk@tieto.com> | 2014-01-14 14:54:45 +0100 |
---|---|---|
committer | Szymon Janc <szymon.janc@gmail.com> | 2014-01-14 19:31:00 +0100 |
commit | 9d18cce59e31305304d31954e164c6c1e00764ae (patch) | |
tree | df9a5e76bf83385796949578a688c13e72c78dc1 /android | |
parent | 7675a308cbe1ad813771981c5eccabb80c21ba70 (diff) |
android/tester: Add get device VERINFO property fail test case
This adds device VERSION INFO property fail test case.
Diffstat (limited to 'android')
-rw-r--r-- | android/android-tester.c | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/android/android-tester.c b/android/android-tester.c index 83e4bd5dc..45342b320 100644 --- a/android/android-tester.c +++ b/android/android-tester.c @@ -1558,6 +1558,25 @@ static const struct generic_data bt_dev_getprop_disctimeout_fail_test = { .expected_adapter_status = BT_STATUS_FAIL, }; +static struct priority_property remote_getprop_verinfo_props[] = { + { + .prop.type = BT_PROPERTY_REMOTE_VERSION_INFO, + .prop.val = NULL, + .prop.len = 0, + }, +}; + +static const struct generic_data bt_dev_getprop_verinfo_fail_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 = remote_getprop_verinfo_props, + .expected_adapter_status = BT_STATUS_FAIL, +}; + static bt_callbacks_t bt_callbacks = { .size = sizeof(bt_callbacks), .adapter_state_changed_cb = adapter_state_changed_cb, @@ -2179,6 +2198,15 @@ static void test_dev_getprop_disctimeout_fail(const void *test_data) data->if_bluetooth->start_discovery(); } +static void test_dev_getprop_verinfo_fail(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) @@ -2841,6 +2869,11 @@ int main(int argc, char *argv[]) setup_enabled_adapter, test_dev_getprop_disctimeout_fail, teardown); + test_bredrle("Bluetooth Device Get VERSION_INFO - Fail", + &bt_dev_getprop_verinfo_fail_test, + setup_enabled_adapter, + test_dev_getprop_verinfo_fail, teardown); + test_bredrle("Socket Init", NULL, setup_socket_interface, test_dummy, teardown); |