uncrustify as demanded.
[oweals/gnunet.git] / src / namestore / test_plugin_namestore.c
index b4ed4c70db63bc8dee53891f95e163f6b5968d0c..8fb30b651489efb61d8f199ec3b1f0d6fce4f95a 100644 (file)
@@ -16,7 +16,7 @@
      along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
      SPDX-License-Identifier: AGPL3.0-or-later
-*/
+ */
 /*
  * @file namestore/test_plugin_namestore.c
  * @brief Test for the namestore plugins
@@ -45,13 +45,13 @@ static const char *plugin_name;
  * @param api api to unload
  */
 static void
-unload_plugin (struct GNUNET_NAMESTORE_PluginFunctions *api)
+unload_plugin(struct GNUNET_NAMESTORE_PluginFunctions *api)
 {
   char *libname;
 
-  GNUNET_asprintf (&libname, "libgnunet_plugin_namestore_%s", plugin_name);
-  GNUNET_break (NULL == GNUNET_PLUGIN_unload (libname, api));
-  GNUNET_free (libname);
+  GNUNET_asprintf(&libname, "libgnunet_plugin_namestore_%s", plugin_name);
+  GNUNET_break(NULL == GNUNET_PLUGIN_unload(libname, api));
+  GNUNET_free(libname);
 }
 
 
@@ -62,33 +62,33 @@ unload_plugin (struct GNUNET_NAMESTORE_PluginFunctions *api)
  * @return NULL on error
  */
 static struct GNUNET_NAMESTORE_PluginFunctions *
-load_plugin (const struct GNUNET_CONFIGURATION_Handle *cfg)
+load_plugin(const struct GNUNET_CONFIGURATION_Handle *cfg)
 {
   struct GNUNET_NAMESTORE_PluginFunctions *ret;
   char *libname;
 
-  GNUNET_log (GNUNET_ERROR_TYPE_INFO,
-              _ ("Loading `%s' namestore plugin\n"),
-              plugin_name);
-  GNUNET_asprintf (&libname, "libgnunet_plugin_namestore_%s", plugin_name);
-  if (NULL == (ret = GNUNET_PLUGIN_load (libname, (void *) cfg)))
-  {
-    fprintf (stderr, "Failed to load plugin `%s'!\n", plugin_name);
-    GNUNET_free (libname);
-    return NULL;
-  }
-  GNUNET_free (libname);
+  GNUNET_log(GNUNET_ERROR_TYPE_INFO,
+             _("Loading `%s' namestore plugin\n"),
+             plugin_name);
+  GNUNET_asprintf(&libname, "libgnunet_plugin_namestore_%s", plugin_name);
+  if (NULL == (ret = GNUNET_PLUGIN_load(libname, (void *)cfg)))
+    {
+      fprintf(stderr, "Failed to load plugin `%s'!\n", plugin_name);
+      GNUNET_free(libname);
+      return NULL;
+    }
+  GNUNET_free(libname);
   return ret;
 }
 
 
 static void
