gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r29600 - gnunet/src/ats


From: gnunet
Subject: [GNUnet-SVN] r29600 - gnunet/src/ats
Date: Thu, 26 Sep 2013 13:33:37 +0200

Author: wachs
Date: 2013-09-26 13:33:37 +0200 (Thu, 26 Sep 2013)
New Revision: 29600

Added:
   gnunet/src/ats/test_ats_solver_default.conf
Modified:
   gnunet/src/ats/Makefile.am
   gnunet/src/ats/test_ats_solver_add_address.c
   gnunet/src/ats/test_ats_solver_mlp.conf
   gnunet/src/ats/test_ats_solver_proportional.conf
   gnunet/src/ats/test_ats_solver_ril.conf
Log:
new solver specific test


Modified: gnunet/src/ats/Makefile.am
===================================================================
--- gnunet/src/ats/Makefile.am  2013-09-26 11:04:09 UTC (rev 29599)
+++ gnunet/src/ats/Makefile.am  2013-09-26 11:33:37 UTC (rev 29600)
@@ -224,7 +224,8 @@
        
 # solver tests
 test_ats_solver_add_address_proportional_SOURCES = \
- test_ats_solver_add_address.c 
+ test_ats_solver_add_address.c \
+ test_ats_api_common.c test_ats_api_common.h
 test_ats_solver_add_address_proportional_LDADD = \
   $(top_builddir)/src/util/libgnunetutil.la \
   $(top_builddir)/src/testing/libgnunettesting.la \
@@ -234,7 +235,8 @@
        
 if HAVE_LIBGLPK        
 test_ats_solver_add_address_mlp_SOURCES = \
- test_ats_solver_add_address.c 
+ test_ats_solver_add_address.c \
+ test_ats_api_common.c test_ats_api_common.h
 test_ats_solver_add_address_mlp_LDADD = \
   $(top_builddir)/src/util/libgnunetutil.la \
   $(top_builddir)/src/testing/libgnunettesting.la \
@@ -244,7 +246,8 @@
 endif  
                        
 test_ats_solver_add_address_ril_SOURCES = \
- test_ats_solver_add_address.c 
+ test_ats_solver_add_address.c \
+ test_ats_api_common.c test_ats_api_common.h
 test_ats_solver_add_address_ril_LDADD = \
   $(top_builddir)/src/util/libgnunetutil.la \
   $(top_builddir)/src/testing/libgnunettesting.la \
@@ -375,6 +378,7 @@
   ats.h \
   test_ats_api.conf \
   test_ats_mlp.conf \
+  test_ats_solver_default.conf \
   test_ats_solver_proportional.conf \
   test_ats_solver_mlp.conf \
   test_ats_solver_ril.conf 

Modified: gnunet/src/ats/test_ats_solver_add_address.c
===================================================================
--- gnunet/src/ats/test_ats_solver_add_address.c        2013-09-26 11:04:09 UTC 
(rev 29599)
+++ gnunet/src/ats/test_ats_solver_add_address.c        2013-09-26 11:33:37 UTC 
(rev 29600)
@@ -33,20 +33,180 @@
 #include "gnunet_util_lib.h"
 #include "gnunet_testbed_service.h"
 #include "gnunet_ats_service.h"
+#include "test_ats_api_common.h"
 
 /**
- * Result
+ * Timeout task
  */
+static GNUNET_SCHEDULER_TaskIdentifier die_task;
+
+/**
+ * Statistics handle
+ */
+struct GNUNET_STATISTICS_Handle *stats;
+
+/**
+ * Scheduling handle
+ */
+static struct GNUNET_ATS_SchedulingHandle *sched_ats;
+
+/**
+ * Return value
+ */
 static int ret;
 
+/**
+ * Test address
+ */
+static struct Test_Address test_addr;
 
+/**
+ * Test peer
+ */
+static struct PeerContext p;
+
+/**
+ * HELLO address
+ */
+struct GNUNET_HELLO_Address test_hello_address;
+
+/**
+ * Session
+ */
+static void *test_session;
+
+/**
+ * Test ats info
+ */
+struct GNUNET_ATS_Information test_ats_info[2];
+
+/**
+ * Test ats count
+ */
+uint32_t test_ats_count;
+
+
+static int
+stat_cb(void *cls, const char *subsystem, const char *name, uint64_t value,
+        int is_persistent);
+
 static void
