]> git.meshlink.io Git - meshlink-tiny/blobdiff - test/blackbox/run_blackbox_tests/execute_tests.c
Remove the blackbox test suite.
[meshlink-tiny] / test / blackbox / run_blackbox_tests / execute_tests.c
diff --git a/test/blackbox/run_blackbox_tests/execute_tests.c b/test/blackbox/run_blackbox_tests/execute_tests.c
deleted file mode 100644 (file)
index 6b534ee..0000000
+++ /dev/null
@@ -1,130 +0,0 @@
-/*
-    execute_tests.c -- Utility functions for black box test execution
-    Copyright (C) 2018  Guus Sliepen <guus@meshlink.io>
-
-    This program is free software; you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation; either version 2 of the License, or
-    (at your option) any later version.
-
-    This program is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License along
-    with this program; if not, write to the Free Software Foundation, Inc.,
-    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-*/
-
-#ifdef NDEBUG
-#undef NDEBUG
-#endif
-
-#include <stdlib.h>
-#include <stdarg.h>
-#include <setjmp.h>
-#include <cmocka.h>
-#include <assert.h>
-#include "execute_tests.h"
-#include "../common/common_handlers.h"
-#include "../common/containers.h"
-#include "../common/test_step.h"
-
-int setup_test(void **state) {
-       int i;
-
-       fprintf(stderr, "Setting up Containers\n");
-       state_ptr = (black_box_state_t *)(*state);
-
-       for(i = 0; i < state_ptr->num_nodes; i++) {
-               meta_conn_status[i] = false;
-       }
-
-       setup_containers(state);
-
-       return EXIT_SUCCESS;
-}
-
-void execute_test(test_step_func_t step_func, void **state) {
-       black_box_state_t *test_state = (black_box_state_t *)(*state);
-
-       fprintf(stderr, "\n\x1b[32mRunning Test\x1b[0m : \x1b[34m%s\x1b[0m\n", test_state->test_case_name);
-       test_state->test_result = step_func();
-
-       if(!test_state->test_result) {
-               fail();
-       }
-}
-
-int teardown_test(void **state) {
-       black_box_state_t *test_state = (black_box_state_t *)(*state);
-       char container_old_name[100], container_new_name[100];
-       int i;
-
-       if(test_state->test_result) {
-               PRINT_TEST_CASE_MSG("Test successful! Shutting down nodes.\n");
-
-               for(i = 0; i < test_state->num_nodes; i++) {
-                       /* Shut down node */
-                       node_step_in_container(test_state->node_names[i], "SIGTERM");
-                       /* Rename Container to run_<node-name> - this allows it to be re-used for the
-                           next test, otherwise it will be ignored assuming that it has been saved
-                           for debugging */
-                       assert(snprintf(container_old_name, sizeof(container_old_name), "%s_%s",
-                                       test_state->test_case_name, test_state->node_names[i]) >= 0);
-                       assert(snprintf(container_new_name, sizeof(container_new_name), "run_%s",
-                                       test_state->node_names[i]) >= 0);
-                       rename_container(container_old_name, container_new_name);
-               }
-       }
-
-       state_ptr = NULL;
-
-       return EXIT_SUCCESS;
-}
-
-bool change_state(node_status_t *status, mesh_event_t currentEv) {
-
-       if(status->current_index == status->max_events) {
-               return false;
-       }
-
-       if(currentEv == status->expected_events[status->current_index]) {
-               status->current_index = status->current_index + 1;
-
-               return true;
-       } else {
-               return false;
-       }
-}
-
-void signal_node_start(node_status_t *node_status, int start, int end, char *node_ids[]) {
-       int i, index;
-
-       for(i = start; i <= end; i++) {
-               index = node_status[i].current_index;
-
-               if(index < 1 || NODE_JOINED != node_status[i].expected_events[index - 1]) {
-                       return;
-               }
-       }
-
-
-       for(i = start; i <= end; i++) {
-               fprintf(stderr, "\tSending signals to '%s'\n", node_ids[i]);
-               node_step_in_container(node_ids[i], "SIGIO");
-       }
-
-       return;
-}
-
-bool check_nodes_finished(node_status_t *node_status, int length) {
-       for(int i = 0; i < length; i++) {
-               if(node_status[i].current_index != node_status[i].max_events) {
-                       return false;
-               }
-       }
-
-       return true;
-}