/* * Library data_definition type test program * * Copyright (C) 2009-2023, Joachim Metz * * 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 . */ #include #include #include #if defined( HAVE_STDLIB_H ) || defined( WINAPI ) #include #endif #include "esedb_test_libcerror.h" #include "esedb_test_libesedb.h" #include "esedb_test_macros.h" #include "esedb_test_memory.h" #include "esedb_test_unused.h" #include "../libesedb/libesedb_data_definition.h" #if defined( __GNUC__ ) && !defined( LIBESEDB_DLL_IMPORT ) /* Tests the libesedb_data_definition_initialize function * Returns 1 if successful or 0 if not */ int esedb_test_data_definition_initialize( void ) { libcerror_error_t *error = NULL; libesedb_data_definition_t *data_definition = NULL; int result = 0; #if defined( HAVE_ESEDB_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 = libesedb_data_definition_initialize( &data_definition, &error ); ESEDB_TEST_ASSERT_EQUAL_INT( "result", result, 1 ); ESEDB_TEST_ASSERT_IS_NOT_NULL( "data_definition", data_definition ); ESEDB_TEST_ASSERT_IS_NULL( "error", error ); result = libesedb_data_definition_free( &data_definition, &error ); ESEDB_TEST_ASSERT_EQUAL_INT( "result", result, 1 ); ESEDB_TEST_ASSERT_IS_NULL( "data_definition", data_definition ); ESEDB_TEST_ASSERT_IS_NULL( "error", error ); /* Test error cases */ result = libesedb_data_definition_initialize( NULL, &error ); ESEDB_TEST_ASSERT_EQUAL_INT( "result", result, -1 ); ESEDB_TEST_ASSERT_IS_NOT_NULL( "error", error ); libcerror_error_free( &error ); data_definition = (libesedb_data_definition_t *) 0x12345678UL; result = libesedb_data_definition_initialize( &data_definition, &error ); data_definition = NULL; ESEDB_TEST_ASSERT_EQUAL_INT( "result", result, -1 ); ESEDB_TEST_ASSERT_IS_NOT_NULL( "error", error ); libcerror_error_free( &error ); #if defined( HAVE_ESEDB_TEST_MEMORY ) for( test_number = 0; test_number < number_of_malloc_fail_tests; test_number++ ) { /* Test libesedb_data_definition_initialize with malloc failing */ esedb_test_malloc_attempts_before_fail = test_number; result = libesedb_data_definition_initialize( &data_definition, &error ); if( esedb_test_malloc_attempts_before_fail != -1 ) { esedb_test_malloc_attempts_before_fail = -1; if( data_definition != NULL ) { libesedb_data_definition_free( &data_definition, NULL ); } } else { ESEDB_TEST_ASSERT_EQUAL_INT( "result", result, -1 ); ESEDB_TEST_ASSERT_IS_NULL( "data_definition", data_definition ); ESEDB_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 libesedb_data_definition_initialize with memset failing */ esedb_test_memset_attempts_before_fail = test_number; result = libesedb_data_definition_initialize( &data_definition, &error ); if( esedb_test_memset_attempts_before_fail != -1 ) { esedb_test_memset_attempts_before_fail = -1; if( data_definition != NULL ) { libesedb_data_definition_free( &data_definition, NULL ); } } else { ESEDB_TEST_ASSERT_EQUAL_INT( "result", result, -1 ); ESEDB_TEST_ASSERT_IS_NULL( "data_definition", data_definition ); ESEDB_TEST_ASSERT_IS_NOT_NULL( "error", error ); libcerror_error_free( &error ); } } #endif /* defined( HAVE_ESEDB_TEST_MEMORY ) */ return( 1 ); on_error: if( error != NULL ) { libcerror_error_free( &error ); } if( data_definition != NULL ) { libesedb_data_definition_free( &data_definition, NULL ); } return( 0 ); } /* Tests the libesedb_data_definition_free function * Returns 1 if successful or 0 if not */ int esedb_test_data_definition_free( void ) { libcerror_error_t *error = NULL; int result = 0; /* Test error cases */ result = libesedb_data_definition_free( NULL, &error ); ESEDB_TEST_ASSERT_EQUAL_INT( "result", result, -1 ); ESEDB_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 libesedb_data_definition_read_data function * Returns 1 if successful or 0 if not */ int esedb_test_data_definition_read_data( void ) { libcerror_error_t *error = NULL; int result = 0; /* Test error cases */ result = libesedb_data_definition_read_data( NULL, NULL, NULL, NULL, NULL, NULL, NULL, &error ); ESEDB_TEST_ASSERT_EQUAL_INT( "result", result, -1 ); ESEDB_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 libesedb_data_definition_read_record function * Returns 1 if successful or 0 if not */ int esedb_test_data_definition_read_record( void ) { libcerror_error_t *error = NULL; int result = 0; /* Test error cases */ result = libesedb_data_definition_read_record( NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, &error ); ESEDB_TEST_ASSERT_EQUAL_INT( "result", result, -1 ); ESEDB_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 libesedb_data_definition_read_long_value function * Returns 1 if successful or 0 if not */ int esedb_test_data_definition_read_long_value( void ) { libcerror_error_t *error = NULL; int result = 0; /* Test error cases */ result = libesedb_data_definition_read_long_value( NULL, NULL, NULL, NULL, &error ); ESEDB_TEST_ASSERT_EQUAL_INT( "result", result, -1 ); ESEDB_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 libesedb_data_definition_read_long_value_segment function * Returns 1 if successful or 0 if not */ int esedb_test_data_definition_read_long_value_segment( void ) { libcerror_error_t *error = NULL; int result = 0; /* Test error cases */ result = libesedb_data_definition_read_long_value_segment( NULL, NULL, NULL, NULL, NULL, 0, NULL, &error ); ESEDB_TEST_ASSERT_EQUAL_INT( "result", result, -1 ); ESEDB_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( LIBESEDB_DLL_IMPORT ) */ /* The main program */ #if defined( HAVE_WIDE_SYSTEM_CHARACTER ) int wmain( int argc ESEDB_TEST_ATTRIBUTE_UNUSED, wchar_t * const argv[] ESEDB_TEST_ATTRIBUTE_UNUSED ) #else int main( int argc ESEDB_TEST_ATTRIBUTE_UNUSED, char * const argv[] ESEDB_TEST_ATTRIBUTE_UNUSED ) #endif { ESEDB_TEST_UNREFERENCED_PARAMETER( argc ) ESEDB_TEST_UNREFERENCED_PARAMETER( argv ) #if defined( __GNUC__ ) && !defined( LIBESEDB_DLL_IMPORT ) ESEDB_TEST_RUN( "libesedb_data_definition_initialize", esedb_test_data_definition_initialize ); ESEDB_TEST_RUN( "libesedb_data_definition_free", esedb_test_data_definition_free ); ESEDB_TEST_RUN( "libesedb_data_definition_read_data", esedb_test_data_definition_read_data ); ESEDB_TEST_RUN( "libesedb_data_definition_read_record", esedb_test_data_definition_read_record ); ESEDB_TEST_RUN( "libesedb_data_definition_read_long_value", esedb_test_data_definition_read_long_value ); ESEDB_TEST_RUN( "libesedb_data_definition_read_long_value_segment", esedb_test_data_definition_read_long_value_segment ); #endif /* defined( __GNUC__ ) && !defined( LIBESEDB_DLL_IMPORT ) */ return( EXIT_SUCCESS ); on_error: return( EXIT_FAILURE ); }