Return-Path: From: Andrei Emeltchenko To: linux-bluetooth@vger.kernel.org Subject: [PATCHv2 08/16] unit/avrcp: Add /TP/MPS/BV-01-I test Date: Fri, 14 Mar 2014 17:17:50 +0200 Message-Id: <1394810278-11013-9-git-send-email-Andrei.Emeltchenko.news@gmail.com> In-Reply-To: <1394810278-11013-1-git-send-email-Andrei.Emeltchenko.news@gmail.com> References: <1394810278-11013-1-git-send-email-Andrei.Emeltchenko.news@gmail.com> Sender: linux-bluetooth-owner@vger.kernel.org List-ID: From: Andrei Emeltchenko Test verifies that Controller is able to request the list of available Media Players. --- unit/test-avrcp.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/unit/test-avrcp.c b/unit/test-avrcp.c index b173e8d..3a7e0d1 100644 --- a/unit/test-avrcp.c +++ b/unit/test-avrcp.c @@ -718,6 +718,11 @@ static void test_client(gconstpointer data) AVRCP_MEDIA_PLAYER_LIST, 0, 2, NULL, 0, NULL, NULL); + if (g_str_equal(context->data->test_name, "/TP/MPS/BV-01-I")) + avrcp_get_folder_items(context->session, + AVRCP_MEDIA_PLAYER_LIST, 0, 2, NULL, 0, + NULL, NULL); + if (g_str_equal(context->data->test_name, "/TP/CFG/BV-01-C")) avrcp_get_capabilities(context->session, CAP_EVENTS_SUPPORTED, NULL, NULL); @@ -807,6 +812,16 @@ int main(int argc, char *argv[]) 0x00, 0x00, 0x00, 0x02, /* end */ 0x00)); + /* Media Player Selection IOP tests */ + + /* Listing of available media players */ + define_test("/TP/MPS/BV-01-I", test_client, + raw_pdu(0x00, 0x11, 0x0e, AVRCP_GET_FOLDER_ITEMS, + 0x00, 0x0a, AVRCP_MEDIA_PLAYER_LIST, + 0x00, 0x00, 0x00, 0x00, /* start */ + 0x00, 0x00, 0x00, 0x02, /* end */ + 0x00)); + /* Connection Establishment for Control tests */ /* -- 1.8.3.2