-test_record (void *cls,
-             uint64_t seq,
-             const struct GNUNET_CRYPTO_EcdsaPrivateKey *private_key,
-             const char *label,
-             unsigned int rd_count,
-             const struct GNUNET_GNSRECORD_Data *rd)
+test_record(void *cls,
+            uint64_t seq,
+            const struct GNUNET_CRYPTO_EcdsaPrivateKey *private_key,
+            const char *label,
+            unsigned int rd_count,
+            const struct GNUNET_GNSRECORD_Data *rd)
 {
   int *idp = cls;
   int id = *idp;
@@ -96,106 +96,106 @@ test_record (void *cls,
   char tname[64];
   unsigned int trd_count = 1 + (id % 1024);
 
-  GNUNET_snprintf (tname, sizeof (tname), "a%u", (unsigned int) id);
-  GNUNET_assert (trd_count == rd_count);
+  GNUNET_snprintf(tname, sizeof(tname), "a%u", (unsigned int)id);
+  GNUNET_assert(trd_count == rd_count);
   for (unsigned int i = 0; i < trd_count; i++)
-  {
-    GNUNET_assert (rd[i].data_size == id % 10);
-    GNUNET_assert (0 == memcmp ("Hello World", rd[i].data, id % 10));
-    GNUNET_assert (rd[i].record_type == TEST_RECORD_TYPE);
-    GNUNET_assert (rd[i].flags == 0);
-  }
-  memset (&tzone_private_key, (id % 241), sizeof (tzone_private_key));
-  GNUNET_assert (0 == strcmp (label, tname));
-  GNUNET_assert (0 == GNUNET_memcmp (&tzone_private_key, private_key));
+    {
+      GNUNET_assert(rd[i].data_size == id % 10);
+      GNUNET_assert(0 == memcmp("Hello World", rd[i].data, id % 10));
+      GNUNET_assert(rd[i].record_type == TEST_RECORD_TYPE);
+      GNUNET_assert(rd[i].flags == 0);
+    }
+  memset(&tzone_private_key, (id % 241), sizeof(tzone_private_key));
+  GNUNET_assert(0 == strcmp(label, tname));
+  GNUNET_assert(0 == GNUNET_memcmp(&tzone_private_key, private_key));
 }
 
 
 static void
-get_record (struct GNUNET_NAMESTORE_PluginFunctions *nsp, int id)
+get_record(struct GNUNET_NAMESTORE_PluginFunctions *nsp, int id)
 {
-  GNUNET_assert (
+  GNUNET_assert(
     GNUNET_OK ==
-    nsp->iterate_records (nsp->cls, NULL, 0, 1, &test_record, &id));
+    nsp->iterate_records(nsp->cls, NULL, 0, 1, &test_record, &id));
 }
 
 
 static void
-put_record (struct GNUNET_NAMESTORE_PluginFunctions *nsp, int id)
+put_record(struct GNUNET_NAMESTORE_PluginFunctions *nsp, int id)
 {
   struct GNUNET_CRYPTO_EcdsaPrivateKey zone_private_key;
   char label[64];
   unsigned int rd_count = 1 + (id % 1024);
-  struct GNUNET_GNSRECORD_Data rd[GNUNET_NZL (rd_count)];
+  struct GNUNET_GNSRECORD_Data rd[GNUNET_NZL(rd_count)];
   struct GNUNET_CRYPTO_EcdsaSignature signature;
 
-  GNUNET_snprintf (label, sizeof (label), "a%u", (unsigned int) id);
+  GNUNET_snprintf(label, sizeof(label), "a%u", (unsigned int)id);
   for (unsigned int i = 0; i < rd_count; i++)
-  {
-    rd[i].data = "Hello World";
-    rd[i].data_size = id % 10;
-    rd[i].expiration_time =
-      GNUNET_TIME_relative_to_absolute (GNUNET_TIME_UNIT_MINUTES).abs_value_us;
-    rd[i].record_type = TEST_RECORD_TYPE;
-    rd[i].flags = 0;
-  }
-  memset (&zone_private_key, (id % 241), sizeof (zone_private_key));
-  memset (&signature, (id % 243), sizeof (signature));
-  GNUNET_assert (
+    {
+      rd[i].data = "Hello World";
+      rd[i].data_size = id % 10;
+      rd[i].expiration_time =
+        GNUNET_TIME_relative_to_absolute(GNUNET_TIME_UNIT_MINUTES).abs_value_us;
+      rd[i].record_type = TEST_RECORD_TYPE;
+      rd[i].flags = 0;
+    }
+  memset(&zone_private_key, (id % 241), sizeof(zone_private_key));
+  memset(&signature, (id % 243), sizeof(signature));
+  GNUNET_assert(
     GNUNET_OK ==
-    nsp->store_records (nsp->cls, &zone_private_key, label, rd_count, rd));
+    nsp->store_records(nsp->cls, &zone_private_key, label, rd_count, rd));
 }
 
 
 static void
-run (void *cls,
-     char *const *args,
-     const char *cfgfile,
-     const struct GNUNET_CONFIGURATION_Handle *cfg)
+run(void *cls,
+    char *const *args,
+    const char *cfgfile,
+    const struct GNUNET_CONFIGURATION_Handle *cfg)
 {
   struct GNUNET_NAMESTORE_PluginFunctions *nsp;
 
   ok = 0;
-  nsp = load_plugin (cfg);
+  nsp = load_plugin(cfg);
   if (NULL == nsp)
-  {
-    fprintf (
-      stderr,
-      "%s",
-      "Failed to initialize namestore.  Database likely not setup, skipping test.\n");
-    return;
-  }
-  put_record (nsp, 1);
-  get_record (nsp, 1);
-
-  unload_plugin (nsp);
+    {
+      fprintf(
+        stderr,
+        "%s",
+        "Failed to initialize namestore.  Database likely not setup, skipping test.\n");
+      return;
+    }
+  put_record(nsp, 1);
+  get_record(nsp, 1);
+
+  unload_plugin(nsp);
 }
 
 
 int
-main (int argc, char *argv[])
+main(int argc, char *argv[])
 {
   char cfg_name[PATH_MAX];
-  char *const xargv[] = {"test-plugin-namestore", "-c", cfg_name, NULL};
-  struct GNUNET_GETOPT_CommandLineOption options[] = {GNUNET_GETOPT_OPTION_END};
-
-  GNUNET_log_setup ("test-plugin-namestore", "WARNING", NULL);
-  plugin_name = GNUNET_TESTING_get_testname_from_underscore (argv[0]);
-  GNUNET_snprintf (cfg_name,
-                   sizeof (cfg_name),
-                   "test_plugin_namestore_%s.conf",
-                   plugin_name);
-  GNUNET_DISK_purge_cfg_dir (cfg_name, "GNUNET_TMP");
-  GNUNET_PROGRAM_run ((sizeof (xargv) / sizeof (char *)) - 1,
-                      xargv,
-                      "test-plugin-namestore",
-                      "nohelp",
-                      options,
-                      &run,
-                      NULL);
-  GNUNET_DISK_purge_cfg_dir (cfg_name, "GNUNET_TMP");
+  char *const xargv[] = { "test-plugin-namestore", "-c", cfg_name, NULL };
+  struct GNUNET_GETOPT_CommandLineOption options[] = { GNUNET_GETOPT_OPTION_END };
+
+  GNUNET_log_setup("test-plugin-namestore", "WARNING", NULL);
+  plugin_name = GNUNET_TESTING_get_testname_from_underscore(argv[0]);
+  GNUNET_snprintf(cfg_name,
+                  sizeof(cfg_name),
+                  "test_plugin_namestore_%s.conf",
+                  plugin_name);
+  GNUNET_DISK_purge_cfg_dir(cfg_name, "GNUNET_TMP");
+  GNUNET_PROGRAM_run((sizeof(xargv) / sizeof(char *)) - 1,
+                     xargv,
+                     "test-plugin-namestore",
+                     "nohelp",
+                     options,
+                     &run,
+                     NULL);
+  GNUNET_DISK_purge_cfg_dir(cfg_name, "GNUNET_TMP");
   if (ok != 0)
-    fprintf (stderr, "Missed some testcases: %d\n", ok);
+    fprintf(stderr, "Missed some testcases: %d\n", ok);
   return ok;
 }