diff options
author | Bharat Panda <bharat.panda@samsung.com> | 2015-03-13 12:04:40 +0530 |
---|---|---|
committer | Luiz Augusto von Dentz <luiz.von.dentz@intel.com> | 2015-03-13 14:29:31 +0200 |
commit | 20813eb8cde3148da6d54913cb37b24279aae080 (patch) | |
tree | 9bdaae3457340105f94f5bdcdf0920b78819d11a /unit/test-gatt.c | |
parent | d782a659cf366f220c3d4782ed2207026bcfec55 (diff) | |
download | bluez-20813eb8cde3148da6d54913cb37b24279aae080.tar.gz |
unit/test-gatt: Add TP/GAW/SR/BV-05-C test
Verify that a Generic Attribute Profile server can support writing
a long Characteristic Value selected by handle.
Diffstat (limited to 'unit/test-gatt.c')
-rw-r--r-- | unit/test-gatt.c | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/unit/test-gatt.c b/unit/test-gatt.c index 1babe117d..7578ddf14 100644 --- a/unit/test-gatt.c +++ b/unit/test-gatt.c @@ -3143,6 +3143,34 @@ int main(int argc, char *argv[]) raw_pdu(0x12, 0x04, 0x00, 0x01, 0x02, 0x03), raw_pdu(0x01, 0x12, 0x04, 0x00, 0x03)); + define_test_server("/TP/GAW/SR/BV-05-C/small", test_server, + ts_small_db, NULL, + raw_pdu(0x03, 0x00, 0x02), + raw_pdu(0x16, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff), + raw_pdu(0x17, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff), + raw_pdu(0x16, 0x03, 0x00, 0x3f, 0x00, 0xff), + raw_pdu(0x17, 0x03, 0x00, 0x3f, 0x00, 0xff), + raw_pdu(0x18, 0x01), + raw_pdu(0x19)); + + define_test_server("/TP/GAW/SR/BV-05-C/large-1", test_server, + ts_large_db_1, NULL, + raw_pdu(0x03, 0x00, 0x02), + raw_pdu(0x16, 0x82, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff), + raw_pdu(0x17, 0x82, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff), + raw_pdu(0x16, 0x82, 0x00, 0x3f, 0x00, 0xff), + raw_pdu(0x17, 0x82, 0x00, 0x3f, 0x00, 0xff), + raw_pdu(0x18, 0x01), + raw_pdu(0x19)); + define_test_client("/TP/GAW/CL/BV-08-C", test_client, service_db_1, &test_write_7, SERVICE_DATA_1_PDUS, |