X-Git-Url: http://git.meshlink.io/?p=meshlink;a=blobdiff_plain;f=test%2Fbasic.c;h=f591df7b54df1e6271a9c868a80bcb78d6464e00;hp=4ad1c93fb0ed6639d9eea983def0bd667564c049;hb=6c897377f68fc23ca9a8b23a6ca204517998b2e9;hpb=690df24583e0da336a826b2ad30967cfe9c22277 diff --git a/test/basic.c b/test/basic.c index 4ad1c93f..f591df7b 100644 --- a/test/basic.c +++ b/test/basic.c @@ -8,6 +8,7 @@ #include #include #include +#include #include "meshlink.h" #include "utils.h" @@ -21,7 +22,14 @@ int main() { meshlink_handle_t *mesh = meshlink_open("basic_conf", "foo", "basic", DEV_CLASS_BACKBONE); assert(mesh); - meshlink_set_log_cb(mesh, MESHLINK_DEBUG, log_cb); + // Check that we can't open a second instance of the same node. + + meshlink_handle_t *mesh2 = meshlink_open("basic_conf", "foo", "basic", DEV_CLASS_BACKBONE); + assert(!mesh2); + + // Check that we cannot destroy an instance that is in use. + + assert(!meshlink_destroy("basic_conf")); // Check that our own node exists. @@ -56,13 +64,21 @@ int main() { assert(meshlink_start(mesh)); meshlink_stop(mesh); - - // That's it. - meshlink_close(mesh); // Destroy the mesh. assert(meshlink_destroy("basic_conf")); - assert(access("basic_conf", F_OK) == -1 && errno == ENOENT); + + // Check that the configuration directory is completely empty. + + DIR *dir = opendir("basic_conf"); + assert(dir); + struct dirent *ent; + + while((ent = readdir(dir))) { + assert(!strcmp(ent->d_name, ".") || !strcmp(ent->d_name, "..")); + } + + closedir(dir); }