Return-Path: From: Florian Grandel To: linux-bluetooth@vger.kernel.org Subject: [BlueZ v9 10/16] tools/mgmt-tester: test adv inst override Date: Thu, 18 Jun 2015 03:17:40 +0200 Message-Id: <1434590266-26744-11-git-send-email-fgrandel@gmail.com> In-Reply-To: <1434590266-26744-1-git-send-email-fgrandel@gmail.com> References: <1434590266-26744-1-git-send-email-fgrandel@gmail.com> In-Reply-To: <1434166979-21824-1-git-send-email-fgrandel@gmail.com> References: <1434166979-21824-1-git-send-email-fgrandel@gmail.com> Sender: linux-bluetooth-owner@vger.kernel.org List-ID: This test covers a use case that had not been tested before: When an advertising instance has already been added and is then added again with different advertising data, the new advertising data should be advertised. --- doc/test-coverage.txt | 4 ++-- tools/mgmt-tester.c | 20 ++++++++++++++++++++ 2 files changed, 22 insertions(+), 2 deletions(-) diff --git a/doc/test-coverage.txt b/doc/test-coverage.txt index 89d9991..9c8b9bc 100644 --- a/doc/test-coverage.txt +++ b/doc/test-coverage.txt @@ -39,7 +39,7 @@ Automated end-to-end testing Application Count Description ------------------------------------------- -mgmt-tester 297 Kernel management interface testing +mgmt-tester 298 Kernel management interface testing l2cap-tester 27 Kernel L2CAP implementation testing rfcomm-tester 9 Kernel RFCOMM implementation testing bnep-tester 1 Kernel BNEP implementation testing @@ -49,7 +49,7 @@ gap-tester 1 Daemon D-Bus API testing hci-tester 14 Controller hardware testing userchan-tester 3 Kernel HCI User Channel testting ----- - 368 + 369 Android end-to-end testing diff --git a/tools/mgmt-tester.c b/tools/mgmt-tester.c index 0100f51..8e56b6c 100644 --- a/tools/mgmt-tester.c +++ b/tools/mgmt-tester.c @@ -4507,6 +4507,18 @@ static const struct generic_data add_advertising_power_off = { .expect_alt_ev_len = sizeof(advertising_instance1_param), }; +static const struct generic_data add_advertising_success_18 = { + .send_opcode = MGMT_OP_ADD_ADVERTISING, + .send_param = add_advertising_param_uuid, + .send_len = sizeof(add_advertising_param_uuid), + .expect_param = advertising_instance1_param, + .expect_len = sizeof(advertising_instance1_param), + .expect_status = MGMT_STATUS_SUCCESS, + .expect_hci_command = BT_HCI_CMD_LE_SET_ADV_DATA, + .expect_hci_param = set_adv_data_uuid, + .expect_hci_len = sizeof(set_adv_data_uuid), +}; + static const uint8_t remove_advertising_param_1[] = { 0x01, }; @@ -6699,6 +6711,14 @@ int main(int argc, char *argv[]) &add_advertising_success_pwron_data, setup_add_advertising_power_cycle, test_command_generic); + /* Changing an advertising instance while it is still being + * advertised will immediately update the advertised data if + * there is no other instance to switch to. + */ + test_bredrle("Add Advertising - Success 20 (Add Adv override)", + &add_advertising_success_18, + setup_add_advertising, + test_command_generic); test_bredrle("Remove Advertising - Invalid Params 1", &remove_advertising_fail_1, -- 1.9.1