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