blob: 3702d39afdfd57e2bbd355282f5749070b1e8ebe [file] [log] [blame]
/*
*
* BlueZ - Bluetooth protocol stack for Linux
*
* Copyright (C) 2014 Intel Corporation. All rights reserved.
*
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <unistd.h>
#include <stdlib.h>
#include <stdbool.h>
#include <inttypes.h>
#include <string.h>
#include <fcntl.h>
#include <errno.h>
#include <sys/socket.h>
#include <glib.h>
#include "src/shared/util.h"
#include "src/log.h"
#include "lib/bluetooth.h"
#include "android/avctp.h"
#include "android/avrcp-lib.h"
struct test_pdu {
bool valid;
bool fragmented;
const uint8_t *data;
size_t size;
};
struct test_data {
char *test_name;
struct test_pdu *pdu_list;
};
struct context {
GMainLoop *main_loop;
struct avrcp *session;
guint source;
guint process;
int fd;
unsigned int pdu_offset;
const struct test_data *data;
};
#define data(args...) ((const unsigned char[]) { args })
#define raw_pdu(args...) \
{ \
.valid = true, \
.data = data(args), \
.size = sizeof(data(args)), \
}
#define frg_pdu(args...) \
{ \
.valid = true, \
.fragmented = true, \
.data = data(args), \
.size = sizeof(data(args)), \
}
#define define_test(name, function, args...) \
do { \
const struct test_pdu pdus[] = { \
args, { } \
}; \
static struct test_data data; \
data.test_name = g_strdup(name); \
data.pdu_list = g_malloc(sizeof(pdus)); \
memcpy(data.pdu_list, pdus, sizeof(pdus)); \
g_test_add_data_func(name, &data, function); \
} while (0)
static void test_debug(const char *str, void *user_data)
{
const char *prefix = user_data;
g_print("%s%s\n", prefix, str);
}
static void test_free(gconstpointer user_data)
{
const struct test_data *data = user_data;
g_free(data->test_name);
g_free(data->pdu_list);
}
static gboolean context_quit(gpointer user_data)
{
struct context *context = user_data;
if (context->process > 0)
g_source_remove(context->process);
g_main_loop_quit(context->main_loop);
return FALSE;
}
static gboolean send_pdu(gpointer user_data)
{
struct context *context = user_data;
const struct test_pdu *pdu;
ssize_t len;
pdu = &context->data->pdu_list[context->pdu_offset++];
len = write(context->fd, pdu->data, pdu->size);
if (g_test_verbose())
util_hexdump('<', pdu->data, len, test_debug, "AVRCP: ");
g_assert_cmpint(len, ==, pdu->size);
if (pdu->fragmented)
return send_pdu(user_data);
context->process = 0;
return FALSE;
}
static void context_process(struct context *context)
{
if (!context->data->pdu_list[context->pdu_offset].valid) {
context_quit(context);
return;
}
context->process = g_idle_add(send_pdu, context);
}
static gboolean test_handler(GIOChannel *channel, GIOCondition cond,
gpointer user_data)
{
struct context *context = user_data;
const struct test_pdu *pdu;
unsigned char buf[512];
ssize_t len;
int fd;
pdu = &context->data->pdu_list[context->pdu_offset++];
if (cond & (G_IO_NVAL | G_IO_ERR | G_IO_HUP)) {
context->source = 0;
g_print("%s: cond %x\n", __func__, cond);
return FALSE;
}
fd = g_io_channel_unix_get_fd(channel);
len = read(fd, buf, sizeof(buf));
g_assert(len > 0);
if (g_test_verbose())
util_hexdump('>', buf, len, test_debug, "AVRCP: ");
g_assert_cmpint(len, ==, pdu->size);
g_assert(memcmp(buf, pdu->data, pdu->size) == 0);
if (!pdu->fragmented)
context_process(context);
return TRUE;
}
static struct context *create_context(uint16_t version, gconstpointer data)
{
struct context *context = g_new0(struct context, 1);
GIOChannel *channel;
int err, sv[2];
context->main_loop = g_main_loop_new(NULL, FALSE);
g_assert(context->main_loop);
err = socketpair(AF_UNIX, SOCK_SEQPACKET | SOCK_CLOEXEC, 0, sv);
g_assert(err == 0);
context->session = avrcp_new(sv[0], 672, 672, version);
g_assert(context->session != NULL);
channel = g_io_channel_unix_new(sv[1]);
g_io_channel_set_close_on_unref(channel, TRUE);
g_io_channel_set_encoding(channel, NULL, NULL);
g_io_channel_set_buffered(channel, FALSE);
context->source = g_io_add_watch(channel,
G_IO_IN | G_IO_HUP | G_IO_ERR | G_IO_NVAL,
test_handler, context);
g_assert(context->source > 0);
g_io_channel_unref(channel);
context->fd = sv[1];
context->data = data;
return context;
}
static void destroy_context(struct context *context)
{
if (context->source > 0)
g_source_remove(context->source);
avrcp_shutdown(context->session);
g_main_loop_unref(context->main_loop);
test_free(context->data);
g_free(context);
}
static void test_dummy(gconstpointer data)
{
struct context *context = create_context(0x0100, data);
destroy_context(context);
}
static void execute_context(struct context *context)
{
g_main_loop_run(context->main_loop);
destroy_context(context);
}
static bool handle_play(struct avrcp *session, bool pressed, void *user_data)
{
DBG("");
return true;
}
static bool handle_volume_up(struct avrcp *session, bool pressed,
void *user_data)
{
DBG("");
return true;
}
static bool handle_channel_up(struct avrcp *session, bool pressed,
void *user_data)
{
DBG("");
return true;
}
static bool handle_select(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 },
{ },
};
static bool check_attributes(const uint8_t *params)
{
int i;
for (i = 1; i <= params[0]; i++) {
DBG("params[%d] = 0x%02x", i, params[i]);
if (params[i] > AVRCP_ATTRIBUTE_LAST ||
params[i] == AVRCP_ATTRIBUTE_ILEGAL)
return false;
}
return true;
}
static ssize_t avrcp_handle_get_capabilities(struct avrcp *session,
uint8_t transaction,
uint16_t params_len,
uint8_t *params,
void *user_data)
{
if (params_len != 1)
return -EINVAL;
switch (params[0]) {
case CAP_COMPANY_ID:
params[1] = 1;
hton24(&params[2], IEEEID_BTSIG);
return 5;
}
return -EINVAL;
}
static ssize_t avrcp_handle_list_attributes(struct avrcp *session,
uint8_t transaction,
uint16_t params_len,
uint8_t *params,
void *user_data)
{
DBG("");
params[0] = 0;
return 1;
}
static ssize_t avrcp_handle_get_player_attr_text(struct avrcp *session,
uint8_t transaction,
uint16_t params_len,
uint8_t *params,
void *user_data)
{
DBG("params[0] %d params_len %d", params[0], params_len);
if (!check_attributes(params))
return -EINVAL;
params[0] = 0;
return 1;
}
static ssize_t avrcp_handle_list_player_values(struct avrcp *session,
uint8_t transaction,
uint16_t params_len,
uint8_t *params,
void *user_data)
{
DBG("params[0] 0x%02x params_len %d", params[0], params_len);
if (params_len != 1)
return -EINVAL;
if (params[0] > AVRCP_ATTRIBUTE_LAST ||
params[0] == AVRCP_ATTRIBUTE_ILEGAL)
return -EINVAL;
params[0] = 0;
return 1;
}
static ssize_t avrcp_handle_get_player_value_text(struct avrcp *session,
uint8_t transaction,
uint16_t params_len,
uint8_t *params,
void *user_data)
{
int i;
DBG("attr_id %d num_vals %d len %d", params[0], params[1], params_len);
if (params_len != 2 + params[1])
return -EINVAL;
if (params[0] > AVRCP_ATTRIBUTE_LAST ||
params[0] == AVRCP_ATTRIBUTE_ILEGAL)
return -EINVAL;
for (i = 2; i < 2 + params[1]; i++) {
DBG("Value 0x%02x", params[i]);
/* Check for invalid value */
switch (params[0]) {
case AVRCP_ATTRIBUTE_EQUALIZER:
if (params[i] < 0x01 || params[i] > 0x02)
return -EINVAL;
}
}
params[0] = 0;
return 1;
}
static ssize_t avrcp_handle_get_current_player_value(struct avrcp *session,
uint8_t transaction,
uint16_t params_len,
uint8_t *params,
void *user_data)
{
uint8_t *attributes;
int i;
DBG("params[0] %d params_len %d", params[0], params_len);
if (!check_attributes(params))
return -EINVAL;
attributes = g_memdup(&params[1], params[0]);
for (i = 0; i < params[0]; i++) {
params[i * 2 + 1] = attributes[i];
params[i * 2 + 2] = 0; /* value */
}
g_free(attributes);
params[0] = i;
return params[0] * 2 + 1;
}
static ssize_t avrcp_handle_set_player_value(struct avrcp *session,
uint8_t transaction,
uint16_t params_len,
uint8_t *params,
void *user_data)
{
int i;
DBG("params[0] %d params_len %d", params[0], params_len);
if (params_len != params[0] * 2 + 1)
return -EINVAL;
for (i = 0; i < params[0]; i++) {
uint8_t attr = params[i * 2 + 1];
uint8_t val = params[i * 2 + 2];
DBG("attr 0x%02x val 0x%02x", attr, val);
switch (attr) {
case AVRCP_ATTRIBUTE_REPEAT_MODE:
if (val < 0x01 || val > 0x05)
return -EINVAL;
}
}
return 1;
}
static ssize_t avrcp_handle_get_play_status(struct avrcp *session,
uint8_t transaction,
uint16_t params_len,
uint8_t *params,
void *user_data)
{
DBG("");
if (params_len)
return -EINVAL;
avrcp_get_play_status_rsp(session, transaction, 0xaaaaaaaa, 0xbbbbbbbb,
0x00);
return -EAGAIN;
}
static ssize_t avrcp_handle_get_element_attrs(struct avrcp *session,
uint8_t transaction,
uint16_t params_len,
uint8_t *params,
void *user_data)
{
DBG("params_len %d params[8] %d", params_len, params[8]);
if (params_len < 9)
return -EINVAL;
if (params_len != 9 + params[8] * 4)
return -EINVAL;
avrcp_get_element_attrs_rsp(session, transaction, NULL, 0);
return -EAGAIN;
}
static ssize_t avrcp_handle_register_notification(struct avrcp *session,
uint8_t transaction,
uint16_t params_len,
uint8_t *params,
void *user_data)
{
struct context *context = user_data;
uint8_t event;
uint8_t pdu[9];
size_t pdu_len;
DBG("");
if (params_len != AVRCP_REGISTER_NOTIFICATION_PARAM_LENGTH)
return -EINVAL;
event = params[0];
pdu[0] = event;
pdu_len = 1;
switch (event) {
case AVRCP_EVENT_TRACK_CHANGED:
if (g_str_equal(context->data->test_name, "/TP/NFY/BV-05-C") ||
g_str_equal(context->data->test_name,
"/TP/NFY/BV-08-C"))
memset(&pdu[1], 0, 8);
else
memset(&pdu[1], 0xff, 8);
pdu_len += 8;
break;
case AVRCP_EVENT_SETTINGS_CHANGED:
pdu[1] = 0x01;
pdu[2] = 0x01;
pdu[3] = 0x02;
pdu_len = 4;
break;
default:
return -EINVAL;
}
avrcp_register_notification_rsp(session, transaction, AVC_CTYPE_INTERIM,
pdu, pdu_len);
avrcp_register_notification_rsp(session, transaction, AVC_CTYPE_CHANGED,
pdu, pdu_len);
return -EAGAIN;
}
static const struct avrcp_control_handler control_handlers[] = {
{ AVRCP_GET_CAPABILITIES,
AVC_CTYPE_STATUS, AVC_CTYPE_STABLE,
avrcp_handle_get_capabilities },
{ AVRCP_LIST_PLAYER_ATTRIBUTES,
AVC_CTYPE_STATUS, AVC_CTYPE_STABLE,
avrcp_handle_list_attributes },
{ AVRCP_GET_PLAYER_ATTRIBUTE_TEXT,
AVC_CTYPE_STATUS, AVC_CTYPE_STABLE,
avrcp_handle_get_player_attr_text },
{ AVRCP_LIST_PLAYER_VALUES,
AVC_CTYPE_STATUS, AVC_CTYPE_STABLE,
avrcp_handle_list_player_values },
{ AVRCP_GET_PLAYER_VALUE_TEXT,
AVC_CTYPE_STATUS, AVC_CTYPE_STABLE,
avrcp_handle_get_player_value_text },
{ AVRCP_GET_CURRENT_PLAYER_VALUE,
AVC_CTYPE_STATUS, AVC_CTYPE_STABLE,
avrcp_handle_get_current_player_value },
{ AVRCP_SET_PLAYER_VALUE,
AVC_CTYPE_CONTROL, AVC_CTYPE_STABLE,
avrcp_handle_set_player_value },
{ AVRCP_GET_PLAY_STATUS,
AVC_CTYPE_STATUS, AVC_CTYPE_STABLE,
avrcp_handle_get_play_status },
{ AVRCP_GET_ELEMENT_ATTRIBUTES,
AVC_CTYPE_STATUS, AVC_CTYPE_STABLE,
avrcp_handle_get_element_attrs },
{ AVRCP_REGISTER_NOTIFICATION,
AVC_CTYPE_NOTIFY, AVC_CTYPE_INTERIM,
avrcp_handle_register_notification },
{ },
};
static void test_server(gconstpointer data)
{
struct context *context = create_context(0x0100, data);
avrcp_set_passthrough_handlers(context->session, passthrough_handlers,
context);
avrcp_set_control_handlers(context->session, control_handlers, context);
g_idle_add(send_pdu, context);
execute_context(context);
}
static void test_client(gconstpointer data)
{
struct context *context = create_context(0x0100, data);
if (g_str_equal(context->data->test_name, "/TP/CFG/BV-01-C"))
avrcp_get_capabilities(context->session, CAP_EVENTS_SUPPORTED,
NULL, NULL);
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);
if (g_str_equal(context->data->test_name, "/TP/PAS/BV-09-C")) {
uint8_t attributes[2] = { AVRCP_ATTRIBUTE_EQUALIZER,
AVRCP_ATTRIBUTE_REPEAT_MODE };
avrcp_get_current_player_value(context->session, attributes,
sizeof(attributes), NULL, NULL);
}
if (g_str_equal(context->data->test_name, "/TP/PAS/BV-11-C")) {
uint8_t attributes[2] = { AVRCP_ATTRIBUTE_EQUALIZER,
AVRCP_ATTRIBUTE_REPEAT_MODE };
uint8_t values[] = { 0xaa, 0xff };
avrcp_set_player_value(context->session, attributes,
sizeof(attributes), values,
NULL, NULL);
}
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);
if (g_str_equal(context->data->test_name, "/TP/NFY/BV-01-C"))
avrcp_register_notification(context->session,
AVRCP_EVENT_STATUS_CHANGED, 0,
NULL, NULL);
execute_context(context);
}
int main(int argc, char *argv[])
{
g_test_init(&argc, &argv, NULL);
if (g_test_verbose())
__btd_log_init("*", 0);
/* Connection Establishment for Control tests */
/*
* Tests are checking connection establishement and release
* for control channel. Since we are connected through socketpair
* the tests are dummy
*/
define_test("/TP/CEC/BV-01-I", test_dummy, raw_pdu(0x00));
define_test("/TP/CEC/BV-02-I", test_dummy, raw_pdu(0x00));
define_test("/TP/CRC/BV-01-I", test_dummy, raw_pdu(0x00));
define_test("/TP/CRC/BV-02-I", test_dummy, raw_pdu(0x00));
/* Information collection for control tests */
define_test("/TP/ICC/BV-01-I", test_server,
raw_pdu(0x00, 0x11, 0x0e, 0x01, 0xf8, 0x30,
0xff, 0xff, 0xff, 0xff, 0xff),
raw_pdu(0x02, 0x11, 0x0e, 0x0c, 0xf8, 0x30,
0x07, 0x48, 0xff, 0xff, 0xff));
define_test("/TP/ICC/BV-02-I", test_server,
raw_pdu(0x00, 0x11, 0x0e, 0x01, 0xf8, 0x31,
0x07, 0xff, 0xff, 0xff, 0xff),
raw_pdu(0x02, 0x11, 0x0e, 0x0c, 0xf8, 0x31,
0x07, 0x48, 0xff, 0xff, 0xff));
define_test("/TP/PTT/BV-01-I", test_server,
raw_pdu(0x00, 0x11, 0x0e, 0x00, 0x48, 0x7c,
0x44, 0x00),
raw_pdu(0x02, 0x11, 0x0e, 0x09, 0x48, 0x7c,
0x44, 0x00));
define_test("/TP/PTT/BV-02-I", test_server,
raw_pdu(0x00, 0x11, 0x0e, 0x00, 0x48, 0x7c,
AVC_VOLUME_UP, 0x00),
raw_pdu(0x02, 0x11, 0x0e, 0x09, 0x48, 0x7c,
AVC_VOLUME_UP, 0x00));
define_test("/TP/PTT/BV-03-I", test_server,
raw_pdu(0x00, 0x11, 0x0e, 0x00, 0x48, 0x7c,
AVC_CHANNEL_UP, 0x00),
raw_pdu(0x02, 0x11, 0x0e, 0x09, 0x48, 0x7c,
AVC_CHANNEL_UP, 0x00));
define_test("/TP/PTT/BV-04-I", test_server,
raw_pdu(0x00, 0x11, 0x0e, 0x00, 0x48, 0x7c,
AVC_SELECT, 0x00),
raw_pdu(0x02, 0x11, 0x0e, 0x09, 0x48, 0x7c,
AVC_SELECT, 0x00));
define_test("/TP/PTT/BV-05-I", test_server,
raw_pdu(0x00, 0x11, 0x0e, 0x00, 0x48, 0x7c,
AVC_PLAY, 0x00),
raw_pdu(0x02, 0x11, 0x0e, 0x09, 0x48, 0x7c,
AVC_PLAY, 0x00),
raw_pdu(0x00, 0x11, 0x0e, 0x00, 0x48, 0x7c,
AVC_PLAY | 0x80, 0x00),
raw_pdu(0x02, 0x11, 0x0e, 0x09, 0x48, 0x7c,
AVC_PLAY | 0x80, 0x00));
/* Metadata transfer tests */
define_test("/TP/CFG/BV-01-C", test_client,
raw_pdu(0x00, 0x11, 0x0e, 0x01, 0x48, 0x00,
0x00, 0x19, 0x58, 0x10, 0x00, 0x00,
0x01, 0x03));
define_test("/TP/CFG/BV-02-C", test_server,
raw_pdu(0x00, 0x11, 0x0e, 0x01, 0x48, 0x00,
0x00, 0x19, 0x58, 0x10, 0x00, 0x00,
0x01, 0x02),
raw_pdu(0x02, 0x11, 0x0e, 0x0c, 0x48, 0x00,
0x00, 0x19, 0x58, 0x10, 0x00, 0x00,
0x05, 0x02, 0x01, 0x00, 0x19, 0x58));
define_test("/TP/CFG/BI-01-C", test_server,
raw_pdu(0x00, 0x11, 0x0e, 0x01, 0x48, 0x00,
0x00, 0x19, 0x58, 0x10, 0x00, 0x00,
0x01, 0x7f),
raw_pdu(0x02, 0x11, 0x0e, AVC_CTYPE_REJECTED,
0x48, 0x00, 0x00, 0x19, 0x58, 0x10,
0x00, 0x00, 0x01,
AVRCP_STATUS_INVALID_PARAM));
/* Player Application Settings tests */
define_test("/TP/PAS/BV-01-C", test_client,
raw_pdu(0x00, 0x11, 0x0e, 0x01, 0x48, 0x00,
0x00, 0x19, 0x58, 0x11, 0x00, 0x00,
0x00));
define_test("/TP/PAS/BV-02-C", test_server,
raw_pdu(0x00, 0x11, 0x0e, 0x01, 0x48, 0x00,
0x00, 0x19, 0x58, 0x11, 0x00, 0x00,
0x00),
raw_pdu(0x02, 0x11, 0x0e, 0x0c, 0x48, 0x00,
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));
define_test("/TP/PAS/BV-04-C", test_server,
raw_pdu(0x00, 0x11, 0x0e, 0x01, 0x48, 0x00,
0x00, 0x19, 0x58,
AVRCP_GET_PLAYER_ATTRIBUTE_TEXT,
0x00, 0x00, 0x00),
raw_pdu(0x02, 0x11, 0x0e, 0x0c, 0x48, 0x00,
0x00, 0x19, 0x58,
AVRCP_GET_PLAYER_ATTRIBUTE_TEXT,
0x00, 0x00, 0x01, 0x00));
define_test("/TP/PAS/BV-06-C", test_server,
raw_pdu(0x00, 0x11, 0x0e, 0x01, 0x48, 0x00,
0x00, 0x19, 0x58,
AVRCP_LIST_PLAYER_VALUES,
0x00, 0x00, 0x01, AVRCP_ATTRIBUTE_EQUALIZER),
raw_pdu(0x02, 0x11, 0x0e, 0x0c, 0x48, 0x00,
0x00, 0x19, 0x58,
AVRCP_LIST_PLAYER_VALUES,
0x00, 0x00, 0x01, 0x00));
define_test("/TP/PAS/BV-08-C", test_server,
raw_pdu(0x00, 0x11, 0x0e, 0x01, 0x48, 0x00,
0x00, 0x19, 0x58,
AVRCP_GET_PLAYER_VALUE_TEXT,
0x00, 0x00, 0x03, AVRCP_ATTRIBUTE_EQUALIZER,
0x01, 0x01),
raw_pdu(0x02, 0x11, 0x0e, 0x0c, 0x48, 0x00,
0x00, 0x19, 0x58,
AVRCP_GET_PLAYER_VALUE_TEXT,
0x00, 0x00, 0x01, 0x00));
define_test("/TP/PAS/BV-09-C", test_client,
raw_pdu(0x00, 0x11, 0x0e, 0x01, 0x48, 0x00,
0x00, 0x19, 0x58,
AVRCP_GET_CURRENT_PLAYER_VALUE,
0x00, 0x00, 0x03, 0x02,
AVRCP_ATTRIBUTE_EQUALIZER,
AVRCP_ATTRIBUTE_REPEAT_MODE));
define_test("/TP/PAS/BV-10-C", test_server,
raw_pdu(0x00, 0x11, 0x0e, 0x01, 0x48, 0x00,
0x00, 0x19, 0x58,
AVRCP_GET_CURRENT_PLAYER_VALUE,
0x00, 0x00, 0x03, 0x02,
AVRCP_ATTRIBUTE_EQUALIZER,
AVRCP_ATTRIBUTE_REPEAT_MODE),
raw_pdu(0x02, 0x11, 0x0e, 0x0c, 0x48, 0x00,
0x00, 0x19, 0x58,
AVRCP_GET_CURRENT_PLAYER_VALUE,
0x00, 0x00, 0x05, 0x02,
AVRCP_ATTRIBUTE_EQUALIZER, 0x00,
AVRCP_ATTRIBUTE_REPEAT_MODE, 0x00));
define_test("/TP/PAS/BV-11-C", test_client,
raw_pdu(0x00, 0x11, 0x0e, 0x00, 0x48, 0x00,
0x00, 0x19, 0x58,
AVRCP_SET_PLAYER_VALUE,
0x00, 0x00, 0x05, 0x02,
AVRCP_ATTRIBUTE_EQUALIZER, 0xaa,
AVRCP_ATTRIBUTE_REPEAT_MODE, 0xff));
/* Get player app setting attribute text invalid behavior - TG */
define_test("/TP/PAS/BI-01-C", test_server,
raw_pdu(0x00, 0x11, 0x0e, 0x01, 0x48, 0x00,
0x00, 0x19, 0x58,
AVRCP_GET_PLAYER_ATTRIBUTE_TEXT,
0x00, 0x00, 0x02, 0x01,
/* Invalid attribute id */
0x7f),
raw_pdu(0x02, 0x11, 0x0e, AVC_CTYPE_REJECTED,
0x48, 0x00, 0x00, 0x19, 0x58,
AVRCP_GET_PLAYER_ATTRIBUTE_TEXT,
0x00, 0x00, 0x01, AVRCP_STATUS_INVALID_PARAM));
/* List player application setting values invalid behavior - TG */
define_test("/TP/PAS/BI-02-C", test_server,
raw_pdu(0x00, 0x11, 0x0e, 0x01, 0x48, 0x00,
0x00, 0x19, 0x58,
AVRCP_LIST_PLAYER_VALUES,
0x00, 0x00, 0x01,
/* Invalid attribute id */
0x7f),
raw_pdu(0x02, 0x11, 0x0e, AVC_CTYPE_REJECTED,
0x48, 0x00, 0x00, 0x19, 0x58,
AVRCP_LIST_PLAYER_VALUES,
0x00, 0x00, 0x01, AVRCP_STATUS_INVALID_PARAM));
/* Get player application setting value text invalid behavior - TG */
define_test("/TP/PAS/BI-03-C", test_server,
raw_pdu(0x00, 0x11, 0x0e, 0x01, 0x48, 0x00,
0x00, 0x19, 0x58,
AVRCP_GET_PLAYER_VALUE_TEXT,
0x00, 0x00, 0x03, AVRCP_ATTRIBUTE_EQUALIZER,
0x01,
/* Invalid setting value */
0x7f),
raw_pdu(0x02, 0x11, 0x0e, AVC_CTYPE_REJECTED,
0x48, 0x00, 0x00, 0x19, 0x58,
AVRCP_GET_PLAYER_VALUE_TEXT,
0x00, 0x00, 0x01, AVRCP_STATUS_INVALID_PARAM));
/* Get current player application setting value invalid behavior - TG */
define_test("/TP/PAS/BI-04-C", test_server,
raw_pdu(0x00, 0x11, 0x0e, 0x01, 0x48, 0x00,
0x00, 0x19, 0x58,
AVRCP_GET_CURRENT_PLAYER_VALUE,
0x00, 0x00, 0x02, 0x01,
/* Invalid attribute */
0x7f),
raw_pdu(0x02, 0x11, 0x0e, AVC_CTYPE_REJECTED,
0x48, 0x00, 0x00, 0x19, 0x58,
AVRCP_GET_CURRENT_PLAYER_VALUE,
0x00, 0x00, 0x01, AVRCP_STATUS_INVALID_PARAM));
/* Set player application setting value invalid behavior - TG */
define_test("/TP/PAS/BI-05-C", test_server,
raw_pdu(0x00, 0x11, 0x0e, 0x00, 0x48, 0x00,
0x00, 0x19, 0x58,
AVRCP_SET_PLAYER_VALUE,
0x00, 0x00, 0x03, 0x01,
AVRCP_ATTRIBUTE_REPEAT_MODE, 0x7f),
raw_pdu(0x02, 0x11, 0x0e, AVC_CTYPE_REJECTED,
0x48, 0x00, 0x00, 0x19, 0x58,
AVRCP_SET_PLAYER_VALUE,
0x00, 0x00, 0x01, AVRCP_STATUS_INVALID_PARAM));
/* Media Information Commands */
/* Get play status - CT */
define_test("/TP/MDI/BV-01-C", test_client,
raw_pdu(0x00, 0x11, 0x0e, 0x01, 0x48, 0x00,
0x00, 0x19, 0x58, AVRCP_GET_PLAY_STATUS,
0x00, 0x00, 0x00));
/* Get play status - TG */
define_test("/TP/MDI/BV-02-C", test_server,
raw_pdu(0x00, 0x11, 0x0e, 0x01, 0x48, 0x00,
0x00, 0x19, 0x58, AVRCP_GET_PLAY_STATUS,
0x00, 0x00, 0x00),
raw_pdu(0x02, 0x11, 0x0e, 0x0c, 0x48, 0x00,
0x00, 0x19, 0x58, AVRCP_GET_PLAY_STATUS,
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));
/* Get element attributes - TG */
define_test("/TP/MDI/BV-04-C", test_server,
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),
raw_pdu(0x02, 0x11, 0x0e, 0x0c, 0x48, 0x00,
0x00, 0x19, 0x58, AVRCP_GET_ELEMENT_ATTRIBUTES,
0x00, 0x00, 0x00));
/* Get element attributes - TG */
define_test("/TP/MDI/BV-05-C", test_server,
raw_pdu(0x00, 0x11, 0x0e, 0x01, 0x48, 0x00,
0x00, 0x19, 0x58, AVRCP_GET_ELEMENT_ATTRIBUTES,
0x00, 0x00, 0x0d, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
0x00, 0x00, 0x00, 0x01),
raw_pdu(0x02, 0x11, 0x0e, 0x0c, 0x48, 0x00,
0x00, 0x19, 0x58, AVRCP_GET_ELEMENT_ATTRIBUTES,
0x00, 0x00, 0x00));
/* Notification Commands */
/* Register notification - CT */
define_test("/TP/NFY/BV-01-C", test_client,
raw_pdu(0x00, 0x11, 0x0e, 0x03, 0x48, 0x00,
0x00, 0x19, 0x58, AVRCP_REGISTER_NOTIFICATION,
0x00, 0x00, 0x05, AVRCP_EVENT_STATUS_CHANGED,
0x00, 0x00, 0x00, 0x00));
/* Register notification - TG */
define_test("/TP/NFY/BV-02-C", test_server,
raw_pdu(0x00, 0x11, 0x0e, 0x03, 0x48, 0x00,
0x00, 0x19, 0x58, AVRCP_REGISTER_NOTIFICATION,
0x00, 0x00, 0x05, AVRCP_EVENT_TRACK_CHANGED,
0x00, 0x00, 0x00, 0x00),
frg_pdu(0x02, 0x11, 0x0e, AVC_CTYPE_INTERIM, 0x48, 0x00,
0x00, 0x19, 0x58, AVRCP_REGISTER_NOTIFICATION,
0x00, 0x00, 0x09, AVRCP_EVENT_TRACK_CHANGED,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff),
raw_pdu(0x02, 0x11, 0x0e, AVC_CTYPE_CHANGED, 0x48, 0x00,
0x00, 0x19, 0x58, AVRCP_REGISTER_NOTIFICATION,
0x00, 0x00, 0x09, AVRCP_EVENT_TRACK_CHANGED,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff));
/* Register notification - TG */
define_test("/TP/NFY/BV-03-C", test_server,
raw_pdu(0x00, 0x11, 0x0e, 0x03, 0x48, 0x00,
0x00, 0x19, 0x58, AVRCP_REGISTER_NOTIFICATION,
0x00, 0x00, 0x05,
AVRCP_EVENT_SETTINGS_CHANGED,
0x00, 0x00, 0x00, 0x00),
raw_pdu(0x02, 0x11, 0x0e, AVC_CTYPE_INTERIM, 0x48, 0x00,
0x00, 0x19, 0x58, AVRCP_REGISTER_NOTIFICATION,
0x00, 0x00, 0x04,
AVRCP_EVENT_SETTINGS_CHANGED,
0x01, 0x01, 0x02),
raw_pdu(0x02, 0x11, 0x0e, AVC_CTYPE_CHANGED, 0x48, 0x00,
0x00, 0x19, 0x58, AVRCP_REGISTER_NOTIFICATION,
0x00, 0x00, 0x04,
AVRCP_EVENT_SETTINGS_CHANGED,
0x01, 0x01, 0x02));
/* Register notification - Track Changed - No Selected Track - TG */
define_test("/TP/NFY/BV-04-C", test_server,
raw_pdu(0x00, 0x11, 0x0e, 0x03, 0x48, 0x00,
0x00, 0x19, 0x58, AVRCP_REGISTER_NOTIFICATION,
0x00, 0x00, 0x05, AVRCP_EVENT_TRACK_CHANGED,
0x00, 0x00, 0x00, 0x00),
raw_pdu(0x02, 0x11, 0x0e, AVC_CTYPE_INTERIM, 0x48, 0x00,
0x00, 0x19, 0x58, AVRCP_REGISTER_NOTIFICATION,
0x00, 0x00, 0x09, AVRCP_EVENT_TRACK_CHANGED,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff));
/* Register notification - Track Changed - Track Playing - TG */
define_test("/TP/NFY/BV-05-C", test_server,
raw_pdu(0x00, 0x11, 0x0e, 0x03, 0x48, 0x00,
0x00, 0x19, 0x58, AVRCP_REGISTER_NOTIFICATION,
0x00, 0x00, 0x05, AVRCP_EVENT_TRACK_CHANGED,
0x00, 0x00, 0x00, 0x00),
raw_pdu(0x02, 0x11, 0x0e, AVC_CTYPE_INTERIM, 0x48, 0x00,
0x00, 0x19, 0x58, AVRCP_REGISTER_NOTIFICATION,
0x00, 0x00, 0x09, AVRCP_EVENT_TRACK_CHANGED,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00));
/* Register notification - Track Changed - Selected Track - TG */
define_test("/TP/NFY/BV-08-C", test_server,
raw_pdu(0x00, 0x11, 0x0e, 0x03, 0x48, 0x00,
0x00, 0x19, 0x58, AVRCP_REGISTER_NOTIFICATION,
0x00, 0x00, 0x05, AVRCP_EVENT_TRACK_CHANGED,
0x00, 0x00, 0x00, 0x00),
raw_pdu(0x02, 0x11, 0x0e, AVC_CTYPE_INTERIM, 0x48, 0x00,
0x00, 0x19, 0x58, AVRCP_REGISTER_NOTIFICATION,
0x00, 0x00, 0x09, AVRCP_EVENT_TRACK_CHANGED,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00));
/* Register notification - Register for events invalid behavior - TG */
define_test("/TP/NFY/BI-01-C", test_server,
raw_pdu(0x00, 0x11, 0x0e, 0x03, 0x48, 0x00,
0x00, 0x19, 0x58, AVRCP_REGISTER_NOTIFICATION,
0x00, 0x00, 0x05,
/* Invalid event id */
0xff,
0x00, 0x00, 0x00, 0x00),
raw_pdu(0x02, 0x11, 0x0e, AVC_CTYPE_REJECTED,
0x48, 0x00, 0x00, 0x19, 0x58,
AVRCP_REGISTER_NOTIFICATION,
0x00, 0x00, 0x01, AVRCP_STATUS_INVALID_PARAM));
/* Invalid commands */
/* Invalid PDU ID - TG */
define_test("/TP/INV/BI-01-C", test_server,
raw_pdu(0x00, 0x11, 0x0e, 0x03, 0x48, 0x00,
0x00, 0x19, 0x58,
/* Invalid PDU ID */
0xff,
0x00, 0x00, 0x00),
raw_pdu(0x02, 0x11, 0x0e, AVC_CTYPE_REJECTED,
0x48, 0x00, 0x00, 0x19, 0x58,
0xff, 0x00, 0x00, 0x01,
AVRCP_STATUS_INVALID_COMMAND));
return g_test_run();
}