File: /home/django/libpff/tests/pff_test_notify.c
/*
* Library notification functions 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_unused.h"
/* Tests the libpff_notify_set_verbose function
* Returns 1 if successful or 0 if not
*/
int pff_test_notify_set_verbose(
void )
{
/* Test invocation of function only
*/
libpff_notify_set_verbose(
0 );
return( 1 );
}
/* Tests the libpff_notify_set_stream function
* Returns 1 if successful or 0 if not
*/
int pff_test_notify_set_stream(
void )
{
libcerror_error_t *error = NULL;
int result = 0;
/* Test regular cases
*/
result = libpff_notify_set_stream(
NULL,
&error );
PFF_TEST_ASSERT_EQUAL_INT(
"result",
result,
1 );
PFF_TEST_ASSERT_IS_NULL(
"error",
error );
/* Test error cases
*/
/* TODO test libcnotify_stream_set failure */
return( 1 );
on_error:
if( error != NULL )
{
libcerror_error_free(
&error );
}
return( 0 );
}
/* Tests the libpff_notify_stream_open function
* Returns 1 if successful or 0 if not
*/
int pff_test_notify_stream_open(
void )
{
libcerror_error_t *error = NULL;
int result = 0;
/* Test regular cases
*/
result = libpff_notify_stream_open(
"notify_stream.log",
&error );
PFF_TEST_ASSERT_EQUAL_INT(
"result",
result,
1 );
PFF_TEST_ASSERT_IS_NULL(
"error",
error );
/* Test error cases
*/
result = libpff_notify_stream_open(
NULL,
&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_notify_stream_close(
&error );
PFF_TEST_ASSERT_EQUAL_INT(
"result",
result,
0 );
PFF_TEST_ASSERT_IS_NULL(
"error",
error );
return( 1 );
on_error:
if( error != NULL )
{
libcerror_error_free(
&error );
}
return( 0 );
}
/* Tests the libpff_notify_stream_close function
* Returns 1 if successful or 0 if not
*/
int pff_test_notify_stream_close(
void )
{
libcerror_error_t *error = NULL;
int result = 0;
/* Test regular cases
*/
result = libpff_notify_stream_close(
&error );
PFF_TEST_ASSERT_EQUAL_INT(
"result",
result,
0 );
PFF_TEST_ASSERT_IS_NULL(
"error",
error );
/* Test error cases
*/
/* TODO test libcnotify_stream_close failure */
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 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
{
PFF_TEST_UNREFERENCED_PARAMETER( argc )
PFF_TEST_UNREFERENCED_PARAMETER( argv )
PFF_TEST_RUN(
"libpff_notify_set_verbose",
pff_test_notify_set_verbose )
PFF_TEST_RUN(
"libpff_notify_set_stream",
pff_test_notify_set_stream )
PFF_TEST_RUN(
"libpff_notify_stream_open",
pff_test_notify_stream_open )
PFF_TEST_RUN(
"libpff_notify_stream_close",
pff_test_notify_stream_close )
return( EXIT_SUCCESS );
on_error:
return( EXIT_FAILURE );
}