/* * Tools signal functions 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_macros.h" #include "esedb_test_unused.h" #include "../esedbtools/esedbtools_signal.h" void esedb_test_tools_signal_handler_function( esedbtools_signal_t signal ESEDB_TEST_ATTRIBUTE_UNUSED ) { ESEDB_TEST_UNREFERENCED_PARAMETER( signal ) } #if defined( WINAPI ) /* Tests the esedbtools_signal_handler function * Returns 1 if successful or 0 if not */ int esedb_test_tools_signal_handler( void ) { BOOL result = 0; /* Test regular cases */ result = esedbtools_signal_handler( CTRL_C_EVENT ); ESEDB_TEST_ASSERT_EQUAL_INT( "result", result, (int) TRUE ); result = esedbtools_signal_handler( CTRL_LOGOFF_EVENT ); ESEDB_TEST_ASSERT_EQUAL_INT( "result", result, (int) FALSE ); return( 1 ); on_error: return( 0 ); } #if defined( _MSC_VER ) /* TODO add tests for esedbtools_signal_initialize_memory_debug */ #endif /* defined( _MSC_VER ) */ #endif /* defined( WINAPI ) */ /* Tests the esedbtools_signal_attach function * Returns 1 if successful or 0 if not */ int esedb_test_tools_signal_attach( void ) { libcerror_error_t *error = NULL; int result = 0; /* Test regular cases */ result = esedbtools_signal_attach( esedb_test_tools_signal_handler_function, &error ); ESEDB_TEST_ASSERT_EQUAL_INT( "result", result, 1 ); ESEDB_TEST_ASSERT_IS_NULL( "error", error ); /* Test error cases */ result = esedbtools_signal_attach( 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 esedbtools_signal_detach function * Returns 1 if successful or 0 if not */ int esedb_test_tools_signal_detach( void ) { libcerror_error_t *error = NULL; int result = 0; /* Test regular cases */ result = esedbtools_signal_detach( &error ); ESEDB_TEST_ASSERT_EQUAL_INT( "result", result, 1 ); ESEDB_TEST_ASSERT_IS_NULL( "error", error ); return( 1 ); on_error: if( error != NULL ) { libcerror_error_free( &error ); } return( 0 ); } /* 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( WINAPI ) ESEDB_TEST_RUN( "esedbtools_signal_handler", esedb_test_tools_signal_handler ) #if defined( _MSC_VER ) /* TODO add tests for esedbtools_signal_initialize_memory_debug */ #endif /* defined( _MSC_VER ) */ #endif /* defined( WINAPI ) */ ESEDB_TEST_RUN( "esedbtools_signal_attach", esedb_test_tools_signal_attach ) ESEDB_TEST_RUN( "esedbtools_signal_detach", esedb_test_tools_signal_detach ) return( EXIT_SUCCESS ); on_error: return( EXIT_FAILURE ); }