File: /home/django/libpff/tests/pff_test_item_values.c
/*
* Library item_values type test program
*
* Copyright (C) 2008-2024, Joachim Metz <joachim.metz@gmail.com>
*
* Refer to AUTHORS for acknowledgements.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 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 Lesser General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include <common.h>
#include <file_stream.h>
#include <types.h>
#if defined( HAVE_STDLIB_H ) || defined( WINAPI )
#include <stdlib.h>
#endif
#include "pff_test_libcerror.h"
#include "pff_test_libpff.h"
#include "pff_test_macros.h"
#include "pff_test_memory.h"
#include "pff_test_unused.h"
#include "../libpff/libpff_item_values.h"
#if defined( __GNUC__ ) && !defined( LIBPFF_DLL_IMPORT )
/* Tests the libpff_item_values_initialize function
* Returns 1 if successful or 0 if not
*/
int pff_test_item_values_initialize(
void )
{
libcerror_error_t *error = NULL;
libpff_item_values_t *item_values = NULL;
int result = 0;
#if defined( HAVE_PFF_TEST_MEMORY )
int number_of_malloc_fail_tests = 1;
int number_of_memset_fail_tests = 1;
int test_number = 0;
#endif
/* Test regular cases
*/
result = libpff_item_values_initialize(
&item_values,
0,
0,
0,
0,
&error );
PFF_TEST_ASSERT_EQUAL_INT(
"result",
result,
1 );
PFF_TEST_ASSERT_IS_NOT_NULL(
"item_values",
item_values );
PFF_TEST_ASSERT_IS_NULL(
"error",
error );
result = libpff_item_values_free(
&item_values,
&error );
PFF_TEST_ASSERT_EQUAL_INT(
"result",
result,
1 );
PFF_TEST_ASSERT_IS_NULL(
"item_values",
item_values );
PFF_TEST_ASSERT_IS_NULL(
"error",
error );
/* Test error cases
*/
result = libpff_item_values_initialize(
NULL,
0,
0,
0,
0,
&error );
PFF_TEST_ASSERT_EQUAL_INT(
"result",
result,
-1 );
PFF_TEST_ASSERT_IS_NOT_NULL(
"error",
error );
libcerror_error_free(
&error );
item_values = (libpff_item_values_t *) 0x12345678UL;
result = libpff_item_values_initialize(
&item_values,
0,
0,
0,
0,
&error );
item_values = NULL;
PFF_TEST_ASSERT_EQUAL_INT(
"result",
result,
-1 );
PFF_TEST_ASSERT_IS_NOT_NULL(
"error",
error );
libcerror_error_free(
&error );
#if defined( HAVE_PFF_TEST_MEMORY )
for( test_number = 0;
test_number < number_of_malloc_fail_tests;
test_number++ )
{
/* Test libpff_item_values_initialize with malloc failing
*/
pff_test_malloc_attempts_before_fail = test_number;
result = libpff_item_values_initialize(
&item_values,
0,
0,
0,
0,
&error );
if( pff_test_malloc_attempts_before_fail != -1 )
{
pff_test_malloc_attempts_before_fail = -1;
if( item_values != NULL )
{
libpff_item_values_free(
&item_values,
NULL );
}
}
else
{
PFF_TEST_ASSERT_EQUAL_INT(
"result",
result,
-1 );
PFF_TEST_ASSERT_IS_NULL(
"item_values",
item_values );
PFF_TEST_ASSERT_IS_NOT_NULL(
"error",
error );
libcerror_error_free(
&error );
}
}
for( test_number = 0;
test_number < number_of_memset_fail_tests;
test_number++ )
{
/* Test libpff_item_values_initialize with memset failing
*/
pff_test_memset_attempts_before_fail = test_number;
result = libpff_item_values_initialize(
&item_values,
0,
0,
0,
0,
&error );
if( pff_test_memset_attempts_before_fail != -1 )
{
pff_test_memset_attempts_before_fail = -1;
if( item_values != NULL )
{
libpff_item_values_free(
&item_values,
NULL );
}
}
else
{
PFF_TEST_ASSERT_EQUAL_INT(
"result",
result,
-1 );
PFF_TEST_ASSERT_IS_NULL(
"item_values",
item_values );
PFF_TEST_ASSERT_IS_NOT_NULL(
"error",
error );
libcerror_error_free(
&error );
}
}
#endif /* defined( HAVE_PFF_TEST_MEMORY ) */
return( 1 );
on_error:
if( error != NULL )
{
libcerror_error_free(
&error );
}
if( item_values != NULL )
{
libpff_item_values_free(
&item_values,
NULL );
}
return( 0 );
}
/* Tests the libpff_item_values_free function
* Returns 1 if successful or 0 if not
*/
int pff_test_item_values_free(
void )
{
libcerror_error_t *error = NULL;
int result = 0;
/* Test error cases
*/
result = libpff_item_values_free(
NULL,
&error );
PFF_TEST_ASSERT_EQUAL_INT(
"result",
result,
-1 );
PFF_TEST_ASSERT_IS_NOT_NULL(
"error",
error );
libcerror_error_free(
&error );
return( 1 );
on_error:
if( error != NULL )
{
libcerror_error_free(
&error );
}
return( 0 );
}
/* Tests the libpff_item_values_read function
* Returns 1 if successful or 0 if not
*/
int pff_test_item_values_read(
void )
{
libcerror_error_t *error = NULL;
libpff_item_values_t *item_values = NULL;
int result = 0;
/* Initialize test
*/
result = libpff_item_values_initialize(
&item_values,
0,
0,
0,
0,
&error );
PFF_TEST_ASSERT_EQUAL_INT(
"result",
result,
1 );
PFF_TEST_ASSERT_IS_NOT_NULL(
"item_values",
item_values );
PFF_TEST_ASSERT_IS_NULL(
"error",
error );
/* Test regular cases
*/
/* TODO implement */
/* Test error cases
*/
result = libpff_item_values_read(
NULL,
NULL,
NULL,
NULL,
NULL,
0,
&error );
PFF_TEST_ASSERT_EQUAL_INT(
"result",
result,
-1 );
PFF_TEST_ASSERT_IS_NOT_NULL(
"error",
error );
libcerror_error_free(
&error );
/* TODO implement */
result = libpff_item_values_read(
item_values,
NULL,
NULL,
NULL,
NULL,
0,
&error );
PFF_TEST_ASSERT_EQUAL_INT(
"result",
result,
-1 );
PFF_TEST_ASSERT_IS_NOT_NULL(
"error",
error );
libcerror_error_free(
&error );
/* Clean up
*/
result = libpff_item_values_free(
&item_values,
&error );
PFF_TEST_ASSERT_EQUAL_INT(
"result",
result,
1 );
PFF_TEST_ASSERT_IS_NULL(
"item_values",
item_values );
PFF_TEST_ASSERT_IS_NULL(
"error",
error );
return( 1 );
on_error:
if( error != NULL )
{
libcerror_error_free(
&error );
}
if( item_values != NULL )
{
libpff_item_values_free(
&item_values,
NULL );
}
return( 0 );
}
/* Tests the libpff_item_values_get_number_of_record_sets function
* Returns 1 if successful or 0 if not
*/
int pff_test_item_values_get_number_of_record_sets(
libpff_item_values_t *item_values )
{
libcerror_error_t *error = NULL;
int number_of_record_sets = 0;
int result = 0;
/* Test regular cases
*/
/* TODO implement
result = libpff_item_values_get_number_of_record_sets(
item_values,
NULL,
NULL,
NULL,
NULL,
&number_of_record_sets,
&error );
PFF_TEST_ASSERT_EQUAL_INT(
"result",
result,
1 );
PFF_TEST_ASSERT_IS_NULL(
"error",
error );
*/
/* Test error cases
*/
result = libpff_item_values_get_number_of_record_sets(
NULL,
NULL,
NULL,
NULL,
NULL,
&number_of_record_sets,
&error );
PFF_TEST_ASSERT_EQUAL_INT(
"result",
result,
-1 );
PFF_TEST_ASSERT_IS_NOT_NULL(
"error",
error );
libcerror_error_free(
&error );
/* TODO implement */
result = libpff_item_values_get_number_of_record_sets(
item_values,
NULL,
NULL,
NULL,
NULL,
NULL,
&error );
PFF_TEST_ASSERT_EQUAL_INT(
"result",
result,
-1 );
PFF_TEST_ASSERT_IS_NOT_NULL(
"error",
error );
libcerror_error_free(
&error );
return( 1 );
on_error:
if( error != NULL )
{
libcerror_error_free(
&error );
}
return( 0 );
}
#endif /* defined( __GNUC__ ) && !defined( LIBPFF_DLL_IMPORT ) */
/* The main program
*/
#if defined( HAVE_WIDE_SYSTEM_CHARACTER )
int wmain(
int argc PFF_TEST_ATTRIBUTE_UNUSED,
wchar_t * const argv[] PFF_TEST_ATTRIBUTE_UNUSED )
#else
int main(
int argc PFF_TEST_ATTRIBUTE_UNUSED,
char * const argv[] PFF_TEST_ATTRIBUTE_UNUSED )
#endif
{
#if defined( __GNUC__ ) && !defined( LIBPFF_DLL_IMPORT )
#if !defined( __BORLANDC__ ) || ( __BORLANDC__ >= 0x0560 )
libcerror_error_t *error = NULL;
libpff_item_values_t *item_values = NULL;
int result = 0;
#endif /* !defined( __BORLANDC__ ) || ( __BORLANDC__ >= 0x0560 ) */
#endif /* defined( __GNUC__ ) && !defined( LIBPFF_DLL_IMPORT ) */
PFF_TEST_UNREFERENCED_PARAMETER( argc )
PFF_TEST_UNREFERENCED_PARAMETER( argv )
#if defined( __GNUC__ ) && !defined( LIBPFF_DLL_IMPORT )
PFF_TEST_RUN(
"libpff_item_values_initialize",
pff_test_item_values_initialize );
PFF_TEST_RUN(
"libpff_item_values_free",
pff_test_item_values_free );
/* TODO: add tests for libpff_item_values_clone_copy */
PFF_TEST_RUN(
"libpff_item_values_read",
pff_test_item_values_read );
/* TODO: add tests for libpff_item_values_read_local_descriptor_data */
#if !defined( __BORLANDC__ ) || ( __BORLANDC__ >= 0x0560 )
/* Initialize test
*/
result = libpff_item_values_initialize(
&item_values,
0,
0,
0,
0,
&error );
PFF_TEST_ASSERT_EQUAL_INT(
"result",
result,
1 );
PFF_TEST_ASSERT_IS_NOT_NULL(
"item_values",
item_values );
PFF_TEST_ASSERT_IS_NULL(
"error",
error );
/* TODO: add tests for libpff_item_values_get_local_descriptors_value_by_identifier */
/* TODO set up tests
PFF_TEST_RUN_WITH_ARGS(
"libpff_item_values_get_number_of_record_sets",
pff_test_item_values_get_number_of_record_sets,
item );
*/
/* TODO: add tests for libpff_item_values_get_record_entry_by_type */
/* TODO: add tests for libpff_item_values_get_record_entry_by_utf8_name */
/* TODO: add tests for libpff_item_values_get_record_entry_by_utf16_name */
/* Clean up
*/
result = libpff_item_values_free(
&item_values,
&error );
PFF_TEST_ASSERT_EQUAL_INT(
"result",
result,
1 );
PFF_TEST_ASSERT_IS_NULL(
"item_values",
item_values );
PFF_TEST_ASSERT_IS_NULL(
"error",
error );
#endif /* !defined( __BORLANDC__ ) || ( __BORLANDC__ >= 0x0560 ) */
#endif /* defined( __GNUC__ ) && !defined( LIBPFF_DLL_IMPORT ) */
return( EXIT_SUCCESS );
#if defined( __GNUC__ ) && !defined( LIBPFF_DLL_IMPORT )
on_error:
#if !defined( __BORLANDC__ ) || ( __BORLANDC__ >= 0x0560 )
if( error != NULL )
{
libcerror_error_free(
&error );
}
if( item_values != NULL )
{
libpff_item_values_free(
&item_values,
NULL );
}
#endif /* !defined( __BORLANDC__ ) || ( __BORLANDC__ >= 0x0560 ) */
return( EXIT_FAILURE );
#endif /* defined( __GNUC__ ) && !defined( LIBPFF_DLL_IMPORT ) */
}