add test code for tlv_more, instance

This commit is contained in:
Sukchan Lee 2017-03-13 13:02:42 +09:00
parent aa83604ccc
commit 0261f4c018
4 changed files with 219 additions and 65 deletions

View File

@ -71,7 +71,14 @@ typedef struct _tlv_desc_t {
void *child_descs[];
} tlv_desc_t;
extern tlv_desc_t tlv_desc_more;
extern tlv_desc_t tlv_desc_more1;
extern tlv_desc_t tlv_desc_more2;
extern tlv_desc_t tlv_desc_more3;
extern tlv_desc_t tlv_desc_more4;
extern tlv_desc_t tlv_desc_more5;
extern tlv_desc_t tlv_desc_more6;
extern tlv_desc_t tlv_desc_more7;
extern tlv_desc_t tlv_desc_more8;
typedef struct _tlv_header_t {
c_uint64_t set_ind;

View File

@ -3,10 +3,14 @@
#include "core_debug.h"
#include "core_tlv_msg.h"
tlv_desc_t tlv_desc_more =
{
TLV_MORE, 0, TLV_MAX_MORE, 0, 0, { NULL }
};
tlv_desc_t tlv_desc_more1 = { TLV_MORE, 0, 1, 0, 0, { NULL } };
tlv_desc_t tlv_desc_more2 = { TLV_MORE, 0, 2, 0, 0, { NULL } };
tlv_desc_t tlv_desc_more3 = { TLV_MORE, 0, 3, 0, 0, { NULL } };
tlv_desc_t tlv_desc_more4 = { TLV_MORE, 0, 4, 0, 0, { NULL } };
tlv_desc_t tlv_desc_more5 = { TLV_MORE, 0, 5, 0, 0, { NULL } };
tlv_desc_t tlv_desc_more6 = { TLV_MORE, 0, 6, 0, 0, { NULL } };
tlv_desc_t tlv_desc_more7 = { TLV_MORE, 0, 7, 0, 0, { NULL } };
tlv_desc_t tlv_desc_more8 = { TLV_MORE, 0, 8, 0, 0, { NULL } };
static tlv_t* _tlv_add_leaf(
tlv_t *parent_tlv, tlv_t *tlv, tlv_desc_t *desc, void *msg)
@ -195,9 +199,9 @@ static c_uint32_t _tlv_add_compound(tlv_t **root, tlv_t *parent_tlv,
d_trace(1, "\nBUILD %sL#%d T:%d L:%d I:%d "
"(cls:%d vsz:%d) off:%p ",
indent, i, desc->type, desc->length, desc->instance,
desc->ctype, desc->vsize, p + offset);
desc->ctype, desc->vsize, p + offset2);
tlv = _tlv_add_leaf(parent_tlv, tlv, desc, p + offset);
tlv = _tlv_add_leaf(parent_tlv, tlv, desc, p + offset2);
d_assert(tlv, return 0, "Can't build leaf TLV");
count++;
}

View File

