Enforce numeric application IDs
[src/app-framework-main.git] / src / tests / test-unit / test-unit.c
index 2b166e9..a879a12 100644 (file)
@@ -1,5 +1,5 @@
 /*
- Copyright (C) 2016, 2017, 2018 IoT.bzh
+ Copyright (C) 2016-2019 IoT.bzh
 
  author: José Bollo <jose.bollo@iot.bzh>
 
@@ -65,6 +65,12 @@ puts(json_object_to_json_string_ext(desc->desc, JSON_C_TO_STRING_PRETTY));
        return 0;
 }
 
+static int new_afid()
+{
+       static int r = 1;
+       return r++;
+}
+
 int main(int ac, char **av)
 {
        struct unitconf conf;
@@ -73,7 +79,8 @@ int main(int ac, char **av)
 
        conf.installdir = "INSTALL-DIR";
        conf.icondir = "ICONS-DIR";
-       conf.port = 666;
+       conf.new_afid = new_afid;
+       conf.base_http_ports = 20000;
        rc = unit_generator_open_template(*++av);
        if (rc < 0)
                error("can't read template %s: %m",*av);