blob: c5042ffaf9f45d2e60f0124b9190328e8fcbde9a [file] [log] [blame]
#include <stdlib.h>
#include <stdio.h>
#include <setjmp.h>
#include <cmocka.h>
#include "marshal/base-types.h"
#include "sapi/marshal.h"
/*
* Test case for successful UINT32 marshaling with NULL offset.
*/
void
UINT32_marshal_success (void **state)
{
UINT32 src = 0xdeadbeef;
uint8_t buffer [4] = { 0 };
size_t buffer_size = sizeof (buffer);
TSS2_RC rc;
rc = UINT32_Marshal (&src, buffer, buffer_size, NULL);
assert_int_equal (rc, TSS2_RC_SUCCESS);
assert_int_equal (HOST_TO_BE_32 (src), CAST_TO_UINT32 (&buffer [0]));
}
/*
* Test case for successful UINT32 marshaling with offset.
*/
void
UINT32_marshal_success_offset (void **state)
{
UINT32 src = 0xdeadbeef;
uint8_t buffer [5] = { 0 };
size_t buffer_size = sizeof (buffer);
size_t offset = 1;
TSS2_RC rc;
rc = UINT32_Marshal (&src, buffer, buffer_size, &offset);
assert_int_equal (rc, TSS2_RC_SUCCESS);
assert_int_equal (HOST_TO_BE_32 (src), CAST_TO_UINT32 (&buffer [1]));
assert_int_equal (offset, sizeof (buffer));
}
/*
* Test case passing NULL src. Test to be sure offset and buffer aren't changed.
*/
void
UINT32_marshal_src_null (void **state)
{
uint8_t buffer [4] = { 0 };
size_t buffer_size = sizeof (buffer);
size_t offset = 1;
TSS2_RC rc;
rc = UINT32_Marshal (NULL, buffer, buffer_size, &offset);
assert_int_equal (rc, TSS2_TYPES_RC_BAD_REFERENCE);
assert_int_equal (offset, 1);
}
/*
* Test case passing NULL buffer and non-NULL offset. Test to be sure offset
* is updated to the size of the src parameter.
*/
void
UINT32_marshal_buffer_null_with_offset (void **state)
{
UINT32 src = 0xdeadbeef;
size_t offset = 100;
TSS2_RC rc;
rc = UINT32_Marshal (&src, NULL, 2, &offset);
assert_int_equal (rc, TSS2_RC_SUCCESS);
assert_int_equal (offset, 100 + sizeof (src));
}
/*
* Test case passing NULL buffer and NULL offset.
*/
void
UINT32_marshal_buffer_null_offset_null (void **state)
{
UINT32 src = 0xdeadbeef;
TSS2_RC rc;
rc = UINT32_Marshal (&src, NULL, sizeof (src), NULL);
assert_int_equal (rc, TSS2_TYPES_RC_BAD_REFERENCE);
}
/*
* Test failing case where buffer_size - offset (size of available space
* in buffer) is less than sizeof (UINT32). Also check offset is unchanged.
*/
void
UINT32_marshal_buffer_size_lt_data (void **state)
{
UINT32 src = 0xdeadbeef;
uint8_t buffer [4] = { 0 };
size_t offset = 2;
TSS2_RC rc;
rc = UINT32_Marshal (&src, buffer, sizeof (src), &offset);
assert_int_equal (rc, TSS2_TYPES_RC_INSUFFICIENT_BUFFER);
assert_int_equal (offset, 2);
}
/*
* Test failing case where buffer_size is less than the offset value.
* This should return INSUFFICIENT_BUFFER and the offset should be unchanged.
*/
void
UINT32_marshal_buffer_size_lt_offset (void **state)
{
UINT32 src = 0xdeadbeef;
uint8_t buffer [4] = { 0 };
size_t buffer_size = sizeof (buffer);
size_t offset = sizeof (buffer) + 1;
TSS2_RC rc;
rc = UINT32_Marshal (&src, buffer, buffer_size, &offset);
assert_int_equal (rc, TSS2_TYPES_RC_INSUFFICIENT_BUFFER);
assert_int_equal (offset, sizeof (buffer) + 1);
}
/*
* Test case for successful UINT32 unmarshaling.
*/
void
UINT32_unmarshal_success (void **state)
{
uint8_t buffer [4] = { 0xde, 0xad, 0xbe, 0xef };
uint8_t buffer_size = sizeof (buffer);
UINT32 dest = 0;
TSS2_RC rc;
rc = UINT32_Unmarshal (buffer, buffer_size, NULL, &dest);
assert_int_equal (rc, TSS2_RC_SUCCESS);
assert_int_equal (HOST_TO_BE_32 (dest), CAST_TO_UINT32 (buffer));
}
/*
* Test case for successful UINT32 unmarshaling with offset.
*/
void
UINT32_unmarshal_success_offset (void **state)
{
UINT32 dest = 0;
uint8_t buffer [5] = { 0xff, 0xde, 0xad, 0xbe, 0xef };
size_t buffer_size = sizeof (buffer);
size_t offset = 1;
TSS2_RC rc;
rc = UINT32_Unmarshal (buffer, buffer_size, &offset, &dest);
assert_int_equal (rc, TSS2_RC_SUCCESS);
assert_int_equal (HOST_TO_BE_32 (dest), CAST_TO_UINT32 (&buffer [1]));
assert_int_equal (offset, 5);
}
/*
* Test case ensures a NULL buffer parameter produces a BAD_REFERENCE RC.
*/
void
UINT32_unmarshal_buffer_null (void **state)
{
TSS2_RC rc;
rc = UINT32_Unmarshal (NULL, 1, NULL, NULL);
assert_int_equal (rc, TSS2_TYPES_RC_BAD_REFERENCE);
}
/*
* Test case ensures a NULL dest and offset parameters produce an
* INSUFFICIENT_BUFFER RC.
*/
void
UINT32_unmarshal_dest_null (void **state)
{
uint8_t buffer [1];
TSS2_RC rc;
rc = UINT32_Unmarshal (buffer, sizeof (buffer), NULL, NULL);
assert_int_equal (rc, TSS2_TYPES_RC_BAD_REFERENCE);
}
/*
* Test case ensures that INSUFFICIENT_BUFFER is returned when buffer_size
* is less than the provided offset.
*/
void
UINT32_unmarshal_buffer_size_lt_offset (void **state)
{
UINT32 dest = 0;
uint8_t buffer [1];
size_t offset = sizeof (buffer) + 1;
TSS2_RC rc;
rc = UINT32_Unmarshal (buffer, sizeof (buffer), &offset, &dest);
assert_int_equal (rc, TSS2_TYPES_RC_INSUFFICIENT_BUFFER);
assert_int_equal (offset, sizeof (buffer) + 1);
assert_int_equal (dest, 0);
}
/*
* Test case ensures that INSUFFICIENT_BUFFER is returned when buffer_size -
* local_offset is less than dest (the destination type).
*/
void
UINT32_unmarshal_buffer_size_lt_dest (void **state)
{
UINT32 dest = 0;
uint8_t buffer [3];
size_t offset = sizeof (buffer);
TSS2_RC rc;
rc = UINT32_Unmarshal (buffer, sizeof (buffer), &offset, &dest);
assert_int_equal (rc, TSS2_TYPES_RC_INSUFFICIENT_BUFFER);
assert_int_equal (offset, sizeof (buffer));
assert_int_equal (dest, 0);
}
int
main (void)
{
const UnitTest tests [] = {
unit_test (UINT32_marshal_success),
unit_test (UINT32_marshal_success_offset),
unit_test (UINT32_marshal_src_null),
unit_test (UINT32_marshal_buffer_null_with_offset),
unit_test (UINT32_marshal_buffer_null_offset_null),
unit_test (UINT32_marshal_buffer_size_lt_data),
unit_test (UINT32_marshal_buffer_size_lt_offset),
unit_test (UINT32_unmarshal_success),
unit_test (UINT32_unmarshal_success_offset),
unit_test (UINT32_unmarshal_buffer_null),
unit_test (UINT32_unmarshal_dest_null),
unit_test (UINT32_unmarshal_buffer_size_lt_offset),
unit_test (UINT32_unmarshal_buffer_size_lt_dest),
};
return run_tests (tests);
}