@ -1,5 +1,9 @@
#include "core_tlv.h"
#include "core_net.h"
#include "core_tlv_msg.h"
#include "core_lib.h"
#include "core_debug.h"
#include "testutil.h"
#define TLV_0_LEN 10
@ -635,6 +639,200 @@ static void tlv_test_5(abts_case *tc, void *data)
return;
}
/* Sample header for tlv_msg */
#define TLV_AUTHORIZATION_POLICY_SUPPORT_TYPE 21
#define TLV_AUTHORIZATION_POLICY_SUPPORT_LEN 1
typedef tlv_uint8_t tlv_authorization_policy_support_t;
extern tlv_desc_t tlv_desc_authorization_policy_support;
#define TLV_CLIENT_SECURITY_HISTORY_TYPE 108
#define TLV_CLIENT_SECURITY_HISTORY_LEN TLV_VARIABLE_LEN
typedef struct _tlv_client_security_history_t {
tlv_header_t h;
tlv_authorization_policy_support_t authorization_policy_support0;
tlv_authorization_policy_support_t authorization_policy_support2;
} tlv_client_security_history_t;
extern tlv_desc_t tlv_desc_client_security_history;
#define TLV_CLIENT_INFO_TYPE 103
#define TLV_CLIENT_INFO_LEN TLV_VARIABLE_LEN
typedef struct _tlv_client_info_t {
tlv_header_t h;
tlv_client_security_history_t client_security_history;
} tlv_client_info_t;
extern tlv_desc_t tlv_desc_client_info;
#define TLV_SERVER_NAME_TYPE 25
#define TLV_SERVER_NAME_LEN TLV_VARIABLE_LEN
typedef tlv_octets_t tlv_server_name_t;
extern tlv_desc_t tlv_desc_server_name;
#define TLV_SERVER_INFO_TYPE 26
#define TLV_SERVER_INFO_LEN TLV_VARIABLE_LEN
typedef struct _tlv_server_info_t {
tlv_header_t h;
tlv_server_name_t TLV_1_OR_MORE(server_name);
} tlv_server_info_t;
extern tlv_desc_t tlv_desc_server_info;
typedef struct _tlv_attach_req {
tlv_client_info_t client_info;
tlv_server_info_t server_info;
} tlv_attach_req;
extern tlv_desc_t tlv_desc_attach_req;
/* Sample source for tlv_msg */
tlv_desc_t tlv_desc_authorization_policy_support0 =
{
TLV_UINT8,
TLV_AUTHORIZATION_POLICY_SUPPORT_TYPE,
TLV_AUTHORIZATION_POLICY_SUPPORT_LEN,
0,
sizeof(tlv_authorization_policy_support_t),
{ NULL }
};
tlv_desc_t tlv_desc_authorization_policy_support2 =
{
TLV_UINT8,
TLV_AUTHORIZATION_POLICY_SUPPORT_TYPE,
TLV_AUTHORIZATION_POLICY_SUPPORT_LEN,
2,
sizeof(tlv_authorization_policy_support_t),
{ NULL }
};
tlv_desc_t tlv_desc_client_security_history =
{
TLV_COMPOUND,
TLV_CLIENT_SECURITY_HISTORY_TYPE,
TLV_CLIENT_SECURITY_HISTORY_LEN,
0,
sizeof(tlv_client_security_history_t),
{
&tlv_desc_authorization_policy_support0,
&tlv_desc_authorization_policy_support2,
NULL,
}
};
tlv_desc_t tlv_desc_client_info =
{
TLV_COMPOUND,
TLV_CLIENT_INFO_TYPE,
TLV_CLIENT_INFO_LEN,
0,
sizeof(tlv_client_info_t),
{
&tlv_desc_client_security_history,
NULL,
}
};
tlv_desc_t tlv_desc_server_name =
{
TLV_VAR_STR,
TLV_SERVER_NAME_TYPE,
TLV_SERVER_NAME_LEN,
0,
sizeof(tlv_server_name_t),
{ NULL }
};
tlv_desc_t tlv_desc_server_info =
{
TLV_COMPOUND,
TLV_SERVER_INFO_TYPE,
TLV_SERVER_INFO_LEN,
0,
sizeof(tlv_server_info_t),
{
&tlv_desc_server_name, &tlv_desc_more2,
NULL,
}
};
tlv_desc_t tlv_desc_attach_req = {
TLV_MESSAGE, 0, 0, 0, 0, {
&tlv_desc_client_info,
&tlv_desc_server_info,
NULL,
}};
static void tlv_test_6(abts_case *tc, void *data)
{
tlv_attach_req reqv;
tlv_attach_req reqv2;
pkbuf_t *req = NULL;
char testbuf[1024];
c_uint8_t *buf;
c_uint32_t buflen;
/* Initialize message value structure */
memset(&reqv, 0, sizeof(tlv_attach_req));
/* Set nessary members of message */
COMPD_SET(reqv.client_info);
COMPD_SET(reqv.client_info.client_security_history);
VALUE_SET(reqv.client_info.client_security_history.
authorization_policy_support0, 0x3);
VALUE_SET(reqv.client_info.client_security_history.
authorization_policy_support2, 0x9);
COMPD_SET(reqv.server_info);
OCTET_SET(reqv.server_info.server_name[0], (c_uint8_t*)"\x11\x22\x33\x44\x55\x66", 6);
COMPD_SET(reqv.server_info);
OCTET_SET(reqv.server_info.server_name[1], (c_uint8_t*)"\xaa\xbb\xcc\xdd\xee\xff", 6);
/* Build message */
tlv_build_msg(&req, &tlv_desc_attach_req, &reqv, TLV_MODE_T1_L2_I1);
#define TEST_TLV_BUILD_MSG \
"67000e00 6c000a00 15000100 03150001" \
"02091a00 14001900 06001122 33445566" \
"19000600 aabbccdd eeff"
ABTS_INT_EQUAL(tc, 42, req->len);
ABTS_TRUE(tc, memcmp(req->payload,
core_ascii_to_hex(TEST_TLV_BUILD_MSG, strlen(TEST_TLV_BUILD_MSG),
testbuf, sizeof(testbuf)), req->len) == 0);
/* Initialize message value structure */
memset(&reqv2, 0, sizeof(tlv_attach_req));
/* Parse message */
tlv_parse_msg(&reqv2, &tlv_desc_attach_req, req,
TLV_MODE_T1_L2_I1);
ABTS_INT_EQUAL(tc, 1, COMPD_ISSET(reqv2.client_info));
ABTS_INT_EQUAL(tc, 1,
COMPD_ISSET(reqv2.client_info.client_security_history));
ABTS_INT_EQUAL(tc, 1,
VALUE_ISSET(reqv2.client_info.client_security_history.
authorization_policy_support0));
ABTS_INT_EQUAL(tc, 0x3,
VALUE_GET(reqv2.client_info.client_security_history.
authorization_policy_support0));
ABTS_INT_EQUAL(tc, 1,
VALUE_ISSET(reqv2.client_info.client_security_history.
authorization_policy_support2));
ABTS_INT_EQUAL(tc, 0x9,
VALUE_GET(reqv2.client_info.client_security_history.
authorization_policy_support2));
ABTS_INT_EQUAL(tc, 1, COMPD_ISSET(reqv2.server_info));
ABTS_INT_EQUAL(tc, 1, OCTET_ISSET(reqv2.server_info.server_name[0]));
ABTS_INT_EQUAL(tc, 1, OCTET_ISSET(reqv2.server_info.server_name[1]));
OCTET_GET(buf, buflen, reqv2.server_info.server_name[0]);
ABTS_INT_EQUAL(tc, 6, buflen);
ABTS_TRUE(tc, memcmp(buf, (c_uint8_t*)"\x11\x22\x33\x44\x55\x66", 6) == 0);
OCTET_GET(buf, buflen, reqv2.server_info.server_name[1]);
ABTS_INT_EQUAL(tc, 6, buflen);
ABTS_TRUE(tc, memcmp(buf, (c_uint8_t*)"\xaa\xbb\xcc\xdd\xee\xff", 6) == 0);
pkbuf_free(req);
}
abts_suite *testtlv(abts_suite *suite)
{
suite = ADD_SUITE(suite)
@ -657,6 +855,8 @@ abts_suite *testtlv(abts_suite *suite)
abts_run_test(suite, tlv_test_4, (void*)TLV_MODE_T1_L2_I1);
abts_run_test(suite, tlv_test_5, (void*)TLV_MODE_T1_L2_I1);
abts_run_test(suite, tlv_test_6, NULL);
return suite;
}

