tools: Add mgmt test case for link security when powered on

This commit is contained in:
Johan Hedberg 2013-01-11 15:35:27 +02:00
parent 3b856f33d7
commit 66fe4bb1b1

View File

@ -610,15 +610,26 @@ static const struct generic_data set_discoverable_off_success_test_2 = {
static const char set_link_sec_on_param[] = { 0x01 }; static const char set_link_sec_on_param[] = { 0x01 };
static const char set_link_sec_invalid_param[] = { 0x02 }; static const char set_link_sec_invalid_param[] = { 0x02 };
static const char set_link_sec_garbage_param[] = { 0x01, 0x00 }; static const char set_link_sec_garbage_param[] = { 0x01, 0x00 };
static const char set_link_sec_settings_param[] = { 0xa0, 0x00, 0x00, 0x00 }; static const char set_link_sec_settings_param_1[] = { 0xa0, 0x00, 0x00, 0x00 };
static const char set_link_sec_settings_param_2[] = { 0xa1, 0x00, 0x00, 0x00 };
static const struct generic_data set_link_sec_on_success_test = { static const struct generic_data set_link_sec_on_success_test_1 = {
.send_opcode = MGMT_OP_SET_LINK_SECURITY, .send_opcode = MGMT_OP_SET_LINK_SECURITY,
.send_param = set_link_sec_on_param, .send_param = set_link_sec_on_param,
.send_len = sizeof(set_link_sec_on_param), .send_len = sizeof(set_link_sec_on_param),
.expect_status = MGMT_STATUS_SUCCESS, .expect_status = MGMT_STATUS_SUCCESS,
.expect_param = set_link_sec_settings_param, .expect_param = set_link_sec_settings_param_1,
.expect_len = sizeof(set_link_sec_settings_param), .expect_len = sizeof(set_link_sec_settings_param_1),
.expect_settings_set = MGMT_SETTING_LINK_SECURITY,
};
static const struct generic_data set_link_sec_on_success_test_2 = {
.send_opcode = MGMT_OP_SET_LINK_SECURITY,
.send_param = set_link_sec_on_param,
.send_len = sizeof(set_link_sec_on_param),
.expect_status = MGMT_STATUS_SUCCESS,
.expect_param = set_link_sec_settings_param_2,
.expect_len = sizeof(set_link_sec_settings_param_2),
.expect_settings_set = MGMT_SETTING_LINK_SECURITY, .expect_settings_set = MGMT_SETTING_LINK_SECURITY,
}; };
@ -1006,9 +1017,12 @@ int main(int argc, char *argv[])
setup_powered_discoverable, setup_powered_discoverable,
test_command_generic); test_command_generic);
test_bredr("Set link security on - Success", test_bredr("Set link security on - Success 1",
&set_link_sec_on_success_test, &set_link_sec_on_success_test_1,
NULL, test_command_generic); NULL, test_command_generic);
test_bredr("Set link security on - Success 2",
&set_link_sec_on_success_test_2,
setup_powered, test_command_generic);
test_bredr("Set link security on - Invalid parameters 1", test_bredr("Set link security on - Invalid parameters 1",
&set_link_sec_on_invalid_param_test_1, &set_link_sec_on_invalid_param_test_1,
NULL, test_command_generic); NULL, test_command_generic);