unit/avrcp: Add /TP/INV/BI-01-C test

Test verifies that AVRCP_STATUS_INVALID_COMMAND returned when received
command with Invalid PDU ID.
This commit is contained in:
Andrei Emeltchenko 2014-03-11 15:05:49 +02:00 committed by Luiz Augusto von Dentz
parent 8205b197ca
commit 8538a005b2

View File

@ -1016,5 +1016,19 @@ int main(int argc, char *argv[])
AVRCP_REGISTER_NOTIFICATION,
0x00, 0x00, 0x01, AVRCP_STATUS_INVALID_PARAM));
/* Invalid commands */
/* Invalid PDU ID - TG */
define_test("/TP/INV/BI-01-C", test_server,
raw_pdu(0x00, 0x11, 0x0e, 0x03, 0x48, 0x00,
0x00, 0x19, 0x58,
/* Invalid PDU ID */
0xff,
0x00, 0x00, 0x00),
raw_pdu(0x02, 0x11, 0x0e, AVC_CTYPE_REJECTED,
0x48, 0x00, 0x00, 0x19, 0x58,
0xff, 0x00, 0x00, 0x01,
AVRCP_STATUS_INVALID_COMMAND));
return g_test_run();
}