View File

@ -7,63 +7,6 @@
static void gtp_message_test1(abts_case *tc, void *data)
{
tlv_msg_ms_preattachment_req reqv;
tlv_msg_ms_preattachment_req reqv2;
pkbuf_t *req = NULL;
#if 1
c_uint8_t *buf;
c_uint32_t buflen;
#endif
{
extern int _tlv_msg;
_tlv_msg = 1;
}
/* Initialize message value structure */
memset(&reqv, 0, sizeof(tlv_msg_ms_preattachment_req));
/* Set nessary members of message */
COMPD_SET(reqv.ms_info);
COMPD_SET(reqv.ms_info.ms_security_history);
VALUE_SET(reqv.ms_info.ms_security_history.authorization_policy_support, 0x3);
COMPD_SET(reqv.bs_info);
OCTET_SET(reqv.bs_info.bs_id, (c_uint8_t*)"\x11\x22\x33\x44\x55\x66", 6);
/* Build message */
tlv_build_msg(&req, &tlv_desc_msg_ms_preattachment_req, &reqv,
TLV_MODE_T1_L2_I1);
#if 1
d_print_hex(req->payload, req->len);
#endif
/* Initialize message value structure */
memset(&reqv2, 0, sizeof(tlv_msg_ms_preattachment_req));
/* Parse message */
tlv_parse_msg(&reqv2, &tlv_desc_msg_ms_preattachment_req, req,
TLV_MODE_T1_L2_I1);
if (COMPD_ISSET(reqv2.ms_info))
if (COMPD_ISSET(reqv2.ms_info.ms_security_history))
if (VALUE_ISSET(reqv2.ms_info.ms_security_history.authorization_policy_support))
#if 1
d_print("%02x", VALUE_GET(reqv2.ms_info.ms_security_history.authorization_policy_support));
#else
;
#endif
#if 1
if (COMPD_ISSET(reqv2.bs_info))
if (OCTET_ISSET(reqv2.bs_info.bs_id))
{
OCTET_GET(buf, buflen, reqv2.bs_info.bs_id);
d_print_hex(buf, buflen);
}
#endif
pkbuf_free(req);
}
abts_suite *test_gtp_message(abts_suite *suite)