From: Szymon Janc <szymon.janc@tieto.com>
To: Lukasz Rymanowski <lukasz.rymanowski@tieto.com>
Cc: linux-bluetooth@vger.kernel.org
Subject: Re: [PATCH] android/tester-gatt: Add Find by type test
Date: Tue, 24 Feb 2015 17:40:59 +0100 [thread overview]
Message-ID: <5074063.xMvgPVL04k@uw000953> (raw)
In-Reply-To: <1424787677-18412-1-git-send-email-lukasz.rymanowski@tieto.com>
Hi Łukasz,
On Tuesday 24 of February 2015 15:21:17 Lukasz Rymanowski wrote:
> This patch adds test to check if GATT server response on Find By type
> request when there is no matching attribute in the range
> ---
> This should be sent together with this set: [PATCH v2 1/3] android/gatt: Fix, add return check for queue push
>
> android/tester-gatt.c | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 50 insertions(+)
>
> diff --git a/android/tester-gatt.c b/android/tester-gatt.c
> index 1c0397e..eb0ca1e 100644
> --- a/android/tester-gatt.c
> +++ b/android/tester-gatt.c
> @@ -29,6 +29,7 @@
> #define L2CAP_ATT_ERROR 0x01
> #define L2CAP_ATT_EXCHANGE_MTU_REQ 0x02
> #define L2CAP_ATT_EXCHANGE_MTU_RSP 0x03
> +#define L2CAP_ATT_FIND_BY_TYPE_REQ 0x06
> #define L2CAP_ATT_READ_REQ 0x0a
> #define L2CAP_ATT_READ_RSP 0x0b
> #define L2CAP_ATT_WRITE_REQ 0x12
> @@ -1090,9 +1091,18 @@ static struct iovec send_notification_1[] = {
> end_pdu
> };
>
> +static struct iovec search_range_1[] = {
> + raw_pdu(0x01, 0xff, 0xff, 0xff),
> + end_pdu
> +};
> +
> +static struct iovec primary_type = raw_pdu(0x00, 0x28);
> +
> /* att commands define raw pdus */
> static struct iovec att_read_req_op_v = raw_pdu(L2CAP_ATT_READ_REQ);
> static struct iovec att_write_req_op_v = raw_pdu(L2CAP_ATT_WRITE_REQ);
> +static struct iovec att_find_by_type_req_op_v =
> + raw_pdu(L2CAP_ATT_FIND_BY_TYPE_REQ);
>
> static struct iovec svc_change_ccc_handle_v = raw_pdu(0x1c, 0x00);
> static struct iovec svc_change_ccc_value_v = raw_pdu(0x00, 0x01);
> @@ -3400,6 +3410,46 @@ static struct test_case test_cases[] = {
> ACTION_SUCCESS(bluetooth_disable_action, NULL),
> CALLBACK_STATE(CB_BT_ADAPTER_STATE_CHANGED, BT_STATE_OFF),
> ),
> + TEST_CASE_BREDRLE("Gatt Server - Find By Type - Attribute not found",
> + ACTION_SUCCESS(bluetooth_enable_action, NULL),
> + CALLBACK_STATE(CB_BT_ADAPTER_STATE_CHANGED, BT_STATE_ON),
> + ACTION_SUCCESS(emu_setup_powered_remote_action, NULL),
> + ACTION_SUCCESS(emu_set_ssp_mode_action, NULL),
> + ACTION_SUCCESS(emu_set_connect_cb_action, gatt_conn_cb),
> + ACTION_SUCCESS(gatt_server_register_action, &app1_uuid),
> + CALLBACK_STATUS(CB_GATTS_REGISTER_SERVER, BT_STATUS_SUCCESS),
> + ACTION_SUCCESS(gatt_server_add_service_action,
> + &add_service_data_5),
> + CALLBACK_GATTS_SERVICE_ADDED(GATT_STATUS_SUCCESS, APP1_ID,
> + &service_add_1, NULL,
> + &srvc1_handle),
> + ACTION_SUCCESS(gatt_server_add_char_action, &add_char_data_2),
> + CALLBACK_GATTS_CHARACTERISTIC_ADDED(GATT_STATUS_SUCCESS,
> + APP1_ID, &app1_uuid,
> + &srvc1_handle, NULL,
> + &char1_handle),
> + ACTION_SUCCESS(gatt_server_start_srvc_action,
> + &start_srvc_data_2),
> + CALLBACK_GATTS_SERVICE_STARTED(GATT_STATUS_SUCCESS, APP1_ID,
> + &srvc1_handle),
> + ACTION_SUCCESS(bt_start_discovery_action, NULL),
> + CALLBACK_STATE(CB_BT_DISCOVERY_STATE_CHANGED,
> + BT_DISCOVERY_STARTED),
> + CALLBACK_DEVICE_FOUND(prop_emu_remotes_default_le_set, 2),
> + ACTION_SUCCESS(bt_cancel_discovery_action, NULL),
> + ACTION_SUCCESS(gatt_server_connect_action, &app1_conn_req),
> + CALLBACK_GATTS_CONNECTION(GATT_SERVER_CONNECTED,
> + prop_emu_remotes_default_set,
> + CONN1_ID, APP1_ID),
> + PROCESS_DATA(GATT_STATUS_SUCCESS,
> + gatt_remote_send_raw_pdu_action,
> + &att_find_by_type_req_op_v,
> + &search_range_1,
> + &primary_type),
> + CALLBACK_ERROR(CB_EMU_ATT_ERROR, 0x0a),
> + ACTION_SUCCESS(bluetooth_disable_action, NULL),
> + CALLBACK_STATE(CB_BT_ADAPTER_STATE_CHANGED, BT_STATE_OFF),
> + ),
> /* This tests embeded ccc */
> TEST_CASE_BREDRLE("Gatt Server - Srvc change write req. success",
> ACTION_SUCCESS(bluetooth_enable_action, NULL),
>
Applied, thanks.
--
Best regards,
Szymon Janc
prev parent reply other threads:[~2015-02-24 16:40 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-02-24 14:21 [PATCH] android/tester-gatt: Add Find by type test Lukasz Rymanowski
2015-02-24 16:40 ` Szymon Janc [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5074063.xMvgPVL04k@uw000953 \
--to=szymon.janc@tieto.com \
--cc=linux-bluetooth@vger.kernel.org \
--cc=lukasz.rymanowski@tieto.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox