uncrustify as demanded.
[oweals/gnunet.git] / src / testbed / test_testbed_api_peers_manage_services.c
index c5e2b2646f3f1b0d89f63996909741d96d404c5a..d6597890fb1221461044ca817c336ded1cb8a415 100644 (file)
@@ -11,7 +11,7 @@
       WITHOUT ANY WARRANTY; without even the implied warranty of
       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
       Affero General Public License for more details.
-     
+
       You should have received a copy of the GNU Affero General Public License
       along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
@@ -47,7 +47,7 @@ static struct GNUNET_TESTBED_Operation *op;
 /**
  * dummy pointer
  */
-static void *dummy_cls = (void *) 0xDEAD0001;
+static void *dummy_cls = (void *)0xDEAD0001;
 
 /**
  * Abort task identifier
@@ -58,7 +58,6 @@ static struct GNUNET_SCHEDULER_Task * abort_task;
  * States in this test
  */
 enum {
-
   /**
    * Test has just been initialized
    */
@@ -89,13 +88,13 @@ enum {
  * Fail testcase
  */
 #define FAIL_TEST(cond, ret) do {                               \
-    if (!(cond)) {                                              \
-      GNUNET_break(0);                                          \
-      if (NULL != abort_task)               \
-        GNUNET_SCHEDULER_cancel (abort_task);                   \
-      abort_task = GNUNET_SCHEDULER_add_now (&do_abort, NULL);  \
-      ret;                                                      \
-    }                                                           \
+      if (!(cond)) {                                              \
+          GNUNET_break(0);                                          \
+          if (NULL != abort_task)               \
+          GNUNET_SCHEDULER_cancel (abort_task);                   \
+          abort_task = GNUNET_SCHEDULER_add_now(&do_abort, NULL);  \
+          ret;                                                      \
+        }                                                           \
   } while (0)
 
 
@@ -105,15 +104,15 @@ enum {
  * @param cls NULL
  */
 static void
-do_abort (void *cls)
+do_abort(void *cls)
 {
-  GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Aborting\n");
+  GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Aborting\n");
   abort_task = NULL;
   if (NULL != op)
-  {
-    GNUNET_TESTBED_operation_done (op);
-    op = NULL;
-  }
+    {
+      GNUNET_TESTBED_operation_done(op);
+      op = NULL;
+    }
   GNUNET_SCHEDULER_shutdown();
 }
 
@@ -127,36 +126,38 @@ do_abort (void *cls)
  *          operation has executed successfully.
  */
 static void
-op_comp_cb (void *cls,
-            struct GNUNET_TESTBED_Operation *op,
-            const char *emsg)
+op_comp_cb(void *cls,
+           struct GNUNET_TESTBED_Operation *op,
+           const char *emsg)
 {
-  FAIL_TEST (cls == dummy_cls, return);
-  FAIL_TEST (NULL == emsg, return);
-  GNUNET_TESTBED_operation_done (op);
+  FAIL_TEST(cls == dummy_cls, return );
+  FAIL_TEST(NULL == emsg, return );
+  GNUNET_TESTBED_operation_done(op);
   op = NULL;
   switch (state)
-  {
-  case STATE_PEERS_STARTED:
-    state = STATE_SERVICE_DOWN;
-    op = GNUNET_TESTBED_peer_manage_service (dummy_cls,
-                                             peers[1],
-                                             "topology",
-                                             op_comp_cb,
-                                             dummy_cls,
-                                             0);
-    GNUNET_assert (NULL != op);
-    break;
-  case STATE_SERVICE_DOWN:
-    state = STATE_SERVICE_UP;
-    GNUNET_SCHEDULER_cancel (abort_task);
-    abort_task = NULL;
-    state = STATE_OK;
-    GNUNET_SCHEDULER_shutdown ();
-    break;
-  default:
-    FAIL_TEST (0, return);
-  }
+    {
+    case STATE_PEERS_STARTED:
+      state = STATE_SERVICE_DOWN;
+      op = GNUNET_TESTBED_peer_manage_service(dummy_cls,
+                                              peers[1],
+                                              "topology",
+                                              op_comp_cb,
+                                              dummy_cls,
+                                              0);
+      GNUNET_assert(NULL != op);
+      break;
+
+    case STATE_SERVICE_DOWN:
+      state = STATE_SERVICE_UP;
+      GNUNET_SCHEDULER_cancel(abort_task);
+      abort_task = NULL;
+      state = STATE_OK;
+      GNUNET_SCHEDULER_shutdown();
+      break;
+
+    default:
+      FAIL_TEST(0, return );
+    }
 }
 
 
@@ -173,26 +174,26 @@ op_comp_cb (void *cls,
  *          failed
  */
 static void
-test_master (void *cls,
-             struct GNUNET_TESTBED_RunHandle *h,
-             unsigned int num_peers,
-             struct GNUNET_TESTBED_Peer **peers_,
-             unsigned int links_succeeded,
-             unsigned int links_failed)
+test_master(void *cls,
+            struct GNUNET_TESTBED_RunHandle *h,
+            unsigned int num_peers,
+            struct GNUNET_TESTBED_Peer **peers_,
+            unsigned int links_succeeded,
+            unsigned int links_failed)
 {
-  FAIL_TEST (NUM_PEERS == num_peers, return);
+  FAIL_TEST(NUM_PEERS == num_peers, return );
   state = STATE_PEERS_STARTED;
   peers = peers_;
-  op = GNUNET_TESTBED_peer_manage_service (dummy_cls,
-                                           peers[1],
-                                           "topology",
-                                           op_comp_cb,
-                                           dummy_cls,
-                                           1);
-  FAIL_TEST (NULL != op, return);
-  abort_task = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
-                                             (GNUNET_TIME_UNIT_MINUTES, 1),
-                                             &do_abort, NULL);
+  op = GNUNET_TESTBED_peer_manage_service(dummy_cls,
+                                          peers[1],
+                                          "topology",
+                                          op_comp_cb,
+                                          dummy_cls,
+                                          1);
+  FAIL_TEST(NULL != op, return );
+  abort_task = GNUNET_SCHEDULER_add_delayed(GNUNET_TIME_relative_multiply
+                                              (GNUNET_TIME_UNIT_MINUTES, 1),
+                                            &do_abort, NULL);
 }
 
 
@@ -200,14 +201,14 @@ test_master (void *cls,
  * Main function
  */
 int
-main (int argc, char **argv)
+main(int argc, char **argv)
 {
   state = STATE_INIT;
-  (void) GNUNET_TESTBED_test_run ("test_testbed_api_peers_manage_services",
-                                  "test_testbed_api.conf",
-                                  NUM_PEERS,
-                                  1LL, NULL, NULL,
-                                  &test_master, NULL);
+  (void)GNUNET_TESTBED_test_run("test_testbed_api_peers_manage_services",
+                                "test_testbed_api.conf",
+                                NUM_PEERS,
+                                1LL, NULL, NULL,
+                                &test_master, NULL);
   if (STATE_OK != state)
     return 1;
   return 0;