summaryrefslogtreecommitdiff
path: root/unit/test-gatt.c
diff options
context:
space:
mode:
authorGowtham Anandha Babu <gowtham.ab@samsung.com>2015-03-05 14:43:34 +0530
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2015-03-05 13:38:19 +0200
commitff88a4892362c9c94e199b9766fc905b4fbec9a1 (patch)
tree2b8b3ddff6320b1da1bead453cf9b3c23889505f /unit/test-gatt.c
parentc01823408c2ccdf46fe5ad43cef40d64d8a1d931 (diff)
downloadbluez-ff88a4892362c9c94e199b9766fc905b4fbec9a1.tar.gz
unit/test-gatt: Add TP/GAW/CL/BI-21-C test
Verify Generic Attribute Profile client behavior when the Write Characteristic Descriptor procedure fails due to write not permitted.
Diffstat (limited to 'unit/test-gatt.c')
-rw-r--r--unit/test-gatt.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/unit/test-gatt.c b/unit/test-gatt.c
index 3c664fee0..5ed515476 100644
--- a/unit/test-gatt.c
+++ b/unit/test-gatt.c
@@ -845,6 +845,14 @@ static const struct test_step test_write_8 = {
.length = 0x03
};
+static const struct test_step test_write_9 = {
+ .handle = 0x0008,
+ .func = test_write,
+ .expected_att_ecode = 0x03,
+ .value = write_data_1,
+ .length = 0x03
+};
+
static void test_write_without_response(struct context *context)
{
const struct test_step *step = context->data->step;
@@ -3115,5 +3123,11 @@ int main(int argc, char *argv[])
raw_pdu(0x12, 0x00, 0x00, 0x01, 0x02, 0x03),
raw_pdu(0x01, 0x12, 0x00, 0x00, 0x01));
+ define_test_client("/TP/GAW/CL/BI-21-C", test_client, service_db_1,
+ &test_write_9,
+ SERVICE_DATA_1_PDUS,
+ raw_pdu(0x12, 0x08, 0x00, 0x01, 0x02, 0x03),
+ raw_pdu(0x01, 0x12, 0x08, 0x00, 0x03));
+
return tester_run();
}