+end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
+{
+  GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Done!\n");
+
+  if (die_task != GNUNET_SCHEDULER_NO_TASK)
+  {
+    GNUNET_SCHEDULER_cancel (die_task);
+    die_task = GNUNET_SCHEDULER_NO_TASK;
+  }
+
+  if (NULL != sched_ats)
+  {
+    GNUNET_ATS_scheduling_done (sched_ats);
+    sched_ats = NULL;
+  }
+
+  GNUNET_STATISTICS_watch_cancel (stats, "ats", "# addresses", &stat_cb, NULL);
+  if (NULL != stats)
+  {
+    GNUNET_STATISTICS_destroy (stats, GNUNET_NO);
+    stats = NULL;
+  }
+
+  free_test_address (&test_addr);
+
+  ret = 0;
+}
+
+
+static void
+end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
+{
+  die_task = GNUNET_SCHEDULER_NO_TASK;
+  end ( NULL, NULL);
+  ret = GNUNET_SYSERR;
+}
+
+static void
+address_suggest_cb (void *cls, const struct GNUNET_HELLO_Address *address,
+                    struct Session *session,
+                    struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
+                    struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
+                    const struct GNUNET_ATS_Information *atsi,
+                    uint32_t ats_count)
+{
+  GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Did not expect suggestion 
callback!\n");
+  GNUNET_SCHEDULER_add_now (&end_badly, NULL);
+  return;
+}
+
+
+static int
+stat_cb(void *cls, const char *subsystem,
+        const char *name, uint64_t value,
+        int is_persistent)
+{
+
+  GNUNET_log (GNUNET_ERROR_TYPE_INFO, "ATS statistics: `%s' `%s' %llu\n",
+      subsystem,name, value);
+  if (1 == value)
+  {
+    GNUNET_SCHEDULER_add_now (&end, NULL);
+  }
+  return GNUNET_OK;
+}
+
+static void
 run (void *cls, const struct GNUNET_CONFIGURATION_Handle *mycfg,
     struct GNUNET_TESTING_Peer *peer)
 {
-  ret = 0;
+  die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
+  stats = GNUNET_STATISTICS_create ("ats", mycfg);
+  GNUNET_STATISTICS_watch (stats, "ats", "# addresses", &stat_cb, NULL);
+
+
+  /* Connect to ATS scheduling */
+  sched_ats = GNUNET_ATS_scheduling_init (mycfg, &address_suggest_cb, NULL);
+  if (sched_ats == NULL)
+  {
+    GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not connect to ATS 
scheduling!\n");
+    GNUNET_SCHEDULER_add_now (&end_badly, NULL);
+    return;
+  }
+
+  /* Set up peer */
+  if (GNUNET_SYSERR == GNUNET_CRYPTO_hash_from_string(PEERID0, 
&p.id.hashPubKey))
+  {
+      GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not setup peer!\n");
+      GNUNET_SCHEDULER_add_now (&end_badly, NULL);
+      return;
+  }
+  GNUNET_assert (0 == strcmp (PEERID0, GNUNET_i2s_full (&p.id)));
+
+  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created peer `%s'\n",
+              GNUNET_i2s_full(&p.id));
+
+  /* Prepare ATS Information */
+  test_ats_info[0].type = htonl (GNUNET_ATS_NETWORK_TYPE);
+  test_ats_info[0].value = htonl(GNUNET_ATS_NET_WAN);
+  test_ats_info[1].type = htonl (GNUNET_ATS_QUALITY_NET_DISTANCE);
+  test_ats_info[1].value = htonl(1);
+  test_ats_count = 2;
+
+  /* Adding address without session */
+  test_session = NULL;
+  create_test_address (&test_addr, "test", test_session, "test", strlen 
("test") + 1);
+  test_hello_address.peer = p.id;
+  test_hello_address.transport_name = test_addr.plugin;
+  test_hello_address.address = test_addr.addr;
+  test_hello_address.address_length = test_addr.addr_len;
+
+  /* Adding address */
+  GNUNET_ATS_address_add (sched_ats, &test_hello_address, test_session, 
test_ats_info, test_ats_count);
 }
 
+
 int
 main (int argc, char *argv[])
 {

Added: gnunet/src/ats/test_ats_solver_default.conf
===================================================================
--- gnunet/src/ats/test_ats_solver_default.conf                         (rev 0)
+++ gnunet/src/ats/test_ats_solver_default.conf 2013-09-26 11:33:37 UTC (rev 
29600)
@@ -0,0 +1,7 @@
+[arm]
+PORT = 12001
+DEFAULTSERVICES = ats
+UNIXPATH = /tmp/test-ats-scheduling-arm.sock
+
+[transport]
+AUTOSTART = NO

Modified: gnunet/src/ats/test_ats_solver_mlp.conf
===================================================================
--- gnunet/src/ats/test_ats_solver_mlp.conf     2013-09-26 11:04:09 UTC (rev 
29599)
+++ gnunet/src/ats/test_ats_solver_mlp.conf     2013-09-26 11:33:37 UTC (rev 
29600)
@@ -1,3 +1,5 @@
address@hidden@ test_ats_solver_default.conf
+
 [ats]
 #PREFIX = valgrind --leak-check=yes
 MODE = MLP

Modified: gnunet/src/ats/test_ats_solver_proportional.conf
===================================================================
--- gnunet/src/ats/test_ats_solver_proportional.conf    2013-09-26 11:04:09 UTC 
(rev 29599)
+++ gnunet/src/ats/test_ats_solver_proportional.conf    2013-09-26 11:33:37 UTC 
(rev 29600)
@@ -1,3 +1,5 @@
address@hidden@ test_ats_solver_default.conf
+
 [ats]
 #PREFIX = valgrind --leak-check=yes
 MODE = PROPORTIONAL

Modified: gnunet/src/ats/test_ats_solver_ril.conf
===================================================================
--- gnunet/src/ats/test_ats_solver_ril.conf     2013-09-26 11:04:09 UTC (rev 
29599)
+++ gnunet/src/ats/test_ats_solver_ril.conf     2013-09-26 11:33:37 UTC (rev 
29600)
@@ -1,3 +1,5 @@
address@hidden@ test_ats_solver_default.conf
+
 [ats]
 #PREFIX = valgrind --leak-check=yes
 MODE = RIL




reply via email to

[Prev in Thread] Current Thread [Next in Thread]