blob: df52718fc2cdc329fb1ec40f51ec0c14f7763425 [file] [log] [blame]
/* Copyright (c) 2019 Intel Corporation
* SPDX-License-Identifier: Apache-2.0
*/
#include <stdint.h>
#include <zephyr/ztest.h>
#include <zephyr/bluetooth/uuid.h>
static struct bt_uuid_128 le_128 = BT_UUID_INIT_128(
0xfb, 0x34, 0x9b, 0x5f, 0x80, 0x00, 0x00, 0x80,
0x00, 0x10, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00);
ZTEST_SUITE(bt_uuid_create, NULL, NULL, NULL, NULL, NULL);
ZTEST(bt_uuid_create, test_uuid_create)
{
uint8_t le16[] = { 0x01, 0x00 };
uint8_t be16[] = { 0x00, 0x01 };
union {
struct bt_uuid uuid;
struct bt_uuid_16 u16;
struct bt_uuid_128 u128;
} u;
/* Create UUID from LE 16 bit byte array */
zassert_true(bt_uuid_create(&u.uuid, le16, sizeof(le16)),
"Unable create UUID");
/* Compare UUID 16 bits */
zassert_true(bt_uuid_cmp(&u.uuid, BT_UUID_DECLARE_16(0x0001)) == 0,
"Test UUIDs don't match");
/* Compare UUID 128 bits */
zassert_true(bt_uuid_cmp(&u.uuid, &le_128.uuid) == 0,
"Test UUIDs don't match");
/* Compare swapped UUID 16 bits */
zassert_false(bt_uuid_cmp(&u.uuid, BT_UUID_DECLARE_16(0x0100)) == 0,
"Test UUIDs match");
/* Create UUID from BE 16 bit byte array */
zassert_true(bt_uuid_create(&u.uuid, be16, sizeof(be16)),
"Unable create UUID");
/* Compare UUID 16 bits */
zassert_false(bt_uuid_cmp(&u.uuid, BT_UUID_DECLARE_16(0x0001)) == 0,
"Test UUIDs match");
/* Compare UUID 128 bits */
zassert_false(bt_uuid_cmp(&u.uuid, &le_128.uuid) == 0,
"Test UUIDs match");
/* Compare swapped UUID 16 bits */
zassert_true(bt_uuid_cmp(&u.uuid, BT_UUID_DECLARE_16(0x0100)) == 0,
"Test UUIDs don't match");
}