1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
/*
* Copyright (C) 2016-2026 Red Hat, Inc. All rights reserved.
*
* Authors: Fabio M. Di Nitto <fabbione@kronosnet.org>
*
* This software licensed under GPL-2.0+
*/
#include "config.h"
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "libknet.h"
#include "internals.h"
#include "test-common.h"
static int private_data;
static void host_notify(void *priv_data,
knet_node_id_t host_id,
uint8_t reachable,
uint8_t remote,
uint8_t external)
{
return;
}
static void test(void)
{
knet_handle_t knet_h1, knet_h[2];
int res;
int logfds[2];
printf("Test knet_host_enable_status_change_notify incorrect knet_h\n");
if ((!knet_host_enable_status_change_notify(NULL, NULL, host_notify)) || (errno != EINVAL)) {
printf("knet_host_enable_status_change_notify accepted invalid knet_h or returned incorrect error: %s\n", strerror(errno));
exit(FAIL);
}
setup_logpipes(logfds);
knet_h1 = knet_handle_start(logfds, KNET_LOG_DEBUG, knet_h);
printf("Test knet_host_enable_status_change_notify with no private_data\n");
FAIL_ON_ERR(knet_host_enable_status_change_notify(knet_h1, NULL, host_notify));
if (knet_h1->host_status_change_notify_fn_private_data != NULL) {
printf("knet_host_enable_status_change_notify failed to unset private_data");
CLEAN_EXIT(FAIL);
}
printf("Test knet_host_enable_status_change_notify with private_data\n");
FAIL_ON_ERR(knet_host_enable_status_change_notify(knet_h1, &private_data, NULL));
if (knet_h1->host_status_change_notify_fn_private_data != &private_data) {
printf("knet_host_enable_status_change_notify failed to set private_data");
CLEAN_EXIT(FAIL);
}
printf("Test knet_host_enable_status_change_notify with no host_notify fn\n");
FAIL_ON_ERR(knet_host_enable_status_change_notify(knet_h1, NULL, NULL));
if (knet_h1->host_status_change_notify_fn != NULL) {
printf("knet_host_enable_status_change_notify failed to unset host_notify fn");
CLEAN_EXIT(FAIL);
}
printf("Test knet_host_enable_status_change_notify with host_notify fn\n");
FAIL_ON_ERR(knet_host_enable_status_change_notify(knet_h1, NULL, host_notify));
if (knet_h1->host_status_change_notify_fn != &host_notify) {
printf("knet_host_enable_status_change_notify failed to set host_notify fn");
CLEAN_EXIT(FAIL);
}
CLEAN_EXIT(CONTINUE);
}
int main(int argc, char *argv[])
{
test();
return PASS;
}
|