OSDN Git Service

android/tester: Add COD set prop fail test case
authorGrzegorz Kolodziejczyk <grzegorz.kolodziejczyk@tieto.com>
Wed, 18 Dec 2013 09:53:10 +0000 (10:53 +0100)
committerJohan Hedberg <johan.hedberg@intel.com>
Wed, 18 Dec 2013 10:22:08 +0000 (12:22 +0200)
This adds CLASS_OF_DEVICE set property fail test case due to only
get possibility.

android/android-tester.c

index 183316f..b83d5bc 100644 (file)
@@ -608,6 +608,16 @@ static const struct generic_data bluetooth_setprop_uuid_invalid_test = {
        .expected_property.len = sizeof(setprop_uuids)
 };
 
+static uint32_t setprop_class_of_device = 0;
+
+static const struct generic_data bluetooth_setprop_cod_invalid_test = {
+       .expected_hal_callbacks = {ADAPTER_TEST_END},
+       .expected_adapter_status = BT_STATUS_FAIL,
+       .expected_property.type = BT_PROPERTY_CLASS_OF_DEVICE,
+       .expected_property.val = &setprop_class_of_device,
+       .expected_property.len = sizeof(setprop_class_of_device)
+};
+
 static bt_callbacks_t bt_callbacks = {
        .size = sizeof(bt_callbacks),
        .adapter_state_changed_cb = adapter_state_changed_cb,
@@ -1000,6 +1010,19 @@ static void test_setprop_uuid_invalid(const void *test_data)
        check_expected_status(adapter_status);
 }
 
+static void test_setprop_cod_invalid(const void *test_data)
+{
+       struct test_data *data = tester_get_data();
+       const struct generic_data *test = data->test_data;
+       const bt_property_t *prop = &test->expected_property;
+       bt_status_t adapter_status;
+
+       init_test_conditions(data);
+
+       adapter_status = data->if_bluetooth->set_adapter_property(prop);
+       check_expected_status(adapter_status);
+}
+
 #define test_bredrle(name, data, test_setup, test, test_teardown) \
        do { \
                struct test_data *user; \
@@ -1060,6 +1083,11 @@ int main(int argc, char *argv[])
                                        setup_enabled_adapter,
                                        test_setprop_uuid_invalid, teardown);
 
+       test_bredrle("Set CLASS_OF_DEVICE - Invalid",
+                                       &bluetooth_setprop_cod_invalid_test,
+                                       setup_enabled_adapter,
+                                       test_setprop_cod_invalid, teardown);
+
        test_bredrle("Socket Init", NULL, setup_socket_interface,
                                                test_dummy, teardown);