From 7c93a77bc5f6c63915ec5b9dd1252b5096d67c41 Mon Sep 17 00:00:00 2001 From: Andrei Emeltchenko Date: Wed, 5 Mar 2014 16:32:25 +0200 Subject: [PATCH] unit/avrcp: Add /TP/PAS/BI-02-C test Test verifies that List player application setting values returns error when invalid attribute id is provided. --- unit/test-avrcp.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/unit/test-avrcp.c b/unit/test-avrcp.c index 8b3e22eea..5d9887109 100644 --- a/unit/test-avrcp.c +++ b/unit/test-avrcp.c @@ -667,5 +667,18 @@ int main(int argc, char *argv[]) AVRCP_GET_PLAYER_ATTRIBUTE_TEXT, 0x00, 0x00, 0x01, AVRCP_STATUS_INVALID_PARAM)); + /* List player application setting values invalid behavior - TG */ + define_test("/TP/PAS/BI-02-C", test_server, + raw_pdu(0x00, 0x11, 0x0e, 0x01, 0x48, 0x00, + 0x00, 0x19, 0x58, + AVRCP_LIST_PLAYER_VALUES, + 0x00, 0x00, 0x01, + /* Invalid attribute id */ + 0x7f), + raw_pdu(0x02, 0x11, 0x0e, AVC_CTYPE_REJECTED, + 0x48, 0x00, 0x00, 0x19, 0x58, + AVRCP_LIST_PLAYER_VALUES, + 0x00, 0x00, 0x01, AVRCP_STATUS_INVALID_PARAM)); + return g_test_run(); } -- 2.47.3