aboutsummaryrefslogtreecommitdiff
path: root/src/testbed/test_testbed_api_cmd_netjail.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/testbed/test_testbed_api_cmd_netjail.c')
-rw-r--r--src/testbed/test_testbed_api_cmd_netjail.c94
1 files changed, 94 insertions, 0 deletions
diff --git a/src/testbed/test_testbed_api_cmd_netjail.c b/src/testbed/test_testbed_api_cmd_netjail.c
new file mode 100644
index 000000000..d29ebdcb4
--- /dev/null
+++ b/src/testbed/test_testbed_api_cmd_netjail.c
@@ -0,0 +1,94 @@
1/*
2 This file is part of GNUnet
3 Copyright (C) 2021 GNUnet e.V.
4
5 GNUnet is free software: you can redistribute it and/or modify it
6 under the terms of the GNU Affero General Public License as published
7 by the Free Software Foundation, either version 3 of the License,
8 or (at your option) any later version.
9
10 GNUnet is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Affero General Public License for more details.
14
15 You should have received a copy of the GNU Affero General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
17
18 SPDX-License-Identifier: AGPL3.0-or-later
19 */
20
21/**
22 * @file testing/test_testing_api_cmd_netjail.c
23 * @brief Test case executing a script in a network name space.
24 * @author t3sserakt
25 */
26#include "platform.h"
27#include "gnunet_testing_ng_lib.h"
28#include "gnunet_testbed_ng_service.h"
29#include "gnunet_util_lib.h"
30
31#define HELPER_TESTBED_BINARY "../testbed/gnunet-helper-testbed"
32
33static int
34tokenizer_cb (void *cls, const struct GNUNET_MessageHeader *message)
35{
36 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Called tokenizer.\n");
37 return GNUNET_OK;
38}
39
40
41static void
42exp_cb (void *cls)
43{
44 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Called exp_cb.\n");
45}
46
47
48/**
49 * Main function to run the test cases.
50 *
51 * @param cls not used.
52 *
53 */
54static void
55run (void *cls)
56{
57 char *const binary_argv[3] = {HELPER_TESTBED_BINARY, NULL};
58
59 struct GNUNET_TESTING_Command commands[] = {
60 GNUNET_TESTBED_cmd_netjail_start ("netjail-start-1",
61 "1",
62 "2"),
63 GNUNET_TESTBED_cmd_netjail_start_testbed ("netjail-exec-1",
64 binary_argv,
65 "1",
66 "2",
67 &tokenizer_cb,
68 &exp_cb),
69 GNUNET_TESTBED_cmd_netjail_stop ("netjail-stop-1",
70 "1",
71 "2"),
72 GNUNET_TESTING_cmd_end ()
73 };
74
75 GNUNET_TESTING_run (NULL,
76 commands,
77 GNUNET_TIME_UNIT_FOREVER_REL);
78}
79
80
81int
82main (int argc,
83 char *const *argv)
84{
85 int rv = 0;
86
87 GNUNET_log_setup ("test-netjail",
88 "DEBUG",
89 NULL);
90 GNUNET_SCHEDULER_run (&run,
91 NULL);
92
93 return rv;
94}