/* * Library support functions test program * * Copyright (C) 2009-2019, Joachim Metz * * Refer to AUTHORS for acknowledgements. * * This software 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 software 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 software. If not, see . */ #include #include #include #include #if defined( HAVE_STDLIB_H ) || defined( WINAPI ) #include #endif #include "bfio_test_libbfio.h" #include "bfio_test_libcerror.h" #include "bfio_test_macros.h" #include "bfio_test_unused.h" /* Tests the libbfio_get_version function * Returns 1 if successful or 0 if not */ int bfio_test_get_version( void ) { const char *version_string = NULL; int result = 0; version_string = libbfio_get_version(); result = narrow_string_compare( version_string, LIBBFIO_VERSION_STRING, 9 ); BFIO_TEST_ASSERT_EQUAL_INT( "result", result, 0 ); return( 1 ); on_error: return( 0 ); } /* Tests the libbfio_get_codepage function * Returns 1 if successful or 0 if not */ int bfio_test_get_codepage( void ) { libcerror_error_t *error = NULL; int codepage = 0; int result = 0; result = libbfio_get_codepage( &codepage, &error ); BFIO_TEST_ASSERT_EQUAL_INT( "result", result, 1 ); BFIO_TEST_ASSERT_IS_NULL( "error", error ); /* Test error cases */ result = libbfio_get_codepage( NULL, &error ); BFIO_TEST_ASSERT_EQUAL_INT( "result", result, -1 ); BFIO_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 libbfio_set_codepage function * Returns 1 if successful or 0 if not */ int bfio_test_set_codepage( void ) { libcerror_error_t *error = NULL; int result = 0; result = libbfio_set_codepage( 0, &error ); BFIO_TEST_ASSERT_EQUAL_INT( "result", result, 1 ); BFIO_TEST_ASSERT_IS_NULL( "error", error ); /* Test error cases */ result = libbfio_set_codepage( -1, &error ); BFIO_TEST_ASSERT_EQUAL_INT( "result", result, -1 ); BFIO_TEST_ASSERT_IS_NOT_NULL( "error", error ); libcerror_error_free( &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 BFIO_TEST_ATTRIBUTE_UNUSED, wchar_t * const argv[] BFIO_TEST_ATTRIBUTE_UNUSED ) #else int main( int argc BFIO_TEST_ATTRIBUTE_UNUSED, char * const argv[] BFIO_TEST_ATTRIBUTE_UNUSED ) #endif { BFIO_TEST_UNREFERENCED_PARAMETER( argc ) BFIO_TEST_UNREFERENCED_PARAMETER( argv ) BFIO_TEST_RUN( "libbfio_get_version", bfio_test_get_version ); return( EXIT_SUCCESS ); on_error: return( EXIT_FAILURE ); }