X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=test%2Fblackbox%2Frun_blackbox_tests%2Ftest_cases_invite.c;h=cd5b7faf5f8c88ea351fc70ba71d75ee6be6080d;hb=cdb3dada645394bb1e0d0bf7816291fbd9a2a4a0;hp=c0f13c58c2a68ec892e5be3b99397376ccf0ed34;hpb=dc68da94af8fca91748579c84ef5ed798db7efab;p=meshlink diff --git a/test/blackbox/run_blackbox_tests/test_cases_invite.c b/test/blackbox/run_blackbox_tests/test_cases_invite.c index c0f13c58..cd5b7faf 100644 --- a/test/blackbox/run_blackbox_tests/test_cases_invite.c +++ b/test/blackbox/run_blackbox_tests/test_cases_invite.c @@ -82,7 +82,7 @@ static bool test_invite_01(void) { assert(mesh_handle); meshlink_set_log_cb(mesh_handle, TEST_MESHLINK_LOG_LEVEL, meshlink_callback_logger); - char *invitation = meshlink_invite(mesh_handle, "new"); + char *invitation = meshlink_invite(mesh_handle, NULL, "new"); assert_int_equal(invitation, NULL); free(invitation); @@ -104,7 +104,7 @@ static void test_case_invite_02(void **state) { */ static bool test_invite_02(void) { // Trying to generate INVITATION by passing NULL as mesh link handle - char *invitation = meshlink_invite(NULL, "nut"); + char *invitation = meshlink_invite(NULL, NULL, "nut"); assert_int_equal(invitation, NULL); return true; @@ -132,7 +132,7 @@ static bool test_invite_03(void) { meshlink_set_log_cb(mesh_handle, TEST_MESHLINK_LOG_LEVEL, meshlink_callback_logger); // Trying to generate INVITATION by passing NULL as mesh link handle - char *invitation = meshlink_invite(mesh_handle, NULL); + char *invitation = meshlink_invite(mesh_handle, NULL, NULL); assert_int_equal(invitation, NULL); meshlink_close(mesh_handle); @@ -164,13 +164,13 @@ static bool test_invite_04(void) { meshlink_set_log_cb(mesh_handle, TEST_MESHLINK_LOG_LEVEL, meshlink_callback_logger); char *hostname1 = "127.1.1.1"; - bool ret = meshlink_add_address(mesh_handle, hostname1); - char *invitation = meshlink_invite(mesh_handle, "foo"); + meshlink_add_address(mesh_handle, hostname1); + char *invitation = meshlink_invite(mesh_handle, NULL, "foo"); assert_int_not_equal(strstr(invitation, hostname1), NULL); char *hostname2 = "127.1.2.3"; - ret = meshlink_add_address(mesh_handle, hostname2); - invitation = meshlink_invite(mesh_handle, "bar"); + meshlink_add_address(mesh_handle, hostname2); + invitation = meshlink_invite(mesh_handle, NULL, "bar"); // Verify we have both the added addresses assert_int_not_equal(strstr(invitation, hostname1), NULL);