unit/avrcp: Add /TP/MDI/BV-03-C test

Test verifies that Get element attributes issued correctly.
This commit is contained in:
Andrei Emeltchenko 2014-03-10 11:09:46 +02:00 committed by Luiz Augusto von Dentz
parent 55899e97d4
commit b9128441c0

View File

@ -553,6 +553,9 @@ static void test_client(gconstpointer data)
if (g_str_equal(context->data->test_name, "/TP/MDI/BV-01-C"))
avrcp_get_play_status(context->session, NULL, NULL);
if (g_str_equal(context->data->test_name, "/TP/MDI/BV-03-C"))
avrcp_get_element_attributes(context->session, NULL, NULL);
execute_context(context);
}
@ -812,6 +815,12 @@ int main(int argc, char *argv[])
0x00, 0x00, 0x09, 0xaa, 0xaa, 0xaa,
0xaa, 0xbb, 0xbb, 0xbb, 0xbb, 0x00));
/* Get element attributes - CT */
define_test("/TP/MDI/BV-03-C", test_client,
raw_pdu(0x00, 0x11, 0x0e, 0x01, 0x48, 0x00,
0x00, 0x19, 0x58, AVRCP_GET_ELEMENT_ATTRIBUTES,
0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00));
return g_test_run();
}