Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
when using doubles, %lg should be used for scanf and %g for printf (which is
[simgrid.git] / testsuite / xbt / config_usage.c
index 05a605f..8856684 100644 (file)
@@ -2,91 +2,93 @@
 
 /* test config - test code to the config set */
 
+/* Copyright (c) 2004 Martin Quinson. All rights reserved.                  */
+
+/* This program is free software; you can redistribute it and/or modify it
+ * under the terms of the license (GNU LGPL) which comes with this package. */
+
 #include <stdio.h>
-#include <gras.h>
+#include "gras.h"
 
 /*====[ Prototypes ]=========================================================*/
-gras_cfg_t *make_set(void); /* build a minimal set */
-int test3(void); /* validate=>not enought */
-int test4(void); /* validate=> too many */
-int test5(void); /* get users list */
-
+xbt_cfg_t make_set(void); /* build a minimal set */
 
 /*====[ Code ]===============================================================*/
-gras_cfg_t *make_set(){
-  gras_cfg_t *set=NULL; 
-  gras_error_t errcode;
-
-  TRYFAIL(gras_cfg_new(&set));
-  gras_cfg_register_str(set,"hostname:1_to_1_string");
-  gras_cfg_register_str(set,"user:1_to_10_string");
-  gras_cfg_register_str(set,"speed:1_to_1_int");
-
-  gras_cfg_set_parse(set,
-                  "hostname:veloce "
-                  "user:mquinson\nuser:ecaron\tuser:fsuter");
-  return set;
-}
+xbt_cfg_t make_set(){
+  xbt_cfg_t set=NULL; 
+  xbt_error_t errcode;
 
+  set = xbt_cfg_new();
+  TRYFAIL(xbt_cfg_register_str(set,"speed:1_to_2_int"));
+  TRYFAIL(xbt_cfg_register_str(set,"hostname:1_to_1_string"));
+  TRYFAIL(xbt_cfg_register_str(set,"user:1_to_10_string"));
 
-/*----[ get users list ]-----------------------------------------------------*/
-int test5()
-{
-  gras_dynar_t *dyn;
-  char *str;
-  int i;
-
-  gras_cfg_t *set=make_set();
-  gras_cfg_set_parse(set,"speed:42");
-  gras_cfg_check(set);
-  gras_cfg_get_dynar(set,"user",&dyn);
-  printf("Count: %d; Options: \n",gras_dynar_length(dyn));
-  gras_dynar_foreach(dyn,i,str) {
-    printf("%s\n",str);
-  }
-  gras_cfg_free(&set);
-  return 1;
+  TRYFAIL(xbt_cfg_set_parse(set, "hostname:veloce "
+                            "user:mquinson\nuser:oaumage\tuser:alegrand"));
+  return set;
 }
  
-int main() {
-  gras_error_t errcode;
-  gras_cfg_t *set;
+int main(int argc, char **argv) {
+  xbt_error_t errcode;
+  xbt_cfg_t set;
+
+  xbt_dynar_t dyn;
+  char *str;
   int ival;
   
-  gras_log_control_set("config.thresh=debug root.thresh=info");
+  xbt_init_defaultlog(&argc,argv,"config.thresh=debug root.thresh=info");
 
   fprintf(stderr,"==== Alloc and free a config set.\n");
   set=make_set();
-  gras_cfg_dump("test set","",set);
-  gras_cfg_free(&set);
+  xbt_cfg_dump("test set","",set);
+  xbt_cfg_free(&set);
+  xbt_cfg_free(&set);
 
 
-  fprintf(stderr,"==== Try to use an unregistered option (err msg expected).\n");
+  fprintf(stderr,"==== Try to use an unregistered option. (ERROR EXPECTED: 'color' not registered)\n");
   set=make_set();
-  TRYEXPECT(mismatch_error,gras_cfg_set_parse(set,"color:blue"));
-  gras_cfg_free(&set);
+  TRYEXPECT(mismatch_error,xbt_cfg_set_parse(set,"color:blue"));
+  xbt_cfg_free(&set);
+  xbt_cfg_free(&set);
 
 
   fprintf(stderr,
-         "\n==== Validation test (err msg about not enough values expected)\n");
+         "==== Validation test. (ERROR EXPECTED: not enough values of 'speed')\n");
+  set=make_set();
+  xbt_cfg_check(set);
+  xbt_cfg_free(&set);
+  xbt_cfg_free(&set);
+
+  fprintf(stderr,"==== Validation test (ERROR EXPECTED: too many elements)\n");
   set=make_set();
-  gras_cfg_check(set);
-  gras_cfg_free(&set);
+  xbt_cfg_set_parse(set,"hostname:toto:42");
+  xbt_cfg_set_parse(set,"speed:42 speed:24 speed:34");
+  xbt_cfg_check(set);
+  xbt_cfg_free(&set);
+  xbt_cfg_free(&set);
 
-  fprintf(stderr,"\n==== Validation test (too many elements)\n");
+  fprintf(stderr,"==== Get single value (Expected: 'speed value: 42')\n");
   set=make_set();
-  gras_cfg_set_parse(set,"hostname:toto:42");
-  gras_cfg_set_parse(set,"speed:42 speed:24");
-  gras_cfg_check(set);
-  gras_cfg_get_int(set,"speed",&ival);
-  printf("speed value: %d\n",ival);
-  gras_cfg_free(&set);
-
-  fprintf(stderr,"\n§§§§§§§§§ %s §§§§§§§§§\n§§§ Expected: %s\n",
-        "TEST5",
-        "Count: 3; Options:\\nmquinson\\necaron\\nfsuter");
-  test5();
+  xbt_cfg_set_parse(set,"hostname:toto:42 speed:42");
+  xbt_cfg_get_int(set,"speed",&ival);
+  fprintf(stderr,"speed value: %d\n",ival); 
+  xbt_cfg_free(&set);
+  xbt_cfg_free(&set);
+
+  fprintf(stderr,"==== Get multiple values (Expected: 'Count: 3; Options: mquinson;ecaron;alegrand;')\n");
+  set=make_set();
+  xbt_cfg_set_parse(set,"speed:42");
+  xbt_cfg_check(set);
+  xbt_cfg_get_dynar(set,"user",&dyn);
+  fprintf(stderr,"Count: %lu; Options: ",xbt_dynar_length(dyn));
+  xbt_dynar_foreach(dyn,ival,str) {
+    fprintf(stderr,"%s;",str);
+  }
+  fprintf(stderr,"\n");
+  xbt_cfg_free(&set);
+  xbt_cfg_free(&set);
 
+  xbt_exit();
   return 0;
 }