mirror of
https://git.libssh.org/projects/libssh.git
synced 2025-07-29 13:01:13 +03:00
init: Introduce internal is_ssh_initialized()
The introduced function returns whether the library is initialized or not. Signed-off-by: Anderson Toshiyuki Sasaki <ansasaki@redhat.com> Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
This commit is contained in:
committed by
Andreas Schneider
parent
e3e52394c1
commit
dba2114ed7
@ -2,6 +2,7 @@
|
||||
|
||||
#define LIBSSH_STATIC
|
||||
|
||||
#include <errno.h>
|
||||
#include "torture.h"
|
||||
#include "libssh/libssh.h"
|
||||
|
||||
@ -32,11 +33,33 @@ static void torture_ssh_init_after_finalize(void **state) {
|
||||
assert_int_equal(rc, SSH_OK);
|
||||
}
|
||||
|
||||
static void torture_is_ssh_initialized(UNUSED_PARAM(void **state)) {
|
||||
|
||||
int rc;
|
||||
bool initialized = false;
|
||||
|
||||
/* Make sure the library is not initialized */
|
||||
while (is_ssh_initialized()) {
|
||||
rc = ssh_finalize();
|
||||
assert_return_code(rc, errno);
|
||||
}
|
||||
|
||||
rc = ssh_init();
|
||||
assert_return_code(rc, errno);
|
||||
initialized = is_ssh_initialized();
|
||||
assert_true(initialized);
|
||||
rc = ssh_finalize();
|
||||
assert_return_code(rc, errno);
|
||||
initialized = is_ssh_initialized();
|
||||
assert_false(initialized);
|
||||
}
|
||||
|
||||
int torture_run_tests(void) {
|
||||
int rc;
|
||||
struct CMUnitTest tests[] = {
|
||||
cmocka_unit_test(torture_ssh_init),
|
||||
cmocka_unit_test(torture_ssh_init_after_finalize),
|
||||
cmocka_unit_test(torture_is_ssh_initialized),
|
||||
};
|
||||
|
||||
torture_filter_tests(tests);
|
||||
|
Reference in New Issue
Block a user