-fix
[oweals/gnunet.git] / src / gns / test_gns_pseu_shorten.c
index f181f0cc7123f408c38e019bbe58f447c493cafa..cae454047e46db3ecf0f78dd42af90109ad0f62d 100644 (file)
@@ -23,7 +23,7 @@
  *
  */
 #include "platform.h"
-#include "gnunet_testing_lib.h"
+#include "gnunet_testing_lib-new.h"
 #include "gnunet_core_service.h"
 #include "block_gns.h"
 #include "gnunet_signatures.h"
@@ -43,7 +43,7 @@
 #define DEFAULT_NUM_PEERS 2
 
 /* test records to resolve */
-#define TEST_DOMAIN "www.alicewonderland.bobbuilder.gnunet"
+#define TEST_DOMAIN "www.alicewonderland.bobbuilder.gads"
 #define TEST_IP "127.0.0.1"
 #define TEST_RECORD_NAME "www"
 
@@ -52,7 +52,7 @@
 #define TEST_AUTHORITY_BOB "bobbuilder"
 #define TEST_AUTHORITY_ALICE "alicewonderland"
 #define TEST_PSEU_ALICE "carol"
-#define TEST_EXPECTED_RESULT "www.carol.short.private.gnunet"
+#define TEST_EXPECTED_RESULT "www.carol.short.private.gads"
 
 #define DHT_OPERATION_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 30)
 
 
 /* Globals */
 
-/**
- * Directory to store temp data in, defined in config file
- */
-static char *test_directory;
-
-static struct GNUNET_TESTING_PeerGroup *pg;
-
 /* Task handle to use to schedule test failure */
 static GNUNET_SCHEDULER_TaskIdentifier die_task;
 
-static GNUNET_SCHEDULER_TaskIdentifier disco_task;
-
 /* Global return value (0 for success, anything else for failure) */
 static int ok;
 
@@ -102,36 +93,44 @@ struct GNUNET_CRYPTO_ShortHashCode our_zone;
 struct GNUNET_CRYPTO_ShortHashCode priv_zone;
 struct GNUNET_CRYPTO_ShortHashCode short_zone;
 
+
 /**
- * Check whether peers successfully shut down.
+ * Check if the get_handle is being used, if so stop the request.  Either
+ * way, schedule the end_badly_cont function which actually shuts down the
+ * test.
  */
-void
-shutdown_callback (void *cls, const char *emsg)
+static void
+end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
 {
-  if (disco_task != GNUNET_SCHEDULER_NO_TASK)
+  die_task = GNUNET_SCHEDULER_NO_TASK;
+  if (NULL != gns_handle)
   {
-    disco_task = GNUNET_SCHEDULER_NO_TASK;
-    GNUNET_SCHEDULER_cancel(disco_task);
-    GNUNET_DHT_disconnect(dht_handle);
-    dht_handle = NULL;
+    GNUNET_GNS_disconnect(gns_handle);
+    gns_handle = NULL;
+  }
+
+  if (NULL != namestore_handle)
+  {
+    GNUNET_NAMESTORE_disconnect (namestore_handle);
+    namestore_handle = NULL;
   }
 
-  if (emsg != NULL)
+  if (NULL != dht_handle)
   {
-    GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Error on shutdown! ret=%d\n", ok);
-    if (ok == 0)
-      ok = 2;
+    GNUNET_DHT_disconnect (dht_handle);
+    dht_handle = NULL;
   }
 
-  GNUNET_log (GNUNET_ERROR_TYPE_INFO, "done(ret=%d)!\n", ok);
+  GNUNET_break (0);
+  GNUNET_SCHEDULER_shutdown ();
+  ok = 1;
 }
 
 static void
