/* * Library data_stream type test program * * Copyright (C) 2010-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 #if defined( HAVE_STDLIB_H ) || defined( WINAPI ) #include #endif #include "fsntfs_test_libcerror.h" #include "fsntfs_test_libfsntfs.h" #include "fsntfs_test_macros.h" #include "fsntfs_test_memory.h" #include "fsntfs_test_unused.h" #include "../libfsntfs/libfsntfs_data_stream.h" /* Tests the libfsntfs_data_stream_free function * Returns 1 if successful or 0 if not */ int fsntfs_test_data_stream_free( void ) { libcerror_error_t *error = NULL; int result = 0; /* Test error cases */ result = libfsntfs_data_stream_free( NULL, &error ); FSNTFS_TEST_ASSERT_EQUAL_INT( "result", result, -1 ); FSNTFS_TEST_ASSERT_IS_NOT_NULL( "error", error ); libcerror_error_free( &error ); return( 1 ); on_error: if( error != NULL ) { libcerror_error_free( &error ); } return( 0 ); } #if defined( __GNUC__ ) && !defined( LIBFSNTFS_DLL_IMPORT ) #endif /* defined( __GNUC__ ) && !defined( LIBFSNTFS_DLL_IMPORT ) */ /* The main program */ #if defined( HAVE_WIDE_SYSTEM_CHARACTER ) int wmain( int argc FSNTFS_TEST_ATTRIBUTE_UNUSED, wchar_t * const argv[] FSNTFS_TEST_ATTRIBUTE_UNUSED ) #else int main( int argc FSNTFS_TEST_ATTRIBUTE_UNUSED, char * const argv[] FSNTFS_TEST_ATTRIBUTE_UNUSED ) #endif { FSNTFS_TEST_UNREFERENCED_PARAMETER( argc ) FSNTFS_TEST_UNREFERENCED_PARAMETER( argv ) #if defined( __GNUC__ ) && !defined( LIBFSNTFS_DLL_IMPORT ) /* TODO: add tests for libfsntfs_data_stream_initialize */ #endif /* defined( __GNUC__ ) && !defined( LIBFSNTFS_DLL_IMPORT ) */ FSNTFS_TEST_RUN( "libfsntfs_data_stream_free", fsntfs_test_data_stream_free ); #if defined( __GNUC__ ) && !defined( LIBFSNTFS_DLL_IMPORT ) /* TODO: add tests for libfsntfs_data_stream_get_utf8_name_size */ /* TODO: add tests for libfsntfs_data_stream_get_utf8_name */ /* TODO: add tests for libfsntfs_data_stream_get_utf16_name_size */ /* TODO: add tests for libfsntfs_data_stream_get_utf16_name */ /* TODO: add tests for libfsntfs_data_stream_read_buffer */ /* TODO: add tests for libfsntfs_data_stream_read_buffer_at_offset */ /* TODO: add tests for libfsntfs_data_stream_seek_offset */ /* TODO: add tests for libfsntfs_data_stream_get_offset */ /* TODO: add tests for libfsntfs_data_stream_get_size */ /* TODO: add tests for libfsntfs_data_stream_get_number_of_extents */ /* TODO: add tests for libfsntfs_data_stream_get_extent_by_index */ #endif /* defined( __GNUC__ ) && !defined( LIBFSNTFS_DLL_IMPORT ) */ return( EXIT_SUCCESS ); on_error: return( EXIT_FAILURE ); }