From 53a2d6dc8f341df8afe25581f10790ab779fc7b9 Mon Sep 17 00:00:00 2001 From: Andrei Emeltchenko Date: Wed, 12 Mar 2014 16:40:28 +0200 Subject: [PATCH] unit/avrcp: Add /TP/BGN/BV-01-I TG test Test verifies that the Target responds to Next Group command. --- unit/test-avrcp.c | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/unit/test-avrcp.c b/unit/test-avrcp.c index 3714c1a0f..7351a34db 100644 --- a/unit/test-avrcp.c +++ b/unit/test-avrcp.c @@ -280,11 +280,20 @@ static bool handle_select(struct avrcp *session, bool pressed, void *user_data) return true; } +static bool handle_vendor_uniq(struct avrcp *session, bool pressed, + void *user_data) +{ + DBG(""); + + return true; +} + static const struct avrcp_passthrough_handler passthrough_handlers[] = { { AVC_PLAY, handle_play }, { AVC_VOLUME_UP, handle_volume_up }, { AVC_CHANNEL_UP, handle_channel_up }, { AVC_SELECT, handle_select }, + { AVC_VENDOR_UNIQUE, handle_vendor_uniq }, { }, }; @@ -1045,6 +1054,17 @@ int main(int argc, char *argv[]) AVC_VENDOR_UNIQUE, 0x05, 0x00, 0x19, 0x58, 0x00, AVC_VENDOR_NEXT_GROUP)); + /* Next Group command transfer - TG */ + define_test("/TP/BGN/BV-01-I", test_server, + raw_pdu(0x00, 0x11, 0x0e, 0x00, 0x48, + AVC_OP_PASSTHROUGH, + AVC_VENDOR_UNIQUE, 0x05, 0x00, 0x19, + 0x58, 0x00, AVC_VENDOR_NEXT_GROUP), + raw_pdu(0x02, 0x11, 0x0e, AVC_CTYPE_ACCEPTED, + 0x48, AVC_OP_PASSTHROUGH, + AVC_VENDOR_UNIQUE, 0x05, 0x00, 0x19, + 0x58, 0x00, AVC_VENDOR_NEXT_GROUP)); + /* Previous Group command transfer - CT */ define_test("/TP/BGN/BV-02-I", test_client, raw_pdu(0x00, 0x11, 0x0e, 0x00, 0x48, -- 2.47.3