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.
This commit is contained in:
Andrei Emeltchenko 2014-03-05 16:32:25 +02:00 committed by Luiz Augusto von Dentz
parent f3b0143d4a
commit 7c93a77bc5

View File

@ -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();
}