From b28dfba7a07b7f9539a921035573c6fb270a92d6 Mon Sep 17 00:00:00 2001 From: Michael Janssen Date: Mon, 5 Jan 2015 13:32:52 -0800 Subject: [PATCH] unit/gatt: Add /TP/GAD/SR/BV-06-C test Verify that a Generic Attribute Profile server can support a search for all descriptors of a specified characteristic. --- unit/test-gatt.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/unit/test-gatt.c b/unit/test-gatt.c index b8815ee44..a74716d1c 100644 --- a/unit/test-gatt.c +++ b/unit/test-gatt.c @@ -1689,6 +1689,24 @@ int main(int argc, char *argv[]) raw_pdu(0x05, 0x01, 0x15, 0x00, 0x04, 0x29, 0x16, 0x00, 0x05, 0x29)); + define_test_server("/TP/GAD/SR/BV-06-C/small", test_server, + ts_small_db, NULL, + raw_pdu(0x03, 0x00, 0x02), + raw_pdu(0x04, 0x04, 0x00, 0x05, 0x00), + raw_pdu(0x05, 0x01, 0x04, 0x00, 0x02, 0x29, 0x05, 0x00, + 0x01, 0x29)); + + define_test_server("/TP/GAD/SR/BV-06-C/large-1", test_server, + ts_large_db_1, NULL, + raw_pdu(0x03, 0x00, 0x02), + raw_pdu(0x04, 0x73, 0x00, 0x76, 0x00), + raw_pdu(0x05, 0x01, 0x73, 0x00, 0x00, 0x29, 0x74, 0x00, + 0x01, 0x29, 0x75, 0x00, 0x04, 0x29), + raw_pdu(0x04, 0x76, 0x00, 0x76, 0x00), + raw_pdu(0x05, 0x02, 0x76, 0x00, 0xef, 0xcd, 0xab, 0x89, + 0x67, 0x45, 0x23, 0x01, 0x00, 0x00, 0x00, 0x00, + 0xd4, 0xd5, 0x00, 0x00)); + define_test_client("/TP/GAR/CL/BV-01-C", test_client, service_db_1, &test_read_1, SERVICE_DATA_1_PDUS, -- 2.47.3