a736a077a148d46fe74c59c799719230b9c6e6a8
[oweals/gnunet.git] / src / util / test_plugin.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2009 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 /**
19  * @file util/test_plugin.c
20  * @brief testcase for plugin.c
21  */
22 #include "platform.h"
23 #include "gnunet_util_lib.h"
24
25
26 static void
27 test_cb (void *cls, const char *libname, void *lib_ret)
28 {
29   void *ret;
30
31   GNUNET_assert (0 == strcmp (cls, "test"));
32   GNUNET_assert (0 == strcmp (lib_ret, "Hello"));
33   ret = GNUNET_PLUGIN_unload (libname, "out");
34   GNUNET_assert (NULL != ret);
35   GNUNET_assert (0 == strcmp (ret, "World"));
36   free (ret);
37 }
38
39
40 int
41 main (int argc, char *argv[])
42 {
43   void *ret;
44
45   GNUNET_log_setup ("test-plugin", "WARNING", NULL);
46   GNUNET_log_skip (1, GNUNET_NO);
47   ret = GNUNET_PLUGIN_load ("libgnunet_plugin_missing", NULL);
48   GNUNET_log_skip (0, GNUNET_NO);
49   if (ret != NULL)
50     return 1;
51   ret = GNUNET_PLUGIN_load ("libgnunet_plugin_test", "in");
52   if (ret == NULL)
53     return 1;
54   if (0 != strcmp (ret, "Hello"))
55     return 2;
56   ret = GNUNET_PLUGIN_unload ("libgnunet_plugin_test", "out");
57   if (ret == NULL)
58     return 3;
59   if (0 != strcmp (ret, "World"))
60     return 4;
61   free (ret);
62   GNUNET_PLUGIN_load_all ("libgnunet_plugin_tes", "in", &test_cb, "test");
63   return 0;
64 }
65
66 /* end of test_plugin.c */