From: Guus Sliepen Date: Thu, 30 Aug 2018 17:44:08 +0000 (+0200) Subject: Add missing code for the duplicate node testcase. X-Git-Url: http://git.meshlink.io/?p=meshlink;a=commitdiff_plain;h=a0b633156ddb653ac7f1cc809a1ba6cf86a928e1 Add missing code for the duplicate node testcase. --- diff --git a/test/duplicate.c b/test/duplicate.c new file mode 100644 index 00000000..fdb4c12e --- /dev/null +++ b/test/duplicate.c @@ -0,0 +1,89 @@ +#include +#include +#include +#include +#include + +#include "meshlink.h" + +static volatile bool duplicate_detected; + +static void handle_duplicate(meshlink_handle_t *mesh, meshlink_node_t *node) { + meshlink_node_t *self = meshlink_get_self(mesh); + fprintf(stderr, "%s: detected duplicate node %s\n", self->name, node->name); + duplicate_detected = true; + meshlink_blacklist(mesh, node); +} + +int main() { + // Open meshlink instances + + static const char *name[4] = {"foo", "bar", "baz", "foo"}; + meshlink_handle_t *mesh[4]; + + for(int i = 0; i < 4; i++) { + char dirname[100]; + snprintf(dirname, sizeof dirname, "duplicate_conf.%d", i); + + mesh[i] = meshlink_open(dirname, name[i], "duplicate", DEV_CLASS_BACKBONE); + + if(!mesh[i]) { + fprintf(stderr, "Could not initialize configuration for node %d\n", i); + return 1; + } + + meshlink_add_address(mesh[i], "localhost"); + meshlink_enable_discovery(mesh[i], false); + + meshlink_set_node_duplicate_cb(mesh[i], handle_duplicate); + } + + // Link them in a chain + + char *data[4]; + + for(int i = 0; i < 4; i++) { + data[i] = meshlink_export(mesh[i]); + } + + for(int i = 0; i < 3; i++) { + meshlink_import(mesh[i], data[i + 1]); + meshlink_import(mesh[i + 1], data[i]); + } + + for(int i = 0; i < 4; i++) { + free(data[i]); + } + + // Start the meshes + + for(int i = 0; i < 4; i++) { + if(!meshlink_start(mesh[i])) { + fprintf(stderr, "Could not start mesh %d\n", i); + return 1; + } + } + + // Wait for the duplicate node to be detected + + for(int i = 0; i < 20; i++) { + sleep(1); + + if(duplicate_detected) { + break; + } + } + + if(!duplicate_detected) { + fprintf(stderr, "Failed to detect duplicate node after 20 seconds\n"); + return 1; + } + + // Clean up + + for(int i = 0; i < 4; i++) { + meshlink_close(mesh[i]); + } + + return 0; +} diff --git a/test/duplicate.test b/test/duplicate.test new file mode 100755 index 00000000..a0c962ca --- /dev/null +++ b/test/duplicate.test @@ -0,0 +1,4 @@ +#!/bin/sh + +rm -Rf duplicate_conf* +./duplicate