From 58565fb89b909d0b5d4e7a3a9fc7fa0def61e72f Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Wed, 23 Apr 2014 14:07:08 +0300 Subject: [PATCH] unit/test-avrcp: Add /TP/MCN/CB/BI-04-C test To verify the ChangePath response issued by the TG when an invalid Folder UID is requested. --- unit/test-avrcp.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/unit/test-avrcp.c b/unit/test-avrcp.c index 2d5177904..1cde8fb14 100644 --- a/unit/test-avrcp.c +++ b/unit/test-avrcp.c @@ -573,6 +573,9 @@ static int change_path(struct avrcp *session, uint8_t transaction, { DBG(""); + if (!uid) + return -ENOTDIR; + avrcp_change_path_rsp(session, transaction, 0); return -EAGAIN; @@ -841,6 +844,17 @@ int main(int argc, char *argv[]) brs_pdu(0x02, 0x11, 0x0e, AVRCP_GET_FOLDER_ITEMS, 0x00, 0x01, 0x0b)); + /* ChangePath - TG */ + define_test("/TP/MCN/CB/BI-04-C", test_server, + brs_pdu(0x00, 0x11, 0x0e, AVRCP_CHANGE_PATH, + 0x00, 0x0b, + 0xaa, 0xbb, /* counter */ + 0x01, /* direction */ + 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00 /* Folder UID */), + brs_pdu(0x02, 0x11, 0x0e, AVRCP_CHANGE_PATH, + 0x00, 0x01, 0x08)); + /* Media Content Navigation Commands and Notifications for Search */ /* Search - CT */ -- 2.47.3