-disco_dht(void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
+end_badly_now ()
 {
-  disco_task = GNUNET_SCHEDULER_NO_TASK;
-  GNUNET_DHT_disconnect(dht_handle);
-  dht_handle = NULL;
+  GNUNET_SCHEDULER_cancel (die_task);
+  die_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
 }
 
 /**
@@ -140,9 +139,24 @@ disco_dht(void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
 static void
 process_shorten_result(void* cls, const char* sname)
 {
-  GNUNET_GNS_disconnect(gns_handle);
-  //GNUNET_SCHEDULER_add_now(disco_dht, NULL);
-  ok = 0;
+
+  if (GNUNET_SCHEDULER_NO_TASK != die_task)
+  {
+      GNUNET_SCHEDULER_cancel (die_task);
+      die_task = GNUNET_SCHEDULER_NO_TASK;
+  }
+
+  if (NULL != gns_handle)
+  {
+    GNUNET_GNS_disconnect(gns_handle);
+    gns_handle = NULL;
+  }
+
+  if (NULL != dht_handle)
+  {
+    GNUNET_DHT_disconnect (dht_handle);
+    dht_handle = NULL;
+  }
 
   if (sname == NULL)
   {
@@ -158,25 +172,16 @@ process_shorten_result(void* cls, const char* sname)
     {
       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                   "shorten test failed! (wanted: %s got: %s\n",
-                  (char*)cls, sname);
+                  TEST_EXPECTED_RESULT, sname);
       ok = 1;
     }
 
     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "shorten test succeeded!\n");
   }
-
-  GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Shutting down peer1!\n");
-  GNUNET_TESTING_daemons_stop (pg, TIMEOUT, &shutdown_callback, NULL);
+  GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Shutting down peer!\n");
+  GNUNET_SCHEDULER_shutdown ();
 }
 
-static void
-do_shorten(void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
-{
-  GNUNET_GNS_shorten_zone (gns_handle, TEST_DOMAIN,
-                     &our_zone,
-                     &process_shorten_result,
-                     TEST_DOMAIN);
-}
 
 static void
 on_lookup_result(void *cls, uint32_t rd_count,
@@ -199,7 +204,7 @@ on_lookup_result(void *cls, uint32_t rd_count,
     for (i=0; i<rd_count; i++)
     {
       GNUNET_log (GNUNET_ERROR_TYPE_INFO, "type: %d\n", rd[i].record_type);
-      if (rd[i].record_type == GNUNET_GNS_RECORD_TYPE_A)
+      if (rd[i].record_type == GNUNET_GNS_RECORD_A)
       {
         memcpy(&a, rd[i].data, sizeof(a));
         addr = inet_ntoa(a);
@@ -217,8 +222,12 @@ on_lookup_result(void *cls, uint32_t rd_count,
       }
     }
   }
-  
-  GNUNET_SCHEDULER_add_delayed (TIMEOUT, &do_shorten, NULL);
+  GNUNET_GNS_shorten_zone (gns_handle, TEST_DOMAIN,
+                           &priv_zone,
+                           &short_zone,
+                           &our_zone,
+                           &process_shorten_result,
+                           TEST_DOMAIN);
 }
 
 
@@ -229,15 +238,15 @@ on_lookup_result(void *cls, uint32_t rd_count,
 static void
 commence_testing (void *cls, int success)
 {
-  GNUNET_SCHEDULER_add_now(disco_dht, NULL);
-  //GNUNET_DHT_disconnect(dht_handle);
 
   GNUNET_CRYPTO_rsa_key_free(our_key);
   GNUNET_CRYPTO_rsa_key_free(bob_key);
   GNUNET_CRYPTO_rsa_key_free(alice_key);
 
-  gns_handle = GNUNET_GNS_connect(cfg);
+  GNUNET_NAMESTORE_disconnect (namestore_handle);
+  namestore_handle = NULL;
 
+  gns_handle = GNUNET_GNS_connect(cfg);
   if (NULL == gns_handle)
   {
     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
@@ -246,34 +255,12 @@ commence_testing (void *cls, int success)
 
   GNUNET_GNS_lookup_zone (gns_handle, TEST_DOMAIN,
                           &our_zone,
-                          GNUNET_GNS_RECORD_TYPE_A,
+                          GNUNET_GNS_RECORD_A,
                           GNUNET_NO,
                           short_key,
                           &on_lookup_result, TEST_DOMAIN);
 }
 
-/**
- * Continuation for the GNUNET_DHT_get_stop call, so that we don't shut
- * down the peers without freeing memory associated with GET request.
- */
-static void
-end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
-{
-  GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failing test with error: `%s'!\n",
-              (char *) cls);
-  ok = 1;
-  
-  if (disco_task != GNUNET_SCHEDULER_NO_TASK)
-  {
-    disco_task = GNUNET_SCHEDULER_NO_TASK;
-    GNUNET_SCHEDULER_cancel(disco_task);
-    GNUNET_DHT_disconnect(dht_handle);
-    dht_handle = NULL;
-  }
-  if (pg != NULL)
-    GNUNET_TESTING_daemons_stop (pg, TIMEOUT, &shutdown_callback, NULL);
-  GNUNET_SCHEDULER_cancel (die_task);
-}
 
 static void
 put_pseu_dht(void *cls, int success)
@@ -327,14 +314,12 @@ put_pseu_dht(void *cls, int success)
   {
     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Record serialization failed!\n");
     ok = 3;
-    GNUNET_DHT_disconnect(dht_handle);
-    
-    
     GNUNET_CRYPTO_rsa_key_free(our_key);
     GNUNET_CRYPTO_rsa_key_free(bob_key);
     GNUNET_CRYPTO_rsa_key_free(alice_key);
     GNUNET_free(sig);
     GNUNET_free (nrb);
+    end_badly_now ();
     return;
   }
   GNUNET_CRYPTO_short_hash("+", strlen("+"), &name_hash);
@@ -351,7 +336,7 @@ put_pseu_dht(void *cls, int success)
 
   GNUNET_DHT_put (dht_handle, &xor_hash,
                   0,
-                  GNUNET_DHT_RO_NONE,
+                  GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE,
                   GNUNET_BLOCK_TYPE_GNS_NAMERECORD,
                   rd_payload_length,
                   (char*)nrb,
@@ -416,13 +401,13 @@ put_www_dht(void *cls, int success)
   {
     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Record serialization failed!\n");
     ok = 3;
-    GNUNET_DHT_disconnect(dht_handle);
-    
     GNUNET_CRYPTO_rsa_key_free(our_key);
     GNUNET_CRYPTO_rsa_key_free(bob_key);
     GNUNET_CRYPTO_rsa_key_free(alice_key);
+    GNUNET_free (sig);
     GNUNET_free(web);
     GNUNET_free (nrb);
+    end_badly_now();
     return;
   }
   GNUNET_CRYPTO_short_hash(TEST_RECORD_NAME, strlen(TEST_RECORD_NAME), &name_hash);
@@ -438,7 +423,7 @@ put_www_dht(void *cls, int success)
 
   GNUNET_DHT_put (dht_handle, &xor_hash,
                   0,
-                  GNUNET_DHT_RO_NONE,
+                  GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE,
                   GNUNET_BLOCK_TYPE_GNS_NAMERECORD,
                   rd_payload_length,
                   (char*)nrb,
@@ -446,8 +431,8 @@ put_www_dht(void *cls, int success)
                   DHT_OPERATION_TIMEOUT,
                   &put_pseu_dht,
                   NULL);
-
-  GNUNET_free(web);
+  GNUNET_free (sig);
+  GNUNET_free (web);
   GNUNET_free (nrb);
 }
 
@@ -478,12 +463,6 @@ put_pkey_dht(void *cls, int32_t success, const char *emsg)
                                           &rd,
                                           1);
 
-  GNUNET_break (GNUNET_OK == GNUNET_NAMESTORE_verify_signature (&bob_pkey,
-                                                                 GNUNET_TIME_UNIT_FOREVER_ABS,
-                                                                 TEST_AUTHORITY_ALICE,
-                                                                 1,
-                                                                 &rd,
-                                                                 sig));
   rd_payload_length = GNUNET_NAMESTORE_records_get_size (1, &rd);
   nrb = GNUNET_malloc(rd_payload_length + strlen(TEST_AUTHORITY_ALICE) + 1
                       + sizeof(struct GNSNameRecordBlock));
@@ -503,11 +482,12 @@ put_pkey_dht(void *cls, int32_t success, const char *emsg)
     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Record serialization failed!\n");
     ok = 3;
     
-    GNUNET_CRYPTO_rsa_key_free(our_key);
-    GNUNET_CRYPTO_rsa_key_free(bob_key);
-    GNUNET_CRYPTO_rsa_key_free(alice_key);
-    GNUNET_free(sig);
+    GNUNET_CRYPTO_rsa_key_free (our_key);
+    GNUNET_CRYPTO_rsa_key_free (bob_key);
+    GNUNET_CRYPTO_rsa_key_free (alice_key);
+    GNUNET_free (sig);
     GNUNET_free (nrb);
+    end_badly_now ();
     return;
   }
 
@@ -525,7 +505,7 @@ put_pkey_dht(void *cls, int32_t success, const char *emsg)
     strlen(TEST_AUTHORITY_ALICE) + 1;
   GNUNET_DHT_put (dht_handle, &xor_hash,
                   0,
-                  GNUNET_DHT_RO_NONE,
+                  GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE,
                   GNUNET_BLOCK_TYPE_GNS_NAMERECORD,
                   rd_payload_length,
                   (char*)nrb,
@@ -533,7 +513,7 @@ put_pkey_dht(void *cls, int32_t success, const char *emsg)
                   DHT_OPERATION_TIMEOUT,
                   &put_www_dht,
                   NULL);
-  GNUNET_NAMESTORE_disconnect (namestore_handle);
+  GNUNET_free (sig);
   GNUNET_free (nrb);
 }
 
@@ -576,25 +556,23 @@ cont_init_zone (void *cls, int32_t success, const char *emsg)
 }
 
 static void
-do_lookup (void *cls, const struct GNUNET_PeerIdentity *id,
-           const struct GNUNET_CONFIGURATION_Handle *_cfg,
-           struct GNUNET_TESTING_Daemon *d, const char *emsg)
+do_check (void *cls,
+          const struct GNUNET_CONFIGURATION_Handle *ccfg,
+          struct GNUNET_TESTING_Peer *peer)
 {
-  
   char* private_keyfile;
   char* shorten_keyfile;
   char* our_keyfile;
   
-  cfg = _cfg;
-
-  GNUNET_SCHEDULER_cancel (die_task);
+  cfg = ccfg;
+  die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
 
   /* put records into namestore */
   namestore_handle = GNUNET_NAMESTORE_connect(cfg);
   if (NULL == namestore_handle)
   {
     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to connect to namestore\n");
-    ok = -1;
+    end_badly_now();
     return;
   }
   
@@ -603,7 +581,7 @@ do_lookup (void *cls, const struct GNUNET_PeerIdentity *id,
   if (NULL == dht_handle)
   {
     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to connect to dht\n");
-    ok = -1;
+    end_badly_now();
     return;
   }
 
@@ -612,7 +590,7 @@ do_lookup (void *cls, const struct GNUNET_PeerIdentity *id,
                                                           &our_keyfile))
   {
     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to get key from cfg\n");
-    ok = -1;
+    end_badly_now();
     return;
   }
   
@@ -622,7 +600,7 @@ do_lookup (void *cls, const struct GNUNET_PeerIdentity *id,
   {
     GNUNET_log(GNUNET_ERROR_TYPE_ERROR,
                "Failed to get shorten zone key from cfg\n");
-    ok = -1;
+    end_badly_now();
     return;
   }
   
@@ -632,7 +610,7 @@ do_lookup (void *cls, const struct GNUNET_PeerIdentity *id,
   {
     GNUNET_log(GNUNET_ERROR_TYPE_ERROR,
                "Failed to get private zone key from cfg\n");
-    ok = -1;
+    end_badly_now();
     return;
   }
   our_key = GNUNET_CRYPTO_rsa_key_create_from_file (our_keyfile);
@@ -669,74 +647,12 @@ do_lookup (void *cls, const struct GNUNET_PeerIdentity *id,
                                   &rd,
                                   &cont_init_zone,
                                   NULL);
-
-
-
-
-}
-
-static void
-run (void *cls, char *const *args, const char *cfgfile,
-     const struct GNUNET_CONFIGURATION_Handle *c)
-{
-  cfg = c;
-   /* Get path from configuration file */
-  if (GNUNET_YES !=
-      GNUNET_CONFIGURATION_get_value_string (cfg, "paths", "servicehome",
-                                             &test_directory))
-  {
-    ok = 404;
-    return;
-  }
-
-    
-  /* Set up a task to end testing if peer start fails */
-  die_task =
-      GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly,
-                                    "didn't start all daemons in reasonable amount of time!!!");
-  
-  /* Start alice */
-  //d1 = GNUNET_TESTING_daemon_start(cfg, TIMEOUT, GNUNET_NO, NULL, NULL, 0,
-  //                                 NULL, NULL, NULL, &do_lookup, NULL);
-  pg = GNUNET_TESTING_daemons_start(cfg, 1, 1, 1, TIMEOUT,
-                                    NULL, NULL, &do_lookup, NULL,
-                                    NULL, NULL, NULL);
-}
-
-static int
-check ()
-{
-  int ret;
-
-  /* Arguments for GNUNET_PROGRAM_run */
-  char *const argv[] = { "test-gns-pseu-shorten", /* Name to give running binary */
-    "-c",
-    "test_gns_simple_lookup.conf",       /* Config file to use */
-#if VERBOSE
-    "-L", "DEBUG",
-#endif
-    NULL
-  };
-  struct GNUNET_GETOPT_CommandLineOption options[] = {
-    GNUNET_GETOPT_OPTION_END
-  };
-  /* Run the run function as a new program */
-  ret =
-      GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv,
-                          "test-gns-pseu-shorten", "nohelp", options, &run,
-                          &ok);
-  if (ret != GNUNET_OK)
-  {
-    GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
-                "`test-gns-pseu-shorten': Failed with error code %d\n", ret);
-  }
-  return ok;
 }
 
 int
 main (int argc, char *argv[])
 {
-  int ret;
+  ok = 1;
 
   GNUNET_log_setup ("test-gns-pseu-shorten",
 #if VERBOSE
@@ -745,12 +661,8 @@ main (int argc, char *argv[])
                     "WARNING",
 #endif
                     NULL);
-  ret = check ();
-  /**
-   * Need to remove base directory, subdirectories taken care
-   * of by the testing framework.
-   */
-  return ret;
+  GNUNET_TESTING_peer_run ("test-gns-pseu-shorten", "test_gns_simple_lookup.conf", &do_check, NULL);
+  return ok;
 }
 
-/* end of test_gns_twopeer.c */
+/* end of test_gns_pseu_shorten.c */