working version
[oweals/gnunet.git] / src / arm / test_gnunet_service_manager.c
index 454fa0e9875cf49e0ddcb5041594ed656628d646..4f863ed19674acdc85952338a25bd53b82243d03 100644 (file)
@@ -4,7 +4,7 @@
 
      GNUnet 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, or (at your
+     by the Free Software Foundation; either version 3, or (at your
      option) any later version.
 
      GNUnet is distributed in the hope that it will be useful, but
@@ -25,6 +25,7 @@
 #include "platform.h"
 #include "gnunet_arm_service.h"
 #include "gnunet_resolver_service.h"
+#include "gnunet_os_lib.h"
 #include "gnunet_program_lib.h"
 
 /**
@@ -42,7 +43,6 @@
 
 static int ret = 1;
 
-static struct GNUNET_SCHEDULER_Handle *sched;
 
 static const struct GNUNET_CONFIGURATION_Handle *cfg;
 
@@ -53,32 +53,36 @@ static struct GNUNET_ARM_Handle *arm;
 static void
 arm_stopped (void *cls, int success)
 {
-  if (success != GNUNET_NO)       
-    {
-      GNUNET_break (0);
-      ret = 4;
-    }
+  if (success != GNUNET_NO)
+  {
+    GNUNET_break (0);
+    ret = 4;
+  }
+  else
+  {
+    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "ARM stopped\n");
+  }
+#if START_ARM
   GNUNET_ARM_disconnect (arm);
   arm = NULL;
+#endif
 }
 
-static void 
-hostNameResolveCB(void *cls, 
-                 const struct sockaddr *addr, 
-                 socklen_t addrlen)
+static void
+hostNameResolveCB (void *cls, const struct sockaddr *addr, socklen_t addrlen)
 {
-  if ( (ret == 0) || (ret == 4) )
+  if ((ret == 0) || (ret == 4))
     return;
   if (NULL == addr)
-    {
-      GNUNET_log (GNUNET_ERROR_TYPE_ERROR, 
-                 "Name not resolved!\n");
+  {
+    GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Name not resolved!\n");
 #if START_ARM
-      GNUNET_ARM_stop_service (arm, "arm", TIMEOUT, &arm_stopped, NULL);
+    GNUNET_ARM_stop_service (arm, "arm", TIMEOUT, &arm_stopped, NULL);
 #endif
-      ret = 3;
-      return;
-    }  
+    ret = 3;
+    return;
+  }
+  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Resolved hostname, now stopping ARM\n");
   ret = 0;
 #if START_ARM
   GNUNET_ARM_stop_service (arm, "arm", TIMEOUT, &arm_stopped, NULL);
@@ -90,39 +94,34 @@ static void
 arm_notify (void *cls, int success)
 {
   if (success != GNUNET_YES)
-    {
-      GNUNET_break (0);
-      ret = 1;
-      return;
-    }
+  {
+    GNUNET_break (0);
+    ret = 1;
+    return;
+  }
+  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Trying to resolve our own hostname!\n");
   /* connect to the resolver service */
-  if (NULL == GNUNET_RESOLVER_hostname_resolve (sched,
-                                               cfg, AF_UNSPEC,
-                                               TIMEOUT,
-                                               &hostNameResolveCB,
-                                               NULL))
-    {
-      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
-                 "Unable to resolve our own hostname!\n");
-      ret = 2;
+  if (NULL ==
+      GNUNET_RESOLVER_hostname_resolve (AF_UNSPEC, TIMEOUT, &hostNameResolveCB,
+                                        NULL))
+  {
+    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
+                "Unable initiate connection to resolver service\n");
+    ret = 2;
 #if START_ARM
-      GNUNET_ARM_stop_service (arm, "arm", TIMEOUT, &arm_stopped, NULL);
+    GNUNET_ARM_stop_service (arm, "arm", TIMEOUT, &arm_stopped, NULL);
 #endif
-    }
+  }
 }
 
 
 static void
-run(void *cls, 
-    struct GNUNET_SCHEDULER_Handle *s, 
-    char * const *args,
-    const char *cfgfile, 
-    const struct GNUNET_CONFIGURATION_Handle *c)
+run (void *cls, char *const *args, const char *cfgfile,
+     const struct GNUNET_CONFIGURATION_Handle *c)
 {
   cfg = c;
-  sched = s;   
 #if START_ARM
-  arm = GNUNET_ARM_connect (cfg, sched, NULL);
+  arm = GNUNET_ARM_connect (cfg, NULL);
   GNUNET_ARM_start_service (arm, "arm", START_TIMEOUT, &arm_notify, NULL);
 #else
   arm_notify (NULL, GNUNET_YES);
@@ -131,7 +130,7 @@ run(void *cls,
 
 
 static void
-check()
+check ()
 {
   char *const argv[] = {
     "test-gnunet-service-manager",
@@ -145,23 +144,39 @@ check()
     GNUNET_GETOPT_OPTION_END
   };
   GNUNET_assert (GNUNET_OK ==
-                GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1,
-                                    argv,
-                                    "test-gnunet-service-manager",
-                                    "nohelp", options, &run, NULL));
+                 GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1,
+                                     argv, "test-gnunet-service-manager",
+                                     "nohelp", options, &run, NULL));
 }
 
 
 int
 main (int argc, char *argv[])
 {
-  GNUNET_log_setup("test-gnunet-service-manager",
+  char hostname[GNUNET_OS_get_hostname_max_length () + 1];
+
+  if (0 != gethostname (hostname, sizeof (hostname) - 1))
+  {
+    GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR | GNUNET_ERROR_TYPE_BULK,
+                         "gethostname");
+    fprintf (stderr,
+             "Failed to determine my own hostname, testcase not run.\n");
+    return 0;
+  }
+  if (NULL == gethostbyname (hostname))
+  {
+    fprintf (stderr, "Failed to resolve my hostname `%s', testcase not run.\n",
+             hostname);
+    return 0;
+  }
+
+  GNUNET_log_setup ("test-gnunet-service-manager",
 #if VERBOSE
-                  "DEBUG",
+                    "DEBUG",
 #else
-                  "WARNING",
+                    "WARNING",
 #endif
-                  NULL);
-  check();
+                    NULL);
+  check ();
   return ret;
 }