From a953350663c3f8e71db05d90660921ea9c18d153 Mon Sep 17 00:00:00 2001 From: Andrei Emeltchenko Date: Fri, 28 Feb 2014 10:22:57 +0200 Subject: [PATCH] unit/avrcp: Add /TP/PAS/BV-03-C test Test verifies that the get player application settings attribute text command issued from the Controller. --- unit/test-avrcp.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/unit/test-avrcp.c b/unit/test-avrcp.c index c4faca300..a75165bc2 100644 --- a/unit/test-avrcp.c +++ b/unit/test-avrcp.c @@ -375,6 +375,10 @@ static void test_client(gconstpointer data) if (g_str_equal(context->data->test_name, "/TP/PAS/BV-01-C")) avrcp_list_player_attributes(context->session, NULL, NULL); + if (g_str_equal(context->data->test_name, "/TP/PAS/BV-03-C")) + avrcp_get_player_attribute_text(context->session, NULL, 0, + NULL, NULL); + execute_context(context); } @@ -484,5 +488,11 @@ int main(int argc, char *argv[]) 0x00, 0x19, 0x58, 0x11, 0x00, 0x00, 0x01, 0x00)); + define_test("/TP/PAS/BV-03-C", test_client, + raw_pdu(0x00, 0x11, 0x0e, 0x01, 0x48, 0x00, + 0x00, 0x19, 0x58, + AVRCP_GET_PLAYER_ATTRIBUTE_TEXT, + 0x00, 0x00, 0x00)); + return g_test_run(); } -- 2.47.3