diff --git a/src/rougail/user_data_environment/config.py b/src/rougail/user_data_environment/config.py index 313200c..237959b 100644 --- a/src/rougail/user_data_environment/config.py +++ b/src/rougail/user_data_environment/config.py @@ -35,12 +35,12 @@ environment: {% endif %} default_environment_name: description: Name of the default environment prefix - default: rougail + default: + variable: main_namespace + mandatory: true disabled: - jinja: | - {% if main_namespace %} - use namespaces - {% endif %} + variable: main_namespace + when_not: null """ return {'name': 'environment', 'process': 'user data', diff --git a/src/rougail/user_data_environment/data.py b/src/rougail/user_data_environment/data.py index 4c6a96a..c3368de 100644 --- a/src/rougail/user_data_environment/data.py +++ b/src/rougail/user_data_environment/data.py @@ -57,36 +57,29 @@ class RougailUserDataEnvironment: def parse(self): variables = {} - found_ns = False for option in self.config: - if option.group_type() == "namespace": - found_ns = True - variables.update(get_rougail_environment(option.name())) - if not found_ns: - if self.rougailconfig['main_namespace'] is None: - return get_rougail_environment(self.rougailconfig['environment.default_environment_name']) - return get_rougail_environment(self.rougailconfig['main_namespace']) - return variables + if not option.isoptiondescription() or option.group_type() != "namespace": + break + variables.update(get_rougail_environment(option.name())) + else: + return variables + return get_rougail_environment(None, self.rougailconfig['environment.default_environment_name']) -def get_rougail_environment(namespace): +def get_rougail_environment(namespace, environment_name=None): """gets all the rougail environment variables and their values :sample: {'VARINT': '5', 'VARNAME34': '58, 22', 'VARNAME2': 'tata', 'VARNAME1': 'titi', 'MYFAMILY.VARNAME3': 'spam'} :returns: rougail environment variables as a key/value dict """ - # first we look at all environment variables - all_envvar = os.environ # then we filter the ROUGAIL_ environment variables if namespace is None: - rougail_environment_var = rougail_default_environment_var.upper() + '_' - len_env = len(rougail_environment_var) + 1 - root = '' - else: - rougail_environment_var = namespace.upper() + '_' + rougail_environment_var = environment_name.upper() + '_' len_env = len(rougail_environment_var) - root = namespace.lower() + '.' - return {root + envvar[len_env:].lower(): envval - for envvar, envval in all_envvar.items() + else: + rougail_environment_var = namespace.upper() + '.' + len_env = 0 + return {envvar[len_env:].lower(): envval + for envvar, envval in os.environ.items() if envvar.startswith(rougail_environment_var)} diff --git a/tests/results/00_0version_underscore/file/all.env b/tests/results/00_0version_underscore/file/all.env index 610543f..7268d34 100644 --- a/tests/results/00_0version_underscore/file/all.env +++ b/tests/results/00_0version_underscore/file/all.env @@ -1 +1 @@ -ROUGAIL_VERSION="string1" +ROUGAIL.VERSION="string1" diff --git a/tests/results/00_0version_underscore/file/all_exclude.env b/tests/results/00_0version_underscore/file/all_exclude.env index 610543f..7268d34 100644 --- a/tests/results/00_0version_underscore/file/all_exclude.env +++ b/tests/results/00_0version_underscore/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_VERSION="string1" +ROUGAIL.VERSION="string1" diff --git a/tests/results/00_0version_underscore/file/mandatories.env b/tests/results/00_0version_underscore/file/mandatories.env index 610543f..7268d34 100644 --- a/tests/results/00_0version_underscore/file/mandatories.env +++ b/tests/results/00_0version_underscore/file/mandatories.env @@ -1 +1 @@ -ROUGAIL_VERSION="string1" +ROUGAIL.VERSION="string1" diff --git a/tests/results/00_1empty_variable/file/all.env b/tests/results/00_1empty_variable/file/all.env index 196bab4..e0cf533 100644 --- a/tests/results/00_1empty_variable/file/all.env +++ b/tests/results/00_1empty_variable/file/all.env @@ -1 +1 @@ -ROUGAIL_EMPTY="string1" +ROUGAIL.EMPTY="string1" diff --git a/tests/results/00_1empty_variable/file/all_exclude.env b/tests/results/00_1empty_variable/file/all_exclude.env index 196bab4..e0cf533 100644 --- a/tests/results/00_1empty_variable/file/all_exclude.env +++ b/tests/results/00_1empty_variable/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_EMPTY="string1" +ROUGAIL.EMPTY="string1" diff --git a/tests/results/00_1empty_variable/file/mandatories.env b/tests/results/00_1empty_variable/file/mandatories.env index 196bab4..e0cf533 100644 --- a/tests/results/00_1empty_variable/file/mandatories.env +++ b/tests/results/00_1empty_variable/file/mandatories.env @@ -1 +1 @@ -ROUGAIL_EMPTY="string1" +ROUGAIL.EMPTY="string1" diff --git a/tests/results/00_2default_calculated/file/all.env b/tests/results/00_2default_calculated/file/all.env index 3975e43..ac2564a 100644 --- a/tests/results/00_2default_calculated/file/all.env +++ b/tests/results/00_2default_calculated/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_VAR1="string1" -ROUGAIL_VAR2="string1,string2,string3" +ROUGAIL.VAR1="string1" +ROUGAIL.VAR2="string1,string2,string3" diff --git a/tests/results/00_2default_calculated/file/all_exclude.env b/tests/results/00_2default_calculated/file/all_exclude.env index 3975e43..ac2564a 100644 --- a/tests/results/00_2default_calculated/file/all_exclude.env +++ b/tests/results/00_2default_calculated/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_VAR1="string1" -ROUGAIL_VAR2="string1,string2,string3" +ROUGAIL.VAR1="string1" +ROUGAIL.VAR2="string1,string2,string3" diff --git a/tests/results/00_2default_calculated_multi/file/all.env b/tests/results/00_2default_calculated_multi/file/all.env index 36cb460..981c096 100644 --- a/tests/results/00_2default_calculated_multi/file/all.env +++ b/tests/results/00_2default_calculated_multi/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_VAR1="string1,string2,string3" -ROUGAIL_VAR2="string1,string2,string3" +ROUGAIL.VAR1="string1,string2,string3" +ROUGAIL.VAR2="string1,string2,string3" diff --git a/tests/results/00_2default_calculated_multi/file/all_exclude.env b/tests/results/00_2default_calculated_multi/file/all_exclude.env index 36cb460..981c096 100644 --- a/tests/results/00_2default_calculated_multi/file/all_exclude.env +++ b/tests/results/00_2default_calculated_multi/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_VAR1="string1,string2,string3" -ROUGAIL_VAR2="string1,string2,string3" +ROUGAIL.VAR1="string1,string2,string3" +ROUGAIL.VAR2="string1,string2,string3" diff --git a/tests/results/00_2default_calculated_variable_transitive/file/all.env b/tests/results/00_2default_calculated_variable_transitive/file/all.env index f76c770..665878a 100644 --- a/tests/results/00_2default_calculated_variable_transitive/file/all.env +++ b/tests/results/00_2default_calculated_variable_transitive/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_VAR1="domain1.lan,domain2.lan" -ROUGAIL_VAR2="domain1.lan,domain2.lan" +ROUGAIL.VAR1="domain1.lan,domain2.lan" +ROUGAIL.VAR2="domain1.lan,domain2.lan" diff --git a/tests/results/00_2default_calculated_variable_transitive/file/all_exclude.env b/tests/results/00_2default_calculated_variable_transitive/file/all_exclude.env index f76c770..665878a 100644 --- a/tests/results/00_2default_calculated_variable_transitive/file/all_exclude.env +++ b/tests/results/00_2default_calculated_variable_transitive/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_VAR1="domain1.lan,domain2.lan" -ROUGAIL_VAR2="domain1.lan,domain2.lan" +ROUGAIL.VAR1="domain1.lan,domain2.lan" +ROUGAIL.VAR2="domain1.lan,domain2.lan" diff --git a/tests/results/00_2default_calculated_variable_transitive/file/mandatories.env b/tests/results/00_2default_calculated_variable_transitive/file/mandatories.env index a0ec662..407237d 100644 --- a/tests/results/00_2default_calculated_variable_transitive/file/mandatories.env +++ b/tests/results/00_2default_calculated_variable_transitive/file/mandatories.env @@ -1 +1 @@ -ROUGAIL_VAR1="domain1.lan,domain2.lan" +ROUGAIL.VAR1="domain1.lan,domain2.lan" diff --git a/tests/results/00_4load_subfolder/file/all.env b/tests/results/00_4load_subfolder/file/all.env index f31e5d5..5922bb8 100644 --- a/tests/results/00_4load_subfolder/file/all.env +++ b/tests/results/00_4load_subfolder/file/all.env @@ -1 +1 @@ -ROUGAIL_VAR1="string1" +ROUGAIL.VAR1="string1" diff --git a/tests/results/00_4load_subfolder/file/all_exclude.env b/tests/results/00_4load_subfolder/file/all_exclude.env index f31e5d5..5922bb8 100644 --- a/tests/results/00_4load_subfolder/file/all_exclude.env +++ b/tests/results/00_4load_subfolder/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_VAR1="string1" +ROUGAIL.VAR1="string1" diff --git a/tests/results/00_4load_subfolder/file/mandatories.env b/tests/results/00_4load_subfolder/file/mandatories.env index f31e5d5..5922bb8 100644 --- a/tests/results/00_4load_subfolder/file/mandatories.env +++ b/tests/results/00_4load_subfolder/file/mandatories.env @@ -1 +1 @@ -ROUGAIL_VAR1="string1" +ROUGAIL.VAR1="string1" diff --git a/tests/results/00_5load_notype/file/all.env b/tests/results/00_5load_notype/file/all.env index 828ca27..bedbd09 100644 --- a/tests/results/00_5load_notype/file/all.env +++ b/tests/results/00_5load_notype/file/all.env @@ -1 +1 @@ -ROUGAIL_WITHOUT_TYPE="string1" +ROUGAIL.WITHOUT_TYPE="string1" diff --git a/tests/results/00_5load_notype/file/all_exclude.env b/tests/results/00_5load_notype/file/all_exclude.env index 828ca27..bedbd09 100644 --- a/tests/results/00_5load_notype/file/all_exclude.env +++ b/tests/results/00_5load_notype/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_WITHOUT_TYPE="string1" +ROUGAIL.WITHOUT_TYPE="string1" diff --git a/tests/results/00_6boolean/file/all.env b/tests/results/00_6boolean/file/all.env index dead533..bb165b0 100644 --- a/tests/results/00_6boolean/file/all.env +++ b/tests/results/00_6boolean/file/all.env @@ -1,6 +1,6 @@ -ROUGAIL_VAR1="True" -ROUGAIL_VAR2="True" -ROUGAIL_VAR3="True" -ROUGAIL_VAR4="True" -ROUGAIL_VAR5="True" -ROUGAIL_VAR6="True" +ROUGAIL.VAR1="True" +ROUGAIL.VAR2="True" +ROUGAIL.VAR3="True" +ROUGAIL.VAR4="True" +ROUGAIL.VAR5="True" +ROUGAIL.VAR6="True" diff --git a/tests/results/00_6boolean/file/all_exclude.env b/tests/results/00_6boolean/file/all_exclude.env index dead533..bb165b0 100644 --- a/tests/results/00_6boolean/file/all_exclude.env +++ b/tests/results/00_6boolean/file/all_exclude.env @@ -1,6 +1,6 @@ -ROUGAIL_VAR1="True" -ROUGAIL_VAR2="True" -ROUGAIL_VAR3="True" -ROUGAIL_VAR4="True" -ROUGAIL_VAR5="True" -ROUGAIL_VAR6="True" +ROUGAIL.VAR1="True" +ROUGAIL.VAR2="True" +ROUGAIL.VAR3="True" +ROUGAIL.VAR4="True" +ROUGAIL.VAR5="True" +ROUGAIL.VAR6="True" diff --git a/tests/results/00_6boolean_no_mandatory/file/all.env b/tests/results/00_6boolean_no_mandatory/file/all.env index 2ee5724..d17a6ab 100644 --- a/tests/results/00_6boolean_no_mandatory/file/all.env +++ b/tests/results/00_6boolean_no_mandatory/file/all.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="True" +ROUGAIL.VARIABLE="True" diff --git a/tests/results/00_6boolean_no_mandatory/file/all_exclude.env b/tests/results/00_6boolean_no_mandatory/file/all_exclude.env index 2ee5724..d17a6ab 100644 --- a/tests/results/00_6boolean_no_mandatory/file/all_exclude.env +++ b/tests/results/00_6boolean_no_mandatory/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="True" +ROUGAIL.VARIABLE="True" diff --git a/tests/results/00_6choice/errors/all.json b/tests/results/00_6choice/errors/all.json index 01c6814..006a884 100644 --- a/tests/results/00_6choice/errors/all.json +++ b/tests/results/00_6choice/errors/all.json @@ -1,6 +1,6 @@ { "errors": [ - "\"1\" est une valeur invalide pour l'option \"rougail.var6 (the sixth variable)\" de type choice, seul \"1\", \"2\" et \"3\" sont autoris\u00e9es" + "\"1\" is an invalid choice for \"rougail.var6 (the sixth variable)\", only \"1\", \"2\" and \"3\" are allowed" ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/00_6choice/file/all.env b/tests/results/00_6choice/file/all.env index 6ab9449..e665fba 100644 --- a/tests/results/00_6choice/file/all.env +++ b/tests/results/00_6choice/file/all.env @@ -1,6 +1,6 @@ -ROUGAIL_VAR1="a" -ROUGAIL_VAR2="a" -ROUGAIL_VAR3="a" -ROUGAIL_VAR4="" -ROUGAIL_VAR5="a" -ROUGAIL_VAR6="1" +ROUGAIL.VAR1="a" +ROUGAIL.VAR2="a" +ROUGAIL.VAR3="a" +ROUGAIL.VAR4="" +ROUGAIL.VAR5="a" +ROUGAIL.VAR6="1" diff --git a/tests/results/00_6choice/file/all_exclude.env b/tests/results/00_6choice/file/all_exclude.env index 6ab9449..e665fba 100644 --- a/tests/results/00_6choice/file/all_exclude.env +++ b/tests/results/00_6choice/file/all_exclude.env @@ -1,6 +1,6 @@ -ROUGAIL_VAR1="a" -ROUGAIL_VAR2="a" -ROUGAIL_VAR3="a" -ROUGAIL_VAR4="" -ROUGAIL_VAR5="a" -ROUGAIL_VAR6="1" +ROUGAIL.VAR1="a" +ROUGAIL.VAR2="a" +ROUGAIL.VAR3="a" +ROUGAIL.VAR4="" +ROUGAIL.VAR5="a" +ROUGAIL.VAR6="1" diff --git a/tests/results/00_6choice/file/mandatories.env b/tests/results/00_6choice/file/mandatories.env index 18699d9..ae50e6b 100644 --- a/tests/results/00_6choice/file/mandatories.env +++ b/tests/results/00_6choice/file/mandatories.env @@ -1,2 +1,2 @@ -ROUGAIL_VAR1="a" -ROUGAIL_VAR2="a" +ROUGAIL.VAR1="a" +ROUGAIL.VAR2="a" diff --git a/tests/results/00_6choice_variable/file/all.env b/tests/results/00_6choice_variable/file/all.env index 6cab82b..b296ad0 100644 --- a/tests/results/00_6choice_variable/file/all.env +++ b/tests/results/00_6choice_variable/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_VAR1="string1,string2,string3" -ROUGAIL_VAR2="string1" +ROUGAIL.VAR1="string1,string2,string3" +ROUGAIL.VAR2="string1" diff --git a/tests/results/00_6choice_variable/file/all_exclude.env b/tests/results/00_6choice_variable/file/all_exclude.env index 6cab82b..b296ad0 100644 --- a/tests/results/00_6choice_variable/file/all_exclude.env +++ b/tests/results/00_6choice_variable/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_VAR1="string1,string2,string3" -ROUGAIL_VAR2="string1" +ROUGAIL.VAR1="string1,string2,string3" +ROUGAIL.VAR2="string1" diff --git a/tests/results/00_6custom/file/all.env b/tests/results/00_6custom/file/all.env index fa00243..f02620c 100644 --- a/tests/results/00_6custom/file/all.env +++ b/tests/results/00_6custom/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_CUSTOM1="string1" -ROUGAIL_CUSTOM2="string1" +ROUGAIL.CUSTOM1="string1" +ROUGAIL.CUSTOM2="string1" diff --git a/tests/results/00_6custom/file/all_exclude.env b/tests/results/00_6custom/file/all_exclude.env index fa00243..f02620c 100644 --- a/tests/results/00_6custom/file/all_exclude.env +++ b/tests/results/00_6custom/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_CUSTOM1="string1" -ROUGAIL_CUSTOM2="string1" +ROUGAIL.CUSTOM1="string1" +ROUGAIL.CUSTOM2="string1" diff --git a/tests/results/00_6custom/file/mandatories.env b/tests/results/00_6custom/file/mandatories.env index 06df72f..6cc35f4 100644 --- a/tests/results/00_6custom/file/mandatories.env +++ b/tests/results/00_6custom/file/mandatories.env @@ -1 +1 @@ -ROUGAIL_CUSTOM1="string1" +ROUGAIL.CUSTOM1="string1" diff --git a/tests/results/00_6domainname/file/all.env b/tests/results/00_6domainname/file/all.env index 2234810..a27e225 100644 --- a/tests/results/00_6domainname/file/all.env +++ b/tests/results/00_6domainname/file/all.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="domain1.lan" +ROUGAIL.VARIABLE="domain1.lan" diff --git a/tests/results/00_6domainname/file/all_exclude.env b/tests/results/00_6domainname/file/all_exclude.env index 2234810..a27e225 100644 --- a/tests/results/00_6domainname/file/all_exclude.env +++ b/tests/results/00_6domainname/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="domain1.lan" +ROUGAIL.VARIABLE="domain1.lan" diff --git a/tests/results/00_6domainname_params/file/all.env b/tests/results/00_6domainname_params/file/all.env index 2234810..a27e225 100644 --- a/tests/results/00_6domainname_params/file/all.env +++ b/tests/results/00_6domainname_params/file/all.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="domain1.lan" +ROUGAIL.VARIABLE="domain1.lan" diff --git a/tests/results/00_6domainname_params/file/all_exclude.env b/tests/results/00_6domainname_params/file/all_exclude.env index 2234810..a27e225 100644 --- a/tests/results/00_6domainname_params/file/all_exclude.env +++ b/tests/results/00_6domainname_params/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="domain1.lan" +ROUGAIL.VARIABLE="domain1.lan" diff --git a/tests/results/00_6float/file/all.env b/tests/results/00_6float/file/all.env index af8b8f9..c3b8d52 100644 --- a/tests/results/00_6float/file/all.env +++ b/tests/results/00_6float/file/all.env @@ -1,6 +1,6 @@ -ROUGAIL_VAR1="1.1" -ROUGAIL_VAR2="1.1" -ROUGAIL_VAR3="1.1" -ROUGAIL_VAR4="1.1" -ROUGAIL_VAR5="1.1" -ROUGAIL_VAR6="1.1" +ROUGAIL.VAR1="1.1" +ROUGAIL.VAR2="1.1" +ROUGAIL.VAR3="1.1" +ROUGAIL.VAR4="1.1" +ROUGAIL.VAR5="1.1" +ROUGAIL.VAR6="1.1" diff --git a/tests/results/00_6float/file/all_exclude.env b/tests/results/00_6float/file/all_exclude.env index af8b8f9..c3b8d52 100644 --- a/tests/results/00_6float/file/all_exclude.env +++ b/tests/results/00_6float/file/all_exclude.env @@ -1,6 +1,6 @@ -ROUGAIL_VAR1="1.1" -ROUGAIL_VAR2="1.1" -ROUGAIL_VAR3="1.1" -ROUGAIL_VAR4="1.1" -ROUGAIL_VAR5="1.1" -ROUGAIL_VAR6="1.1" +ROUGAIL.VAR1="1.1" +ROUGAIL.VAR2="1.1" +ROUGAIL.VAR3="1.1" +ROUGAIL.VAR4="1.1" +ROUGAIL.VAR5="1.1" +ROUGAIL.VAR6="1.1" diff --git a/tests/results/00_6number/file/all.env b/tests/results/00_6number/file/all.env index 684c5f1..75ef991 100644 --- a/tests/results/00_6number/file/all.env +++ b/tests/results/00_6number/file/all.env @@ -1,6 +1,6 @@ -ROUGAIL_VAR1="1" -ROUGAIL_VAR2="1" -ROUGAIL_VAR3="1" -ROUGAIL_VAR4="1" -ROUGAIL_VAR5="1" -ROUGAIL_VAR6="1" +ROUGAIL.VAR1="1" +ROUGAIL.VAR2="1" +ROUGAIL.VAR3="1" +ROUGAIL.VAR4="1" +ROUGAIL.VAR5="1" +ROUGAIL.VAR6="1" diff --git a/tests/results/00_6number/file/all_exclude.env b/tests/results/00_6number/file/all_exclude.env index 684c5f1..75ef991 100644 --- a/tests/results/00_6number/file/all_exclude.env +++ b/tests/results/00_6number/file/all_exclude.env @@ -1,6 +1,6 @@ -ROUGAIL_VAR1="1" -ROUGAIL_VAR2="1" -ROUGAIL_VAR3="1" -ROUGAIL_VAR4="1" -ROUGAIL_VAR5="1" -ROUGAIL_VAR6="1" +ROUGAIL.VAR1="1" +ROUGAIL.VAR2="1" +ROUGAIL.VAR3="1" +ROUGAIL.VAR4="1" +ROUGAIL.VAR5="1" +ROUGAIL.VAR6="1" diff --git a/tests/results/00_6port/file/all.env b/tests/results/00_6port/file/all.env index 3917d3a..420da73 100644 --- a/tests/results/00_6port/file/all.env +++ b/tests/results/00_6port/file/all.env @@ -1,3 +1,3 @@ -ROUGAIL_VARIABLE1="80" -ROUGAIL_VARIABLE2="80" -ROUGAIL_VARIABLE3="80" +ROUGAIL.VARIABLE1="80" +ROUGAIL.VARIABLE2="80" +ROUGAIL.VARIABLE3="80" diff --git a/tests/results/00_6port/file/all_exclude.env b/tests/results/00_6port/file/all_exclude.env index 3917d3a..420da73 100644 --- a/tests/results/00_6port/file/all_exclude.env +++ b/tests/results/00_6port/file/all_exclude.env @@ -1,3 +1,3 @@ -ROUGAIL_VARIABLE1="80" -ROUGAIL_VARIABLE2="80" -ROUGAIL_VARIABLE3="80" +ROUGAIL.VARIABLE1="80" +ROUGAIL.VARIABLE2="80" +ROUGAIL.VARIABLE3="80" diff --git a/tests/results/00_6port/file/mandatories.env b/tests/results/00_6port/file/mandatories.env index 2531398..51ef7d6 100644 --- a/tests/results/00_6port/file/mandatories.env +++ b/tests/results/00_6port/file/mandatories.env @@ -1 +1 @@ -ROUGAIL_VARIABLE1="80" +ROUGAIL.VARIABLE1="80" diff --git a/tests/results/00_6regexp/file/all.env b/tests/results/00_6regexp/file/all.env index be8abf4..ce627e8 100644 --- a/tests/results/00_6regexp/file/all.env +++ b/tests/results/00_6regexp/file/all.env @@ -1 +1 @@ -ROUGAIL_VAR="#b1b1b1" +ROUGAIL.VAR="#b1b1b1" diff --git a/tests/results/00_6regexp/file/all_exclude.env b/tests/results/00_6regexp/file/all_exclude.env index be8abf4..ce627e8 100644 --- a/tests/results/00_6regexp/file/all_exclude.env +++ b/tests/results/00_6regexp/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_VAR="#b1b1b1" +ROUGAIL.VAR="#b1b1b1" diff --git a/tests/results/00_6string/file/all.env b/tests/results/00_6string/file/all.env index f3cdd33..2f51b8a 100644 --- a/tests/results/00_6string/file/all.env +++ b/tests/results/00_6string/file/all.env @@ -1,6 +1,6 @@ -ROUGAIL_VAR1="string1" -ROUGAIL_VAR2="string1" -ROUGAIL_VAR3="string1" -ROUGAIL_VAR4="string1" -ROUGAIL_VAR5="string1" -ROUGAIL_VAR6="string1" +ROUGAIL.VAR1="string1" +ROUGAIL.VAR2="string1" +ROUGAIL.VAR3="string1" +ROUGAIL.VAR4="string1" +ROUGAIL.VAR5="string1" +ROUGAIL.VAR6="string1" diff --git a/tests/results/00_6string/file/all_exclude.env b/tests/results/00_6string/file/all_exclude.env index f3cdd33..2f51b8a 100644 --- a/tests/results/00_6string/file/all_exclude.env +++ b/tests/results/00_6string/file/all_exclude.env @@ -1,6 +1,6 @@ -ROUGAIL_VAR1="string1" -ROUGAIL_VAR2="string1" -ROUGAIL_VAR3="string1" -ROUGAIL_VAR4="string1" -ROUGAIL_VAR5="string1" -ROUGAIL_VAR6="string1" +ROUGAIL.VAR1="string1" +ROUGAIL.VAR2="string1" +ROUGAIL.VAR3="string1" +ROUGAIL.VAR4="string1" +ROUGAIL.VAR5="string1" +ROUGAIL.VAR6="string1" diff --git a/tests/results/00_6string/file/mandatories.env b/tests/results/00_6string/file/mandatories.env index 000c6a3..ad10096 100644 --- a/tests/results/00_6string/file/mandatories.env +++ b/tests/results/00_6string/file/mandatories.env @@ -1,3 +1,3 @@ -ROUGAIL_VAR1="string1" -ROUGAIL_VAR2="string1" -ROUGAIL_VAR3="string1" +ROUGAIL.VAR1="string1" +ROUGAIL.VAR2="string1" +ROUGAIL.VAR3="string1" diff --git a/tests/results/00_7choice_quote/file/all.env b/tests/results/00_7choice_quote/file/all.env index f8a65f6..9742f8d 100644 --- a/tests/results/00_7choice_quote/file/all.env +++ b/tests/results/00_7choice_quote/file/all.env @@ -1 +1 @@ -ROUGAIL_VAR="quote'" +ROUGAIL.VAR="quote'" diff --git a/tests/results/00_7choice_quote/file/all_exclude.env b/tests/results/00_7choice_quote/file/all_exclude.env index f8a65f6..9742f8d 100644 --- a/tests/results/00_7choice_quote/file/all_exclude.env +++ b/tests/results/00_7choice_quote/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_VAR="quote'" +ROUGAIL.VAR="quote'" diff --git a/tests/results/00_7help_quote/file/all.env b/tests/results/00_7help_quote/file/all.env index 1d474e9..d2b4df4 100644 --- a/tests/results/00_7help_quote/file/all.env +++ b/tests/results/00_7help_quote/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_VAR1="string1" -ROUGAIL_VAR2="string1" +ROUGAIL.VAR1="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/00_7help_quote/file/all_exclude.env b/tests/results/00_7help_quote/file/all_exclude.env index 1d474e9..d2b4df4 100644 --- a/tests/results/00_7help_quote/file/all_exclude.env +++ b/tests/results/00_7help_quote/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_VAR1="string1" -ROUGAIL_VAR2="string1" +ROUGAIL.VAR1="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/00_7help_quote/file/mandatories.env b/tests/results/00_7help_quote/file/mandatories.env index 1d474e9..d2b4df4 100644 --- a/tests/results/00_7help_quote/file/mandatories.env +++ b/tests/results/00_7help_quote/file/mandatories.env @@ -1,2 +1,2 @@ -ROUGAIL_VAR1="string1" -ROUGAIL_VAR2="string1" +ROUGAIL.VAR1="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/00_7value_doublequote/file/all.env b/tests/results/00_7value_doublequote/file/all.env index 0f489bd..6a36f07 100644 --- a/tests/results/00_7value_doublequote/file/all.env +++ b/tests/results/00_7value_doublequote/file/all.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="string1" +ROUGAIL.VARIABLE="string1" diff --git a/tests/results/00_7value_doublequote/file/all_exclude.env b/tests/results/00_7value_doublequote/file/all_exclude.env index 0f489bd..6a36f07 100644 --- a/tests/results/00_7value_doublequote/file/all_exclude.env +++ b/tests/results/00_7value_doublequote/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="string1" +ROUGAIL.VARIABLE="string1" diff --git a/tests/results/00_7value_doublequote2/file/all.env b/tests/results/00_7value_doublequote2/file/all.env index 0f489bd..6a36f07 100644 --- a/tests/results/00_7value_doublequote2/file/all.env +++ b/tests/results/00_7value_doublequote2/file/all.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="string1" +ROUGAIL.VARIABLE="string1" diff --git a/tests/results/00_7value_doublequote2/file/all_exclude.env b/tests/results/00_7value_doublequote2/file/all_exclude.env index 0f489bd..6a36f07 100644 --- a/tests/results/00_7value_doublequote2/file/all_exclude.env +++ b/tests/results/00_7value_doublequote2/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="string1" +ROUGAIL.VARIABLE="string1" diff --git a/tests/results/00_7value_doublequote3/file/all.env b/tests/results/00_7value_doublequote3/file/all.env index 0f489bd..6a36f07 100644 --- a/tests/results/00_7value_doublequote3/file/all.env +++ b/tests/results/00_7value_doublequote3/file/all.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="string1" +ROUGAIL.VARIABLE="string1" diff --git a/tests/results/00_7value_doublequote3/file/all_exclude.env b/tests/results/00_7value_doublequote3/file/all_exclude.env index 0f489bd..6a36f07 100644 --- a/tests/results/00_7value_doublequote3/file/all_exclude.env +++ b/tests/results/00_7value_doublequote3/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="string1" +ROUGAIL.VARIABLE="string1" diff --git a/tests/results/00_7value_quote/file/all.env b/tests/results/00_7value_quote/file/all.env index 0f489bd..6a36f07 100644 --- a/tests/results/00_7value_quote/file/all.env +++ b/tests/results/00_7value_quote/file/all.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="string1" +ROUGAIL.VARIABLE="string1" diff --git a/tests/results/00_7value_quote/file/all_exclude.env b/tests/results/00_7value_quote/file/all_exclude.env index 0f489bd..6a36f07 100644 --- a/tests/results/00_7value_quote/file/all_exclude.env +++ b/tests/results/00_7value_quote/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="string1" +ROUGAIL.VARIABLE="string1" diff --git a/tests/results/00_8calculation_information/file/all.env b/tests/results/00_8calculation_information/file/all.env index 0f489bd..6a36f07 100644 --- a/tests/results/00_8calculation_information/file/all.env +++ b/tests/results/00_8calculation_information/file/all.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="string1" +ROUGAIL.VARIABLE="string1" diff --git a/tests/results/00_8calculation_information/file/all_exclude.env b/tests/results/00_8calculation_information/file/all_exclude.env index 0f489bd..6a36f07 100644 --- a/tests/results/00_8calculation_information/file/all_exclude.env +++ b/tests/results/00_8calculation_information/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="string1" +ROUGAIL.VARIABLE="string1" diff --git a/tests/results/00_8calculation_information/file/mandatories.env b/tests/results/00_8calculation_information/file/mandatories.env index 0f489bd..6a36f07 100644 --- a/tests/results/00_8calculation_information/file/mandatories.env +++ b/tests/results/00_8calculation_information/file/mandatories.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="string1" +ROUGAIL.VARIABLE="string1" diff --git a/tests/results/00_8test/file/all.env b/tests/results/00_8test/file/all.env index b7c8fdd..0c92d61 100644 --- a/tests/results/00_8test/file/all.env +++ b/tests/results/00_8test/file/all.env @@ -1,6 +1,6 @@ -ROUGAIL_VAR1="test" -ROUGAIL_VAR2="test" -ROUGAIL_VAR3="test1" -ROUGAIL_VAR4="" -ROUGAIL_VAR5="False" -ROUGAIL_VAR6="test1,test2" +ROUGAIL.VAR1="test" +ROUGAIL.VAR2="test" +ROUGAIL.VAR3="test1" +ROUGAIL.VAR4="" +ROUGAIL.VAR5="False" +ROUGAIL.VAR6="test1,test2" diff --git a/tests/results/00_8test/file/all_exclude.env b/tests/results/00_8test/file/all_exclude.env index b7c8fdd..0c92d61 100644 --- a/tests/results/00_8test/file/all_exclude.env +++ b/tests/results/00_8test/file/all_exclude.env @@ -1,6 +1,6 @@ -ROUGAIL_VAR1="test" -ROUGAIL_VAR2="test" -ROUGAIL_VAR3="test1" -ROUGAIL_VAR4="" -ROUGAIL_VAR5="False" -ROUGAIL_VAR6="test1,test2" +ROUGAIL.VAR1="test" +ROUGAIL.VAR2="test" +ROUGAIL.VAR3="test1" +ROUGAIL.VAR4="" +ROUGAIL.VAR5="False" +ROUGAIL.VAR6="test1,test2" diff --git a/tests/results/00_8test/file/mandatories.env b/tests/results/00_8test/file/mandatories.env index f8ffd95..3fdf177 100644 --- a/tests/results/00_8test/file/mandatories.env +++ b/tests/results/00_8test/file/mandatories.env @@ -1,3 +1,3 @@ -ROUGAIL_VAR1="test" -ROUGAIL_VAR3="test1" -ROUGAIL_VAR6="test1,test2" +ROUGAIL.VAR1="test" +ROUGAIL.VAR3="test1" +ROUGAIL.VAR6="test1,test2" diff --git a/tests/results/00_9choice_variable_multi/file/all.env b/tests/results/00_9choice_variable_multi/file/all.env index ccebd6d..126d5a9 100644 --- a/tests/results/00_9choice_variable_multi/file/all.env +++ b/tests/results/00_9choice_variable_multi/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_VARIABLE1="val1,val2" -ROUGAIL_VARIABLE2="val1,val2" +ROUGAIL.VARIABLE1="val1,val2" +ROUGAIL.VARIABLE2="val1,val2" diff --git a/tests/results/00_9choice_variable_multi/file/all_exclude.env b/tests/results/00_9choice_variable_multi/file/all_exclude.env index ccebd6d..126d5a9 100644 --- a/tests/results/00_9choice_variable_multi/file/all_exclude.env +++ b/tests/results/00_9choice_variable_multi/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_VARIABLE1="val1,val2" -ROUGAIL_VARIABLE2="val1,val2" +ROUGAIL.VARIABLE1="val1,val2" +ROUGAIL.VARIABLE2="val1,val2" diff --git a/tests/results/00_9choice_variable_multi/file/mandatories.env b/tests/results/00_9choice_variable_multi/file/mandatories.env index 23b8f3e..17757df 100644 --- a/tests/results/00_9choice_variable_multi/file/mandatories.env +++ b/tests/results/00_9choice_variable_multi/file/mandatories.env @@ -1 +1 @@ -ROUGAIL_VARIABLE1="val1,val2" +ROUGAIL.VARIABLE1="val1,val2" diff --git a/tests/results/00_9choice_variables/file/all.env b/tests/results/00_9choice_variables/file/all.env index 11768de..c992c46 100644 --- a/tests/results/00_9choice_variables/file/all.env +++ b/tests/results/00_9choice_variables/file/all.env @@ -1,3 +1,3 @@ -ROUGAIL_SOURCE_VARIABLE_1="string1" -ROUGAIL_SOURCE_VARIABLE_2="string1" -ROUGAIL_MY_VARIABLE="string1" +ROUGAIL.SOURCE_VARIABLE_1="string1" +ROUGAIL.SOURCE_VARIABLE_2="string1" +ROUGAIL.MY_VARIABLE="string1" diff --git a/tests/results/00_9choice_variables/file/all_exclude.env b/tests/results/00_9choice_variables/file/all_exclude.env index 11768de..c992c46 100644 --- a/tests/results/00_9choice_variables/file/all_exclude.env +++ b/tests/results/00_9choice_variables/file/all_exclude.env @@ -1,3 +1,3 @@ -ROUGAIL_SOURCE_VARIABLE_1="string1" -ROUGAIL_SOURCE_VARIABLE_2="string1" -ROUGAIL_MY_VARIABLE="string1" +ROUGAIL.SOURCE_VARIABLE_1="string1" +ROUGAIL.SOURCE_VARIABLE_2="string1" +ROUGAIL.MY_VARIABLE="string1" diff --git a/tests/results/00_9default_calculation/file/all.env b/tests/results/00_9default_calculation/file/all.env index 0f489bd..6a36f07 100644 --- a/tests/results/00_9default_calculation/file/all.env +++ b/tests/results/00_9default_calculation/file/all.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="string1" +ROUGAIL.VARIABLE="string1" diff --git a/tests/results/00_9default_calculation/file/all_exclude.env b/tests/results/00_9default_calculation/file/all_exclude.env index 0f489bd..6a36f07 100644 --- a/tests/results/00_9default_calculation/file/all_exclude.env +++ b/tests/results/00_9default_calculation/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="string1" +ROUGAIL.VARIABLE="string1" diff --git a/tests/results/00_9default_calculation_information/file/all.env b/tests/results/00_9default_calculation_information/file/all.env index dbf899f..bea4d82 100644 --- a/tests/results/00_9default_calculation_information/file/all.env +++ b/tests/results/00_9default_calculation_information/file/all.env @@ -1 +1 @@ -ROUGAIL_VAR="string1" +ROUGAIL.VAR="string1" diff --git a/tests/results/00_9default_calculation_information/file/all_exclude.env b/tests/results/00_9default_calculation_information/file/all_exclude.env index dbf899f..bea4d82 100644 --- a/tests/results/00_9default_calculation_information/file/all_exclude.env +++ b/tests/results/00_9default_calculation_information/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_VAR="string1" +ROUGAIL.VAR="string1" diff --git a/tests/results/00_9default_calculation_information/file/mandatories.env b/tests/results/00_9default_calculation_information/file/mandatories.env index dbf899f..bea4d82 100644 --- a/tests/results/00_9default_calculation_information/file/mandatories.env +++ b/tests/results/00_9default_calculation_information/file/mandatories.env @@ -1 +1 @@ -ROUGAIL_VAR="string1" +ROUGAIL.VAR="string1" diff --git a/tests/results/00_9default_calculation_information_other_variable/file/all.env b/tests/results/00_9default_calculation_information_other_variable/file/all.env index 1d474e9..d2b4df4 100644 --- a/tests/results/00_9default_calculation_information_other_variable/file/all.env +++ b/tests/results/00_9default_calculation_information_other_variable/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_VAR1="string1" -ROUGAIL_VAR2="string1" +ROUGAIL.VAR1="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/00_9default_calculation_information_other_variable/file/all_exclude.env b/tests/results/00_9default_calculation_information_other_variable/file/all_exclude.env index 1d474e9..d2b4df4 100644 --- a/tests/results/00_9default_calculation_information_other_variable/file/all_exclude.env +++ b/tests/results/00_9default_calculation_information_other_variable/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_VAR1="string1" -ROUGAIL_VAR2="string1" +ROUGAIL.VAR1="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/00_9default_calculation_information_other_variable/file/mandatories.env b/tests/results/00_9default_calculation_information_other_variable/file/mandatories.env index 1d474e9..d2b4df4 100644 --- a/tests/results/00_9default_calculation_information_other_variable/file/mandatories.env +++ b/tests/results/00_9default_calculation_information_other_variable/file/mandatories.env @@ -1,2 +1,2 @@ -ROUGAIL_VAR1="string1" -ROUGAIL_VAR2="string1" +ROUGAIL.VAR1="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/00_9default_calculation_multi_optional/file/all.env b/tests/results/00_9default_calculation_multi_optional/file/all.env index 7795806..e0b04e9 100644 --- a/tests/results/00_9default_calculation_multi_optional/file/all.env +++ b/tests/results/00_9default_calculation_multi_optional/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_MY_VARIABLE="string1" -ROUGAIL_MY_CALCULATED_VARIABLE="string1,string2,string3" +ROUGAIL.MY_VARIABLE="string1" +ROUGAIL.MY_CALCULATED_VARIABLE="string1,string2,string3" diff --git a/tests/results/00_9default_calculation_multi_optional/file/all_exclude.env b/tests/results/00_9default_calculation_multi_optional/file/all_exclude.env index 7795806..e0b04e9 100644 --- a/tests/results/00_9default_calculation_multi_optional/file/all_exclude.env +++ b/tests/results/00_9default_calculation_multi_optional/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_MY_VARIABLE="string1" -ROUGAIL_MY_CALCULATED_VARIABLE="string1,string2,string3" +ROUGAIL.MY_VARIABLE="string1" +ROUGAIL.MY_CALCULATED_VARIABLE="string1,string2,string3" diff --git a/tests/results/00_9default_calculation_multi_optional2/file/all.env b/tests/results/00_9default_calculation_multi_optional2/file/all.env index 7795806..e0b04e9 100644 --- a/tests/results/00_9default_calculation_multi_optional2/file/all.env +++ b/tests/results/00_9default_calculation_multi_optional2/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_MY_VARIABLE="string1" -ROUGAIL_MY_CALCULATED_VARIABLE="string1,string2,string3" +ROUGAIL.MY_VARIABLE="string1" +ROUGAIL.MY_CALCULATED_VARIABLE="string1,string2,string3" diff --git a/tests/results/00_9default_calculation_multi_optional2/file/all_exclude.env b/tests/results/00_9default_calculation_multi_optional2/file/all_exclude.env index 7795806..e0b04e9 100644 --- a/tests/results/00_9default_calculation_multi_optional2/file/all_exclude.env +++ b/tests/results/00_9default_calculation_multi_optional2/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_MY_VARIABLE="string1" -ROUGAIL_MY_CALCULATED_VARIABLE="string1,string2,string3" +ROUGAIL.MY_VARIABLE="string1" +ROUGAIL.MY_CALCULATED_VARIABLE="string1,string2,string3" diff --git a/tests/results/00_9default_calculation_optional/file/all.env b/tests/results/00_9default_calculation_optional/file/all.env index 41998b0..571bc9d 100644 --- a/tests/results/00_9default_calculation_optional/file/all.env +++ b/tests/results/00_9default_calculation_optional/file/all.env @@ -1 +1 @@ -ROUGAIL_MY_CALCULATED_VARIABLE="string1,string2,string3" +ROUGAIL.MY_CALCULATED_VARIABLE="string1,string2,string3" diff --git a/tests/results/00_9default_calculation_optional/file/all_exclude.env b/tests/results/00_9default_calculation_optional/file/all_exclude.env index 41998b0..571bc9d 100644 --- a/tests/results/00_9default_calculation_optional/file/all_exclude.env +++ b/tests/results/00_9default_calculation_optional/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_MY_CALCULATED_VARIABLE="string1,string2,string3" +ROUGAIL.MY_CALCULATED_VARIABLE="string1,string2,string3" diff --git a/tests/results/00_9default_calculation_optional/file/mandatories.env b/tests/results/00_9default_calculation_optional/file/mandatories.env index 41998b0..571bc9d 100644 --- a/tests/results/00_9default_calculation_optional/file/mandatories.env +++ b/tests/results/00_9default_calculation_optional/file/mandatories.env @@ -1 +1 @@ -ROUGAIL_MY_CALCULATED_VARIABLE="string1,string2,string3" +ROUGAIL.MY_CALCULATED_VARIABLE="string1,string2,string3" diff --git a/tests/results/00_9default_calculation_optional_exists/file/all.env b/tests/results/00_9default_calculation_optional_exists/file/all.env index fdaf443..f089067 100644 --- a/tests/results/00_9default_calculation_optional_exists/file/all.env +++ b/tests/results/00_9default_calculation_optional_exists/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_MY_VARIABLE="string1,string2,string3" -ROUGAIL_MY_CALCULATED_VARIABLE="string1,string2,string3" +ROUGAIL.MY_VARIABLE="string1,string2,string3" +ROUGAIL.MY_CALCULATED_VARIABLE="string1,string2,string3" diff --git a/tests/results/00_9default_calculation_optional_exists/file/all_exclude.env b/tests/results/00_9default_calculation_optional_exists/file/all_exclude.env index fdaf443..f089067 100644 --- a/tests/results/00_9default_calculation_optional_exists/file/all_exclude.env +++ b/tests/results/00_9default_calculation_optional_exists/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_MY_VARIABLE="string1,string2,string3" -ROUGAIL_MY_CALCULATED_VARIABLE="string1,string2,string3" +ROUGAIL.MY_VARIABLE="string1,string2,string3" +ROUGAIL.MY_CALCULATED_VARIABLE="string1,string2,string3" diff --git a/tests/results/00_9default_calculation_param_optional/file/all.env b/tests/results/00_9default_calculation_param_optional/file/all.env index 1d474e9..d2b4df4 100644 --- a/tests/results/00_9default_calculation_param_optional/file/all.env +++ b/tests/results/00_9default_calculation_param_optional/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_VAR1="string1" -ROUGAIL_VAR2="string1" +ROUGAIL.VAR1="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/00_9default_calculation_param_optional/file/all_exclude.env b/tests/results/00_9default_calculation_param_optional/file/all_exclude.env index 1d474e9..d2b4df4 100644 --- a/tests/results/00_9default_calculation_param_optional/file/all_exclude.env +++ b/tests/results/00_9default_calculation_param_optional/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_VAR1="string1" -ROUGAIL_VAR2="string1" +ROUGAIL.VAR1="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/00_9default_information_other_variable/file/all.env b/tests/results/00_9default_information_other_variable/file/all.env index 1d474e9..d2b4df4 100644 --- a/tests/results/00_9default_information_other_variable/file/all.env +++ b/tests/results/00_9default_information_other_variable/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_VAR1="string1" -ROUGAIL_VAR2="string1" +ROUGAIL.VAR1="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/00_9default_information_other_variable/file/all_exclude.env b/tests/results/00_9default_information_other_variable/file/all_exclude.env index 1d474e9..d2b4df4 100644 --- a/tests/results/00_9default_information_other_variable/file/all_exclude.env +++ b/tests/results/00_9default_information_other_variable/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_VAR1="string1" -ROUGAIL_VAR2="string1" +ROUGAIL.VAR1="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/00_9default_information_other_variable/file/mandatories.env b/tests/results/00_9default_information_other_variable/file/mandatories.env index 1d474e9..d2b4df4 100644 --- a/tests/results/00_9default_information_other_variable/file/mandatories.env +++ b/tests/results/00_9default_information_other_variable/file/mandatories.env @@ -1,2 +1,2 @@ -ROUGAIL_VAR1="string1" -ROUGAIL_VAR2="string1" +ROUGAIL.VAR1="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/00_9extra/file/all.env b/tests/results/00_9extra/file/all.env index 0f489bd..6a36f07 100644 --- a/tests/results/00_9extra/file/all.env +++ b/tests/results/00_9extra/file/all.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="string1" +ROUGAIL.VARIABLE="string1" diff --git a/tests/results/00_9extra/file/all_exclude.env b/tests/results/00_9extra/file/all_exclude.env index 0f489bd..6a36f07 100644 --- a/tests/results/00_9extra/file/all_exclude.env +++ b/tests/results/00_9extra/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="string1" +ROUGAIL.VARIABLE="string1" diff --git a/tests/results/00_9extra_calculation/file/all.env b/tests/results/00_9extra_calculation/file/all.env index 0f489bd..6a36f07 100644 --- a/tests/results/00_9extra_calculation/file/all.env +++ b/tests/results/00_9extra_calculation/file/all.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="string1" +ROUGAIL.VARIABLE="string1" diff --git a/tests/results/00_9extra_calculation/file/all_exclude.env b/tests/results/00_9extra_calculation/file/all_exclude.env index 0f489bd..6a36f07 100644 --- a/tests/results/00_9extra_calculation/file/all_exclude.env +++ b/tests/results/00_9extra_calculation/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="string1" +ROUGAIL.VARIABLE="string1" diff --git a/tests/results/01_6boolean_multi/file/all.env b/tests/results/01_6boolean_multi/file/all.env index 9dd2a14..6affde8 100644 --- a/tests/results/01_6boolean_multi/file/all.env +++ b/tests/results/01_6boolean_multi/file/all.env @@ -1,8 +1,8 @@ -ROUGAIL_VAR1="true" -ROUGAIL_VAR2="true" -ROUGAIL_VAR3="true" -ROUGAIL_VAR4="true" -ROUGAIL_VAR5="true" -ROUGAIL_VAR6="true" -ROUGAIL_VAR7="true" -ROUGAIL_VAR8="true" +ROUGAIL.VAR1="true" +ROUGAIL.VAR2="true" +ROUGAIL.VAR3="true" +ROUGAIL.VAR4="true" +ROUGAIL.VAR5="true" +ROUGAIL.VAR6="true" +ROUGAIL.VAR7="true" +ROUGAIL.VAR8="true" diff --git a/tests/results/01_6boolean_multi/file/all_exclude.env b/tests/results/01_6boolean_multi/file/all_exclude.env index 9dd2a14..6affde8 100644 --- a/tests/results/01_6boolean_multi/file/all_exclude.env +++ b/tests/results/01_6boolean_multi/file/all_exclude.env @@ -1,8 +1,8 @@ -ROUGAIL_VAR1="true" -ROUGAIL_VAR2="true" -ROUGAIL_VAR3="true" -ROUGAIL_VAR4="true" -ROUGAIL_VAR5="true" -ROUGAIL_VAR6="true" -ROUGAIL_VAR7="true" -ROUGAIL_VAR8="true" +ROUGAIL.VAR1="true" +ROUGAIL.VAR2="true" +ROUGAIL.VAR3="true" +ROUGAIL.VAR4="true" +ROUGAIL.VAR5="true" +ROUGAIL.VAR6="true" +ROUGAIL.VAR7="true" +ROUGAIL.VAR8="true" diff --git a/tests/results/01_6custom_multi/file/all.env b/tests/results/01_6custom_multi/file/all.env index ef2da0c..16a425a 100644 --- a/tests/results/01_6custom_multi/file/all.env +++ b/tests/results/01_6custom_multi/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_CUSTOM1="string1,string2,string3" -ROUGAIL_CUSTOM2="string1,string2,string3" +ROUGAIL.CUSTOM1="string1,string2,string3" +ROUGAIL.CUSTOM2="string1,string2,string3" diff --git a/tests/results/01_6custom_multi/file/all_exclude.env b/tests/results/01_6custom_multi/file/all_exclude.env index ef2da0c..16a425a 100644 --- a/tests/results/01_6custom_multi/file/all_exclude.env +++ b/tests/results/01_6custom_multi/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_CUSTOM1="string1,string2,string3" -ROUGAIL_CUSTOM2="string1,string2,string3" +ROUGAIL.CUSTOM1="string1,string2,string3" +ROUGAIL.CUSTOM2="string1,string2,string3" diff --git a/tests/results/01_6custom_multi/file/mandatories.env b/tests/results/01_6custom_multi/file/mandatories.env index 6579e66..9c5f691 100644 --- a/tests/results/01_6custom_multi/file/mandatories.env +++ b/tests/results/01_6custom_multi/file/mandatories.env @@ -1 +1 @@ -ROUGAIL_CUSTOM1="string1,string2,string3" +ROUGAIL.CUSTOM1="string1,string2,string3" diff --git a/tests/results/01_6float_multi/file/all.env b/tests/results/01_6float_multi/file/all.env index 4b0163c..9c329a4 100644 --- a/tests/results/01_6float_multi/file/all.env +++ b/tests/results/01_6float_multi/file/all.env @@ -1,8 +1,8 @@ -ROUGAIL_VAR1="1.1,2.2,3.3" -ROUGAIL_VAR2="1.1,2.2,3.3" -ROUGAIL_VAR3="1.1,2.2,3.3" -ROUGAIL_VAR4="1.1,2.2,3.3" -ROUGAIL_VAR5="1.1,2.2,3.3" -ROUGAIL_VAR6="1.1,2.2,3.3" -ROUGAIL_VAR7="1.1,2.2,3.3" -ROUGAIL_VAR8="1.1,2.2,3.3" +ROUGAIL.VAR1="1.1,2.2,3.3" +ROUGAIL.VAR2="1.1,2.2,3.3" +ROUGAIL.VAR3="1.1,2.2,3.3" +ROUGAIL.VAR4="1.1,2.2,3.3" +ROUGAIL.VAR5="1.1,2.2,3.3" +ROUGAIL.VAR6="1.1,2.2,3.3" +ROUGAIL.VAR7="1.1,2.2,3.3" +ROUGAIL.VAR8="1.1,2.2,3.3" diff --git a/tests/results/01_6float_multi/file/all_exclude.env b/tests/results/01_6float_multi/file/all_exclude.env index 4b0163c..9c329a4 100644 --- a/tests/results/01_6float_multi/file/all_exclude.env +++ b/tests/results/01_6float_multi/file/all_exclude.env @@ -1,8 +1,8 @@ -ROUGAIL_VAR1="1.1,2.2,3.3" -ROUGAIL_VAR2="1.1,2.2,3.3" -ROUGAIL_VAR3="1.1,2.2,3.3" -ROUGAIL_VAR4="1.1,2.2,3.3" -ROUGAIL_VAR5="1.1,2.2,3.3" -ROUGAIL_VAR6="1.1,2.2,3.3" -ROUGAIL_VAR7="1.1,2.2,3.3" -ROUGAIL_VAR8="1.1,2.2,3.3" +ROUGAIL.VAR1="1.1,2.2,3.3" +ROUGAIL.VAR2="1.1,2.2,3.3" +ROUGAIL.VAR3="1.1,2.2,3.3" +ROUGAIL.VAR4="1.1,2.2,3.3" +ROUGAIL.VAR5="1.1,2.2,3.3" +ROUGAIL.VAR6="1.1,2.2,3.3" +ROUGAIL.VAR7="1.1,2.2,3.3" +ROUGAIL.VAR8="1.1,2.2,3.3" diff --git a/tests/results/01_6number_multi/file/all.env b/tests/results/01_6number_multi/file/all.env index 07e7f23..c630b18 100644 --- a/tests/results/01_6number_multi/file/all.env +++ b/tests/results/01_6number_multi/file/all.env @@ -1,8 +1,8 @@ -ROUGAIL_VAR1="1,2,3" -ROUGAIL_VAR2="1,2,3" -ROUGAIL_VAR3="1,2,3" -ROUGAIL_VAR4="1,2,3" -ROUGAIL_VAR5="1,2,3" -ROUGAIL_VAR6="1,2,3" -ROUGAIL_VAR7="1,2,3" -ROUGAIL_VAR8="1,2,3" +ROUGAIL.VAR1="1,2,3" +ROUGAIL.VAR2="1,2,3" +ROUGAIL.VAR3="1,2,3" +ROUGAIL.VAR4="1,2,3" +ROUGAIL.VAR5="1,2,3" +ROUGAIL.VAR6="1,2,3" +ROUGAIL.VAR7="1,2,3" +ROUGAIL.VAR8="1,2,3" diff --git a/tests/results/01_6number_multi/file/all_exclude.env b/tests/results/01_6number_multi/file/all_exclude.env index 07e7f23..c630b18 100644 --- a/tests/results/01_6number_multi/file/all_exclude.env +++ b/tests/results/01_6number_multi/file/all_exclude.env @@ -1,8 +1,8 @@ -ROUGAIL_VAR1="1,2,3" -ROUGAIL_VAR2="1,2,3" -ROUGAIL_VAR3="1,2,3" -ROUGAIL_VAR4="1,2,3" -ROUGAIL_VAR5="1,2,3" -ROUGAIL_VAR6="1,2,3" -ROUGAIL_VAR7="1,2,3" -ROUGAIL_VAR8="1,2,3" +ROUGAIL.VAR1="1,2,3" +ROUGAIL.VAR2="1,2,3" +ROUGAIL.VAR3="1,2,3" +ROUGAIL.VAR4="1,2,3" +ROUGAIL.VAR5="1,2,3" +ROUGAIL.VAR6="1,2,3" +ROUGAIL.VAR7="1,2,3" +ROUGAIL.VAR8="1,2,3" diff --git a/tests/results/01_6string_empty/file/all.env b/tests/results/01_6string_empty/file/all.env index c3323e7..ad360a9 100644 --- a/tests/results/01_6string_empty/file/all.env +++ b/tests/results/01_6string_empty/file/all.env @@ -1 +1 @@ -ROUGAIL_VAR1="string1,string2,string3" +ROUGAIL.VAR1="string1,string2,string3" diff --git a/tests/results/01_6string_empty/file/all_exclude.env b/tests/results/01_6string_empty/file/all_exclude.env index c3323e7..ad360a9 100644 --- a/tests/results/01_6string_empty/file/all_exclude.env +++ b/tests/results/01_6string_empty/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_VAR1="string1,string2,string3" +ROUGAIL.VAR1="string1,string2,string3" diff --git a/tests/results/01_6string_empty/file/mandatories.env b/tests/results/01_6string_empty/file/mandatories.env index c3323e7..ad360a9 100644 --- a/tests/results/01_6string_empty/file/mandatories.env +++ b/tests/results/01_6string_empty/file/mandatories.env @@ -1 +1 @@ -ROUGAIL_VAR1="string1,string2,string3" +ROUGAIL.VAR1="string1,string2,string3" diff --git a/tests/results/01_6string_multi/file/all.env b/tests/results/01_6string_multi/file/all.env index 025e873..76a22f7 100644 --- a/tests/results/01_6string_multi/file/all.env +++ b/tests/results/01_6string_multi/file/all.env @@ -1,8 +1,8 @@ -ROUGAIL_VAR1="string1,string2,string3" -ROUGAIL_VAR2="string1,string2,string3" -ROUGAIL_VAR3="string1" -ROUGAIL_VAR4="string1,string2,string3" -ROUGAIL_VAR5="string1,string2,string3" -ROUGAIL_VAR6="string1,string2,string3" -ROUGAIL_VAR7="string1,string2,string3" -ROUGAIL_VAR8="string1,string2,string3" +ROUGAIL.VAR1="string1,string2,string3" +ROUGAIL.VAR2="string1,string2,string3" +ROUGAIL.VAR3="string1" +ROUGAIL.VAR4="string1,string2,string3" +ROUGAIL.VAR5="string1,string2,string3" +ROUGAIL.VAR6="string1,string2,string3" +ROUGAIL.VAR7="string1,string2,string3" +ROUGAIL.VAR8="string1,string2,string3" diff --git a/tests/results/01_6string_multi/file/all_exclude.env b/tests/results/01_6string_multi/file/all_exclude.env index 025e873..76a22f7 100644 --- a/tests/results/01_6string_multi/file/all_exclude.env +++ b/tests/results/01_6string_multi/file/all_exclude.env @@ -1,8 +1,8 @@ -ROUGAIL_VAR1="string1,string2,string3" -ROUGAIL_VAR2="string1,string2,string3" -ROUGAIL_VAR3="string1" -ROUGAIL_VAR4="string1,string2,string3" -ROUGAIL_VAR5="string1,string2,string3" -ROUGAIL_VAR6="string1,string2,string3" -ROUGAIL_VAR7="string1,string2,string3" -ROUGAIL_VAR8="string1,string2,string3" +ROUGAIL.VAR1="string1,string2,string3" +ROUGAIL.VAR2="string1,string2,string3" +ROUGAIL.VAR3="string1" +ROUGAIL.VAR4="string1,string2,string3" +ROUGAIL.VAR5="string1,string2,string3" +ROUGAIL.VAR6="string1,string2,string3" +ROUGAIL.VAR7="string1,string2,string3" +ROUGAIL.VAR8="string1,string2,string3" diff --git a/tests/results/01_6string_multi/file/mandatories.env b/tests/results/01_6string_multi/file/mandatories.env index 8c3e057..e4f0d00 100644 --- a/tests/results/01_6string_multi/file/mandatories.env +++ b/tests/results/01_6string_multi/file/mandatories.env @@ -1,3 +1,3 @@ -ROUGAIL_VAR1="string1,string2,string3" -ROUGAIL_VAR2="string1,string2,string3" -ROUGAIL_VAR3="string1" +ROUGAIL.VAR1="string1,string2,string3" +ROUGAIL.VAR2="string1,string2,string3" +ROUGAIL.VAR3="string1" diff --git a/tests/results/01_7value_multi_doublequote/file/all.env b/tests/results/01_7value_multi_doublequote/file/all.env index cb9cc7f..aa319c8 100644 --- a/tests/results/01_7value_multi_doublequote/file/all.env +++ b/tests/results/01_7value_multi_doublequote/file/all.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="string1,string2,string3" +ROUGAIL.VARIABLE="string1,string2,string3" diff --git a/tests/results/01_7value_multi_doublequote/file/all_exclude.env b/tests/results/01_7value_multi_doublequote/file/all_exclude.env index cb9cc7f..aa319c8 100644 --- a/tests/results/01_7value_multi_doublequote/file/all_exclude.env +++ b/tests/results/01_7value_multi_doublequote/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="string1,string2,string3" +ROUGAIL.VARIABLE="string1,string2,string3" diff --git a/tests/results/01_7value_multi_doublequote2/file/all.env b/tests/results/01_7value_multi_doublequote2/file/all.env index cb9cc7f..aa319c8 100644 --- a/tests/results/01_7value_multi_doublequote2/file/all.env +++ b/tests/results/01_7value_multi_doublequote2/file/all.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="string1,string2,string3" +ROUGAIL.VARIABLE="string1,string2,string3" diff --git a/tests/results/01_7value_multi_doublequote2/file/all_exclude.env b/tests/results/01_7value_multi_doublequote2/file/all_exclude.env index cb9cc7f..aa319c8 100644 --- a/tests/results/01_7value_multi_doublequote2/file/all_exclude.env +++ b/tests/results/01_7value_multi_doublequote2/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="string1,string2,string3" +ROUGAIL.VARIABLE="string1,string2,string3" diff --git a/tests/results/01_7value_multi_quote/file/all.env b/tests/results/01_7value_multi_quote/file/all.env index cb9cc7f..aa319c8 100644 --- a/tests/results/01_7value_multi_quote/file/all.env +++ b/tests/results/01_7value_multi_quote/file/all.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="string1,string2,string3" +ROUGAIL.VARIABLE="string1,string2,string3" diff --git a/tests/results/01_7value_multi_quote/file/all_exclude.env b/tests/results/01_7value_multi_quote/file/all_exclude.env index cb9cc7f..aa319c8 100644 --- a/tests/results/01_7value_multi_quote/file/all_exclude.env +++ b/tests/results/01_7value_multi_quote/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="string1,string2,string3" +ROUGAIL.VARIABLE="string1,string2,string3" diff --git a/tests/results/01_8calculation_information_multi/file/all.env b/tests/results/01_8calculation_information_multi/file/all.env index cb9cc7f..aa319c8 100644 --- a/tests/results/01_8calculation_information_multi/file/all.env +++ b/tests/results/01_8calculation_information_multi/file/all.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="string1,string2,string3" +ROUGAIL.VARIABLE="string1,string2,string3" diff --git a/tests/results/01_8calculation_information_multi/file/all_exclude.env b/tests/results/01_8calculation_information_multi/file/all_exclude.env index cb9cc7f..aa319c8 100644 --- a/tests/results/01_8calculation_information_multi/file/all_exclude.env +++ b/tests/results/01_8calculation_information_multi/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="string1,string2,string3" +ROUGAIL.VARIABLE="string1,string2,string3" diff --git a/tests/results/01_9choice_variable_multi/file/all.env b/tests/results/01_9choice_variable_multi/file/all.env index c515ce5..5ed3be7 100644 --- a/tests/results/01_9choice_variable_multi/file/all.env +++ b/tests/results/01_9choice_variable_multi/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_VARIABLE1="string1,string2,string3" -ROUGAIL_VARIABLE2="string1" +ROUGAIL.VARIABLE1="string1,string2,string3" +ROUGAIL.VARIABLE2="string1" diff --git a/tests/results/01_9choice_variable_multi/file/all_exclude.env b/tests/results/01_9choice_variable_multi/file/all_exclude.env index c515ce5..5ed3be7 100644 --- a/tests/results/01_9choice_variable_multi/file/all_exclude.env +++ b/tests/results/01_9choice_variable_multi/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_VARIABLE1="string1,string2,string3" -ROUGAIL_VARIABLE2="string1" +ROUGAIL.VARIABLE1="string1,string2,string3" +ROUGAIL.VARIABLE2="string1" diff --git a/tests/results/01_9choice_variable_multi/file/mandatories.env b/tests/results/01_9choice_variable_multi/file/mandatories.env index d71b0d4..ec3425a 100644 --- a/tests/results/01_9choice_variable_multi/file/mandatories.env +++ b/tests/results/01_9choice_variable_multi/file/mandatories.env @@ -1 +1 @@ -ROUGAIL_VARIABLE2="a" +ROUGAIL.VARIABLE2="a" diff --git a/tests/results/04_0type_param/file/all.env b/tests/results/04_0type_param/file/all.env index 7e407d0..61cf520 100644 --- a/tests/results/04_0type_param/file/all.env +++ b/tests/results/04_0type_param/file/all.env @@ -1 +1 @@ -ROUGAIL_INT="1" +ROUGAIL.INT="1" diff --git a/tests/results/04_0type_param/file/all_exclude.env b/tests/results/04_0type_param/file/all_exclude.env index 7e407d0..61cf520 100644 --- a/tests/results/04_0type_param/file/all_exclude.env +++ b/tests/results/04_0type_param/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_INT="1" +ROUGAIL.INT="1" diff --git a/tests/results/04_1auto_save/file/all.env b/tests/results/04_1auto_save/file/all.env index 9385db5..14a7974 100644 --- a/tests/results/04_1auto_save/file/all.env +++ b/tests/results/04_1auto_save/file/all.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="no" +ROUGAIL.VARIABLE="no" diff --git a/tests/results/04_1auto_save/file/all_exclude.env b/tests/results/04_1auto_save/file/all_exclude.env index 9385db5..14a7974 100644 --- a/tests/results/04_1auto_save/file/all_exclude.env +++ b/tests/results/04_1auto_save/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="no" +ROUGAIL.VARIABLE="no" diff --git a/tests/results/04_1auto_save_and_calculated/file/all.env b/tests/results/04_1auto_save_and_calculated/file/all.env index 87600ea..ad4e3c4 100644 --- a/tests/results/04_1auto_save_and_calculated/file/all.env +++ b/tests/results/04_1auto_save_and_calculated/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_VAR1="string1" -ROUGAIL_VAR2="no" +ROUGAIL.VAR1="string1" +ROUGAIL.VAR2="no" diff --git a/tests/results/04_1auto_save_and_calculated/file/all_exclude.env b/tests/results/04_1auto_save_and_calculated/file/all_exclude.env index 87600ea..ad4e3c4 100644 --- a/tests/results/04_1auto_save_and_calculated/file/all_exclude.env +++ b/tests/results/04_1auto_save_and_calculated/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_VAR1="string1" -ROUGAIL_VAR2="no" +ROUGAIL.VAR1="string1" +ROUGAIL.VAR2="no" diff --git a/tests/results/04_1auto_save_and_calculated_hidden/file/all.env b/tests/results/04_1auto_save_and_calculated_hidden/file/all.env index 709f494..df8f4d1 100644 --- a/tests/results/04_1auto_save_and_calculated_hidden/file/all.env +++ b/tests/results/04_1auto_save_and_calculated_hidden/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_VAR1="string1" -ROUGAIL_VAR2="yes" +ROUGAIL.VAR1="string1" +ROUGAIL.VAR2="yes" diff --git a/tests/results/04_1auto_save_and_calculated_hidden/file/all_exclude.env b/tests/results/04_1auto_save_and_calculated_hidden/file/all_exclude.env index 709f494..df8f4d1 100644 --- a/tests/results/04_1auto_save_and_calculated_hidden/file/all_exclude.env +++ b/tests/results/04_1auto_save_and_calculated_hidden/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_VAR1="string1" -ROUGAIL_VAR2="yes" +ROUGAIL.VAR1="string1" +ROUGAIL.VAR2="yes" diff --git a/tests/results/04_1auto_save_and_hidden/errors/all.json b/tests/results/04_1auto_save_and_hidden/errors/all.json index 68d4c66..e9b3bc1 100644 --- a/tests/results/04_1auto_save_and_hidden/errors/all.json +++ b/tests/results/04_1auto_save_and_hidden/errors/all.json @@ -1,6 +1,6 @@ { "errors": [ - "ne peut acc\u00e9der \u00e0 l'option \"rougail.var\" (autosave variable) \u00e0 cause de la propri\u00e9t\u00e9 \"hidden\"" + "cannot access to option \"rougail.var\" (autosave variable) because has property \"hidden\"" ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/04_1auto_save_and_hidden/file/all.env b/tests/results/04_1auto_save_and_hidden/file/all.env index 14477a9..863fbb8 100644 --- a/tests/results/04_1auto_save_and_hidden/file/all.env +++ b/tests/results/04_1auto_save_and_hidden/file/all.env @@ -1 +1 @@ -ROUGAIL_VAR="yes" +ROUGAIL.VAR="yes" diff --git a/tests/results/04_1auto_save_and_hidden/file/all_exclude.env b/tests/results/04_1auto_save_and_hidden/file/all_exclude.env index 14477a9..863fbb8 100644 --- a/tests/results/04_1auto_save_and_hidden/file/all_exclude.env +++ b/tests/results/04_1auto_save_and_hidden/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_VAR="yes" +ROUGAIL.VAR="yes" diff --git a/tests/results/04_1default_calculation_hidden/errors/mandatories.json b/tests/results/04_1default_calculation_hidden/errors/mandatories.json index f68d4a1..52a26db 100644 --- a/tests/results/04_1default_calculation_hidden/errors/mandatories.json +++ b/tests/results/04_1default_calculation_hidden/errors/mandatories.json @@ -1,6 +1,6 @@ { "errors": [ - "ne peut acc\u00e9der \u00e0 l'option \"rougail.var2\" (a second variable) \u00e0 cause de la propri\u00e9t\u00e9 \"disabled\"" + "cannot access to option \"rougail.var2\" (a second variable) because has property \"disabled\"" ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/04_1default_calculation_hidden/file/all.env b/tests/results/04_1default_calculation_hidden/file/all.env index 000c6a3..ad10096 100644 --- a/tests/results/04_1default_calculation_hidden/file/all.env +++ b/tests/results/04_1default_calculation_hidden/file/all.env @@ -1,3 +1,3 @@ -ROUGAIL_VAR1="string1" -ROUGAIL_VAR2="string1" -ROUGAIL_VAR3="string1" +ROUGAIL.VAR1="string1" +ROUGAIL.VAR2="string1" +ROUGAIL.VAR3="string1" diff --git a/tests/results/04_1default_calculation_hidden/file/all_exclude.env b/tests/results/04_1default_calculation_hidden/file/all_exclude.env index 000c6a3..ad10096 100644 --- a/tests/results/04_1default_calculation_hidden/file/all_exclude.env +++ b/tests/results/04_1default_calculation_hidden/file/all_exclude.env @@ -1,3 +1,3 @@ -ROUGAIL_VAR1="string1" -ROUGAIL_VAR2="string1" -ROUGAIL_VAR3="string1" +ROUGAIL.VAR1="string1" +ROUGAIL.VAR2="string1" +ROUGAIL.VAR3="string1" diff --git a/tests/results/04_1default_calculation_hidden/file/mandatories.env b/tests/results/04_1default_calculation_hidden/file/mandatories.env index a010a7a..5640f89 100644 --- a/tests/results/04_1default_calculation_hidden/file/mandatories.env +++ b/tests/results/04_1default_calculation_hidden/file/mandatories.env @@ -1 +1 @@ -ROUGAIL_VAR2="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/04_1default_calculation_hidden_2/errors/mandatories.json b/tests/results/04_1default_calculation_hidden_2/errors/mandatories.json index f68d4a1..52a26db 100644 --- a/tests/results/04_1default_calculation_hidden_2/errors/mandatories.json +++ b/tests/results/04_1default_calculation_hidden_2/errors/mandatories.json @@ -1,6 +1,6 @@ { "errors": [ - "ne peut acc\u00e9der \u00e0 l'option \"rougail.var2\" (a second variable) \u00e0 cause de la propri\u00e9t\u00e9 \"disabled\"" + "cannot access to option \"rougail.var2\" (a second variable) because has property \"disabled\"" ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/04_1default_calculation_hidden_2/file/all.env b/tests/results/04_1default_calculation_hidden_2/file/all.env index 000c6a3..ad10096 100644 --- a/tests/results/04_1default_calculation_hidden_2/file/all.env +++ b/tests/results/04_1default_calculation_hidden_2/file/all.env @@ -1,3 +1,3 @@ -ROUGAIL_VAR1="string1" -ROUGAIL_VAR2="string1" -ROUGAIL_VAR3="string1" +ROUGAIL.VAR1="string1" +ROUGAIL.VAR2="string1" +ROUGAIL.VAR3="string1" diff --git a/tests/results/04_1default_calculation_hidden_2/file/all_exclude.env b/tests/results/04_1default_calculation_hidden_2/file/all_exclude.env index 000c6a3..ad10096 100644 --- a/tests/results/04_1default_calculation_hidden_2/file/all_exclude.env +++ b/tests/results/04_1default_calculation_hidden_2/file/all_exclude.env @@ -1,3 +1,3 @@ -ROUGAIL_VAR1="string1" -ROUGAIL_VAR2="string1" -ROUGAIL_VAR3="string1" +ROUGAIL.VAR1="string1" +ROUGAIL.VAR2="string1" +ROUGAIL.VAR3="string1" diff --git a/tests/results/04_1default_calculation_hidden_2/file/mandatories.env b/tests/results/04_1default_calculation_hidden_2/file/mandatories.env index c20f168..87ac225 100644 --- a/tests/results/04_1default_calculation_hidden_2/file/mandatories.env +++ b/tests/results/04_1default_calculation_hidden_2/file/mandatories.env @@ -1,2 +1,2 @@ -ROUGAIL_VAR2="string1" -ROUGAIL_VAR3="string1" +ROUGAIL.VAR2="string1" +ROUGAIL.VAR3="string1" diff --git a/tests/results/04_5disabled_calculation/file/all.env b/tests/results/04_5disabled_calculation/file/all.env index 3da85df..54e3f9e 100644 --- a/tests/results/04_5disabled_calculation/file/all.env +++ b/tests/results/04_5disabled_calculation/file/all.env @@ -1,3 +1,3 @@ -ROUGAIL_CONDITION="string1" -ROUGAIL_VARIABLE1="string1" -ROUGAIL_VARIABLE2="string1" +ROUGAIL.CONDITION="string1" +ROUGAIL.VARIABLE1="string1" +ROUGAIL.VARIABLE2="string1" diff --git a/tests/results/04_5disabled_calculation/file/all_exclude.env b/tests/results/04_5disabled_calculation/file/all_exclude.env index 3da85df..54e3f9e 100644 --- a/tests/results/04_5disabled_calculation/file/all_exclude.env +++ b/tests/results/04_5disabled_calculation/file/all_exclude.env @@ -1,3 +1,3 @@ -ROUGAIL_CONDITION="string1" -ROUGAIL_VARIABLE1="string1" -ROUGAIL_VARIABLE2="string1" +ROUGAIL.CONDITION="string1" +ROUGAIL.VARIABLE1="string1" +ROUGAIL.VARIABLE2="string1" diff --git a/tests/results/04_5disabled_calculation/file/mandatories.env b/tests/results/04_5disabled_calculation/file/mandatories.env index 39a8f11..d67f722 100644 --- a/tests/results/04_5disabled_calculation/file/mandatories.env +++ b/tests/results/04_5disabled_calculation/file/mandatories.env @@ -1,2 +1,2 @@ -ROUGAIL_VARIABLE1="string1" -ROUGAIL_VARIABLE2="string1" +ROUGAIL.VARIABLE1="string1" +ROUGAIL.VARIABLE2="string1" diff --git a/tests/results/04_5disabled_calculation_default/file/all.env b/tests/results/04_5disabled_calculation_default/file/all.env index f50ed5e..4352b92 100644 --- a/tests/results/04_5disabled_calculation_default/file/all.env +++ b/tests/results/04_5disabled_calculation_default/file/all.env @@ -1,3 +1,3 @@ -ROUGAIL_CONDITION="string1" -ROUGAIL_VAR1="string1" -ROUGAIL_VAR2="string1" +ROUGAIL.CONDITION="string1" +ROUGAIL.VAR1="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/04_5disabled_calculation_default/file/all_exclude.env b/tests/results/04_5disabled_calculation_default/file/all_exclude.env index f50ed5e..4352b92 100644 --- a/tests/results/04_5disabled_calculation_default/file/all_exclude.env +++ b/tests/results/04_5disabled_calculation_default/file/all_exclude.env @@ -1,3 +1,3 @@ -ROUGAIL_CONDITION="string1" -ROUGAIL_VAR1="string1" -ROUGAIL_VAR2="string1" +ROUGAIL.CONDITION="string1" +ROUGAIL.VAR1="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/04_5disabled_calculation_optional/errors/all.json b/tests/results/04_5disabled_calculation_optional/errors/all.json index f459cde..025f490 100644 --- a/tests/results/04_5disabled_calculation_optional/errors/all.json +++ b/tests/results/04_5disabled_calculation_optional/errors/all.json @@ -1,6 +1,6 @@ { "errors": [ - "ne peut acc\u00e9der \u00e0 l'option \"rougail.var1\" (a first variable) \u00e0 cause de la propri\u00e9t\u00e9 \"hidden\" (unknown is undefined)" + "cannot access to option \"rougail.var1\" (a first variable) because has property \"hidden\" (unknown is undefined)" ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/04_5disabled_calculation_optional/file/all.env b/tests/results/04_5disabled_calculation_optional/file/all.env index f50ed5e..4352b92 100644 --- a/tests/results/04_5disabled_calculation_optional/file/all.env +++ b/tests/results/04_5disabled_calculation_optional/file/all.env @@ -1,3 +1,3 @@ -ROUGAIL_CONDITION="string1" -ROUGAIL_VAR1="string1" -ROUGAIL_VAR2="string1" +ROUGAIL.CONDITION="string1" +ROUGAIL.VAR1="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/04_5disabled_calculation_optional/file/all_exclude.env b/tests/results/04_5disabled_calculation_optional/file/all_exclude.env index f50ed5e..4352b92 100644 --- a/tests/results/04_5disabled_calculation_optional/file/all_exclude.env +++ b/tests/results/04_5disabled_calculation_optional/file/all_exclude.env @@ -1,3 +1,3 @@ -ROUGAIL_CONDITION="string1" -ROUGAIL_VAR1="string1" -ROUGAIL_VAR2="string1" +ROUGAIL.CONDITION="string1" +ROUGAIL.VAR1="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/04_5disabled_calculation_variable/errors/all.json b/tests/results/04_5disabled_calculation_variable/errors/all.json index c633e4d..0be009d 100644 --- a/tests/results/04_5disabled_calculation_variable/errors/all.json +++ b/tests/results/04_5disabled_calculation_variable/errors/all.json @@ -1,6 +1,6 @@ { "errors": [ - "ne peut acc\u00e9der \u00e0 l'option \"rougail.variable\" (a variable) \u00e0 cause de la propri\u00e9t\u00e9 \"disabled\"" + "cannot access to option \"rougail.variable\" (a variable) because has property \"disabled\"" ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/04_5disabled_calculation_variable/file/all.env b/tests/results/04_5disabled_calculation_variable/file/all.env index 79b0cef..39618ad 100644 --- a/tests/results/04_5disabled_calculation_variable/file/all.env +++ b/tests/results/04_5disabled_calculation_variable/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_CONDITION="True" -ROUGAIL_VARIABLE="string1" +ROUGAIL.CONDITION="True" +ROUGAIL.VARIABLE="string1" diff --git a/tests/results/04_5disabled_calculation_variable/file/all_exclude.env b/tests/results/04_5disabled_calculation_variable/file/all_exclude.env index 79b0cef..39618ad 100644 --- a/tests/results/04_5disabled_calculation_variable/file/all_exclude.env +++ b/tests/results/04_5disabled_calculation_variable/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_CONDITION="True" -ROUGAIL_VARIABLE="string1" +ROUGAIL.CONDITION="True" +ROUGAIL.VARIABLE="string1" diff --git a/tests/results/04_5disabled_calculation_variable/file/mandatories.env b/tests/results/04_5disabled_calculation_variable/file/mandatories.env index 0f489bd..6a36f07 100644 --- a/tests/results/04_5disabled_calculation_variable/file/mandatories.env +++ b/tests/results/04_5disabled_calculation_variable/file/mandatories.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="string1" +ROUGAIL.VARIABLE="string1" diff --git a/tests/results/04_5disabled_calculation_variable2/errors/all.json b/tests/results/04_5disabled_calculation_variable2/errors/all.json index c633e4d..0be009d 100644 --- a/tests/results/04_5disabled_calculation_variable2/errors/all.json +++ b/tests/results/04_5disabled_calculation_variable2/errors/all.json @@ -1,6 +1,6 @@ { "errors": [ - "ne peut acc\u00e9der \u00e0 l'option \"rougail.variable\" (a variable) \u00e0 cause de la propri\u00e9t\u00e9 \"disabled\"" + "cannot access to option \"rougail.variable\" (a variable) because has property \"disabled\"" ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/04_5disabled_calculation_variable2/errors/mandatories.json b/tests/results/04_5disabled_calculation_variable2/errors/mandatories.json index c633e4d..0be009d 100644 --- a/tests/results/04_5disabled_calculation_variable2/errors/mandatories.json +++ b/tests/results/04_5disabled_calculation_variable2/errors/mandatories.json @@ -1,6 +1,6 @@ { "errors": [ - "ne peut acc\u00e9der \u00e0 l'option \"rougail.variable\" (a variable) \u00e0 cause de la propri\u00e9t\u00e9 \"disabled\"" + "cannot access to option \"rougail.variable\" (a variable) because has property \"disabled\"" ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/04_5disabled_calculation_variable2/file/all.env b/tests/results/04_5disabled_calculation_variable2/file/all.env index 79b0cef..39618ad 100644 --- a/tests/results/04_5disabled_calculation_variable2/file/all.env +++ b/tests/results/04_5disabled_calculation_variable2/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_CONDITION="True" -ROUGAIL_VARIABLE="string1" +ROUGAIL.CONDITION="True" +ROUGAIL.VARIABLE="string1" diff --git a/tests/results/04_5disabled_calculation_variable2/file/all_exclude.env b/tests/results/04_5disabled_calculation_variable2/file/all_exclude.env index 79b0cef..39618ad 100644 --- a/tests/results/04_5disabled_calculation_variable2/file/all_exclude.env +++ b/tests/results/04_5disabled_calculation_variable2/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_CONDITION="True" -ROUGAIL_VARIABLE="string1" +ROUGAIL.CONDITION="True" +ROUGAIL.VARIABLE="string1" diff --git a/tests/results/04_5disabled_calculation_variable2/file/mandatories.env b/tests/results/04_5disabled_calculation_variable2/file/mandatories.env index 0f489bd..6a36f07 100644 --- a/tests/results/04_5disabled_calculation_variable2/file/mandatories.env +++ b/tests/results/04_5disabled_calculation_variable2/file/mandatories.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="string1" +ROUGAIL.VARIABLE="string1" diff --git a/tests/results/04_5disabled_calculation_variable3/errors/mandatories.json b/tests/results/04_5disabled_calculation_variable3/errors/mandatories.json index c633e4d..0be009d 100644 --- a/tests/results/04_5disabled_calculation_variable3/errors/mandatories.json +++ b/tests/results/04_5disabled_calculation_variable3/errors/mandatories.json @@ -1,6 +1,6 @@ { "errors": [ - "ne peut acc\u00e9der \u00e0 l'option \"rougail.variable\" (a variable) \u00e0 cause de la propri\u00e9t\u00e9 \"disabled\"" + "cannot access to option \"rougail.variable\" (a variable) because has property \"disabled\"" ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/04_5disabled_calculation_variable3/file/all.env b/tests/results/04_5disabled_calculation_variable3/file/all.env index 85e2db8..6c01a7e 100644 --- a/tests/results/04_5disabled_calculation_variable3/file/all.env +++ b/tests/results/04_5disabled_calculation_variable3/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_CONDITION="string1" -ROUGAIL_VARIABLE="string1" +ROUGAIL.CONDITION="string1" +ROUGAIL.VARIABLE="string1" diff --git a/tests/results/04_5disabled_calculation_variable3/file/all_exclude.env b/tests/results/04_5disabled_calculation_variable3/file/all_exclude.env index 85e2db8..6c01a7e 100644 --- a/tests/results/04_5disabled_calculation_variable3/file/all_exclude.env +++ b/tests/results/04_5disabled_calculation_variable3/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_CONDITION="string1" -ROUGAIL_VARIABLE="string1" +ROUGAIL.CONDITION="string1" +ROUGAIL.VARIABLE="string1" diff --git a/tests/results/04_5disabled_calculation_variable3/file/mandatories.env b/tests/results/04_5disabled_calculation_variable3/file/mandatories.env index 0f489bd..6a36f07 100644 --- a/tests/results/04_5disabled_calculation_variable3/file/mandatories.env +++ b/tests/results/04_5disabled_calculation_variable3/file/mandatories.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="string1" +ROUGAIL.VARIABLE="string1" diff --git a/tests/results/04_5disabled_calculation_variable4/errors/all.json b/tests/results/04_5disabled_calculation_variable4/errors/all.json index c633e4d..0be009d 100644 --- a/tests/results/04_5disabled_calculation_variable4/errors/all.json +++ b/tests/results/04_5disabled_calculation_variable4/errors/all.json @@ -1,6 +1,6 @@ { "errors": [ - "ne peut acc\u00e9der \u00e0 l'option \"rougail.variable\" (a variable) \u00e0 cause de la propri\u00e9t\u00e9 \"disabled\"" + "cannot access to option \"rougail.variable\" (a variable) because has property \"disabled\"" ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/04_5disabled_calculation_variable4/file/all.env b/tests/results/04_5disabled_calculation_variable4/file/all.env index 85e2db8..6c01a7e 100644 --- a/tests/results/04_5disabled_calculation_variable4/file/all.env +++ b/tests/results/04_5disabled_calculation_variable4/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_CONDITION="string1" -ROUGAIL_VARIABLE="string1" +ROUGAIL.CONDITION="string1" +ROUGAIL.VARIABLE="string1" diff --git a/tests/results/04_5disabled_calculation_variable4/file/all_exclude.env b/tests/results/04_5disabled_calculation_variable4/file/all_exclude.env index 85e2db8..6c01a7e 100644 --- a/tests/results/04_5disabled_calculation_variable4/file/all_exclude.env +++ b/tests/results/04_5disabled_calculation_variable4/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_CONDITION="string1" -ROUGAIL_VARIABLE="string1" +ROUGAIL.CONDITION="string1" +ROUGAIL.VARIABLE="string1" diff --git a/tests/results/04_5disabled_calculation_variable4/file/mandatories.env b/tests/results/04_5disabled_calculation_variable4/file/mandatories.env index 0f489bd..6a36f07 100644 --- a/tests/results/04_5disabled_calculation_variable4/file/mandatories.env +++ b/tests/results/04_5disabled_calculation_variable4/file/mandatories.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="string1" +ROUGAIL.VARIABLE="string1" diff --git a/tests/results/04_5hidden_calculation/file/all.env b/tests/results/04_5hidden_calculation/file/all.env index f50ed5e..4352b92 100644 --- a/tests/results/04_5hidden_calculation/file/all.env +++ b/tests/results/04_5hidden_calculation/file/all.env @@ -1,3 +1,3 @@ -ROUGAIL_CONDITION="string1" -ROUGAIL_VAR1="string1" -ROUGAIL_VAR2="string1" +ROUGAIL.CONDITION="string1" +ROUGAIL.VAR1="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/04_5hidden_calculation/file/all_exclude.env b/tests/results/04_5hidden_calculation/file/all_exclude.env index f50ed5e..4352b92 100644 --- a/tests/results/04_5hidden_calculation/file/all_exclude.env +++ b/tests/results/04_5hidden_calculation/file/all_exclude.env @@ -1,3 +1,3 @@ -ROUGAIL_CONDITION="string1" -ROUGAIL_VAR1="string1" -ROUGAIL_VAR2="string1" +ROUGAIL.CONDITION="string1" +ROUGAIL.VAR1="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/04_5hidden_calculation2/errors/all.json b/tests/results/04_5hidden_calculation2/errors/all.json index 7e9e3e9..e94e555 100644 --- a/tests/results/04_5hidden_calculation2/errors/all.json +++ b/tests/results/04_5hidden_calculation2/errors/all.json @@ -1,7 +1,7 @@ { "errors": [ - "ne peut acc\u00e9der \u00e0 l'option \"rougail.var1\" (a first variable) \u00e0 cause de la propri\u00e9t\u00e9 \"hidden\" (condition is yes)", - "ne peut acc\u00e9der \u00e0 l'option \"rougail.var2\" (a second variable) \u00e0 cause de la propri\u00e9t\u00e9 \"hidden\" (condition is yes)" + "cannot access to option \"rougail.var1\" (a first variable) because has property \"hidden\" (condition is yes)", + "cannot access to option \"rougail.var2\" (a second variable) because has property \"hidden\" (condition is yes)" ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/04_5hidden_calculation2/file/all.env b/tests/results/04_5hidden_calculation2/file/all.env index f50ed5e..4352b92 100644 --- a/tests/results/04_5hidden_calculation2/file/all.env +++ b/tests/results/04_5hidden_calculation2/file/all.env @@ -1,3 +1,3 @@ -ROUGAIL_CONDITION="string1" -ROUGAIL_VAR1="string1" -ROUGAIL_VAR2="string1" +ROUGAIL.CONDITION="string1" +ROUGAIL.VAR1="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/04_5hidden_calculation2/file/all_exclude.env b/tests/results/04_5hidden_calculation2/file/all_exclude.env index f50ed5e..4352b92 100644 --- a/tests/results/04_5hidden_calculation2/file/all_exclude.env +++ b/tests/results/04_5hidden_calculation2/file/all_exclude.env @@ -1,3 +1,3 @@ -ROUGAIL_CONDITION="string1" -ROUGAIL_VAR1="string1" -ROUGAIL_VAR2="string1" +ROUGAIL.CONDITION="string1" +ROUGAIL.VAR1="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/04_5hidden_calculation_default_calculation/file/all.env b/tests/results/04_5hidden_calculation_default_calculation/file/all.env index f50ed5e..4352b92 100644 --- a/tests/results/04_5hidden_calculation_default_calculation/file/all.env +++ b/tests/results/04_5hidden_calculation_default_calculation/file/all.env @@ -1,3 +1,3 @@ -ROUGAIL_CONDITION="string1" -ROUGAIL_VAR1="string1" -ROUGAIL_VAR2="string1" +ROUGAIL.CONDITION="string1" +ROUGAIL.VAR1="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/04_5hidden_calculation_default_calculation/file/all_exclude.env b/tests/results/04_5hidden_calculation_default_calculation/file/all_exclude.env index f50ed5e..4352b92 100644 --- a/tests/results/04_5hidden_calculation_default_calculation/file/all_exclude.env +++ b/tests/results/04_5hidden_calculation_default_calculation/file/all_exclude.env @@ -1,3 +1,3 @@ -ROUGAIL_CONDITION="string1" -ROUGAIL_VAR1="string1" -ROUGAIL_VAR2="string1" +ROUGAIL.CONDITION="string1" +ROUGAIL.VAR1="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/04_5validators/file/all.env b/tests/results/04_5validators/file/all.env index 7e407d0..61cf520 100644 --- a/tests/results/04_5validators/file/all.env +++ b/tests/results/04_5validators/file/all.env @@ -1 +1 @@ -ROUGAIL_INT="1" +ROUGAIL.INT="1" diff --git a/tests/results/04_5validators/file/all_exclude.env b/tests/results/04_5validators/file/all_exclude.env index 7e407d0..61cf520 100644 --- a/tests/results/04_5validators/file/all_exclude.env +++ b/tests/results/04_5validators/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_INT="1" +ROUGAIL.INT="1" diff --git a/tests/results/04_5validators/file/mandatories.env b/tests/results/04_5validators/file/mandatories.env index 7e407d0..61cf520 100644 --- a/tests/results/04_5validators/file/mandatories.env +++ b/tests/results/04_5validators/file/mandatories.env @@ -1 +1 @@ -ROUGAIL_INT="1" +ROUGAIL.INT="1" diff --git a/tests/results/04_5validators_differ/file/all.env b/tests/results/04_5validators_differ/file/all.env index 1368e38..7abcdc9 100644 --- a/tests/results/04_5validators_differ/file/all.env +++ b/tests/results/04_5validators_differ/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_VAR1="another_value" -ROUGAIL_VAR2="string1" +ROUGAIL.VAR1="another_value" +ROUGAIL.VAR2="string1" diff --git a/tests/results/04_5validators_differ/file/all_exclude.env b/tests/results/04_5validators_differ/file/all_exclude.env index 1368e38..7abcdc9 100644 --- a/tests/results/04_5validators_differ/file/all_exclude.env +++ b/tests/results/04_5validators_differ/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_VAR1="another_value" -ROUGAIL_VAR2="string1" +ROUGAIL.VAR1="another_value" +ROUGAIL.VAR2="string1" diff --git a/tests/results/04_5validators_multi/file/all.env b/tests/results/04_5validators_multi/file/all.env index c3323e7..ad360a9 100644 --- a/tests/results/04_5validators_multi/file/all.env +++ b/tests/results/04_5validators_multi/file/all.env @@ -1 +1 @@ -ROUGAIL_VAR1="string1,string2,string3" +ROUGAIL.VAR1="string1,string2,string3" diff --git a/tests/results/04_5validators_multi/file/all_exclude.env b/tests/results/04_5validators_multi/file/all_exclude.env index c3323e7..ad360a9 100644 --- a/tests/results/04_5validators_multi/file/all_exclude.env +++ b/tests/results/04_5validators_multi/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_VAR1="string1,string2,string3" +ROUGAIL.VAR1="string1,string2,string3" diff --git a/tests/results/04_5validators_multi2/file/all.env b/tests/results/04_5validators_multi2/file/all.env index 4d8c206..acef3db 100644 --- a/tests/results/04_5validators_multi2/file/all.env +++ b/tests/results/04_5validators_multi2/file/all.env @@ -1 +1 @@ -ROUGAIL_VAR1="val1,val2" +ROUGAIL.VAR1="val1,val2" diff --git a/tests/results/04_5validators_multi2/file/all_exclude.env b/tests/results/04_5validators_multi2/file/all_exclude.env index 4d8c206..acef3db 100644 --- a/tests/results/04_5validators_multi2/file/all_exclude.env +++ b/tests/results/04_5validators_multi2/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_VAR1="val1,val2" +ROUGAIL.VAR1="val1,val2" diff --git a/tests/results/05_0multi_not_uniq/file/all.env b/tests/results/05_0multi_not_uniq/file/all.env index c3323e7..ad360a9 100644 --- a/tests/results/05_0multi_not_uniq/file/all.env +++ b/tests/results/05_0multi_not_uniq/file/all.env @@ -1 +1 @@ -ROUGAIL_VAR1="string1,string2,string3" +ROUGAIL.VAR1="string1,string2,string3" diff --git a/tests/results/05_0multi_not_uniq/file/all_exclude.env b/tests/results/05_0multi_not_uniq/file/all_exclude.env index c3323e7..ad360a9 100644 --- a/tests/results/05_0multi_not_uniq/file/all_exclude.env +++ b/tests/results/05_0multi_not_uniq/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_VAR1="string1,string2,string3" +ROUGAIL.VAR1="string1,string2,string3" diff --git a/tests/results/05_0multi_uniq/file/all.env b/tests/results/05_0multi_uniq/file/all.env index cb9cc7f..aa319c8 100644 --- a/tests/results/05_0multi_uniq/file/all.env +++ b/tests/results/05_0multi_uniq/file/all.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="string1,string2,string3" +ROUGAIL.VARIABLE="string1,string2,string3" diff --git a/tests/results/05_0multi_uniq/file/all_exclude.env b/tests/results/05_0multi_uniq/file/all_exclude.env index cb9cc7f..aa319c8 100644 --- a/tests/results/05_0multi_uniq/file/all_exclude.env +++ b/tests/results/05_0multi_uniq/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="string1,string2,string3" +ROUGAIL.VARIABLE="string1,string2,string3" diff --git a/tests/results/12_1auto_save_expert/file/all.env b/tests/results/12_1auto_save_expert/file/all.env index 2424cc0..1bf5bcd 100644 --- a/tests/results/12_1auto_save_expert/file/all.env +++ b/tests/results/12_1auto_save_expert/file/all.env @@ -1 +1 @@ -ROUGAIL_VAR="no" +ROUGAIL.VAR="no" diff --git a/tests/results/12_1auto_save_expert/file/all_exclude.env b/tests/results/12_1auto_save_expert/file/all_exclude.env index 2424cc0..1bf5bcd 100644 --- a/tests/results/12_1auto_save_expert/file/all_exclude.env +++ b/tests/results/12_1auto_save_expert/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_VAR="no" +ROUGAIL.VAR="no" diff --git a/tests/results/16_0redefine_description/file/all.env b/tests/results/16_0redefine_description/file/all.env index dbf899f..bea4d82 100644 --- a/tests/results/16_0redefine_description/file/all.env +++ b/tests/results/16_0redefine_description/file/all.env @@ -1 +1 @@ -ROUGAIL_VAR="string1" +ROUGAIL.VAR="string1" diff --git a/tests/results/16_0redefine_description/file/all_exclude.env b/tests/results/16_0redefine_description/file/all_exclude.env index dbf899f..bea4d82 100644 --- a/tests/results/16_0redefine_description/file/all_exclude.env +++ b/tests/results/16_0redefine_description/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_VAR="string1" +ROUGAIL.VAR="string1" diff --git a/tests/results/16_0redefine_description/file/mandatories.env b/tests/results/16_0redefine_description/file/mandatories.env index dbf899f..bea4d82 100644 --- a/tests/results/16_0redefine_description/file/mandatories.env +++ b/tests/results/16_0redefine_description/file/mandatories.env @@ -1 +1 @@ -ROUGAIL_VAR="string1" +ROUGAIL.VAR="string1" diff --git a/tests/results/16_2family_redefine_calculation/errors/all.json b/tests/results/16_2family_redefine_calculation/errors/all.json index 73f341f..29738e7 100644 --- a/tests/results/16_2family_redefine_calculation/errors/all.json +++ b/tests/results/16_2family_redefine_calculation/errors/all.json @@ -1,6 +1,6 @@ { "errors": [ - "ne peut acc\u00e9der \u00e0 l'optiondescription \"rougail.family\" \u00e0 cause de la propri\u00e9t\u00e9 \"disabled\" (true)" + "cannot access to optiondescription \"rougail.family\" because has property \"disabled\" (true)" ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/16_2family_redefine_calculation/errors/mandatories.json b/tests/results/16_2family_redefine_calculation/errors/mandatories.json index 73f341f..29738e7 100644 --- a/tests/results/16_2family_redefine_calculation/errors/mandatories.json +++ b/tests/results/16_2family_redefine_calculation/errors/mandatories.json @@ -1,6 +1,6 @@ { "errors": [ - "ne peut acc\u00e9der \u00e0 l'optiondescription \"rougail.family\" \u00e0 cause de la propri\u00e9t\u00e9 \"disabled\" (true)" + "cannot access to optiondescription \"rougail.family\" because has property \"disabled\" (true)" ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/16_2family_redefine_calculation/file/all.env b/tests/results/16_2family_redefine_calculation/file/all.env index 603af01..537f0b5 100644 --- a/tests/results/16_2family_redefine_calculation/file/all.env +++ b/tests/results/16_2family_redefine_calculation/file/all.env @@ -1 +1 @@ -ROUGAIL_FAMILY.VAR1="string1" +ROUGAIL.FAMILY.VAR1="string1" diff --git a/tests/results/16_2family_redefine_calculation/file/all_exclude.env b/tests/results/16_2family_redefine_calculation/file/all_exclude.env index 603af01..537f0b5 100644 --- a/tests/results/16_2family_redefine_calculation/file/all_exclude.env +++ b/tests/results/16_2family_redefine_calculation/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_FAMILY.VAR1="string1" +ROUGAIL.FAMILY.VAR1="string1" diff --git a/tests/results/16_2family_redefine_calculation/file/mandatories.env b/tests/results/16_2family_redefine_calculation/file/mandatories.env index 603af01..537f0b5 100644 --- a/tests/results/16_2family_redefine_calculation/file/mandatories.env +++ b/tests/results/16_2family_redefine_calculation/file/mandatories.env @@ -1 +1 @@ -ROUGAIL_FAMILY.VAR1="string1" +ROUGAIL.FAMILY.VAR1="string1" diff --git a/tests/results/16_2family_redefine_disabled/errors/all.json b/tests/results/16_2family_redefine_disabled/errors/all.json index 1465394..a5a58d4 100644 --- a/tests/results/16_2family_redefine_disabled/errors/all.json +++ b/tests/results/16_2family_redefine_disabled/errors/all.json @@ -1,6 +1,6 @@ { "errors": [ - "ne peut acc\u00e9der \u00e0 l'optiondescription \"rougail.family\" \u00e0 cause de la propri\u00e9t\u00e9 \"disabled\"" + "cannot access to optiondescription \"rougail.family\" because has property \"disabled\"" ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/16_2family_redefine_disabled/errors/mandatories.json b/tests/results/16_2family_redefine_disabled/errors/mandatories.json index 1465394..a5a58d4 100644 --- a/tests/results/16_2family_redefine_disabled/errors/mandatories.json +++ b/tests/results/16_2family_redefine_disabled/errors/mandatories.json @@ -1,6 +1,6 @@ { "errors": [ - "ne peut acc\u00e9der \u00e0 l'optiondescription \"rougail.family\" \u00e0 cause de la propri\u00e9t\u00e9 \"disabled\"" + "cannot access to optiondescription \"rougail.family\" because has property \"disabled\"" ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/16_2family_redefine_disabled/file/all.env b/tests/results/16_2family_redefine_disabled/file/all.env index 603af01..537f0b5 100644 --- a/tests/results/16_2family_redefine_disabled/file/all.env +++ b/tests/results/16_2family_redefine_disabled/file/all.env @@ -1 +1 @@ -ROUGAIL_FAMILY.VAR1="string1" +ROUGAIL.FAMILY.VAR1="string1" diff --git a/tests/results/16_2family_redefine_disabled/file/all_exclude.env b/tests/results/16_2family_redefine_disabled/file/all_exclude.env index 603af01..537f0b5 100644 --- a/tests/results/16_2family_redefine_disabled/file/all_exclude.env +++ b/tests/results/16_2family_redefine_disabled/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_FAMILY.VAR1="string1" +ROUGAIL.FAMILY.VAR1="string1" diff --git a/tests/results/16_2family_redefine_disabled/file/mandatories.env b/tests/results/16_2family_redefine_disabled/file/mandatories.env index 603af01..537f0b5 100644 --- a/tests/results/16_2family_redefine_disabled/file/mandatories.env +++ b/tests/results/16_2family_redefine_disabled/file/mandatories.env @@ -1 +1 @@ -ROUGAIL_FAMILY.VAR1="string1" +ROUGAIL.FAMILY.VAR1="string1" diff --git a/tests/results/16_5exists_nonexists/file/all.env b/tests/results/16_5exists_nonexists/file/all.env index 1d474e9..d2b4df4 100644 --- a/tests/results/16_5exists_nonexists/file/all.env +++ b/tests/results/16_5exists_nonexists/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_VAR1="string1" -ROUGAIL_VAR2="string1" +ROUGAIL.VAR1="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/16_5exists_nonexists/file/all_exclude.env b/tests/results/16_5exists_nonexists/file/all_exclude.env index 1d474e9..d2b4df4 100644 --- a/tests/results/16_5exists_nonexists/file/all_exclude.env +++ b/tests/results/16_5exists_nonexists/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_VAR1="string1" -ROUGAIL_VAR2="string1" +ROUGAIL.VAR1="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/16_5exists_redefine/errors/all.json b/tests/results/16_5exists_redefine/errors/all.json index 0daa0f0..16f7d91 100644 --- a/tests/results/16_5exists_redefine/errors/all.json +++ b/tests/results/16_5exists_redefine/errors/all.json @@ -1,6 +1,6 @@ { "errors": [ - "ne peut acc\u00e9der \u00e0 l'option \"rougail.var1\" (a first variable) \u00e0 cause de la propri\u00e9t\u00e9 \"hidden\"" + "cannot access to option \"rougail.var1\" (a first variable) because has property \"hidden\"" ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/16_5exists_redefine/file/all.env b/tests/results/16_5exists_redefine/file/all.env index f31e5d5..5922bb8 100644 --- a/tests/results/16_5exists_redefine/file/all.env +++ b/tests/results/16_5exists_redefine/file/all.env @@ -1 +1 @@ -ROUGAIL_VAR1="string1" +ROUGAIL.VAR1="string1" diff --git a/tests/results/16_5exists_redefine/file/all_exclude.env b/tests/results/16_5exists_redefine/file/all_exclude.env index f31e5d5..5922bb8 100644 --- a/tests/results/16_5exists_redefine/file/all_exclude.env +++ b/tests/results/16_5exists_redefine/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_VAR1="string1" +ROUGAIL.VAR1="string1" diff --git a/tests/results/16_5redefine_calculation/file/all.env b/tests/results/16_5redefine_calculation/file/all.env index 0f489bd..6a36f07 100644 --- a/tests/results/16_5redefine_calculation/file/all.env +++ b/tests/results/16_5redefine_calculation/file/all.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="string1" +ROUGAIL.VARIABLE="string1" diff --git a/tests/results/16_5redefine_calculation/file/all_exclude.env b/tests/results/16_5redefine_calculation/file/all_exclude.env index 0f489bd..6a36f07 100644 --- a/tests/results/16_5redefine_calculation/file/all_exclude.env +++ b/tests/results/16_5redefine_calculation/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="string1" +ROUGAIL.VARIABLE="string1" diff --git a/tests/results/16_5redefine_choice/file/all.env b/tests/results/16_5redefine_choice/file/all.env index 4504f15..c6b6133 100644 --- a/tests/results/16_5redefine_choice/file/all.env +++ b/tests/results/16_5redefine_choice/file/all.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="a" +ROUGAIL.VARIABLE="a" diff --git a/tests/results/16_5redefine_choice/file/all_exclude.env b/tests/results/16_5redefine_choice/file/all_exclude.env index 4504f15..c6b6133 100644 --- a/tests/results/16_5redefine_choice/file/all_exclude.env +++ b/tests/results/16_5redefine_choice/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="a" +ROUGAIL.VARIABLE="a" diff --git a/tests/results/16_5redefine_choice/file/mandatories.env b/tests/results/16_5redefine_choice/file/mandatories.env index 4504f15..c6b6133 100644 --- a/tests/results/16_5redefine_choice/file/mandatories.env +++ b/tests/results/16_5redefine_choice/file/mandatories.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="a" +ROUGAIL.VARIABLE="a" diff --git a/tests/results/16_5redefine_default/file/all.env b/tests/results/16_5redefine_default/file/all.env index 0f489bd..6a36f07 100644 --- a/tests/results/16_5redefine_default/file/all.env +++ b/tests/results/16_5redefine_default/file/all.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="string1" +ROUGAIL.VARIABLE="string1" diff --git a/tests/results/16_5redefine_default/file/all_exclude.env b/tests/results/16_5redefine_default/file/all_exclude.env index 0f489bd..6a36f07 100644 --- a/tests/results/16_5redefine_default/file/all_exclude.env +++ b/tests/results/16_5redefine_default/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="string1" +ROUGAIL.VARIABLE="string1" diff --git a/tests/results/16_5redefine_default_calculation/file/all.env b/tests/results/16_5redefine_default_calculation/file/all.env index 0f489bd..6a36f07 100644 --- a/tests/results/16_5redefine_default_calculation/file/all.env +++ b/tests/results/16_5redefine_default_calculation/file/all.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="string1" +ROUGAIL.VARIABLE="string1" diff --git a/tests/results/16_5redefine_default_calculation/file/all_exclude.env b/tests/results/16_5redefine_default_calculation/file/all_exclude.env index 0f489bd..6a36f07 100644 --- a/tests/results/16_5redefine_default_calculation/file/all_exclude.env +++ b/tests/results/16_5redefine_default_calculation/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="string1" +ROUGAIL.VARIABLE="string1" diff --git a/tests/results/16_5redefine_default_calculation/file/mandatories.env b/tests/results/16_5redefine_default_calculation/file/mandatories.env index 0f489bd..6a36f07 100644 --- a/tests/results/16_5redefine_default_calculation/file/mandatories.env +++ b/tests/results/16_5redefine_default_calculation/file/mandatories.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="string1" +ROUGAIL.VARIABLE="string1" diff --git a/tests/results/16_5redefine_family/file/all.env b/tests/results/16_5redefine_family/file/all.env index 60889ae..8cd61d4 100644 --- a/tests/results/16_5redefine_family/file/all.env +++ b/tests/results/16_5redefine_family/file/all.env @@ -1 +1 @@ -ROUGAIL_FAMILY.VARIABLE="string1" +ROUGAIL.FAMILY.VARIABLE="string1" diff --git a/tests/results/16_5redefine_family/file/all_exclude.env b/tests/results/16_5redefine_family/file/all_exclude.env index 60889ae..8cd61d4 100644 --- a/tests/results/16_5redefine_family/file/all_exclude.env +++ b/tests/results/16_5redefine_family/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_FAMILY.VARIABLE="string1" +ROUGAIL.FAMILY.VARIABLE="string1" diff --git a/tests/results/16_5redefine_family/file/mandatories.env b/tests/results/16_5redefine_family/file/mandatories.env index 60889ae..8cd61d4 100644 --- a/tests/results/16_5redefine_family/file/mandatories.env +++ b/tests/results/16_5redefine_family/file/mandatories.env @@ -1 +1 @@ -ROUGAIL_FAMILY.VARIABLE="string1" +ROUGAIL.FAMILY.VARIABLE="string1" diff --git a/tests/results/16_5redefine_help/file/all.env b/tests/results/16_5redefine_help/file/all.env index 60889ae..8cd61d4 100644 --- a/tests/results/16_5redefine_help/file/all.env +++ b/tests/results/16_5redefine_help/file/all.env @@ -1 +1 @@ -ROUGAIL_FAMILY.VARIABLE="string1" +ROUGAIL.FAMILY.VARIABLE="string1" diff --git a/tests/results/16_5redefine_help/file/all_exclude.env b/tests/results/16_5redefine_help/file/all_exclude.env index 60889ae..8cd61d4 100644 --- a/tests/results/16_5redefine_help/file/all_exclude.env +++ b/tests/results/16_5redefine_help/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_FAMILY.VARIABLE="string1" +ROUGAIL.FAMILY.VARIABLE="string1" diff --git a/tests/results/16_5redefine_help/file/mandatories.env b/tests/results/16_5redefine_help/file/mandatories.env index 60889ae..8cd61d4 100644 --- a/tests/results/16_5redefine_help/file/mandatories.env +++ b/tests/results/16_5redefine_help/file/mandatories.env @@ -1 +1 @@ -ROUGAIL_FAMILY.VARIABLE="string1" +ROUGAIL.FAMILY.VARIABLE="string1" diff --git a/tests/results/16_5redefine_hidden/errors/all.json b/tests/results/16_5redefine_hidden/errors/all.json index fbc3e46..fffb6bb 100644 --- a/tests/results/16_5redefine_hidden/errors/all.json +++ b/tests/results/16_5redefine_hidden/errors/all.json @@ -1,6 +1,6 @@ { "errors": [ - "ne peut acc\u00e9der \u00e0 l'option \"rougail.variable\" (a variable) \u00e0 cause de la propri\u00e9t\u00e9 \"hidden\"" + "cannot access to option \"rougail.variable\" (a variable) because has property \"hidden\"" ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/16_5redefine_hidden/file/all.env b/tests/results/16_5redefine_hidden/file/all.env index 0f489bd..6a36f07 100644 --- a/tests/results/16_5redefine_hidden/file/all.env +++ b/tests/results/16_5redefine_hidden/file/all.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="string1" +ROUGAIL.VARIABLE="string1" diff --git a/tests/results/16_5redefine_hidden/file/all_exclude.env b/tests/results/16_5redefine_hidden/file/all_exclude.env index 0f489bd..6a36f07 100644 --- a/tests/results/16_5redefine_hidden/file/all_exclude.env +++ b/tests/results/16_5redefine_hidden/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="string1" +ROUGAIL.VARIABLE="string1" diff --git a/tests/results/16_5redefine_multi/file/all.env b/tests/results/16_5redefine_multi/file/all.env index cb9cc7f..aa319c8 100644 --- a/tests/results/16_5redefine_multi/file/all.env +++ b/tests/results/16_5redefine_multi/file/all.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="string1,string2,string3" +ROUGAIL.VARIABLE="string1,string2,string3" diff --git a/tests/results/16_5redefine_multi/file/all_exclude.env b/tests/results/16_5redefine_multi/file/all_exclude.env index cb9cc7f..aa319c8 100644 --- a/tests/results/16_5redefine_multi/file/all_exclude.env +++ b/tests/results/16_5redefine_multi/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="string1,string2,string3" +ROUGAIL.VARIABLE="string1,string2,string3" diff --git a/tests/results/16_5redefine_remove_disable_calculation/file/all.env b/tests/results/16_5redefine_remove_disable_calculation/file/all.env index 85e2db8..6c01a7e 100644 --- a/tests/results/16_5redefine_remove_disable_calculation/file/all.env +++ b/tests/results/16_5redefine_remove_disable_calculation/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_CONDITION="string1" -ROUGAIL_VARIABLE="string1" +ROUGAIL.CONDITION="string1" +ROUGAIL.VARIABLE="string1" diff --git a/tests/results/16_5redefine_remove_disable_calculation/file/all_exclude.env b/tests/results/16_5redefine_remove_disable_calculation/file/all_exclude.env index 85e2db8..6c01a7e 100644 --- a/tests/results/16_5redefine_remove_disable_calculation/file/all_exclude.env +++ b/tests/results/16_5redefine_remove_disable_calculation/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_CONDITION="string1" -ROUGAIL_VARIABLE="string1" +ROUGAIL.CONDITION="string1" +ROUGAIL.VARIABLE="string1" diff --git a/tests/results/16_5redefine_remove_disable_calculation/file/mandatories.env b/tests/results/16_5redefine_remove_disable_calculation/file/mandatories.env index 0f489bd..6a36f07 100644 --- a/tests/results/16_5redefine_remove_disable_calculation/file/mandatories.env +++ b/tests/results/16_5redefine_remove_disable_calculation/file/mandatories.env @@ -1 +1 @@ -ROUGAIL_VARIABLE="string1" +ROUGAIL.VARIABLE="string1" diff --git a/tests/results/16_5test_redefine/file/all.env b/tests/results/16_5test_redefine/file/all.env index 950d868..6d8b939 100644 --- a/tests/results/16_5test_redefine/file/all.env +++ b/tests/results/16_5test_redefine/file/all.env @@ -1,3 +1,3 @@ -ROUGAIL_VAR1="test1" -ROUGAIL_VAR2="test1" -ROUGAIL_VAR3="string1" +ROUGAIL.VAR1="test1" +ROUGAIL.VAR2="test1" +ROUGAIL.VAR3="string1" diff --git a/tests/results/16_5test_redefine/file/all_exclude.env b/tests/results/16_5test_redefine/file/all_exclude.env index 950d868..6d8b939 100644 --- a/tests/results/16_5test_redefine/file/all_exclude.env +++ b/tests/results/16_5test_redefine/file/all_exclude.env @@ -1,3 +1,3 @@ -ROUGAIL_VAR1="test1" -ROUGAIL_VAR2="test1" -ROUGAIL_VAR3="string1" +ROUGAIL.VAR1="test1" +ROUGAIL.VAR2="test1" +ROUGAIL.VAR3="string1" diff --git a/tests/results/16_5test_redefine/file/mandatories.env b/tests/results/16_5test_redefine/file/mandatories.env index 09a90c8..5187a95 100644 --- a/tests/results/16_5test_redefine/file/mandatories.env +++ b/tests/results/16_5test_redefine/file/mandatories.env @@ -1 +1 @@ -ROUGAIL_VAR3="string1" +ROUGAIL.VAR3="string1" diff --git a/tests/results/16_6choice_redefine/file/all.env b/tests/results/16_6choice_redefine/file/all.env index d4ff57f..ff81181 100644 --- a/tests/results/16_6choice_redefine/file/all.env +++ b/tests/results/16_6choice_redefine/file/all.env @@ -1 +1 @@ -ROUGAIL_VAR="a" +ROUGAIL.VAR="a" diff --git a/tests/results/16_6choice_redefine/file/all_exclude.env b/tests/results/16_6choice_redefine/file/all_exclude.env index d4ff57f..ff81181 100644 --- a/tests/results/16_6choice_redefine/file/all_exclude.env +++ b/tests/results/16_6choice_redefine/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_VAR="a" +ROUGAIL.VAR="a" diff --git a/tests/results/16_6exists_redefine_family/errors/all.json b/tests/results/16_6exists_redefine_family/errors/all.json new file mode 100644 index 0000000..217db0a --- /dev/null +++ b/tests/results/16_6exists_redefine_family/errors/all.json @@ -0,0 +1,4 @@ +{ + "errors": [], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/16_6exists_redefine_family/errors/mandatories.json b/tests/results/16_6exists_redefine_family/errors/mandatories.json new file mode 100644 index 0000000..217db0a --- /dev/null +++ b/tests/results/16_6exists_redefine_family/errors/mandatories.json @@ -0,0 +1,4 @@ +{ + "errors": [], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/16_6exists_redefine_family/file/all.env b/tests/results/16_6exists_redefine_family/file/all.env new file mode 100644 index 0000000..8c72768 --- /dev/null +++ b/tests/results/16_6exists_redefine_family/file/all.env @@ -0,0 +1,2 @@ +ROUGAIL.FAMILY1.VARIABLE1="string1" +ROUGAIL.FAMILY2.VARIABLE2="string1" diff --git a/tests/results/16_6exists_redefine_family/file/all_exclude.env b/tests/results/16_6exists_redefine_family/file/all_exclude.env new file mode 100644 index 0000000..8c72768 --- /dev/null +++ b/tests/results/16_6exists_redefine_family/file/all_exclude.env @@ -0,0 +1,2 @@ +ROUGAIL.FAMILY1.VARIABLE1="string1" +ROUGAIL.FAMILY2.VARIABLE2="string1" diff --git a/tests/results/16_6exists_redefine_family/file/mandatories.env b/tests/results/16_6exists_redefine_family/file/mandatories.env new file mode 100644 index 0000000..8c72768 --- /dev/null +++ b/tests/results/16_6exists_redefine_family/file/mandatories.env @@ -0,0 +1,2 @@ +ROUGAIL.FAMILY1.VARIABLE1="string1" +ROUGAIL.FAMILY2.VARIABLE2="string1" diff --git a/tests/results/16_6exists_redefine_family/makedict/all.json b/tests/results/16_6exists_redefine_family/makedict/all.json new file mode 100644 index 0000000..805cf4b --- /dev/null +++ b/tests/results/16_6exists_redefine_family/makedict/all.json @@ -0,0 +1,4 @@ +{ + "rougail.family1.variable1": "string1", + "rougail.family2.variable2": "string1" +} diff --git a/tests/results/16_6exists_redefine_family/makedict/mandatories.json b/tests/results/16_6exists_redefine_family/makedict/mandatories.json new file mode 100644 index 0000000..805cf4b --- /dev/null +++ b/tests/results/16_6exists_redefine_family/makedict/mandatories.json @@ -0,0 +1,4 @@ +{ + "rougail.family1.variable1": "string1", + "rougail.family2.variable2": "string1" +} diff --git a/tests/results/16exists_exists/file/all.env b/tests/results/16exists_exists/file/all.env index dbf899f..bea4d82 100644 --- a/tests/results/16exists_exists/file/all.env +++ b/tests/results/16exists_exists/file/all.env @@ -1 +1 @@ -ROUGAIL_VAR="string1" +ROUGAIL.VAR="string1" diff --git a/tests/results/16exists_exists/file/all_exclude.env b/tests/results/16exists_exists/file/all_exclude.env index dbf899f..bea4d82 100644 --- a/tests/results/16exists_exists/file/all_exclude.env +++ b/tests/results/16exists_exists/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_VAR="string1" +ROUGAIL.VAR="string1" diff --git a/tests/results/16exists_exists/file/mandatories.env b/tests/results/16exists_exists/file/mandatories.env index dbf899f..bea4d82 100644 --- a/tests/results/16exists_exists/file/mandatories.env +++ b/tests/results/16exists_exists/file/mandatories.env @@ -1 +1 @@ -ROUGAIL_VAR="string1" +ROUGAIL.VAR="string1" diff --git a/tests/results/17_5redefine_leadership/errors/all.json b/tests/results/17_5redefine_leadership/errors/all.json index d445ec8..a4899b4 100644 --- a/tests/results/17_5redefine_leadership/errors/all.json +++ b/tests/results/17_5redefine_leadership/errors/all.json @@ -1,6 +1,6 @@ { "errors": [ - "ne peut acc\u00e9der \u00e0 l'optiondescription \"rougail.leader\" \u00e0 cause de la propri\u00e9t\u00e9 \"hidden\"" + "cannot access to optiondescription \"rougail.leader\" because has property \"hidden\"" ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/17_5redefine_leadership/file/all.env b/tests/results/17_5redefine_leadership/file/all.env index e7e4f78..f1e19e9 100644 --- a/tests/results/17_5redefine_leadership/file/all.env +++ b/tests/results/17_5redefine_leadership/file/all.env @@ -1 +1 @@ -ROUGAIL_LEADER.LEADER="string1,string2,string3" +ROUGAIL.LEADER.LEADER="string1,string2,string3" diff --git a/tests/results/17_5redefine_leadership/file/all_exclude.env b/tests/results/17_5redefine_leadership/file/all_exclude.env index e7e4f78..f1e19e9 100644 --- a/tests/results/17_5redefine_leadership/file/all_exclude.env +++ b/tests/results/17_5redefine_leadership/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_LEADER.LEADER="string1,string2,string3" +ROUGAIL.LEADER.LEADER="string1,string2,string3" diff --git a/tests/results/20_0family_append/file/all.env b/tests/results/20_0family_append/file/all.env index 03e51aa..ac8de93 100644 --- a/tests/results/20_0family_append/file/all.env +++ b/tests/results/20_0family_append/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_FAMILY.VAR1="string1" -ROUGAIL_FAMILY.VAR2="string1" +ROUGAIL.FAMILY.VAR1="string1" +ROUGAIL.FAMILY.VAR2="string1" diff --git a/tests/results/20_0family_append/file/all_exclude.env b/tests/results/20_0family_append/file/all_exclude.env index 03e51aa..ac8de93 100644 --- a/tests/results/20_0family_append/file/all_exclude.env +++ b/tests/results/20_0family_append/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_FAMILY.VAR1="string1" -ROUGAIL_FAMILY.VAR2="string1" +ROUGAIL.FAMILY.VAR1="string1" +ROUGAIL.FAMILY.VAR2="string1" diff --git a/tests/results/20_0family_append/file/mandatories.env b/tests/results/20_0family_append/file/mandatories.env index 03e51aa..ac8de93 100644 --- a/tests/results/20_0family_append/file/mandatories.env +++ b/tests/results/20_0family_append/file/mandatories.env @@ -1,2 +1,2 @@ -ROUGAIL_FAMILY.VAR1="string1" -ROUGAIL_FAMILY.VAR2="string1" +ROUGAIL.FAMILY.VAR1="string1" +ROUGAIL.FAMILY.VAR2="string1" diff --git a/tests/results/20_0family_underscore/errors/all.json b/tests/results/20_0family_underscore/errors/all.json index 8008295..9e5b47f 100644 --- a/tests/results/20_0family_underscore/errors/all.json +++ b/tests/results/20_0family_underscore/errors/all.json @@ -1,11 +1,11 @@ { "errors": [ - "ne peut acc\u00e9der \u00e0 l'optiondescription \"rougail.my_family\" (This is a great family) \u00e0 cause des propri\u00e9t\u00e9s \"disabled\" et \"hidden\"", - "ne peut acc\u00e9der \u00e0 l'optiondescription \"rougail.my_family\" (This is a great family) \u00e0 cause des propri\u00e9t\u00e9s \"disabled\" et \"hidden\"", - "ne peut acc\u00e9der \u00e0 l'optiondescription \"rougail.my_family\" (This is a great family) \u00e0 cause des propri\u00e9t\u00e9s \"disabled\" et \"hidden\"", - "ne peut acc\u00e9der \u00e0 l'optiondescription \"rougail.my_family\" (This is a great family) \u00e0 cause des propri\u00e9t\u00e9s \"disabled\" et \"hidden\"", - "ne peut acc\u00e9der \u00e0 l'optiondescription \"rougail.my_family\" (This is a great family) \u00e0 cause des propri\u00e9t\u00e9s \"disabled\" et \"hidden\"", - "ne peut acc\u00e9der \u00e0 l'optiondescription \"rougail.my_family\" (This is a great family) \u00e0 cause des propri\u00e9t\u00e9s \"disabled\" et \"hidden\"" + "cannot access to optiondescription \"rougail.my_family\" (This is a great family) because has properties \"disabled\" and \"hidden\"", + "cannot access to optiondescription \"rougail.my_family\" (This is a great family) because has properties \"disabled\" and \"hidden\"", + "cannot access to optiondescription \"rougail.my_family\" (This is a great family) because has properties \"disabled\" and \"hidden\"", + "cannot access to optiondescription \"rougail.my_family\" (This is a great family) because has properties \"disabled\" and \"hidden\"", + "cannot access to optiondescription \"rougail.my_family\" (This is a great family) because has properties \"disabled\" and \"hidden\"", + "cannot access to optiondescription \"rougail.my_family\" (This is a great family) because has properties \"disabled\" and \"hidden\"" ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/20_0family_underscore/file/all.env b/tests/results/20_0family_underscore/file/all.env index 4ab5fd6..88d91ee 100644 --- a/tests/results/20_0family_underscore/file/all.env +++ b/tests/results/20_0family_underscore/file/all.env @@ -1,6 +1,6 @@ -ROUGAIL_MY_FAMILY.TYPE.MY_VARIABLE="string1" -ROUGAIL_MY_FAMILY.DESCRIPTION.MY_VARIABLE="string1" -ROUGAIL_MY_FAMILY.HELP.MY_VARIABLE="string1" -ROUGAIL_MY_FAMILY.MODE.MY_VARIABLE="string1" -ROUGAIL_MY_FAMILY.HIDDEN.MY_VARIABLE="string1" -ROUGAIL_MY_FAMILY.DISABLED.MY_VARIABLE="string1" +ROUGAIL.MY_FAMILY.TYPE.MY_VARIABLE="string1" +ROUGAIL.MY_FAMILY.DESCRIPTION.MY_VARIABLE="string1" +ROUGAIL.MY_FAMILY.HELP.MY_VARIABLE="string1" +ROUGAIL.MY_FAMILY.MODE.MY_VARIABLE="string1" +ROUGAIL.MY_FAMILY.HIDDEN.MY_VARIABLE="string1" +ROUGAIL.MY_FAMILY.DISABLED.MY_VARIABLE="string1" diff --git a/tests/results/20_0family_underscore/file/all_exclude.env b/tests/results/20_0family_underscore/file/all_exclude.env index 4ab5fd6..88d91ee 100644 --- a/tests/results/20_0family_underscore/file/all_exclude.env +++ b/tests/results/20_0family_underscore/file/all_exclude.env @@ -1,6 +1,6 @@ -ROUGAIL_MY_FAMILY.TYPE.MY_VARIABLE="string1" -ROUGAIL_MY_FAMILY.DESCRIPTION.MY_VARIABLE="string1" -ROUGAIL_MY_FAMILY.HELP.MY_VARIABLE="string1" -ROUGAIL_MY_FAMILY.MODE.MY_VARIABLE="string1" -ROUGAIL_MY_FAMILY.HIDDEN.MY_VARIABLE="string1" -ROUGAIL_MY_FAMILY.DISABLED.MY_VARIABLE="string1" +ROUGAIL.MY_FAMILY.TYPE.MY_VARIABLE="string1" +ROUGAIL.MY_FAMILY.DESCRIPTION.MY_VARIABLE="string1" +ROUGAIL.MY_FAMILY.HELP.MY_VARIABLE="string1" +ROUGAIL.MY_FAMILY.MODE.MY_VARIABLE="string1" +ROUGAIL.MY_FAMILY.HIDDEN.MY_VARIABLE="string1" +ROUGAIL.MY_FAMILY.DISABLED.MY_VARIABLE="string1" diff --git a/tests/results/20_0multi_family/file/all.env b/tests/results/20_0multi_family/file/all.env index 26b1d46..2092e4b 100644 --- a/tests/results/20_0multi_family/file/all.env +++ b/tests/results/20_0multi_family/file/all.env @@ -1 +1 @@ -ROUGAIL_FAMILY.SUBFAMILY.VARIABLE="string1" +ROUGAIL.FAMILY.SUBFAMILY.VARIABLE="string1" diff --git a/tests/results/20_0multi_family/file/all_exclude.env b/tests/results/20_0multi_family/file/all_exclude.env index 26b1d46..2092e4b 100644 --- a/tests/results/20_0multi_family/file/all_exclude.env +++ b/tests/results/20_0multi_family/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_FAMILY.SUBFAMILY.VARIABLE="string1" +ROUGAIL.FAMILY.SUBFAMILY.VARIABLE="string1" diff --git a/tests/results/20_0multi_family_basic/file/all.env b/tests/results/20_0multi_family_basic/file/all.env index 26b1d46..2092e4b 100644 --- a/tests/results/20_0multi_family_basic/file/all.env +++ b/tests/results/20_0multi_family_basic/file/all.env @@ -1 +1 @@ -ROUGAIL_FAMILY.SUBFAMILY.VARIABLE="string1" +ROUGAIL.FAMILY.SUBFAMILY.VARIABLE="string1" diff --git a/tests/results/20_0multi_family_basic/file/all_exclude.env b/tests/results/20_0multi_family_basic/file/all_exclude.env index 26b1d46..2092e4b 100644 --- a/tests/results/20_0multi_family_basic/file/all_exclude.env +++ b/tests/results/20_0multi_family_basic/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_FAMILY.SUBFAMILY.VARIABLE="string1" +ROUGAIL.FAMILY.SUBFAMILY.VARIABLE="string1" diff --git a/tests/results/20_0multi_family_basic/file/mandatories.env b/tests/results/20_0multi_family_basic/file/mandatories.env index 26b1d46..2092e4b 100644 --- a/tests/results/20_0multi_family_basic/file/mandatories.env +++ b/tests/results/20_0multi_family_basic/file/mandatories.env @@ -1 +1 @@ -ROUGAIL_FAMILY.SUBFAMILY.VARIABLE="string1" +ROUGAIL.FAMILY.SUBFAMILY.VARIABLE="string1" diff --git a/tests/results/20_0multi_family_expert/file/all.env b/tests/results/20_0multi_family_expert/file/all.env index 26b1d46..2092e4b 100644 --- a/tests/results/20_0multi_family_expert/file/all.env +++ b/tests/results/20_0multi_family_expert/file/all.env @@ -1 +1 @@ -ROUGAIL_FAMILY.SUBFAMILY.VARIABLE="string1" +ROUGAIL.FAMILY.SUBFAMILY.VARIABLE="string1" diff --git a/tests/results/20_0multi_family_expert/file/all_exclude.env b/tests/results/20_0multi_family_expert/file/all_exclude.env index 26b1d46..2092e4b 100644 --- a/tests/results/20_0multi_family_expert/file/all_exclude.env +++ b/tests/results/20_0multi_family_expert/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_FAMILY.SUBFAMILY.VARIABLE="string1" +ROUGAIL.FAMILY.SUBFAMILY.VARIABLE="string1" diff --git a/tests/results/20_0multi_family_order/file/all.env b/tests/results/20_0multi_family_order/file/all.env index a841cd9..1269a5c 100644 --- a/tests/results/20_0multi_family_order/file/all.env +++ b/tests/results/20_0multi_family_order/file/all.env @@ -1,4 +1,4 @@ -ROUGAIL_VARIABLE="string1" -ROUGAIL_FAMILY.VARIABLE1="string1" -ROUGAIL_FAMILY.SUBFAMILY.VARIABLE="string1" -ROUGAIL_FAMILY.VARIABLE2="string1" +ROUGAIL.VARIABLE="string1" +ROUGAIL.FAMILY.VARIABLE1="string1" +ROUGAIL.FAMILY.SUBFAMILY.VARIABLE="string1" +ROUGAIL.FAMILY.VARIABLE2="string1" diff --git a/tests/results/20_0multi_family_order/file/all_exclude.env b/tests/results/20_0multi_family_order/file/all_exclude.env index a841cd9..1269a5c 100644 --- a/tests/results/20_0multi_family_order/file/all_exclude.env +++ b/tests/results/20_0multi_family_order/file/all_exclude.env @@ -1,4 +1,4 @@ -ROUGAIL_VARIABLE="string1" -ROUGAIL_FAMILY.VARIABLE1="string1" -ROUGAIL_FAMILY.SUBFAMILY.VARIABLE="string1" -ROUGAIL_FAMILY.VARIABLE2="string1" +ROUGAIL.VARIABLE="string1" +ROUGAIL.FAMILY.VARIABLE1="string1" +ROUGAIL.FAMILY.SUBFAMILY.VARIABLE="string1" +ROUGAIL.FAMILY.VARIABLE2="string1" diff --git a/tests/results/20_0multi_family_order/file/mandatories.env b/tests/results/20_0multi_family_order/file/mandatories.env index a841cd9..1269a5c 100644 --- a/tests/results/20_0multi_family_order/file/mandatories.env +++ b/tests/results/20_0multi_family_order/file/mandatories.env @@ -1,4 +1,4 @@ -ROUGAIL_VARIABLE="string1" -ROUGAIL_FAMILY.VARIABLE1="string1" -ROUGAIL_FAMILY.SUBFAMILY.VARIABLE="string1" -ROUGAIL_FAMILY.VARIABLE2="string1" +ROUGAIL.VARIABLE="string1" +ROUGAIL.FAMILY.VARIABLE1="string1" +ROUGAIL.FAMILY.SUBFAMILY.VARIABLE="string1" +ROUGAIL.FAMILY.VARIABLE2="string1" diff --git a/tests/results/20_0validators_differ_redefine/file/all.env b/tests/results/20_0validators_differ_redefine/file/all.env index 13fe2f0..dbf01fd 100644 --- a/tests/results/20_0validators_differ_redefine/file/all.env +++ b/tests/results/20_0validators_differ_redefine/file/all.env @@ -1,3 +1,3 @@ -ROUGAIL_VAR1="string1" -ROUGAIL_VAR2="string1" -ROUGAIL_VAR3="yes" +ROUGAIL.VAR1="string1" +ROUGAIL.VAR2="string1" +ROUGAIL.VAR3="yes" diff --git a/tests/results/20_0validators_differ_redefine/file/all_exclude.env b/tests/results/20_0validators_differ_redefine/file/all_exclude.env index 13fe2f0..dbf01fd 100644 --- a/tests/results/20_0validators_differ_redefine/file/all_exclude.env +++ b/tests/results/20_0validators_differ_redefine/file/all_exclude.env @@ -1,3 +1,3 @@ -ROUGAIL_VAR1="string1" -ROUGAIL_VAR2="string1" -ROUGAIL_VAR3="yes" +ROUGAIL.VAR1="string1" +ROUGAIL.VAR2="string1" +ROUGAIL.VAR3="yes" diff --git a/tests/results/20_9default_information_parent/file/all.env b/tests/results/20_9default_information_parent/file/all.env index 03e51aa..ac8de93 100644 --- a/tests/results/20_9default_information_parent/file/all.env +++ b/tests/results/20_9default_information_parent/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_FAMILY.VAR1="string1" -ROUGAIL_FAMILY.VAR2="string1" +ROUGAIL.FAMILY.VAR1="string1" +ROUGAIL.FAMILY.VAR2="string1" diff --git a/tests/results/20_9default_information_parent/file/all_exclude.env b/tests/results/20_9default_information_parent/file/all_exclude.env index 03e51aa..ac8de93 100644 --- a/tests/results/20_9default_information_parent/file/all_exclude.env +++ b/tests/results/20_9default_information_parent/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_FAMILY.VAR1="string1" -ROUGAIL_FAMILY.VAR2="string1" +ROUGAIL.FAMILY.VAR1="string1" +ROUGAIL.FAMILY.VAR2="string1" diff --git a/tests/results/20_9default_information_parent/file/mandatories.env b/tests/results/20_9default_information_parent/file/mandatories.env index 03e51aa..ac8de93 100644 --- a/tests/results/20_9default_information_parent/file/mandatories.env +++ b/tests/results/20_9default_information_parent/file/mandatories.env @@ -1,2 +1,2 @@ -ROUGAIL_FAMILY.VAR1="string1" -ROUGAIL_FAMILY.VAR2="string1" +ROUGAIL.FAMILY.VAR1="string1" +ROUGAIL.FAMILY.VAR2="string1" diff --git a/tests/results/24_0family_hidden_condition/file/all.env b/tests/results/24_0family_hidden_condition/file/all.env index b800a94..eeaffb8 100644 --- a/tests/results/24_0family_hidden_condition/file/all.env +++ b/tests/results/24_0family_hidden_condition/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_CONDITION="string1" -ROUGAIL_FAMILY.VAR1="string1" +ROUGAIL.CONDITION="string1" +ROUGAIL.FAMILY.VAR1="string1" diff --git a/tests/results/24_0family_hidden_condition/file/all_exclude.env b/tests/results/24_0family_hidden_condition/file/all_exclude.env index b800a94..eeaffb8 100644 --- a/tests/results/24_0family_hidden_condition/file/all_exclude.env +++ b/tests/results/24_0family_hidden_condition/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_CONDITION="string1" -ROUGAIL_FAMILY.VAR1="string1" +ROUGAIL.CONDITION="string1" +ROUGAIL.FAMILY.VAR1="string1" diff --git a/tests/results/24_0family_hidden_condition/file/mandatories.env b/tests/results/24_0family_hidden_condition/file/mandatories.env index 603af01..537f0b5 100644 --- a/tests/results/24_0family_hidden_condition/file/mandatories.env +++ b/tests/results/24_0family_hidden_condition/file/mandatories.env @@ -1 +1 @@ -ROUGAIL_FAMILY.VAR1="string1" +ROUGAIL.FAMILY.VAR1="string1" diff --git a/tests/results/24_0family_hidden_condition_boolean/file/all.env b/tests/results/24_0family_hidden_condition_boolean/file/all.env index 7a87bc1..257a16b 100644 --- a/tests/results/24_0family_hidden_condition_boolean/file/all.env +++ b/tests/results/24_0family_hidden_condition_boolean/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_CONDITION="True" -ROUGAIL_FAMILY.VARIABLE="string1" +ROUGAIL.CONDITION="True" +ROUGAIL.FAMILY.VARIABLE="string1" diff --git a/tests/results/24_0family_hidden_condition_boolean/file/all_exclude.env b/tests/results/24_0family_hidden_condition_boolean/file/all_exclude.env index 7a87bc1..257a16b 100644 --- a/tests/results/24_0family_hidden_condition_boolean/file/all_exclude.env +++ b/tests/results/24_0family_hidden_condition_boolean/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_CONDITION="True" -ROUGAIL_FAMILY.VARIABLE="string1" +ROUGAIL.CONDITION="True" +ROUGAIL.FAMILY.VARIABLE="string1" diff --git a/tests/results/24_0family_hidden_condition_sub_family/file/all.env b/tests/results/24_0family_hidden_condition_sub_family/file/all.env index e47aced..b60e52d 100644 --- a/tests/results/24_0family_hidden_condition_sub_family/file/all.env +++ b/tests/results/24_0family_hidden_condition_sub_family/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_CONDITION="string1" -ROUGAIL_FAMILY.SUBFAMILY.VAR1="string1" +ROUGAIL.CONDITION="string1" +ROUGAIL.FAMILY.SUBFAMILY.VAR1="string1" diff --git a/tests/results/24_0family_hidden_condition_sub_family/file/all_exclude.env b/tests/results/24_0family_hidden_condition_sub_family/file/all_exclude.env index e47aced..b60e52d 100644 --- a/tests/results/24_0family_hidden_condition_sub_family/file/all_exclude.env +++ b/tests/results/24_0family_hidden_condition_sub_family/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_CONDITION="string1" -ROUGAIL_FAMILY.SUBFAMILY.VAR1="string1" +ROUGAIL.CONDITION="string1" +ROUGAIL.FAMILY.SUBFAMILY.VAR1="string1" diff --git a/tests/results/24_0family_hidden_condition_sub_family/file/mandatories.env b/tests/results/24_0family_hidden_condition_sub_family/file/mandatories.env index cc9c74e..d491a30 100644 --- a/tests/results/24_0family_hidden_condition_sub_family/file/mandatories.env +++ b/tests/results/24_0family_hidden_condition_sub_family/file/mandatories.env @@ -1 +1 @@ -ROUGAIL_FAMILY.SUBFAMILY.VAR1="string1" +ROUGAIL.FAMILY.SUBFAMILY.VAR1="string1" diff --git a/tests/results/24_0family_hidden_condition_variable_sub_family/errors/all.json b/tests/results/24_0family_hidden_condition_variable_sub_family/errors/all.json index fa331ca..f8237e6 100644 --- a/tests/results/24_0family_hidden_condition_variable_sub_family/errors/all.json +++ b/tests/results/24_0family_hidden_condition_variable_sub_family/errors/all.json @@ -1,6 +1,6 @@ { "errors": [ - "ne peut acc\u00e9der \u00e0 l'optiondescription \"rougail.family\" (possibly hidden family) \u00e0 cause de la propri\u00e9t\u00e9 \"hidden\"" + "cannot access to optiondescription \"rougail.family\" (possibly hidden family) because has property \"hidden\"" ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/24_0family_hidden_condition_variable_sub_family/file/all.env b/tests/results/24_0family_hidden_condition_variable_sub_family/file/all.env index 23f9815..291da14 100644 --- a/tests/results/24_0family_hidden_condition_variable_sub_family/file/all.env +++ b/tests/results/24_0family_hidden_condition_variable_sub_family/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_CONDITION="True" -ROUGAIL_FAMILY.SUBFAMILY.VAR1="string1" +ROUGAIL.CONDITION="True" +ROUGAIL.FAMILY.SUBFAMILY.VAR1="string1" diff --git a/tests/results/24_0family_hidden_condition_variable_sub_family/file/all_exclude.env b/tests/results/24_0family_hidden_condition_variable_sub_family/file/all_exclude.env index 23f9815..291da14 100644 --- a/tests/results/24_0family_hidden_condition_variable_sub_family/file/all_exclude.env +++ b/tests/results/24_0family_hidden_condition_variable_sub_family/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_CONDITION="True" -ROUGAIL_FAMILY.SUBFAMILY.VAR1="string1" +ROUGAIL.CONDITION="True" +ROUGAIL.FAMILY.SUBFAMILY.VAR1="string1" diff --git a/tests/results/24_0family_hidden_condition_with_variable/errors/all.json b/tests/results/24_0family_hidden_condition_with_variable/errors/all.json index 14ef3c2..d95d42d 100644 --- a/tests/results/24_0family_hidden_condition_with_variable/errors/all.json +++ b/tests/results/24_0family_hidden_condition_with_variable/errors/all.json @@ -1,6 +1,6 @@ { "errors": [ - "ne peut acc\u00e9der \u00e0 l'option \"rougail.family.variable\" (a variable) \u00e0 cause de la propri\u00e9t\u00e9 \"hidden\" (condition2 is true)" + "cannot access to option \"rougail.family.variable\" (a variable) because has property \"hidden\" (condition2 is true)" ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/24_0family_hidden_condition_with_variable/file/all.env b/tests/results/24_0family_hidden_condition_with_variable/file/all.env index 2032d5d..6fd7364 100644 --- a/tests/results/24_0family_hidden_condition_with_variable/file/all.env +++ b/tests/results/24_0family_hidden_condition_with_variable/file/all.env @@ -1,3 +1,3 @@ -ROUGAIL_CONDITION1="True" -ROUGAIL_CONDITION2="True" -ROUGAIL_FAMILY.VARIABLE="string1" +ROUGAIL.CONDITION1="True" +ROUGAIL.CONDITION2="True" +ROUGAIL.FAMILY.VARIABLE="string1" diff --git a/tests/results/24_0family_hidden_condition_with_variable/file/all_exclude.env b/tests/results/24_0family_hidden_condition_with_variable/file/all_exclude.env index 2032d5d..6fd7364 100644 --- a/tests/results/24_0family_hidden_condition_with_variable/file/all_exclude.env +++ b/tests/results/24_0family_hidden_condition_with_variable/file/all_exclude.env @@ -1,3 +1,3 @@ -ROUGAIL_CONDITION1="True" -ROUGAIL_CONDITION2="True" -ROUGAIL_FAMILY.VARIABLE="string1" +ROUGAIL.CONDITION1="True" +ROUGAIL.CONDITION2="True" +ROUGAIL.FAMILY.VARIABLE="string1" diff --git a/tests/results/24_0family_hidden_param_condition_sub_family/file/all.env b/tests/results/24_0family_hidden_param_condition_sub_family/file/all.env index 6d9343d..dfcdd06 100644 --- a/tests/results/24_0family_hidden_param_condition_sub_family/file/all.env +++ b/tests/results/24_0family_hidden_param_condition_sub_family/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_CONDITION="string1" -ROUGAIL_FAMILY.SUB_FAMILY.VAR1="string1" +ROUGAIL.CONDITION="string1" +ROUGAIL.FAMILY.SUB_FAMILY.VAR1="string1" diff --git a/tests/results/24_0family_hidden_param_condition_sub_family/file/all_exclude.env b/tests/results/24_0family_hidden_param_condition_sub_family/file/all_exclude.env index 6d9343d..dfcdd06 100644 --- a/tests/results/24_0family_hidden_param_condition_sub_family/file/all_exclude.env +++ b/tests/results/24_0family_hidden_param_condition_sub_family/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_CONDITION="string1" -ROUGAIL_FAMILY.SUB_FAMILY.VAR1="string1" +ROUGAIL.CONDITION="string1" +ROUGAIL.FAMILY.SUB_FAMILY.VAR1="string1" diff --git a/tests/results/24_0family_hidden_param_condition_sub_family/file/mandatories.env b/tests/results/24_0family_hidden_param_condition_sub_family/file/mandatories.env index 5a1069a..b383e27 100644 --- a/tests/results/24_0family_hidden_param_condition_sub_family/file/mandatories.env +++ b/tests/results/24_0family_hidden_param_condition_sub_family/file/mandatories.env @@ -1 +1 @@ -ROUGAIL_FAMILY.SUB_FAMILY.VAR1="string1" +ROUGAIL.FAMILY.SUB_FAMILY.VAR1="string1" diff --git a/tests/results/24_0family_mandatory_condition/file/all.env b/tests/results/24_0family_mandatory_condition/file/all.env index 200e362..b3f2675 100644 --- a/tests/results/24_0family_mandatory_condition/file/all.env +++ b/tests/results/24_0family_mandatory_condition/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_CONDITION="string1" -ROUGAIL_VAR="string1" +ROUGAIL.CONDITION="string1" +ROUGAIL.VAR="string1" diff --git a/tests/results/24_0family_mandatory_condition/file/all_exclude.env b/tests/results/24_0family_mandatory_condition/file/all_exclude.env index 200e362..b3f2675 100644 --- a/tests/results/24_0family_mandatory_condition/file/all_exclude.env +++ b/tests/results/24_0family_mandatory_condition/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_CONDITION="string1" -ROUGAIL_VAR="string1" +ROUGAIL.CONDITION="string1" +ROUGAIL.VAR="string1" diff --git a/tests/results/24_0family_mandatory_condition_variable/file/all.env b/tests/results/24_0family_mandatory_condition_variable/file/all.env index a774bc4..f357a8d 100644 --- a/tests/results/24_0family_mandatory_condition_variable/file/all.env +++ b/tests/results/24_0family_mandatory_condition_variable/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_CONDITION="True" -ROUGAIL_VAR="string1" +ROUGAIL.CONDITION="True" +ROUGAIL.VAR="string1" diff --git a/tests/results/24_0family_mandatory_condition_variable/file/all_exclude.env b/tests/results/24_0family_mandatory_condition_variable/file/all_exclude.env index a774bc4..f357a8d 100644 --- a/tests/results/24_0family_mandatory_condition_variable/file/all_exclude.env +++ b/tests/results/24_0family_mandatory_condition_variable/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_CONDITION="True" -ROUGAIL_VAR="string1" +ROUGAIL.CONDITION="True" +ROUGAIL.VAR="string1" diff --git a/tests/results/24_0family_mandatory_condition_variable/file/mandatories.env b/tests/results/24_0family_mandatory_condition_variable/file/mandatories.env index dbf899f..bea4d82 100644 --- a/tests/results/24_0family_mandatory_condition_variable/file/mandatories.env +++ b/tests/results/24_0family_mandatory_condition_variable/file/mandatories.env @@ -1 +1 @@ -ROUGAIL_VAR="string1" +ROUGAIL.VAR="string1" diff --git a/tests/results/24_7validators_variable_optional/file/all.env b/tests/results/24_7validators_variable_optional/file/all.env index 43ecf5b..a8ebccf 100644 --- a/tests/results/24_7validators_variable_optional/file/all.env +++ b/tests/results/24_7validators_variable_optional/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_GENERAL.INT="5" -ROUGAIL_GENERAL.INT2="1" +ROUGAIL.GENERAL.INT="5" +ROUGAIL.GENERAL.INT2="1" diff --git a/tests/results/24_7validators_variable_optional/file/all_exclude.env b/tests/results/24_7validators_variable_optional/file/all_exclude.env index 43ecf5b..a8ebccf 100644 --- a/tests/results/24_7validators_variable_optional/file/all_exclude.env +++ b/tests/results/24_7validators_variable_optional/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_GENERAL.INT="5" -ROUGAIL_GENERAL.INT2="1" +ROUGAIL.GENERAL.INT="5" +ROUGAIL.GENERAL.INT2="1" diff --git a/tests/results/24_7validators_variable_optional/file/mandatories.env b/tests/results/24_7validators_variable_optional/file/mandatories.env index 3e3f5d1..35c9231 100644 --- a/tests/results/24_7validators_variable_optional/file/mandatories.env +++ b/tests/results/24_7validators_variable_optional/file/mandatories.env @@ -1 +1 @@ -ROUGAIL_GENERAL.INT="5" +ROUGAIL.GENERAL.INT="5" diff --git a/tests/results/24_family_disabled_var_hidden/errors/all.json b/tests/results/24_family_disabled_var_hidden/errors/all.json index 7f5381d..ecf29c8 100644 --- a/tests/results/24_family_disabled_var_hidden/errors/all.json +++ b/tests/results/24_family_disabled_var_hidden/errors/all.json @@ -1,7 +1,7 @@ { "errors": [ - "ne peut acc\u00e9der \u00e0 l'optiondescription \"rougail.family\" \u00e0 cause de la propri\u00e9t\u00e9 \"disabled\"", - "ne peut acc\u00e9der \u00e0 l'optiondescription \"rougail.family\" \u00e0 cause de la propri\u00e9t\u00e9 \"disabled\"" + "cannot access to optiondescription \"rougail.family\" because has property \"disabled\"", + "cannot access to optiondescription \"rougail.family\" because has property \"disabled\"" ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/24_family_disabled_var_hidden/errors/mandatories.json b/tests/results/24_family_disabled_var_hidden/errors/mandatories.json index 1465394..a5a58d4 100644 --- a/tests/results/24_family_disabled_var_hidden/errors/mandatories.json +++ b/tests/results/24_family_disabled_var_hidden/errors/mandatories.json @@ -1,6 +1,6 @@ { "errors": [ - "ne peut acc\u00e9der \u00e0 l'optiondescription \"rougail.family\" \u00e0 cause de la propri\u00e9t\u00e9 \"disabled\"" + "cannot access to optiondescription \"rougail.family\" because has property \"disabled\"" ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/24_family_disabled_var_hidden/file/all.env b/tests/results/24_family_disabled_var_hidden/file/all.env index a07072d..827edb5 100644 --- a/tests/results/24_family_disabled_var_hidden/file/all.env +++ b/tests/results/24_family_disabled_var_hidden/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_FAMILY.VAR1="True" -ROUGAIL_FAMILY.VAR2="string1" +ROUGAIL.FAMILY.VAR1="True" +ROUGAIL.FAMILY.VAR2="string1" diff --git a/tests/results/24_family_disabled_var_hidden/file/all_exclude.env b/tests/results/24_family_disabled_var_hidden/file/all_exclude.env index a07072d..827edb5 100644 --- a/tests/results/24_family_disabled_var_hidden/file/all_exclude.env +++ b/tests/results/24_family_disabled_var_hidden/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_FAMILY.VAR1="True" -ROUGAIL_FAMILY.VAR2="string1" +ROUGAIL.FAMILY.VAR1="True" +ROUGAIL.FAMILY.VAR2="string1" diff --git a/tests/results/24_family_disabled_var_hidden/file/mandatories.env b/tests/results/24_family_disabled_var_hidden/file/mandatories.env index 80ec7e4..9549b38 100644 --- a/tests/results/24_family_disabled_var_hidden/file/mandatories.env +++ b/tests/results/24_family_disabled_var_hidden/file/mandatories.env @@ -1 +1 @@ -ROUGAIL_FAMILY.VAR2="string1" +ROUGAIL.FAMILY.VAR2="string1" diff --git a/tests/results/40_0leadership/file/all.env b/tests/results/40_0leadership/file/all.env index b45ebff..636bb16 100644 --- a/tests/results/40_0leadership/file/all.env +++ b/tests/results/40_0leadership/file/all.env @@ -1,3 +1,3 @@ -ROUGAIL_LEADER.LEADER="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER1="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER2="string1,string2,string3" +ROUGAIL.LEADER.LEADER="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER1="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER2="string1,string2,string3" diff --git a/tests/results/40_0leadership/file/all_exclude.env b/tests/results/40_0leadership/file/all_exclude.env index b45ebff..636bb16 100644 --- a/tests/results/40_0leadership/file/all_exclude.env +++ b/tests/results/40_0leadership/file/all_exclude.env @@ -1,3 +1,3 @@ -ROUGAIL_LEADER.LEADER="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER1="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER2="string1,string2,string3" +ROUGAIL.LEADER.LEADER="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER1="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER2="string1,string2,string3" diff --git a/tests/results/40_0leadership/file/mandatories.env b/tests/results/40_0leadership/file/mandatories.env index b45ebff..636bb16 100644 --- a/tests/results/40_0leadership/file/mandatories.env +++ b/tests/results/40_0leadership/file/mandatories.env @@ -1,3 +1,3 @@ -ROUGAIL_LEADER.LEADER="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER1="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER2="string1,string2,string3" +ROUGAIL.LEADER.LEADER="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER1="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER2="string1,string2,string3" diff --git a/tests/results/40_0leadership_diff_name/file/all.env b/tests/results/40_0leadership_diff_name/file/all.env index 7cced1f..0571383 100644 --- a/tests/results/40_0leadership_diff_name/file/all.env +++ b/tests/results/40_0leadership_diff_name/file/all.env @@ -1,3 +1,3 @@ -ROUGAIL_LEADERSHIP.LEADER="string1,string2,string3" -ROUGAIL_LEADERSHIP.FOLLOWER1="string1,string2,string3" -ROUGAIL_LEADERSHIP.FOLLOWER2="string1,string2,string3" +ROUGAIL.LEADERSHIP.LEADER="string1,string2,string3" +ROUGAIL.LEADERSHIP.FOLLOWER1="string1,string2,string3" +ROUGAIL.LEADERSHIP.FOLLOWER2="string1,string2,string3" diff --git a/tests/results/40_0leadership_diff_name/file/all_exclude.env b/tests/results/40_0leadership_diff_name/file/all_exclude.env index 7cced1f..0571383 100644 --- a/tests/results/40_0leadership_diff_name/file/all_exclude.env +++ b/tests/results/40_0leadership_diff_name/file/all_exclude.env @@ -1,3 +1,3 @@ -ROUGAIL_LEADERSHIP.LEADER="string1,string2,string3" -ROUGAIL_LEADERSHIP.FOLLOWER1="string1,string2,string3" -ROUGAIL_LEADERSHIP.FOLLOWER2="string1,string2,string3" +ROUGAIL.LEADERSHIP.LEADER="string1,string2,string3" +ROUGAIL.LEADERSHIP.FOLLOWER1="string1,string2,string3" +ROUGAIL.LEADERSHIP.FOLLOWER2="string1,string2,string3" diff --git a/tests/results/40_0leadership_diff_name/file/mandatories.env b/tests/results/40_0leadership_diff_name/file/mandatories.env index 7cced1f..0571383 100644 --- a/tests/results/40_0leadership_diff_name/file/mandatories.env +++ b/tests/results/40_0leadership_diff_name/file/mandatories.env @@ -1,3 +1,3 @@ -ROUGAIL_LEADERSHIP.LEADER="string1,string2,string3" -ROUGAIL_LEADERSHIP.FOLLOWER1="string1,string2,string3" -ROUGAIL_LEADERSHIP.FOLLOWER2="string1,string2,string3" +ROUGAIL.LEADERSHIP.LEADER="string1,string2,string3" +ROUGAIL.LEADERSHIP.FOLLOWER1="string1,string2,string3" +ROUGAIL.LEADERSHIP.FOLLOWER2="string1,string2,string3" diff --git a/tests/results/40_0leadership_follower_default_calculation/file/all.env b/tests/results/40_0leadership_follower_default_calculation/file/all.env index b45ebff..636bb16 100644 --- a/tests/results/40_0leadership_follower_default_calculation/file/all.env +++ b/tests/results/40_0leadership_follower_default_calculation/file/all.env @@ -1,3 +1,3 @@ -ROUGAIL_LEADER.LEADER="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER1="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER2="string1,string2,string3" +ROUGAIL.LEADER.LEADER="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER1="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER2="string1,string2,string3" diff --git a/tests/results/40_0leadership_follower_default_calculation/file/all_exclude.env b/tests/results/40_0leadership_follower_default_calculation/file/all_exclude.env index b45ebff..636bb16 100644 --- a/tests/results/40_0leadership_follower_default_calculation/file/all_exclude.env +++ b/tests/results/40_0leadership_follower_default_calculation/file/all_exclude.env @@ -1,3 +1,3 @@ -ROUGAIL_LEADER.LEADER="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER1="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER2="string1,string2,string3" +ROUGAIL.LEADER.LEADER="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER1="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER2="string1,string2,string3" diff --git a/tests/results/40_0leadership_follower_default_calculation/file/mandatories.env b/tests/results/40_0leadership_follower_default_calculation/file/mandatories.env index e7e4f78..f1e19e9 100644 --- a/tests/results/40_0leadership_follower_default_calculation/file/mandatories.env +++ b/tests/results/40_0leadership_follower_default_calculation/file/mandatories.env @@ -1 +1 @@ -ROUGAIL_LEADER.LEADER="string1,string2,string3" +ROUGAIL.LEADER.LEADER="string1,string2,string3" diff --git a/tests/results/40_0leadership_follower_default_value/file/all.env b/tests/results/40_0leadership_follower_default_value/file/all.env index 46e2279..4c1f199 100644 --- a/tests/results/40_0leadership_follower_default_value/file/all.env +++ b/tests/results/40_0leadership_follower_default_value/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_LEADER.LEADER="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER1="string1,string2,string3" +ROUGAIL.LEADER.LEADER="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER1="string1,string2,string3" diff --git a/tests/results/40_0leadership_follower_default_value/file/all_exclude.env b/tests/results/40_0leadership_follower_default_value/file/all_exclude.env index 46e2279..4c1f199 100644 --- a/tests/results/40_0leadership_follower_default_value/file/all_exclude.env +++ b/tests/results/40_0leadership_follower_default_value/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_LEADER.LEADER="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER1="string1,string2,string3" +ROUGAIL.LEADER.LEADER="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER1="string1,string2,string3" diff --git a/tests/results/40_0leadership_leader_not_multi/file/all.env b/tests/results/40_0leadership_leader_not_multi/file/all.env index 7827b3b..25f1c0e 100644 --- a/tests/results/40_0leadership_leader_not_multi/file/all.env +++ b/tests/results/40_0leadership_leader_not_multi/file/all.env @@ -1,4 +1,4 @@ -ROUGAIL_GENERAL.MODE_CONTENEUR_ACTIF="string1" -ROUGAIL_GENERAL1.LEADER.LEADER="string1,string2,string3" -ROUGAIL_GENERAL1.LEADER.FOLLOWER1="string1,string2,string3" -ROUGAIL_GENERAL1.LEADER.FOLLOWER2="string1,string2,string3" +ROUGAIL.GENERAL.MODE_CONTENEUR_ACTIF="string1" +ROUGAIL.GENERAL1.LEADER.LEADER="string1,string2,string3" +ROUGAIL.GENERAL1.LEADER.FOLLOWER1="string1,string2,string3" +ROUGAIL.GENERAL1.LEADER.FOLLOWER2="string1,string2,string3" diff --git a/tests/results/40_0leadership_leader_not_multi/file/all_exclude.env b/tests/results/40_0leadership_leader_not_multi/file/all_exclude.env index 7827b3b..25f1c0e 100644 --- a/tests/results/40_0leadership_leader_not_multi/file/all_exclude.env +++ b/tests/results/40_0leadership_leader_not_multi/file/all_exclude.env @@ -1,4 +1,4 @@ -ROUGAIL_GENERAL.MODE_CONTENEUR_ACTIF="string1" -ROUGAIL_GENERAL1.LEADER.LEADER="string1,string2,string3" -ROUGAIL_GENERAL1.LEADER.FOLLOWER1="string1,string2,string3" -ROUGAIL_GENERAL1.LEADER.FOLLOWER2="string1,string2,string3" +ROUGAIL.GENERAL.MODE_CONTENEUR_ACTIF="string1" +ROUGAIL.GENERAL1.LEADER.LEADER="string1,string2,string3" +ROUGAIL.GENERAL1.LEADER.FOLLOWER1="string1,string2,string3" +ROUGAIL.GENERAL1.LEADER.FOLLOWER2="string1,string2,string3" diff --git a/tests/results/40_0leadership_leader_not_multi/file/mandatories.env b/tests/results/40_0leadership_leader_not_multi/file/mandatories.env index 125fad8..4458f1d 100644 --- a/tests/results/40_0leadership_leader_not_multi/file/mandatories.env +++ b/tests/results/40_0leadership_leader_not_multi/file/mandatories.env @@ -1,3 +1,3 @@ -ROUGAIL_GENERAL1.LEADER.LEADER="string1,string2,string3" -ROUGAIL_GENERAL1.LEADER.FOLLOWER1="string1,string2,string3" -ROUGAIL_GENERAL1.LEADER.FOLLOWER2="string1,string2,string3" +ROUGAIL.GENERAL1.LEADER.LEADER="string1,string2,string3" +ROUGAIL.GENERAL1.LEADER.FOLLOWER1="string1,string2,string3" +ROUGAIL.GENERAL1.LEADER.FOLLOWER2="string1,string2,string3" diff --git a/tests/results/40_1leadership_append_follower/file/all.env b/tests/results/40_1leadership_append_follower/file/all.env index 4b4fe73..fb12e2b 100644 --- a/tests/results/40_1leadership_append_follower/file/all.env +++ b/tests/results/40_1leadership_append_follower/file/all.env @@ -1,4 +1,4 @@ -ROUGAIL_LEADER.LEADER="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER1="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER2="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER3="string1,string2,string3" +ROUGAIL.LEADER.LEADER="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER1="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER2="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER3="string1,string2,string3" diff --git a/tests/results/40_1leadership_append_follower/file/all_exclude.env b/tests/results/40_1leadership_append_follower/file/all_exclude.env index 4b4fe73..fb12e2b 100644 --- a/tests/results/40_1leadership_append_follower/file/all_exclude.env +++ b/tests/results/40_1leadership_append_follower/file/all_exclude.env @@ -1,4 +1,4 @@ -ROUGAIL_LEADER.LEADER="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER1="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER2="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER3="string1,string2,string3" +ROUGAIL.LEADER.LEADER="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER1="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER2="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER3="string1,string2,string3" diff --git a/tests/results/40_1leadership_append_follower/file/mandatories.env b/tests/results/40_1leadership_append_follower/file/mandatories.env index 4b4fe73..fb12e2b 100644 --- a/tests/results/40_1leadership_append_follower/file/mandatories.env +++ b/tests/results/40_1leadership_append_follower/file/mandatories.env @@ -1,4 +1,4 @@ -ROUGAIL_LEADER.LEADER="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER1="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER2="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER3="string1,string2,string3" +ROUGAIL.LEADER.LEADER="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER1="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER2="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER3="string1,string2,string3" diff --git a/tests/results/40_2leadership_calculation_index/file/all.env b/tests/results/40_2leadership_calculation_index/file/all.env index f5f6583..51475c8 100644 --- a/tests/results/40_2leadership_calculation_index/file/all.env +++ b/tests/results/40_2leadership_calculation_index/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_LEADER.LEADER="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER1="1,2,3" +ROUGAIL.LEADER.LEADER="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER1="1,2,3" diff --git a/tests/results/40_2leadership_calculation_index/file/all_exclude.env b/tests/results/40_2leadership_calculation_index/file/all_exclude.env index f5f6583..51475c8 100644 --- a/tests/results/40_2leadership_calculation_index/file/all_exclude.env +++ b/tests/results/40_2leadership_calculation_index/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_LEADER.LEADER="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER1="1,2,3" +ROUGAIL.LEADER.LEADER="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER1="1,2,3" diff --git a/tests/results/40_2leadership_calculation_param_index/file/all.env b/tests/results/40_2leadership_calculation_param_index/file/all.env index f5f6583..51475c8 100644 --- a/tests/results/40_2leadership_calculation_param_index/file/all.env +++ b/tests/results/40_2leadership_calculation_param_index/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_LEADER.LEADER="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER1="1,2,3" +ROUGAIL.LEADER.LEADER="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER1="1,2,3" diff --git a/tests/results/40_2leadership_calculation_param_index/file/all_exclude.env b/tests/results/40_2leadership_calculation_param_index/file/all_exclude.env index f5f6583..51475c8 100644 --- a/tests/results/40_2leadership_calculation_param_index/file/all_exclude.env +++ b/tests/results/40_2leadership_calculation_param_index/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_LEADER.LEADER="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER1="1,2,3" +ROUGAIL.LEADER.LEADER="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER1="1,2,3" diff --git a/tests/results/40_2leadership_leader_calculation/file/all.env b/tests/results/40_2leadership_leader_calculation/file/all.env index b45ebff..636bb16 100644 --- a/tests/results/40_2leadership_leader_calculation/file/all.env +++ b/tests/results/40_2leadership_leader_calculation/file/all.env @@ -1,3 +1,3 @@ -ROUGAIL_LEADER.LEADER="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER1="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER2="string1,string2,string3" +ROUGAIL.LEADER.LEADER="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER1="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER2="string1,string2,string3" diff --git a/tests/results/40_2leadership_leader_calculation/file/all_exclude.env b/tests/results/40_2leadership_leader_calculation/file/all_exclude.env index b45ebff..636bb16 100644 --- a/tests/results/40_2leadership_leader_calculation/file/all_exclude.env +++ b/tests/results/40_2leadership_leader_calculation/file/all_exclude.env @@ -1,3 +1,3 @@ -ROUGAIL_LEADER.LEADER="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER1="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER2="string1,string2,string3" +ROUGAIL.LEADER.LEADER="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER1="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER2="string1,string2,string3" diff --git a/tests/results/40_2leadership_leader_calculation/file/mandatories.env b/tests/results/40_2leadership_leader_calculation/file/mandatories.env index 24934b3..f345a33 100644 --- a/tests/results/40_2leadership_leader_calculation/file/mandatories.env +++ b/tests/results/40_2leadership_leader_calculation/file/mandatories.env @@ -1,2 +1,2 @@ -ROUGAIL_LEADER.FOLLOWER1="string1,string2" -ROUGAIL_LEADER.FOLLOWER2="string1,string2" +ROUGAIL.LEADER.FOLLOWER1="string1,string2" +ROUGAIL.LEADER.FOLLOWER2="string1,string2" diff --git a/tests/results/40_8calculation_boolean/file/all.env b/tests/results/40_8calculation_boolean/file/all.env index f887b7a..529a0c6 100644 --- a/tests/results/40_8calculation_boolean/file/all.env +++ b/tests/results/40_8calculation_boolean/file/all.env @@ -1,3 +1,3 @@ -ROUGAIL_BOOL="True" -ROUGAIL_MULTI1="true" -ROUGAIL_MULTI2="true" +ROUGAIL.BOOL="True" +ROUGAIL.MULTI1="true" +ROUGAIL.MULTI2="true" diff --git a/tests/results/40_8calculation_boolean/file/all_exclude.env b/tests/results/40_8calculation_boolean/file/all_exclude.env index f887b7a..529a0c6 100644 --- a/tests/results/40_8calculation_boolean/file/all_exclude.env +++ b/tests/results/40_8calculation_boolean/file/all_exclude.env @@ -1,3 +1,3 @@ -ROUGAIL_BOOL="True" -ROUGAIL_MULTI1="true" -ROUGAIL_MULTI2="true" +ROUGAIL.BOOL="True" +ROUGAIL.MULTI1="true" +ROUGAIL.MULTI2="true" diff --git a/tests/results/40_8calculation_boolean_return_none/file/all.env b/tests/results/40_8calculation_boolean_return_none/file/all.env index c5d24d1..f3115f8 100644 --- a/tests/results/40_8calculation_boolean_return_none/file/all.env +++ b/tests/results/40_8calculation_boolean_return_none/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_VAR1="string1" -ROUGAIL_VAR2="True" +ROUGAIL.VAR1="string1" +ROUGAIL.VAR2="True" diff --git a/tests/results/40_8calculation_boolean_return_none/file/all_exclude.env b/tests/results/40_8calculation_boolean_return_none/file/all_exclude.env index c5d24d1..f3115f8 100644 --- a/tests/results/40_8calculation_boolean_return_none/file/all_exclude.env +++ b/tests/results/40_8calculation_boolean_return_none/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_VAR1="string1" -ROUGAIL_VAR2="True" +ROUGAIL.VAR1="string1" +ROUGAIL.VAR2="True" diff --git a/tests/results/40_8calculation_boolean_return_none/file/mandatories.env b/tests/results/40_8calculation_boolean_return_none/file/mandatories.env index 2f146d7..aa362ab 100644 --- a/tests/results/40_8calculation_boolean_return_none/file/mandatories.env +++ b/tests/results/40_8calculation_boolean_return_none/file/mandatories.env @@ -1 +1 @@ -ROUGAIL_VAR2="True" +ROUGAIL.VAR2="True" diff --git a/tests/results/40_8calculation_integer/file/all.env b/tests/results/40_8calculation_integer/file/all.env index 3c34a68..692ed14 100644 --- a/tests/results/40_8calculation_integer/file/all.env +++ b/tests/results/40_8calculation_integer/file/all.env @@ -1,3 +1,3 @@ -ROUGAIL_BOOL="True" -ROUGAIL_INT1="1" -ROUGAIL_INT2="1" +ROUGAIL.BOOL="True" +ROUGAIL.INT1="1" +ROUGAIL.INT2="1" diff --git a/tests/results/40_8calculation_integer/file/all_exclude.env b/tests/results/40_8calculation_integer/file/all_exclude.env index 3c34a68..692ed14 100644 --- a/tests/results/40_8calculation_integer/file/all_exclude.env +++ b/tests/results/40_8calculation_integer/file/all_exclude.env @@ -1,3 +1,3 @@ -ROUGAIL_BOOL="True" -ROUGAIL_INT1="1" -ROUGAIL_INT2="1" +ROUGAIL.BOOL="True" +ROUGAIL.INT1="1" +ROUGAIL.INT2="1" diff --git a/tests/results/40_8calculation_multi_variable/file/all.env b/tests/results/40_8calculation_multi_variable/file/all.env index 2b90d20..5d4b8e8 100644 --- a/tests/results/40_8calculation_multi_variable/file/all.env +++ b/tests/results/40_8calculation_multi_variable/file/all.env @@ -1,3 +1,3 @@ -ROUGAIL_VAR="string1,string2,string3" -ROUGAIL_VAR2="string1" -ROUGAIL_VAR3="string1" +ROUGAIL.VAR="string1,string2,string3" +ROUGAIL.VAR2="string1" +ROUGAIL.VAR3="string1" diff --git a/tests/results/40_8calculation_multi_variable/file/all_exclude.env b/tests/results/40_8calculation_multi_variable/file/all_exclude.env index 2b90d20..5d4b8e8 100644 --- a/tests/results/40_8calculation_multi_variable/file/all_exclude.env +++ b/tests/results/40_8calculation_multi_variable/file/all_exclude.env @@ -1,3 +1,3 @@ -ROUGAIL_VAR="string1,string2,string3" -ROUGAIL_VAR2="string1" -ROUGAIL_VAR3="string1" +ROUGAIL.VAR="string1,string2,string3" +ROUGAIL.VAR2="string1" +ROUGAIL.VAR3="string1" diff --git a/tests/results/40_8calculation_multi_variable_parent/file/all.env b/tests/results/40_8calculation_multi_variable_parent/file/all.env index aa43f16..c763ede 100644 --- a/tests/results/40_8calculation_multi_variable_parent/file/all.env +++ b/tests/results/40_8calculation_multi_variable_parent/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_VAR="string1" -ROUGAIL_FAM1.VAR="string1" +ROUGAIL.VAR="string1" +ROUGAIL.FAM1.VAR="string1" diff --git a/tests/results/40_8calculation_multi_variable_parent/file/all_exclude.env b/tests/results/40_8calculation_multi_variable_parent/file/all_exclude.env index aa43f16..c763ede 100644 --- a/tests/results/40_8calculation_multi_variable_parent/file/all_exclude.env +++ b/tests/results/40_8calculation_multi_variable_parent/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_VAR="string1" -ROUGAIL_FAM1.VAR="string1" +ROUGAIL.VAR="string1" +ROUGAIL.FAM1.VAR="string1" diff --git a/tests/results/40_8calculation_multi_variable_parent2/file/all.env b/tests/results/40_8calculation_multi_variable_parent2/file/all.env index e4c8422..c6e6a66 100644 --- a/tests/results/40_8calculation_multi_variable_parent2/file/all.env +++ b/tests/results/40_8calculation_multi_variable_parent2/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_FAM1.VAR="string1" -ROUGAIL_FAM2.VAR="string1" +ROUGAIL.FAM1.VAR="string1" +ROUGAIL.FAM2.VAR="string1" diff --git a/tests/results/40_8calculation_multi_variable_parent2/file/all_exclude.env b/tests/results/40_8calculation_multi_variable_parent2/file/all_exclude.env index e4c8422..c6e6a66 100644 --- a/tests/results/40_8calculation_multi_variable_parent2/file/all_exclude.env +++ b/tests/results/40_8calculation_multi_variable_parent2/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_FAM1.VAR="string1" -ROUGAIL_FAM2.VAR="string1" +ROUGAIL.FAM1.VAR="string1" +ROUGAIL.FAM2.VAR="string1" diff --git a/tests/results/41_0choice_leader/file/all.env b/tests/results/41_0choice_leader/file/all.env index 0a1fb27..05720f5 100644 --- a/tests/results/41_0choice_leader/file/all.env +++ b/tests/results/41_0choice_leader/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_LEADER.LEADER="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER1="a,b,c" +ROUGAIL.LEADER.LEADER="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER1="a,b,c" diff --git a/tests/results/41_0choice_leader/file/all_exclude.env b/tests/results/41_0choice_leader/file/all_exclude.env index 0a1fb27..05720f5 100644 --- a/tests/results/41_0choice_leader/file/all_exclude.env +++ b/tests/results/41_0choice_leader/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_LEADER.LEADER="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER1="a,b,c" +ROUGAIL.LEADER.LEADER="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER1="a,b,c" diff --git a/tests/results/44_0leadership_hidden/errors/all.json b/tests/results/44_0leadership_hidden/errors/all.json index b3b2836..337623b 100644 --- a/tests/results/44_0leadership_hidden/errors/all.json +++ b/tests/results/44_0leadership_hidden/errors/all.json @@ -1,6 +1,6 @@ { "errors": [ - "ne peut acc\u00e9der \u00e0 l'optiondescription \"rougail.leader\" (a leadership) \u00e0 cause de la propri\u00e9t\u00e9 \"hidden\"" + "cannot access to optiondescription \"rougail.leader\" (a leadership) because has property \"hidden\"" ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/44_0leadership_hidden/file/all.env b/tests/results/44_0leadership_hidden/file/all.env index e7e4f78..f1e19e9 100644 --- a/tests/results/44_0leadership_hidden/file/all.env +++ b/tests/results/44_0leadership_hidden/file/all.env @@ -1 +1 @@ -ROUGAIL_LEADER.LEADER="string1,string2,string3" +ROUGAIL.LEADER.LEADER="string1,string2,string3" diff --git a/tests/results/44_0leadership_hidden/file/all_exclude.env b/tests/results/44_0leadership_hidden/file/all_exclude.env index e7e4f78..f1e19e9 100644 --- a/tests/results/44_0leadership_hidden/file/all_exclude.env +++ b/tests/results/44_0leadership_hidden/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_LEADER.LEADER="string1,string2,string3" +ROUGAIL.LEADER.LEADER="string1,string2,string3" diff --git a/tests/results/44_0leadership_leader_hidden/errors/all.json b/tests/results/44_0leadership_leader_hidden/errors/all.json index b3b2836..337623b 100644 --- a/tests/results/44_0leadership_leader_hidden/errors/all.json +++ b/tests/results/44_0leadership_leader_hidden/errors/all.json @@ -1,6 +1,6 @@ { "errors": [ - "ne peut acc\u00e9der \u00e0 l'optiondescription \"rougail.leader\" (a leadership) \u00e0 cause de la propri\u00e9t\u00e9 \"hidden\"" + "cannot access to optiondescription \"rougail.leader\" (a leadership) because has property \"hidden\"" ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/44_0leadership_leader_hidden/file/all.env b/tests/results/44_0leadership_leader_hidden/file/all.env index e7e4f78..f1e19e9 100644 --- a/tests/results/44_0leadership_leader_hidden/file/all.env +++ b/tests/results/44_0leadership_leader_hidden/file/all.env @@ -1 +1 @@ -ROUGAIL_LEADER.LEADER="string1,string2,string3" +ROUGAIL.LEADER.LEADER="string1,string2,string3" diff --git a/tests/results/44_0leadership_leader_hidden/file/all_exclude.env b/tests/results/44_0leadership_leader_hidden/file/all_exclude.env index e7e4f78..f1e19e9 100644 --- a/tests/results/44_0leadership_leader_hidden/file/all_exclude.env +++ b/tests/results/44_0leadership_leader_hidden/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_LEADER.LEADER="string1,string2,string3" +ROUGAIL.LEADER.LEADER="string1,string2,string3" diff --git a/tests/results/44_1leadership_append_hidden_follower/errors/all.json b/tests/results/44_1leadership_append_hidden_follower/errors/all.json index b3b2836..337623b 100644 --- a/tests/results/44_1leadership_append_hidden_follower/errors/all.json +++ b/tests/results/44_1leadership_append_hidden_follower/errors/all.json @@ -1,6 +1,6 @@ { "errors": [ - "ne peut acc\u00e9der \u00e0 l'optiondescription \"rougail.leader\" (a leadership) \u00e0 cause de la propri\u00e9t\u00e9 \"hidden\"" + "cannot access to optiondescription \"rougail.leader\" (a leadership) because has property \"hidden\"" ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/44_1leadership_append_hidden_follower/file/all.env b/tests/results/44_1leadership_append_hidden_follower/file/all.env index e7e4f78..f1e19e9 100644 --- a/tests/results/44_1leadership_append_hidden_follower/file/all.env +++ b/tests/results/44_1leadership_append_hidden_follower/file/all.env @@ -1 +1 @@ -ROUGAIL_LEADER.LEADER="string1,string2,string3" +ROUGAIL.LEADER.LEADER="string1,string2,string3" diff --git a/tests/results/44_1leadership_append_hidden_follower/file/all_exclude.env b/tests/results/44_1leadership_append_hidden_follower/file/all_exclude.env index e7e4f78..f1e19e9 100644 --- a/tests/results/44_1leadership_append_hidden_follower/file/all_exclude.env +++ b/tests/results/44_1leadership_append_hidden_follower/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_LEADER.LEADER="string1,string2,string3" +ROUGAIL.LEADER.LEADER="string1,string2,string3" diff --git a/tests/results/44_4disabled_calcultion_follower/file/all.env b/tests/results/44_4disabled_calcultion_follower/file/all.env index 12ca037..0b8d162 100644 --- a/tests/results/44_4disabled_calcultion_follower/file/all.env +++ b/tests/results/44_4disabled_calcultion_follower/file/all.env @@ -1,3 +1,3 @@ -ROUGAIL_CONDITION="True" -ROUGAIL_LEADER.LEADER="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER="string1,string2,string3" +ROUGAIL.CONDITION="True" +ROUGAIL.LEADER.LEADER="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER="string1,string2,string3" diff --git a/tests/results/44_4disabled_calcultion_follower/file/all_exclude.env b/tests/results/44_4disabled_calcultion_follower/file/all_exclude.env index 12ca037..0b8d162 100644 --- a/tests/results/44_4disabled_calcultion_follower/file/all_exclude.env +++ b/tests/results/44_4disabled_calcultion_follower/file/all_exclude.env @@ -1,3 +1,3 @@ -ROUGAIL_CONDITION="True" -ROUGAIL_LEADER.LEADER="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER="string1,string2,string3" +ROUGAIL.CONDITION="True" +ROUGAIL.LEADER.LEADER="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER="string1,string2,string3" diff --git a/tests/results/44_4disabled_calcultion_follower/file/mandatories.env b/tests/results/44_4disabled_calcultion_follower/file/mandatories.env index e5f6e11..b179754 100644 --- a/tests/results/44_4disabled_calcultion_follower/file/mandatories.env +++ b/tests/results/44_4disabled_calcultion_follower/file/mandatories.env @@ -1 +1 @@ -ROUGAIL_LEADER.FOLLOWER="string1" +ROUGAIL.LEADER.FOLLOWER="string1" diff --git a/tests/results/44_4leadership_mandatory/file/all.env b/tests/results/44_4leadership_mandatory/file/all.env index 46e2279..4c1f199 100644 --- a/tests/results/44_4leadership_mandatory/file/all.env +++ b/tests/results/44_4leadership_mandatory/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_LEADER.LEADER="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER1="string1,string2,string3" +ROUGAIL.LEADER.LEADER="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER1="string1,string2,string3" diff --git a/tests/results/44_4leadership_mandatory/file/all_exclude.env b/tests/results/44_4leadership_mandatory/file/all_exclude.env index 46e2279..4c1f199 100644 --- a/tests/results/44_4leadership_mandatory/file/all_exclude.env +++ b/tests/results/44_4leadership_mandatory/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_LEADER.LEADER="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER1="string1,string2,string3" +ROUGAIL.LEADER.LEADER="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER1="string1,string2,string3" diff --git a/tests/results/44_4leadership_mandatory/file/mandatories.env b/tests/results/44_4leadership_mandatory/file/mandatories.env index e7e4f78..f1e19e9 100644 --- a/tests/results/44_4leadership_mandatory/file/mandatories.env +++ b/tests/results/44_4leadership_mandatory/file/mandatories.env @@ -1 +1 @@ -ROUGAIL_LEADER.LEADER="string1,string2,string3" +ROUGAIL.LEADER.LEADER="string1,string2,string3" diff --git a/tests/results/44_4leadership_mandatory_follower/file/all.env b/tests/results/44_4leadership_mandatory_follower/file/all.env index e0b85c2..f58b98b 100644 --- a/tests/results/44_4leadership_mandatory_follower/file/all.env +++ b/tests/results/44_4leadership_mandatory_follower/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_LEADER.LEADER="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER="string1,string2,string3" +ROUGAIL.LEADER.LEADER="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER="string1,string2,string3" diff --git a/tests/results/44_4leadership_mandatory_follower/file/all_exclude.env b/tests/results/44_4leadership_mandatory_follower/file/all_exclude.env index e0b85c2..f58b98b 100644 --- a/tests/results/44_4leadership_mandatory_follower/file/all_exclude.env +++ b/tests/results/44_4leadership_mandatory_follower/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_LEADER.LEADER="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER="string1,string2,string3" +ROUGAIL.LEADER.LEADER="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER="string1,string2,string3" diff --git a/tests/results/44_5leadership_leader_hidden_calculation/file/all.env b/tests/results/44_5leadership_leader_hidden_calculation/file/all.env index 297ac16..765e3a7 100644 --- a/tests/results/44_5leadership_leader_hidden_calculation/file/all.env +++ b/tests/results/44_5leadership_leader_hidden_calculation/file/all.env @@ -1,3 +1,3 @@ -ROUGAIL_CONDITION="string1" -ROUGAIL_LEADER.LEADER="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER="string1,string2,string3" +ROUGAIL.CONDITION="string1" +ROUGAIL.LEADER.LEADER="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER="string1,string2,string3" diff --git a/tests/results/44_5leadership_leader_hidden_calculation/file/all_exclude.env b/tests/results/44_5leadership_leader_hidden_calculation/file/all_exclude.env index 297ac16..765e3a7 100644 --- a/tests/results/44_5leadership_leader_hidden_calculation/file/all_exclude.env +++ b/tests/results/44_5leadership_leader_hidden_calculation/file/all_exclude.env @@ -1,3 +1,3 @@ -ROUGAIL_CONDITION="string1" -ROUGAIL_LEADER.LEADER="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER="string1,string2,string3" +ROUGAIL.CONDITION="string1" +ROUGAIL.LEADER.LEADER="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER="string1,string2,string3" diff --git a/tests/results/44_6leadership_follower_disabled_calculation/errors/mandatories.json b/tests/results/44_6leadership_follower_disabled_calculation/errors/mandatories.json index fbb1389..2cf0dfb 100644 --- a/tests/results/44_6leadership_follower_disabled_calculation/errors/mandatories.json +++ b/tests/results/44_6leadership_follower_disabled_calculation/errors/mandatories.json @@ -1,6 +1,6 @@ { "errors": [ - "ne peut acc\u00e9der \u00e0 l'option \"rougail.leader.follower\" (a follower) \u00e0 cause de la propri\u00e9t\u00e9 \"disabled\" (disabled)" + "cannot access to option \"rougail.leader.follower\" (a follower) because has property \"disabled\" (disabled)" ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/44_6leadership_follower_disabled_calculation/file/all.env b/tests/results/44_6leadership_follower_disabled_calculation/file/all.env index 297ac16..765e3a7 100644 --- a/tests/results/44_6leadership_follower_disabled_calculation/file/all.env +++ b/tests/results/44_6leadership_follower_disabled_calculation/file/all.env @@ -1,3 +1,3 @@ -ROUGAIL_CONDITION="string1" -ROUGAIL_LEADER.LEADER="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER="string1,string2,string3" +ROUGAIL.CONDITION="string1" +ROUGAIL.LEADER.LEADER="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER="string1,string2,string3" diff --git a/tests/results/44_6leadership_follower_disabled_calculation/file/all_exclude.env b/tests/results/44_6leadership_follower_disabled_calculation/file/all_exclude.env index 297ac16..765e3a7 100644 --- a/tests/results/44_6leadership_follower_disabled_calculation/file/all_exclude.env +++ b/tests/results/44_6leadership_follower_disabled_calculation/file/all_exclude.env @@ -1,3 +1,3 @@ -ROUGAIL_CONDITION="string1" -ROUGAIL_LEADER.LEADER="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER="string1,string2,string3" +ROUGAIL.CONDITION="string1" +ROUGAIL.LEADER.LEADER="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER="string1,string2,string3" diff --git a/tests/results/44_6leadership_follower_disabled_calculation/file/mandatories.env b/tests/results/44_6leadership_follower_disabled_calculation/file/mandatories.env index e0b85c2..f58b98b 100644 --- a/tests/results/44_6leadership_follower_disabled_calculation/file/mandatories.env +++ b/tests/results/44_6leadership_follower_disabled_calculation/file/mandatories.env @@ -1,2 +1,2 @@ -ROUGAIL_LEADER.LEADER="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER="string1,string2,string3" +ROUGAIL.LEADER.LEADER="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER="string1,string2,string3" diff --git a/tests/results/44_9calculated_default_leadership_leader/file/all.env b/tests/results/44_9calculated_default_leadership_leader/file/all.env index e0b85c2..f58b98b 100644 --- a/tests/results/44_9calculated_default_leadership_leader/file/all.env +++ b/tests/results/44_9calculated_default_leadership_leader/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_LEADER.LEADER="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER="string1,string2,string3" +ROUGAIL.LEADER.LEADER="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER="string1,string2,string3" diff --git a/tests/results/44_9calculated_default_leadership_leader/file/all_exclude.env b/tests/results/44_9calculated_default_leadership_leader/file/all_exclude.env index e0b85c2..f58b98b 100644 --- a/tests/results/44_9calculated_default_leadership_leader/file/all_exclude.env +++ b/tests/results/44_9calculated_default_leadership_leader/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_LEADER.LEADER="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER="string1,string2,string3" +ROUGAIL.LEADER.LEADER="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER="string1,string2,string3" diff --git a/tests/results/60_0family_dynamic/errors/mandatories.json b/tests/results/60_0family_dynamic/errors/mandatories.json index 217db0a..748dd1d 100644 --- a/tests/results/60_0family_dynamic/errors/mandatories.json +++ b/tests/results/60_0family_dynamic/errors/mandatories.json @@ -1,4 +1,8 @@ { - "errors": [], + "errors": [ + "unknown option \"dynstring1\" in optiondescription \"rougail\"", + "unknown option \"dynstring2\" in optiondescription \"rougail\"", + "unknown option \"dynstring3\" in optiondescription \"rougail\"" + ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/60_0family_dynamic/file/all.env b/tests/results/60_0family_dynamic/file/all.env index 30a1cd9..695b6ad 100644 --- a/tests/results/60_0family_dynamic/file/all.env +++ b/tests/results/60_0family_dynamic/file/all.env @@ -1,4 +1,4 @@ -ROUGAIL_VAR="string1,string2,string3" -ROUGAIL_DYNSTRING1.VAR="string1" -ROUGAIL_DYNSTRING2.VAR="string1" -ROUGAIL_DYNSTRING3.VAR="string1" +ROUGAIL.VAR="string1,string2,string3" +ROUGAIL.DYNSTRING1.VAR="string1" +ROUGAIL.DYNSTRING2.VAR="string1" +ROUGAIL.DYNSTRING3.VAR="string1" diff --git a/tests/results/60_0family_dynamic/file/all_exclude.env b/tests/results/60_0family_dynamic/file/all_exclude.env index 926cb0b..35c6349 100644 --- a/tests/results/60_0family_dynamic/file/all_exclude.env +++ b/tests/results/60_0family_dynamic/file/all_exclude.env @@ -1,3 +1,3 @@ -ROUGAIL_DYNSTRING1.VAR="string1" -ROUGAIL_DYNSTRING2.VAR="string1" -ROUGAIL_DYNSTRING3.VAR="string1" +ROUGAIL.DYNSTRING1.VAR="string1" +ROUGAIL.DYNSTRING2.VAR="string1" +ROUGAIL.DYNSTRING3.VAR="string1" diff --git a/tests/results/60_0family_dynamic/file/mandatories.env b/tests/results/60_0family_dynamic/file/mandatories.env index a3e2e9b..cf6d584 100644 --- a/tests/results/60_0family_dynamic/file/mandatories.env +++ b/tests/results/60_0family_dynamic/file/mandatories.env @@ -1,2 +1,2 @@ -ROUGAIL_DYNVAL1.VAR="string1" -ROUGAIL_DYNVAL2.VAR="string1" +ROUGAIL.DYNVAL1.VAR="string1" +ROUGAIL.DYNVAL2.VAR="string1" diff --git a/tests/results/60_0family_dynamic_1_0/errors/mandatories.json b/tests/results/60_0family_dynamic_1_0/errors/mandatories.json index 217db0a..748dd1d 100644 --- a/tests/results/60_0family_dynamic_1_0/errors/mandatories.json +++ b/tests/results/60_0family_dynamic_1_0/errors/mandatories.json @@ -1,4 +1,8 @@ { - "errors": [], + "errors": [ + "unknown option \"dynstring1\" in optiondescription \"rougail\"", + "unknown option \"dynstring2\" in optiondescription \"rougail\"", + "unknown option \"dynstring3\" in optiondescription \"rougail\"" + ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/60_0family_dynamic_1_0/file/all.env b/tests/results/60_0family_dynamic_1_0/file/all.env index 9e5a7e3..fa48a28 100644 --- a/tests/results/60_0family_dynamic_1_0/file/all.env +++ b/tests/results/60_0family_dynamic_1_0/file/all.env @@ -1,4 +1,4 @@ -ROUGAIL_VAR="string1,string2,string3" -ROUGAIL_DYNSTRING1.VARDYN="string1" -ROUGAIL_DYNSTRING2.VARDYN="string1" -ROUGAIL_DYNSTRING3.VARDYN="string1" +ROUGAIL.VAR="string1,string2,string3" +ROUGAIL.DYNSTRING1.VARDYN="string1" +ROUGAIL.DYNSTRING2.VARDYN="string1" +ROUGAIL.DYNSTRING3.VARDYN="string1" diff --git a/tests/results/60_0family_dynamic_1_0/file/all_exclude.env b/tests/results/60_0family_dynamic_1_0/file/all_exclude.env index b5c7cc2..fe507f2 100644 --- a/tests/results/60_0family_dynamic_1_0/file/all_exclude.env +++ b/tests/results/60_0family_dynamic_1_0/file/all_exclude.env @@ -1,3 +1,3 @@ -ROUGAIL_DYNSTRING1.VARDYN="string1" -ROUGAIL_DYNSTRING2.VARDYN="string1" -ROUGAIL_DYNSTRING3.VARDYN="string1" +ROUGAIL.DYNSTRING1.VARDYN="string1" +ROUGAIL.DYNSTRING2.VARDYN="string1" +ROUGAIL.DYNSTRING3.VARDYN="string1" diff --git a/tests/results/60_0family_dynamic_1_0_empty/errors/all.json b/tests/results/60_0family_dynamic_1_0_empty/errors/all.json new file mode 100644 index 0000000..217db0a --- /dev/null +++ b/tests/results/60_0family_dynamic_1_0_empty/errors/all.json @@ -0,0 +1,4 @@ +{ + "errors": [], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_0family_dynamic_1_0_empty/errors/mandatories.json b/tests/results/60_0family_dynamic_1_0_empty/errors/mandatories.json new file mode 100644 index 0000000..217db0a --- /dev/null +++ b/tests/results/60_0family_dynamic_1_0_empty/errors/mandatories.json @@ -0,0 +1,4 @@ +{ + "errors": [], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_0family_dynamic_1_0_empty/file/all.env b/tests/results/60_0family_dynamic_1_0_empty/file/all.env new file mode 100644 index 0000000..7182972 --- /dev/null +++ b/tests/results/60_0family_dynamic_1_0_empty/file/all.env @@ -0,0 +1,3 @@ +ROUGAIL.VAR="val1,val2" +ROUGAIL.DYNVAL1.VARDYN="string1" +ROUGAIL.DYNVAL2.VARDYN="string1" diff --git a/tests/results/60_0family_dynamic_1_0_empty/file/all_exclude.env b/tests/results/60_0family_dynamic_1_0_empty/file/all_exclude.env new file mode 100644 index 0000000..95ebc10 --- /dev/null +++ b/tests/results/60_0family_dynamic_1_0_empty/file/all_exclude.env @@ -0,0 +1,2 @@ +ROUGAIL.DYNVAL1.VARDYN="string1" +ROUGAIL.DYNVAL2.VARDYN="string1" diff --git a/tests/results/60_0family_dynamic_1_0_empty/file/mandatories.env b/tests/results/60_0family_dynamic_1_0_empty/file/mandatories.env new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/results/60_0family_dynamic_1_0_empty/file/mandatories.env @@ -0,0 +1 @@ + diff --git a/tests/results/60_0family_dynamic_1_0_empty/makedict/all.json b/tests/results/60_0family_dynamic_1_0_empty/makedict/all.json new file mode 100644 index 0000000..23404d1 --- /dev/null +++ b/tests/results/60_0family_dynamic_1_0_empty/makedict/all.json @@ -0,0 +1,8 @@ +{ + "rougail.var": [ + "val1", + "val2" + ], + "rougail.dynval1.vardyn": "string1", + "rougail.dynval2.vardyn": "string1" +} diff --git a/tests/results/60_0family_dynamic_1_0_empty/makedict/mandatories.json b/tests/results/60_0family_dynamic_1_0_empty/makedict/mandatories.json new file mode 100644 index 0000000..a132f45 --- /dev/null +++ b/tests/results/60_0family_dynamic_1_0_empty/makedict/mandatories.json @@ -0,0 +1,3 @@ +{ + "rougail.var": [] +} diff --git a/tests/results/60_0family_dynamic_1_0_type/errors/mandatories.json b/tests/results/60_0family_dynamic_1_0_type/errors/mandatories.json index 217db0a..748dd1d 100644 --- a/tests/results/60_0family_dynamic_1_0_type/errors/mandatories.json +++ b/tests/results/60_0family_dynamic_1_0_type/errors/mandatories.json @@ -1,4 +1,8 @@ { - "errors": [], + "errors": [ + "unknown option \"dynstring1\" in optiondescription \"rougail\"", + "unknown option \"dynstring2\" in optiondescription \"rougail\"", + "unknown option \"dynstring3\" in optiondescription \"rougail\"" + ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/60_0family_dynamic_1_0_type/file/all.env b/tests/results/60_0family_dynamic_1_0_type/file/all.env index 9e5a7e3..fa48a28 100644 --- a/tests/results/60_0family_dynamic_1_0_type/file/all.env +++ b/tests/results/60_0family_dynamic_1_0_type/file/all.env @@ -1,4 +1,4 @@ -ROUGAIL_VAR="string1,string2,string3" -ROUGAIL_DYNSTRING1.VARDYN="string1" -ROUGAIL_DYNSTRING2.VARDYN="string1" -ROUGAIL_DYNSTRING3.VARDYN="string1" +ROUGAIL.VAR="string1,string2,string3" +ROUGAIL.DYNSTRING1.VARDYN="string1" +ROUGAIL.DYNSTRING2.VARDYN="string1" +ROUGAIL.DYNSTRING3.VARDYN="string1" diff --git a/tests/results/60_0family_dynamic_1_0_type/file/all_exclude.env b/tests/results/60_0family_dynamic_1_0_type/file/all_exclude.env index b5c7cc2..fe507f2 100644 --- a/tests/results/60_0family_dynamic_1_0_type/file/all_exclude.env +++ b/tests/results/60_0family_dynamic_1_0_type/file/all_exclude.env @@ -1,3 +1,3 @@ -ROUGAIL_DYNSTRING1.VARDYN="string1" -ROUGAIL_DYNSTRING2.VARDYN="string1" -ROUGAIL_DYNSTRING3.VARDYN="string1" +ROUGAIL.DYNSTRING1.VARDYN="string1" +ROUGAIL.DYNSTRING2.VARDYN="string1" +ROUGAIL.DYNSTRING3.VARDYN="string1" diff --git a/tests/results/60_0family_dynamic_1_0_type/file/mandatories.env b/tests/results/60_0family_dynamic_1_0_type/file/mandatories.env index 9c41048..95ebc10 100644 --- a/tests/results/60_0family_dynamic_1_0_type/file/mandatories.env +++ b/tests/results/60_0family_dynamic_1_0_type/file/mandatories.env @@ -1,2 +1,2 @@ -ROUGAIL_DYNVAL1.VARDYN="string1" -ROUGAIL_DYNVAL2.VARDYN="string1" +ROUGAIL.DYNVAL1.VARDYN="string1" +ROUGAIL.DYNVAL2.VARDYN="string1" diff --git a/tests/results/60_0family_dynamic_1_0_type_empty/errors/all.json b/tests/results/60_0family_dynamic_1_0_type_empty/errors/all.json new file mode 100644 index 0000000..217db0a --- /dev/null +++ b/tests/results/60_0family_dynamic_1_0_type_empty/errors/all.json @@ -0,0 +1,4 @@ +{ + "errors": [], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_0family_dynamic_1_0_type_empty/errors/mandatories.json b/tests/results/60_0family_dynamic_1_0_type_empty/errors/mandatories.json new file mode 100644 index 0000000..217db0a --- /dev/null +++ b/tests/results/60_0family_dynamic_1_0_type_empty/errors/mandatories.json @@ -0,0 +1,4 @@ +{ + "errors": [], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_0family_dynamic_1_0_type_empty/file/all.env b/tests/results/60_0family_dynamic_1_0_type_empty/file/all.env new file mode 100644 index 0000000..7182972 --- /dev/null +++ b/tests/results/60_0family_dynamic_1_0_type_empty/file/all.env @@ -0,0 +1,3 @@ +ROUGAIL.VAR="val1,val2" +ROUGAIL.DYNVAL1.VARDYN="string1" +ROUGAIL.DYNVAL2.VARDYN="string1" diff --git a/tests/results/60_0family_dynamic_1_0_type_empty/file/all_exclude.env b/tests/results/60_0family_dynamic_1_0_type_empty/file/all_exclude.env new file mode 100644 index 0000000..95ebc10 --- /dev/null +++ b/tests/results/60_0family_dynamic_1_0_type_empty/file/all_exclude.env @@ -0,0 +1,2 @@ +ROUGAIL.DYNVAL1.VARDYN="string1" +ROUGAIL.DYNVAL2.VARDYN="string1" diff --git a/tests/results/60_0family_dynamic_1_0_type_empty/file/mandatories.env b/tests/results/60_0family_dynamic_1_0_type_empty/file/mandatories.env new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/results/60_0family_dynamic_1_0_type_empty/file/mandatories.env @@ -0,0 +1 @@ + diff --git a/tests/results/60_0family_dynamic_1_0_type_empty/makedict/all.json b/tests/results/60_0family_dynamic_1_0_type_empty/makedict/all.json new file mode 100644 index 0000000..23404d1 --- /dev/null +++ b/tests/results/60_0family_dynamic_1_0_type_empty/makedict/all.json @@ -0,0 +1,8 @@ +{ + "rougail.var": [ + "val1", + "val2" + ], + "rougail.dynval1.vardyn": "string1", + "rougail.dynval2.vardyn": "string1" +} diff --git a/tests/results/60_0family_dynamic_1_0_type_empty/makedict/mandatories.json b/tests/results/60_0family_dynamic_1_0_type_empty/makedict/mandatories.json new file mode 100644 index 0000000..a132f45 --- /dev/null +++ b/tests/results/60_0family_dynamic_1_0_type_empty/makedict/mandatories.json @@ -0,0 +1,3 @@ +{ + "rougail.var": [] +} diff --git a/tests/results/60_0family_dynamic_1_1/errors/mandatories.json b/tests/results/60_0family_dynamic_1_1/errors/mandatories.json index 217db0a..748dd1d 100644 --- a/tests/results/60_0family_dynamic_1_1/errors/mandatories.json +++ b/tests/results/60_0family_dynamic_1_1/errors/mandatories.json @@ -1,4 +1,8 @@ { - "errors": [], + "errors": [ + "unknown option \"dynstring1\" in optiondescription \"rougail\"", + "unknown option \"dynstring2\" in optiondescription \"rougail\"", + "unknown option \"dynstring3\" in optiondescription \"rougail\"" + ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/60_0family_dynamic_1_1/file/all.env b/tests/results/60_0family_dynamic_1_1/file/all.env index 9e5a7e3..fa48a28 100644 --- a/tests/results/60_0family_dynamic_1_1/file/all.env +++ b/tests/results/60_0family_dynamic_1_1/file/all.env @@ -1,4 +1,4 @@ -ROUGAIL_VAR="string1,string2,string3" -ROUGAIL_DYNSTRING1.VARDYN="string1" -ROUGAIL_DYNSTRING2.VARDYN="string1" -ROUGAIL_DYNSTRING3.VARDYN="string1" +ROUGAIL.VAR="string1,string2,string3" +ROUGAIL.DYNSTRING1.VARDYN="string1" +ROUGAIL.DYNSTRING2.VARDYN="string1" +ROUGAIL.DYNSTRING3.VARDYN="string1" diff --git a/tests/results/60_0family_dynamic_1_1/file/all_exclude.env b/tests/results/60_0family_dynamic_1_1/file/all_exclude.env index b5c7cc2..fe507f2 100644 --- a/tests/results/60_0family_dynamic_1_1/file/all_exclude.env +++ b/tests/results/60_0family_dynamic_1_1/file/all_exclude.env @@ -1,3 +1,3 @@ -ROUGAIL_DYNSTRING1.VARDYN="string1" -ROUGAIL_DYNSTRING2.VARDYN="string1" -ROUGAIL_DYNSTRING3.VARDYN="string1" +ROUGAIL.DYNSTRING1.VARDYN="string1" +ROUGAIL.DYNSTRING2.VARDYN="string1" +ROUGAIL.DYNSTRING3.VARDYN="string1" diff --git a/tests/results/60_0family_dynamic_1_1/file/mandatories.env b/tests/results/60_0family_dynamic_1_1/file/mandatories.env index 9c41048..95ebc10 100644 --- a/tests/results/60_0family_dynamic_1_1/file/mandatories.env +++ b/tests/results/60_0family_dynamic_1_1/file/mandatories.env @@ -1,2 +1,2 @@ -ROUGAIL_DYNVAL1.VARDYN="string1" -ROUGAIL_DYNVAL2.VARDYN="string1" +ROUGAIL.DYNVAL1.VARDYN="string1" +ROUGAIL.DYNVAL2.VARDYN="string1" diff --git a/tests/results/60_0family_dynamic_1_1_empty/errors/all.json b/tests/results/60_0family_dynamic_1_1_empty/errors/all.json new file mode 100644 index 0000000..217db0a --- /dev/null +++ b/tests/results/60_0family_dynamic_1_1_empty/errors/all.json @@ -0,0 +1,4 @@ +{ + "errors": [], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_0family_dynamic_1_1_empty/errors/mandatories.json b/tests/results/60_0family_dynamic_1_1_empty/errors/mandatories.json new file mode 100644 index 0000000..217db0a --- /dev/null +++ b/tests/results/60_0family_dynamic_1_1_empty/errors/mandatories.json @@ -0,0 +1,4 @@ +{ + "errors": [], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_0family_dynamic_1_1_empty/file/all.env b/tests/results/60_0family_dynamic_1_1_empty/file/all.env new file mode 100644 index 0000000..7182972 --- /dev/null +++ b/tests/results/60_0family_dynamic_1_1_empty/file/all.env @@ -0,0 +1,3 @@ +ROUGAIL.VAR="val1,val2" +ROUGAIL.DYNVAL1.VARDYN="string1" +ROUGAIL.DYNVAL2.VARDYN="string1" diff --git a/tests/results/60_0family_dynamic_1_1_empty/file/all_exclude.env b/tests/results/60_0family_dynamic_1_1_empty/file/all_exclude.env new file mode 100644 index 0000000..95ebc10 --- /dev/null +++ b/tests/results/60_0family_dynamic_1_1_empty/file/all_exclude.env @@ -0,0 +1,2 @@ +ROUGAIL.DYNVAL1.VARDYN="string1" +ROUGAIL.DYNVAL2.VARDYN="string1" diff --git a/tests/results/60_0family_dynamic_1_1_empty/file/mandatories.env b/tests/results/60_0family_dynamic_1_1_empty/file/mandatories.env new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/results/60_0family_dynamic_1_1_empty/file/mandatories.env @@ -0,0 +1 @@ + diff --git a/tests/results/60_0family_dynamic_1_1_empty/makedict/all.json b/tests/results/60_0family_dynamic_1_1_empty/makedict/all.json new file mode 100644 index 0000000..23404d1 --- /dev/null +++ b/tests/results/60_0family_dynamic_1_1_empty/makedict/all.json @@ -0,0 +1,8 @@ +{ + "rougail.var": [ + "val1", + "val2" + ], + "rougail.dynval1.vardyn": "string1", + "rougail.dynval2.vardyn": "string1" +} diff --git a/tests/results/60_0family_dynamic_1_1_empty/makedict/mandatories.json b/tests/results/60_0family_dynamic_1_1_empty/makedict/mandatories.json new file mode 100644 index 0000000..a132f45 --- /dev/null +++ b/tests/results/60_0family_dynamic_1_1_empty/makedict/mandatories.json @@ -0,0 +1,3 @@ +{ + "rougail.var": [] +} diff --git a/tests/results/60_0family_dynamic_empty/errors/all.json b/tests/results/60_0family_dynamic_empty/errors/all.json new file mode 100644 index 0000000..217db0a --- /dev/null +++ b/tests/results/60_0family_dynamic_empty/errors/all.json @@ -0,0 +1,4 @@ +{ + "errors": [], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_0family_dynamic_empty/errors/mandatories.json b/tests/results/60_0family_dynamic_empty/errors/mandatories.json new file mode 100644 index 0000000..217db0a --- /dev/null +++ b/tests/results/60_0family_dynamic_empty/errors/mandatories.json @@ -0,0 +1,4 @@ +{ + "errors": [], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_0family_dynamic_empty/file/all.env b/tests/results/60_0family_dynamic_empty/file/all.env new file mode 100644 index 0000000..695b6ad --- /dev/null +++ b/tests/results/60_0family_dynamic_empty/file/all.env @@ -0,0 +1,4 @@ +ROUGAIL.VAR="string1,string2,string3" +ROUGAIL.DYNSTRING1.VAR="string1" +ROUGAIL.DYNSTRING2.VAR="string1" +ROUGAIL.DYNSTRING3.VAR="string1" diff --git a/tests/results/60_0family_dynamic_empty/file/all_exclude.env b/tests/results/60_0family_dynamic_empty/file/all_exclude.env new file mode 100644 index 0000000..35c6349 --- /dev/null +++ b/tests/results/60_0family_dynamic_empty/file/all_exclude.env @@ -0,0 +1,3 @@ +ROUGAIL.DYNSTRING1.VAR="string1" +ROUGAIL.DYNSTRING2.VAR="string1" +ROUGAIL.DYNSTRING3.VAR="string1" diff --git a/tests/results/60_0family_dynamic_empty/file/mandatories.env b/tests/results/60_0family_dynamic_empty/file/mandatories.env new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/results/60_0family_dynamic_empty/file/mandatories.env @@ -0,0 +1 @@ + diff --git a/tests/results/60_0family_dynamic_empty/makedict/all.json b/tests/results/60_0family_dynamic_empty/makedict/all.json new file mode 100644 index 0000000..9172af2 --- /dev/null +++ b/tests/results/60_0family_dynamic_empty/makedict/all.json @@ -0,0 +1,10 @@ +{ + "rougail.var": [ + "string1", + "string2", + "string3" + ], + "rougail.dynstring1.var": "string1", + "rougail.dynstring2.var": "string1", + "rougail.dynstring3.var": "string1" +} diff --git a/tests/results/60_0family_dynamic_empty/makedict/mandatories.json b/tests/results/60_0family_dynamic_empty/makedict/mandatories.json new file mode 100644 index 0000000..a132f45 --- /dev/null +++ b/tests/results/60_0family_dynamic_empty/makedict/mandatories.json @@ -0,0 +1,3 @@ +{ + "rougail.var": [] +} diff --git a/tests/results/60_0family_dynamic_jinja_number/errors/mandatories.json b/tests/results/60_0family_dynamic_jinja_number/errors/mandatories.json index 217db0a..0925976 100644 --- a/tests/results/60_0family_dynamic_jinja_number/errors/mandatories.json +++ b/tests/results/60_0family_dynamic_jinja_number/errors/mandatories.json @@ -1,4 +1,6 @@ { - "errors": [], + "errors": [ + "unknown option \"dyn3\" in optiondescription \"rougail\"" + ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/60_0family_dynamic_jinja_number/file/all.env b/tests/results/60_0family_dynamic_jinja_number/file/all.env index c97a109..fd08e07 100644 --- a/tests/results/60_0family_dynamic_jinja_number/file/all.env +++ b/tests/results/60_0family_dynamic_jinja_number/file/all.env @@ -1,5 +1,5 @@ -ROUGAIL_VAR="1,2,3" -ROUGAIL_DYN1.VAR="string1" -ROUGAIL_DYN2.VAR="string1" -ROUGAIL_DYN3.VAR="string1" -ROUGAIL_VAR2="string1" +ROUGAIL.VAR="1,2,3" +ROUGAIL.DYN1.VAR="string1" +ROUGAIL.DYN2.VAR="string1" +ROUGAIL.DYN3.VAR="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/60_0family_dynamic_jinja_number/file/all_exclude.env b/tests/results/60_0family_dynamic_jinja_number/file/all_exclude.env index 808f0c6..39533a7 100644 --- a/tests/results/60_0family_dynamic_jinja_number/file/all_exclude.env +++ b/tests/results/60_0family_dynamic_jinja_number/file/all_exclude.env @@ -1,4 +1,4 @@ -ROUGAIL_DYN1.VAR="string1" -ROUGAIL_DYN2.VAR="string1" -ROUGAIL_DYN3.VAR="string1" -ROUGAIL_VAR2="string1" +ROUGAIL.DYN1.VAR="string1" +ROUGAIL.DYN2.VAR="string1" +ROUGAIL.DYN3.VAR="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/60_0family_dynamic_jinja_number_empty/errors/all.json b/tests/results/60_0family_dynamic_jinja_number_empty/errors/all.json new file mode 100644 index 0000000..0925976 --- /dev/null +++ b/tests/results/60_0family_dynamic_jinja_number_empty/errors/all.json @@ -0,0 +1,6 @@ +{ + "errors": [ + "unknown option \"dyn3\" in optiondescription \"rougail\"" + ], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_0family_dynamic_jinja_number_empty/errors/mandatories.json b/tests/results/60_0family_dynamic_jinja_number_empty/errors/mandatories.json new file mode 100644 index 0000000..217db0a --- /dev/null +++ b/tests/results/60_0family_dynamic_jinja_number_empty/errors/mandatories.json @@ -0,0 +1,4 @@ +{ + "errors": [], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_0family_dynamic_jinja_number_empty/file/all.env b/tests/results/60_0family_dynamic_jinja_number_empty/file/all.env new file mode 100644 index 0000000..4da2751 --- /dev/null +++ b/tests/results/60_0family_dynamic_jinja_number_empty/file/all.env @@ -0,0 +1,4 @@ +ROUGAIL.VAR="1,2" +ROUGAIL.DYN1.VAR="string1" +ROUGAIL.DYN2.VAR="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/60_0family_dynamic_jinja_number_empty/file/all_exclude.env b/tests/results/60_0family_dynamic_jinja_number_empty/file/all_exclude.env new file mode 100644 index 0000000..ca1c29b --- /dev/null +++ b/tests/results/60_0family_dynamic_jinja_number_empty/file/all_exclude.env @@ -0,0 +1,3 @@ +ROUGAIL.DYN1.VAR="string1" +ROUGAIL.DYN2.VAR="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/60_0family_dynamic_jinja_number_empty/file/mandatories.env b/tests/results/60_0family_dynamic_jinja_number_empty/file/mandatories.env new file mode 100644 index 0000000..5640f89 --- /dev/null +++ b/tests/results/60_0family_dynamic_jinja_number_empty/file/mandatories.env @@ -0,0 +1 @@ +ROUGAIL.VAR2="string1" diff --git a/tests/results/60_0family_dynamic_jinja_number_empty/makedict/all.json b/tests/results/60_0family_dynamic_jinja_number_empty/makedict/all.json new file mode 100644 index 0000000..d429469 --- /dev/null +++ b/tests/results/60_0family_dynamic_jinja_number_empty/makedict/all.json @@ -0,0 +1,9 @@ +{ + "rougail.var": [ + 1, + 2 + ], + "rougail.dyn1.var": "string1", + "rougail.dyn2.var": "string1", + "rougail.var2": "string1" +} diff --git a/tests/results/60_0family_dynamic_jinja_number_empty/makedict/mandatories.json b/tests/results/60_0family_dynamic_jinja_number_empty/makedict/mandatories.json new file mode 100644 index 0000000..f5b0199 --- /dev/null +++ b/tests/results/60_0family_dynamic_jinja_number_empty/makedict/mandatories.json @@ -0,0 +1,4 @@ +{ + "rougail.var": [], + "rougail.var2": "string1" +} diff --git a/tests/results/60_0family_dynamic_no_description/errors/all.json b/tests/results/60_0family_dynamic_no_description/errors/all.json index 217db0a..a6654e8 100644 --- a/tests/results/60_0family_dynamic_no_description/errors/all.json +++ b/tests/results/60_0family_dynamic_no_description/errors/all.json @@ -1,4 +1,8 @@ { - "errors": [], + "errors": [ + "unknown option \"dyn1\" in optiondescription \"rougail\"", + "unknown option \"dyn2\" in optiondescription \"rougail\"", + "unknown option \"var2\" in optiondescription \"rougail\"" + ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/60_0family_dynamic_no_description/errors/mandatories.json b/tests/results/60_0family_dynamic_no_description/errors/mandatories.json index 217db0a..748dd1d 100644 --- a/tests/results/60_0family_dynamic_no_description/errors/mandatories.json +++ b/tests/results/60_0family_dynamic_no_description/errors/mandatories.json @@ -1,4 +1,8 @@ { - "errors": [], + "errors": [ + "unknown option \"dynstring1\" in optiondescription \"rougail\"", + "unknown option \"dynstring2\" in optiondescription \"rougail\"", + "unknown option \"dynstring3\" in optiondescription \"rougail\"" + ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/60_0family_dynamic_no_description/file/all.env b/tests/results/60_0family_dynamic_no_description/file/all.env index 30a1cd9..695b6ad 100644 --- a/tests/results/60_0family_dynamic_no_description/file/all.env +++ b/tests/results/60_0family_dynamic_no_description/file/all.env @@ -1,4 +1,4 @@ -ROUGAIL_VAR="string1,string2,string3" -ROUGAIL_DYNSTRING1.VAR="string1" -ROUGAIL_DYNSTRING2.VAR="string1" -ROUGAIL_DYNSTRING3.VAR="string1" +ROUGAIL.VAR="string1,string2,string3" +ROUGAIL.DYNSTRING1.VAR="string1" +ROUGAIL.DYNSTRING2.VAR="string1" +ROUGAIL.DYNSTRING3.VAR="string1" diff --git a/tests/results/60_0family_dynamic_no_description/file/all_exclude.env b/tests/results/60_0family_dynamic_no_description/file/all_exclude.env index 926cb0b..35c6349 100644 --- a/tests/results/60_0family_dynamic_no_description/file/all_exclude.env +++ b/tests/results/60_0family_dynamic_no_description/file/all_exclude.env @@ -1,3 +1,3 @@ -ROUGAIL_DYNSTRING1.VAR="string1" -ROUGAIL_DYNSTRING2.VAR="string1" -ROUGAIL_DYNSTRING3.VAR="string1" +ROUGAIL.DYNSTRING1.VAR="string1" +ROUGAIL.DYNSTRING2.VAR="string1" +ROUGAIL.DYNSTRING3.VAR="string1" diff --git a/tests/results/60_0family_dynamic_no_description/file/mandatories.env b/tests/results/60_0family_dynamic_no_description/file/mandatories.env index a3e2e9b..cf6d584 100644 --- a/tests/results/60_0family_dynamic_no_description/file/mandatories.env +++ b/tests/results/60_0family_dynamic_no_description/file/mandatories.env @@ -1,2 +1,2 @@ -ROUGAIL_DYNVAL1.VAR="string1" -ROUGAIL_DYNVAL2.VAR="string1" +ROUGAIL.DYNVAL1.VAR="string1" +ROUGAIL.DYNVAL2.VAR="string1" diff --git a/tests/results/60_0family_dynamic_no_description_empty/errors/all.json b/tests/results/60_0family_dynamic_no_description_empty/errors/all.json new file mode 100644 index 0000000..217db0a --- /dev/null +++ b/tests/results/60_0family_dynamic_no_description_empty/errors/all.json @@ -0,0 +1,4 @@ +{ + "errors": [], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_0family_dynamic_no_description_empty/errors/mandatories.json b/tests/results/60_0family_dynamic_no_description_empty/errors/mandatories.json new file mode 100644 index 0000000..217db0a --- /dev/null +++ b/tests/results/60_0family_dynamic_no_description_empty/errors/mandatories.json @@ -0,0 +1,4 @@ +{ + "errors": [], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_0family_dynamic_no_description_empty/file/all.env b/tests/results/60_0family_dynamic_no_description_empty/file/all.env new file mode 100644 index 0000000..2bd697a --- /dev/null +++ b/tests/results/60_0family_dynamic_no_description_empty/file/all.env @@ -0,0 +1,3 @@ +ROUGAIL.VAR="val1,val2" +ROUGAIL.DYNVAL1.VAR="string1" +ROUGAIL.DYNVAL2.VAR="string1" diff --git a/tests/results/60_0family_dynamic_no_description_empty/file/all_exclude.env b/tests/results/60_0family_dynamic_no_description_empty/file/all_exclude.env new file mode 100644 index 0000000..cf6d584 --- /dev/null +++ b/tests/results/60_0family_dynamic_no_description_empty/file/all_exclude.env @@ -0,0 +1,2 @@ +ROUGAIL.DYNVAL1.VAR="string1" +ROUGAIL.DYNVAL2.VAR="string1" diff --git a/tests/results/60_0family_dynamic_no_description_empty/file/mandatories.env b/tests/results/60_0family_dynamic_no_description_empty/file/mandatories.env new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/results/60_0family_dynamic_no_description_empty/file/mandatories.env @@ -0,0 +1 @@ + diff --git a/tests/results/60_0family_dynamic_no_description_empty/makedict/all.json b/tests/results/60_0family_dynamic_no_description_empty/makedict/all.json new file mode 100644 index 0000000..ee96b68 --- /dev/null +++ b/tests/results/60_0family_dynamic_no_description_empty/makedict/all.json @@ -0,0 +1,8 @@ +{ + "rougail.var": [ + "val1", + "val2" + ], + "rougail.dynval1.var": "string1", + "rougail.dynval2.var": "string1" +} diff --git a/tests/results/60_0family_dynamic_no_description_empty/makedict/mandatories.json b/tests/results/60_0family_dynamic_no_description_empty/makedict/mandatories.json new file mode 100644 index 0000000..a132f45 --- /dev/null +++ b/tests/results/60_0family_dynamic_no_description_empty/makedict/mandatories.json @@ -0,0 +1,3 @@ +{ + "rougail.var": [] +} diff --git a/tests/results/60_0family_dynamic_static/file/all.env b/tests/results/60_0family_dynamic_static/file/all.env index a3e2e9b..cf6d584 100644 --- a/tests/results/60_0family_dynamic_static/file/all.env +++ b/tests/results/60_0family_dynamic_static/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_DYNVAL1.VAR="string1" -ROUGAIL_DYNVAL2.VAR="string1" +ROUGAIL.DYNVAL1.VAR="string1" +ROUGAIL.DYNVAL2.VAR="string1" diff --git a/tests/results/60_0family_dynamic_static/file/all_exclude.env b/tests/results/60_0family_dynamic_static/file/all_exclude.env index a3e2e9b..cf6d584 100644 --- a/tests/results/60_0family_dynamic_static/file/all_exclude.env +++ b/tests/results/60_0family_dynamic_static/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_DYNVAL1.VAR="string1" -ROUGAIL_DYNVAL2.VAR="string1" +ROUGAIL.DYNVAL1.VAR="string1" +ROUGAIL.DYNVAL2.VAR="string1" diff --git a/tests/results/60_0family_dynamic_static/file/mandatories.env b/tests/results/60_0family_dynamic_static/file/mandatories.env index a3e2e9b..cf6d584 100644 --- a/tests/results/60_0family_dynamic_static/file/mandatories.env +++ b/tests/results/60_0family_dynamic_static/file/mandatories.env @@ -1,2 +1,2 @@ -ROUGAIL_DYNVAL1.VAR="string1" -ROUGAIL_DYNVAL2.VAR="string1" +ROUGAIL.DYNVAL1.VAR="string1" +ROUGAIL.DYNVAL2.VAR="string1" diff --git a/tests/results/60_0family_dynamic_test/file/all.env b/tests/results/60_0family_dynamic_test/file/all.env index 2b7b3dc..2bd697a 100644 --- a/tests/results/60_0family_dynamic_test/file/all.env +++ b/tests/results/60_0family_dynamic_test/file/all.env @@ -1,3 +1,3 @@ -ROUGAIL_VAR="val1,val2" -ROUGAIL_DYNVAL1.VAR="string1" -ROUGAIL_DYNVAL2.VAR="string1" +ROUGAIL.VAR="val1,val2" +ROUGAIL.DYNVAL1.VAR="string1" +ROUGAIL.DYNVAL2.VAR="string1" diff --git a/tests/results/60_0family_dynamic_test/file/all_exclude.env b/tests/results/60_0family_dynamic_test/file/all_exclude.env index a3e2e9b..cf6d584 100644 --- a/tests/results/60_0family_dynamic_test/file/all_exclude.env +++ b/tests/results/60_0family_dynamic_test/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_DYNVAL1.VAR="string1" -ROUGAIL_DYNVAL2.VAR="string1" +ROUGAIL.DYNVAL1.VAR="string1" +ROUGAIL.DYNVAL2.VAR="string1" diff --git a/tests/results/60_0family_dynamic_test/file/mandatories.env b/tests/results/60_0family_dynamic_test/file/mandatories.env index 2b7b3dc..2bd697a 100644 --- a/tests/results/60_0family_dynamic_test/file/mandatories.env +++ b/tests/results/60_0family_dynamic_test/file/mandatories.env @@ -1,3 +1,3 @@ -ROUGAIL_VAR="val1,val2" -ROUGAIL_DYNVAL1.VAR="string1" -ROUGAIL_DYNVAL2.VAR="string1" +ROUGAIL.VAR="val1,val2" +ROUGAIL.DYNVAL1.VAR="string1" +ROUGAIL.DYNVAL2.VAR="string1" diff --git a/tests/results/60_0family_dynamic_variable_empty/file/all.env b/tests/results/60_0family_dynamic_variable_empty/file/all.env index 30a1cd9..695b6ad 100644 --- a/tests/results/60_0family_dynamic_variable_empty/file/all.env +++ b/tests/results/60_0family_dynamic_variable_empty/file/all.env @@ -1,4 +1,4 @@ -ROUGAIL_VAR="string1,string2,string3" -ROUGAIL_DYNSTRING1.VAR="string1" -ROUGAIL_DYNSTRING2.VAR="string1" -ROUGAIL_DYNSTRING3.VAR="string1" +ROUGAIL.VAR="string1,string2,string3" +ROUGAIL.DYNSTRING1.VAR="string1" +ROUGAIL.DYNSTRING2.VAR="string1" +ROUGAIL.DYNSTRING3.VAR="string1" diff --git a/tests/results/60_0family_dynamic_variable_empty/file/all_exclude.env b/tests/results/60_0family_dynamic_variable_empty/file/all_exclude.env index 926cb0b..35c6349 100644 --- a/tests/results/60_0family_dynamic_variable_empty/file/all_exclude.env +++ b/tests/results/60_0family_dynamic_variable_empty/file/all_exclude.env @@ -1,3 +1,3 @@ -ROUGAIL_DYNSTRING1.VAR="string1" -ROUGAIL_DYNSTRING2.VAR="string1" -ROUGAIL_DYNSTRING3.VAR="string1" +ROUGAIL.DYNSTRING1.VAR="string1" +ROUGAIL.DYNSTRING2.VAR="string1" +ROUGAIL.DYNSTRING3.VAR="string1" diff --git a/tests/results/60_0family_dynamic_variable_empty/file/mandatories.env b/tests/results/60_0family_dynamic_variable_empty/file/mandatories.env index 43b491d..ce2a647 100644 --- a/tests/results/60_0family_dynamic_variable_empty/file/mandatories.env +++ b/tests/results/60_0family_dynamic_variable_empty/file/mandatories.env @@ -1 +1 @@ -ROUGAIL_VAR="string1,string2,string3" +ROUGAIL.VAR="string1,string2,string3" diff --git a/tests/results/60_0family_dynamic_variable_suffix/errors/mandatories.json b/tests/results/60_0family_dynamic_variable_suffix/errors/mandatories.json index 217db0a..748dd1d 100644 --- a/tests/results/60_0family_dynamic_variable_suffix/errors/mandatories.json +++ b/tests/results/60_0family_dynamic_variable_suffix/errors/mandatories.json @@ -1,4 +1,8 @@ { - "errors": [], + "errors": [ + "unknown option \"dynstring1\" in optiondescription \"rougail\"", + "unknown option \"dynstring2\" in optiondescription \"rougail\"", + "unknown option \"dynstring3\" in optiondescription \"rougail\"" + ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/60_0family_dynamic_variable_suffix/file/all.env b/tests/results/60_0family_dynamic_variable_suffix/file/all.env index 30a1cd9..695b6ad 100644 --- a/tests/results/60_0family_dynamic_variable_suffix/file/all.env +++ b/tests/results/60_0family_dynamic_variable_suffix/file/all.env @@ -1,4 +1,4 @@ -ROUGAIL_VAR="string1,string2,string3" -ROUGAIL_DYNSTRING1.VAR="string1" -ROUGAIL_DYNSTRING2.VAR="string1" -ROUGAIL_DYNSTRING3.VAR="string1" +ROUGAIL.VAR="string1,string2,string3" +ROUGAIL.DYNSTRING1.VAR="string1" +ROUGAIL.DYNSTRING2.VAR="string1" +ROUGAIL.DYNSTRING3.VAR="string1" diff --git a/tests/results/60_0family_dynamic_variable_suffix/file/all_exclude.env b/tests/results/60_0family_dynamic_variable_suffix/file/all_exclude.env index 926cb0b..35c6349 100644 --- a/tests/results/60_0family_dynamic_variable_suffix/file/all_exclude.env +++ b/tests/results/60_0family_dynamic_variable_suffix/file/all_exclude.env @@ -1,3 +1,3 @@ -ROUGAIL_DYNSTRING1.VAR="string1" -ROUGAIL_DYNSTRING2.VAR="string1" -ROUGAIL_DYNSTRING3.VAR="string1" +ROUGAIL.DYNSTRING1.VAR="string1" +ROUGAIL.DYNSTRING2.VAR="string1" +ROUGAIL.DYNSTRING3.VAR="string1" diff --git a/tests/results/60_0family_dynamic_variable_suffix_empty/errors/all.json b/tests/results/60_0family_dynamic_variable_suffix_empty/errors/all.json new file mode 100644 index 0000000..217db0a --- /dev/null +++ b/tests/results/60_0family_dynamic_variable_suffix_empty/errors/all.json @@ -0,0 +1,4 @@ +{ + "errors": [], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_0family_dynamic_variable_suffix_empty/errors/mandatories.json b/tests/results/60_0family_dynamic_variable_suffix_empty/errors/mandatories.json new file mode 100644 index 0000000..217db0a --- /dev/null +++ b/tests/results/60_0family_dynamic_variable_suffix_empty/errors/mandatories.json @@ -0,0 +1,4 @@ +{ + "errors": [], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_0family_dynamic_variable_suffix_empty/file/all.env b/tests/results/60_0family_dynamic_variable_suffix_empty/file/all.env new file mode 100644 index 0000000..2bd697a --- /dev/null +++ b/tests/results/60_0family_dynamic_variable_suffix_empty/file/all.env @@ -0,0 +1,3 @@ +ROUGAIL.VAR="val1,val2" +ROUGAIL.DYNVAL1.VAR="string1" +ROUGAIL.DYNVAL2.VAR="string1" diff --git a/tests/results/60_0family_dynamic_variable_suffix_empty/file/all_exclude.env b/tests/results/60_0family_dynamic_variable_suffix_empty/file/all_exclude.env new file mode 100644 index 0000000..cf6d584 --- /dev/null +++ b/tests/results/60_0family_dynamic_variable_suffix_empty/file/all_exclude.env @@ -0,0 +1,2 @@ +ROUGAIL.DYNVAL1.VAR="string1" +ROUGAIL.DYNVAL2.VAR="string1" diff --git a/tests/results/60_0family_dynamic_variable_suffix_empty/file/mandatories.env b/tests/results/60_0family_dynamic_variable_suffix_empty/file/mandatories.env new file mode 100644 index 0000000..7be8950 --- /dev/null +++ b/tests/results/60_0family_dynamic_variable_suffix_empty/file/mandatories.env @@ -0,0 +1 @@ +ROUGAIL.VAR="val1,val2" diff --git a/tests/results/60_0family_dynamic_variable_suffix_empty/makedict/all.json b/tests/results/60_0family_dynamic_variable_suffix_empty/makedict/all.json new file mode 100644 index 0000000..ee96b68 --- /dev/null +++ b/tests/results/60_0family_dynamic_variable_suffix_empty/makedict/all.json @@ -0,0 +1,8 @@ +{ + "rougail.var": [ + "val1", + "val2" + ], + "rougail.dynval1.var": "string1", + "rougail.dynval2.var": "string1" +} diff --git a/tests/results/60_0family_dynamic_variable_suffix_empty/makedict/mandatories.json b/tests/results/60_0family_dynamic_variable_suffix_empty/makedict/mandatories.json new file mode 100644 index 0000000..f343fed --- /dev/null +++ b/tests/results/60_0family_dynamic_variable_suffix_empty/makedict/mandatories.json @@ -0,0 +1,8 @@ +{ + "rougail.var": [ + "val1", + "val2" + ], + "rougail.dynval1.var": "a value", + "rougail.dynval2.var": "a value" +} diff --git a/tests/results/60_0family_hidden/errors/all.json b/tests/results/60_0family_hidden/errors/all.json index c03f5f5..a07347a 100644 --- a/tests/results/60_0family_hidden/errors/all.json +++ b/tests/results/60_0family_hidden/errors/all.json @@ -1,6 +1,6 @@ { "errors": [ - "ne peut acc\u00e9der \u00e0 l'optiondescription \"rougail.family\" (a family) \u00e0 cause de la propri\u00e9t\u00e9 \"hidden\"" + "cannot access to optiondescription \"rougail.family\" (a family) because has property \"hidden\"" ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/60_0family_hidden/file/all.env b/tests/results/60_0family_hidden/file/all.env index 727e80f..b6c92be 100644 --- a/tests/results/60_0family_hidden/file/all.env +++ b/tests/results/60_0family_hidden/file/all.env @@ -1 +1 @@ -ROUGAIL_FAMILY.VAR="string1" +ROUGAIL.FAMILY.VAR="string1" diff --git a/tests/results/60_0family_hidden/file/all_exclude.env b/tests/results/60_0family_hidden/file/all_exclude.env index 727e80f..b6c92be 100644 --- a/tests/results/60_0family_hidden/file/all_exclude.env +++ b/tests/results/60_0family_hidden/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_FAMILY.VAR="string1" +ROUGAIL.FAMILY.VAR="string1" diff --git a/tests/results/60_0family_mode/file/all.env b/tests/results/60_0family_mode/file/all.env index 727e80f..b6c92be 100644 --- a/tests/results/60_0family_mode/file/all.env +++ b/tests/results/60_0family_mode/file/all.env @@ -1 +1 @@ -ROUGAIL_FAMILY.VAR="string1" +ROUGAIL.FAMILY.VAR="string1" diff --git a/tests/results/60_0family_mode/file/all_exclude.env b/tests/results/60_0family_mode/file/all_exclude.env index 727e80f..b6c92be 100644 --- a/tests/results/60_0family_mode/file/all_exclude.env +++ b/tests/results/60_0family_mode/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_FAMILY.VAR="string1" +ROUGAIL.FAMILY.VAR="string1" diff --git a/tests/results/60_1family_dynamic_jinja/file/all.env b/tests/results/60_1family_dynamic_jinja/file/all.env index 4578c2d..f19d942 100644 --- a/tests/results/60_1family_dynamic_jinja/file/all.env +++ b/tests/results/60_1family_dynamic_jinja/file/all.env @@ -1,4 +1,4 @@ -ROUGAIL_VAR="string1,string2,string3" -ROUGAIL_DYN1.VAR="string1" -ROUGAIL_DYN2.VAR="string1" -ROUGAIL_DYN3.VAR="string1" +ROUGAIL.VAR="string1,string2,string3" +ROUGAIL.DYN1.VAR="string1" +ROUGAIL.DYN2.VAR="string1" +ROUGAIL.DYN3.VAR="string1" diff --git a/tests/results/60_1family_dynamic_jinja/file/all_exclude.env b/tests/results/60_1family_dynamic_jinja/file/all_exclude.env index 4578c2d..f19d942 100644 --- a/tests/results/60_1family_dynamic_jinja/file/all_exclude.env +++ b/tests/results/60_1family_dynamic_jinja/file/all_exclude.env @@ -1,4 +1,4 @@ -ROUGAIL_VAR="string1,string2,string3" -ROUGAIL_DYN1.VAR="string1" -ROUGAIL_DYN2.VAR="string1" -ROUGAIL_DYN3.VAR="string1" +ROUGAIL.VAR="string1,string2,string3" +ROUGAIL.DYN1.VAR="string1" +ROUGAIL.DYN2.VAR="string1" +ROUGAIL.DYN3.VAR="string1" diff --git a/tests/results/60_2family_dynamic_jinja_fill_sub_group/errors/mandatories.json b/tests/results/60_2family_dynamic_jinja_fill_sub_group/errors/mandatories.json index 217db0a..748dd1d 100644 --- a/tests/results/60_2family_dynamic_jinja_fill_sub_group/errors/mandatories.json +++ b/tests/results/60_2family_dynamic_jinja_fill_sub_group/errors/mandatories.json @@ -1,4 +1,8 @@ { - "errors": [], + "errors": [ + "unknown option \"dynstring1\" in optiondescription \"rougail\"", + "unknown option \"dynstring2\" in optiondescription \"rougail\"", + "unknown option \"dynstring3\" in optiondescription \"rougail\"" + ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/60_2family_dynamic_jinja_fill_sub_group/file/all.env b/tests/results/60_2family_dynamic_jinja_fill_sub_group/file/all.env index a6d8513..965a3cd 100644 --- a/tests/results/60_2family_dynamic_jinja_fill_sub_group/file/all.env +++ b/tests/results/60_2family_dynamic_jinja_fill_sub_group/file/all.env @@ -1,5 +1,5 @@ -ROUGAIL_VAR1="string1,string2,string3" -ROUGAIL_DYNSTRING1.FAMILY.VAR="string1" -ROUGAIL_DYNSTRING2.FAMILY.VAR="string1" -ROUGAIL_DYNSTRING3.FAMILY.VAR="string1" -ROUGAIL_VAR2="string1" +ROUGAIL.VAR1="string1,string2,string3" +ROUGAIL.DYNSTRING1.FAMILY.VAR="string1" +ROUGAIL.DYNSTRING2.FAMILY.VAR="string1" +ROUGAIL.DYNSTRING3.FAMILY.VAR="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/60_2family_dynamic_jinja_fill_sub_group/file/all_exclude.env b/tests/results/60_2family_dynamic_jinja_fill_sub_group/file/all_exclude.env index 192dcf6..9f017bf 100644 --- a/tests/results/60_2family_dynamic_jinja_fill_sub_group/file/all_exclude.env +++ b/tests/results/60_2family_dynamic_jinja_fill_sub_group/file/all_exclude.env @@ -1,4 +1,4 @@ -ROUGAIL_DYNSTRING1.FAMILY.VAR="string1" -ROUGAIL_DYNSTRING2.FAMILY.VAR="string1" -ROUGAIL_DYNSTRING3.FAMILY.VAR="string1" -ROUGAIL_VAR2="string1" +ROUGAIL.DYNSTRING1.FAMILY.VAR="string1" +ROUGAIL.DYNSTRING2.FAMILY.VAR="string1" +ROUGAIL.DYNSTRING3.FAMILY.VAR="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/60_2family_dynamic_jinja_fill_sub_group/file/mandatories.env b/tests/results/60_2family_dynamic_jinja_fill_sub_group/file/mandatories.env index 4f97ef6..f92daf7 100644 --- a/tests/results/60_2family_dynamic_jinja_fill_sub_group/file/mandatories.env +++ b/tests/results/60_2family_dynamic_jinja_fill_sub_group/file/mandatories.env @@ -1,2 +1,2 @@ -ROUGAIL_DYNVAL1.FAMILY.VAR="string1" -ROUGAIL_DYNVAL2.FAMILY.VAR="string1" +ROUGAIL.DYNVAL1.FAMILY.VAR="string1" +ROUGAIL.DYNVAL2.FAMILY.VAR="string1" diff --git a/tests/results/60_2family_dynamic_jinja_fill_sub_group_2/errors/mandatories.json b/tests/results/60_2family_dynamic_jinja_fill_sub_group_2/errors/mandatories.json index 217db0a..748dd1d 100644 --- a/tests/results/60_2family_dynamic_jinja_fill_sub_group_2/errors/mandatories.json +++ b/tests/results/60_2family_dynamic_jinja_fill_sub_group_2/errors/mandatories.json @@ -1,4 +1,8 @@ { - "errors": [], + "errors": [ + "unknown option \"dynstring1\" in optiondescription \"rougail\"", + "unknown option \"dynstring2\" in optiondescription \"rougail\"", + "unknown option \"dynstring3\" in optiondescription \"rougail\"" + ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/60_2family_dynamic_jinja_fill_sub_group_2/file/all.env b/tests/results/60_2family_dynamic_jinja_fill_sub_group_2/file/all.env index b31a2d5..678354e 100644 --- a/tests/results/60_2family_dynamic_jinja_fill_sub_group_2/file/all.env +++ b/tests/results/60_2family_dynamic_jinja_fill_sub_group_2/file/all.env @@ -1,5 +1,5 @@ -ROUGAIL_VAR="string1,string2,string3" -ROUGAIL_DYNSTRING1.FAMILY.VAR="string1" -ROUGAIL_DYNSTRING2.FAMILY.VAR="string1" -ROUGAIL_DYNSTRING3.FAMILY.VAR="string1" -ROUGAIL_VAR2="string1" +ROUGAIL.VAR="string1,string2,string3" +ROUGAIL.DYNSTRING1.FAMILY.VAR="string1" +ROUGAIL.DYNSTRING2.FAMILY.VAR="string1" +ROUGAIL.DYNSTRING3.FAMILY.VAR="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/60_2family_dynamic_jinja_fill_sub_group_2/file/all_exclude.env b/tests/results/60_2family_dynamic_jinja_fill_sub_group_2/file/all_exclude.env index 192dcf6..9f017bf 100644 --- a/tests/results/60_2family_dynamic_jinja_fill_sub_group_2/file/all_exclude.env +++ b/tests/results/60_2family_dynamic_jinja_fill_sub_group_2/file/all_exclude.env @@ -1,4 +1,4 @@ -ROUGAIL_DYNSTRING1.FAMILY.VAR="string1" -ROUGAIL_DYNSTRING2.FAMILY.VAR="string1" -ROUGAIL_DYNSTRING3.FAMILY.VAR="string1" -ROUGAIL_VAR2="string1" +ROUGAIL.DYNSTRING1.FAMILY.VAR="string1" +ROUGAIL.DYNSTRING2.FAMILY.VAR="string1" +ROUGAIL.DYNSTRING3.FAMILY.VAR="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/60_2family_dynamic_jinja_fill_sub_group_2_empty/errors/all.json b/tests/results/60_2family_dynamic_jinja_fill_sub_group_2_empty/errors/all.json new file mode 100644 index 0000000..748dd1d --- /dev/null +++ b/tests/results/60_2family_dynamic_jinja_fill_sub_group_2_empty/errors/all.json @@ -0,0 +1,8 @@ +{ + "errors": [ + "unknown option \"dynstring1\" in optiondescription \"rougail\"", + "unknown option \"dynstring2\" in optiondescription \"rougail\"", + "unknown option \"dynstring3\" in optiondescription \"rougail\"" + ], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_2family_dynamic_jinja_fill_sub_group_2_empty/errors/mandatories.json b/tests/results/60_2family_dynamic_jinja_fill_sub_group_2_empty/errors/mandatories.json new file mode 100644 index 0000000..217db0a --- /dev/null +++ b/tests/results/60_2family_dynamic_jinja_fill_sub_group_2_empty/errors/mandatories.json @@ -0,0 +1,4 @@ +{ + "errors": [], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_2family_dynamic_jinja_fill_sub_group_2_empty/file/all.env b/tests/results/60_2family_dynamic_jinja_fill_sub_group_2_empty/file/all.env new file mode 100644 index 0000000..26ba721 --- /dev/null +++ b/tests/results/60_2family_dynamic_jinja_fill_sub_group_2_empty/file/all.env @@ -0,0 +1,4 @@ +ROUGAIL.VAR="val1,val2" +ROUGAIL.DYNVAL1.FAMILY.VAR="string1" +ROUGAIL.DYNVAL2.FAMILY.VAR="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/60_2family_dynamic_jinja_fill_sub_group_2_empty/file/all_exclude.env b/tests/results/60_2family_dynamic_jinja_fill_sub_group_2_empty/file/all_exclude.env new file mode 100644 index 0000000..657ac30 --- /dev/null +++ b/tests/results/60_2family_dynamic_jinja_fill_sub_group_2_empty/file/all_exclude.env @@ -0,0 +1,3 @@ +ROUGAIL.DYNVAL1.FAMILY.VAR="string1" +ROUGAIL.DYNVAL2.FAMILY.VAR="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/60_2family_dynamic_jinja_fill_sub_group_2_empty/file/mandatories.env b/tests/results/60_2family_dynamic_jinja_fill_sub_group_2_empty/file/mandatories.env new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/results/60_2family_dynamic_jinja_fill_sub_group_2_empty/file/mandatories.env @@ -0,0 +1 @@ + diff --git a/tests/results/60_2family_dynamic_jinja_fill_sub_group_2_empty/makedict/all.json b/tests/results/60_2family_dynamic_jinja_fill_sub_group_2_empty/makedict/all.json new file mode 100644 index 0000000..5ef811d --- /dev/null +++ b/tests/results/60_2family_dynamic_jinja_fill_sub_group_2_empty/makedict/all.json @@ -0,0 +1,9 @@ +{ + "rougail.var": [ + "val1", + "val2" + ], + "rougail.dynval1.family.var": "string1", + "rougail.dynval2.family.var": "string1", + "rougail.var2": "string1" +} diff --git a/tests/results/60_2family_dynamic_jinja_fill_sub_group_2_empty/makedict/mandatories.json b/tests/results/60_2family_dynamic_jinja_fill_sub_group_2_empty/makedict/mandatories.json new file mode 100644 index 0000000..cd9083c --- /dev/null +++ b/tests/results/60_2family_dynamic_jinja_fill_sub_group_2_empty/makedict/mandatories.json @@ -0,0 +1,4 @@ +{ + "rougail.var": [], + "rougail.var2": null +} diff --git a/tests/results/60_2family_dynamic_jinja_fill_sub_group_empty/errors/all.json b/tests/results/60_2family_dynamic_jinja_fill_sub_group_empty/errors/all.json new file mode 100644 index 0000000..217db0a --- /dev/null +++ b/tests/results/60_2family_dynamic_jinja_fill_sub_group_empty/errors/all.json @@ -0,0 +1,4 @@ +{ + "errors": [], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_2family_dynamic_jinja_fill_sub_group_empty/errors/mandatories.json b/tests/results/60_2family_dynamic_jinja_fill_sub_group_empty/errors/mandatories.json new file mode 100644 index 0000000..217db0a --- /dev/null +++ b/tests/results/60_2family_dynamic_jinja_fill_sub_group_empty/errors/mandatories.json @@ -0,0 +1,4 @@ +{ + "errors": [], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_2family_dynamic_jinja_fill_sub_group_empty/file/all.env b/tests/results/60_2family_dynamic_jinja_fill_sub_group_empty/file/all.env new file mode 100644 index 0000000..386de8a --- /dev/null +++ b/tests/results/60_2family_dynamic_jinja_fill_sub_group_empty/file/all.env @@ -0,0 +1,4 @@ +ROUGAIL.VAR1="val1,val2" +ROUGAIL.DYNVAL1.FAMILY.VAR="string1" +ROUGAIL.DYNVAL2.FAMILY.VAR="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/60_2family_dynamic_jinja_fill_sub_group_empty/file/all_exclude.env b/tests/results/60_2family_dynamic_jinja_fill_sub_group_empty/file/all_exclude.env new file mode 100644 index 0000000..657ac30 --- /dev/null +++ b/tests/results/60_2family_dynamic_jinja_fill_sub_group_empty/file/all_exclude.env @@ -0,0 +1,3 @@ +ROUGAIL.DYNVAL1.FAMILY.VAR="string1" +ROUGAIL.DYNVAL2.FAMILY.VAR="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/60_2family_dynamic_jinja_fill_sub_group_empty/file/mandatories.env b/tests/results/60_2family_dynamic_jinja_fill_sub_group_empty/file/mandatories.env new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/results/60_2family_dynamic_jinja_fill_sub_group_empty/file/mandatories.env @@ -0,0 +1 @@ + diff --git a/tests/results/60_2family_dynamic_jinja_fill_sub_group_empty/makedict/all.json b/tests/results/60_2family_dynamic_jinja_fill_sub_group_empty/makedict/all.json new file mode 100644 index 0000000..2fc5ea2 --- /dev/null +++ b/tests/results/60_2family_dynamic_jinja_fill_sub_group_empty/makedict/all.json @@ -0,0 +1,9 @@ +{ + "rougail.var1": [ + "val1", + "val2" + ], + "rougail.dynval1.family.var": "string1", + "rougail.dynval2.family.var": "string1", + "rougail.var2": "string1" +} diff --git a/tests/results/60_2family_dynamic_jinja_fill_sub_group_empty/makedict/mandatories.json b/tests/results/60_2family_dynamic_jinja_fill_sub_group_empty/makedict/mandatories.json new file mode 100644 index 0000000..a20d18a --- /dev/null +++ b/tests/results/60_2family_dynamic_jinja_fill_sub_group_empty/makedict/mandatories.json @@ -0,0 +1,4 @@ +{ + "rougail.var1": [], + "rougail.var2": null +} diff --git a/tests/results/60_2family_dynamic_outside_calc/errors/mandatories.json b/tests/results/60_2family_dynamic_outside_calc/errors/mandatories.json index 217db0a..748dd1d 100644 --- a/tests/results/60_2family_dynamic_outside_calc/errors/mandatories.json +++ b/tests/results/60_2family_dynamic_outside_calc/errors/mandatories.json @@ -1,4 +1,8 @@ { - "errors": [], + "errors": [ + "unknown option \"dynstring1\" in optiondescription \"rougail\"", + "unknown option \"dynstring2\" in optiondescription \"rougail\"", + "unknown option \"dynstring3\" in optiondescription \"rougail\"" + ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/60_2family_dynamic_outside_calc/file/all.env b/tests/results/60_2family_dynamic_outside_calc/file/all.env index 434beab..9d58fae 100644 --- a/tests/results/60_2family_dynamic_outside_calc/file/all.env +++ b/tests/results/60_2family_dynamic_outside_calc/file/all.env @@ -1,5 +1,5 @@ -ROUGAIL_VAR1="string1,string2,string3" -ROUGAIL_DYNSTRING1.VAR="string1" -ROUGAIL_DYNSTRING2.VAR="string1" -ROUGAIL_DYNSTRING3.VAR="string1" -ROUGAIL_NEWVAR="string1" +ROUGAIL.VAR1="string1,string2,string3" +ROUGAIL.DYNSTRING1.VAR="string1" +ROUGAIL.DYNSTRING2.VAR="string1" +ROUGAIL.DYNSTRING3.VAR="string1" +ROUGAIL.NEWVAR="string1" diff --git a/tests/results/60_2family_dynamic_outside_calc/file/all_exclude.env b/tests/results/60_2family_dynamic_outside_calc/file/all_exclude.env index 748afe9..52128c0 100644 --- a/tests/results/60_2family_dynamic_outside_calc/file/all_exclude.env +++ b/tests/results/60_2family_dynamic_outside_calc/file/all_exclude.env @@ -1,4 +1,4 @@ -ROUGAIL_DYNSTRING1.VAR="string1" -ROUGAIL_DYNSTRING2.VAR="string1" -ROUGAIL_DYNSTRING3.VAR="string1" -ROUGAIL_NEWVAR="string1" +ROUGAIL.DYNSTRING1.VAR="string1" +ROUGAIL.DYNSTRING2.VAR="string1" +ROUGAIL.DYNSTRING3.VAR="string1" +ROUGAIL.NEWVAR="string1" diff --git a/tests/results/60_2family_dynamic_outside_calc_empty/errors/all.json b/tests/results/60_2family_dynamic_outside_calc_empty/errors/all.json new file mode 100644 index 0000000..748dd1d --- /dev/null +++ b/tests/results/60_2family_dynamic_outside_calc_empty/errors/all.json @@ -0,0 +1,8 @@ +{ + "errors": [ + "unknown option \"dynstring1\" in optiondescription \"rougail\"", + "unknown option \"dynstring2\" in optiondescription \"rougail\"", + "unknown option \"dynstring3\" in optiondescription \"rougail\"" + ], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_2family_dynamic_outside_calc_empty/errors/mandatories.json b/tests/results/60_2family_dynamic_outside_calc_empty/errors/mandatories.json new file mode 100644 index 0000000..217db0a --- /dev/null +++ b/tests/results/60_2family_dynamic_outside_calc_empty/errors/mandatories.json @@ -0,0 +1,4 @@ +{ + "errors": [], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_2family_dynamic_outside_calc_empty/file/all.env b/tests/results/60_2family_dynamic_outside_calc_empty/file/all.env new file mode 100644 index 0000000..9b1ad6a --- /dev/null +++ b/tests/results/60_2family_dynamic_outside_calc_empty/file/all.env @@ -0,0 +1,4 @@ +ROUGAIL.VAR1="val1,val2" +ROUGAIL.DYNVAL1.VAR="string1" +ROUGAIL.DYNVAL2.VAR="string1" +ROUGAIL.NEWVAR="string1" diff --git a/tests/results/60_2family_dynamic_outside_calc_empty/file/all_exclude.env b/tests/results/60_2family_dynamic_outside_calc_empty/file/all_exclude.env new file mode 100644 index 0000000..d750e8a --- /dev/null +++ b/tests/results/60_2family_dynamic_outside_calc_empty/file/all_exclude.env @@ -0,0 +1,3 @@ +ROUGAIL.DYNVAL1.VAR="string1" +ROUGAIL.DYNVAL2.VAR="string1" +ROUGAIL.NEWVAR="string1" diff --git a/tests/results/60_2family_dynamic_outside_calc_empty/file/mandatories.env b/tests/results/60_2family_dynamic_outside_calc_empty/file/mandatories.env new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/results/60_2family_dynamic_outside_calc_empty/file/mandatories.env @@ -0,0 +1 @@ + diff --git a/tests/results/60_2family_dynamic_outside_calc_empty/makedict/all.json b/tests/results/60_2family_dynamic_outside_calc_empty/makedict/all.json new file mode 100644 index 0000000..797789f --- /dev/null +++ b/tests/results/60_2family_dynamic_outside_calc_empty/makedict/all.json @@ -0,0 +1,9 @@ +{ + "rougail.var1": [ + "val1", + "val2" + ], + "rougail.dynval1.var": "string1", + "rougail.dynval2.var": "string1", + "rougail.newvar": "string1" +} diff --git a/tests/results/60_2family_dynamic_outside_calc_empty/makedict/mandatories.json b/tests/results/60_2family_dynamic_outside_calc_empty/makedict/mandatories.json new file mode 100644 index 0000000..5dbbc8d --- /dev/null +++ b/tests/results/60_2family_dynamic_outside_calc_empty/makedict/mandatories.json @@ -0,0 +1,4 @@ +{ + "rougail.var1": [], + "rougail.newvar": null +} diff --git a/tests/results/60_5family_dynamic_calc2/errors/all.json b/tests/results/60_5family_dynamic_calc2/errors/all.json index 217db0a..4e4b877 100644 --- a/tests/results/60_5family_dynamic_calc2/errors/all.json +++ b/tests/results/60_5family_dynamic_calc2/errors/all.json @@ -1,4 +1,8 @@ { - "errors": [], + "errors": [ + "unknown option \"dynval1\" in optiondescription \"rougail\"", + "unknown option \"dynval2\" in optiondescription \"rougail\"", + "unknown option \"newvar\" in optiondescription \"rougail\"" + ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/60_5family_dynamic_calc2/errors/mandatories.json b/tests/results/60_5family_dynamic_calc2/errors/mandatories.json index 217db0a..748dd1d 100644 --- a/tests/results/60_5family_dynamic_calc2/errors/mandatories.json +++ b/tests/results/60_5family_dynamic_calc2/errors/mandatories.json @@ -1,4 +1,8 @@ { - "errors": [], + "errors": [ + "unknown option \"dynstring1\" in optiondescription \"rougail\"", + "unknown option \"dynstring2\" in optiondescription \"rougail\"", + "unknown option \"dynstring3\" in optiondescription \"rougail\"" + ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/60_5family_dynamic_calc2/file/all.env b/tests/results/60_5family_dynamic_calc2/file/all.env index ab46c41..6181944 100644 --- a/tests/results/60_5family_dynamic_calc2/file/all.env +++ b/tests/results/60_5family_dynamic_calc2/file/all.env @@ -1,5 +1,5 @@ -ROUGAIL_VAR="string1,string2,string3" -ROUGAIL_VAR2="string1" -ROUGAIL_DYNSTRING1.VARDYN="string1" -ROUGAIL_DYNSTRING2.VARDYN="string1" -ROUGAIL_DYNSTRING3.VARDYN="string1" +ROUGAIL.VAR="string1,string2,string3" +ROUGAIL.VAR2="string1" +ROUGAIL.DYNSTRING1.VARDYN="string1" +ROUGAIL.DYNSTRING2.VARDYN="string1" +ROUGAIL.DYNSTRING3.VARDYN="string1" diff --git a/tests/results/60_5family_dynamic_calc2/file/all_exclude.env b/tests/results/60_5family_dynamic_calc2/file/all_exclude.env index 0caa04d..023e6d4 100644 --- a/tests/results/60_5family_dynamic_calc2/file/all_exclude.env +++ b/tests/results/60_5family_dynamic_calc2/file/all_exclude.env @@ -1,4 +1,4 @@ -ROUGAIL_VAR2="string1" -ROUGAIL_DYNSTRING1.VARDYN="string1" -ROUGAIL_DYNSTRING2.VARDYN="string1" -ROUGAIL_DYNSTRING3.VARDYN="string1" +ROUGAIL.VAR2="string1" +ROUGAIL.DYNSTRING1.VARDYN="string1" +ROUGAIL.DYNSTRING2.VARDYN="string1" +ROUGAIL.DYNSTRING3.VARDYN="string1" diff --git a/tests/results/60_5family_dynamic_calc2/file/mandatories.env b/tests/results/60_5family_dynamic_calc2/file/mandatories.env index a010a7a..5640f89 100644 --- a/tests/results/60_5family_dynamic_calc2/file/mandatories.env +++ b/tests/results/60_5family_dynamic_calc2/file/mandatories.env @@ -1 +1 @@ -ROUGAIL_VAR2="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/60_5family_dynamic_calc2_empty/errors/all.json b/tests/results/60_5family_dynamic_calc2_empty/errors/all.json new file mode 100644 index 0000000..217db0a --- /dev/null +++ b/tests/results/60_5family_dynamic_calc2_empty/errors/all.json @@ -0,0 +1,4 @@ +{ + "errors": [], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_5family_dynamic_calc2_empty/errors/mandatories.json b/tests/results/60_5family_dynamic_calc2_empty/errors/mandatories.json new file mode 100644 index 0000000..217db0a --- /dev/null +++ b/tests/results/60_5family_dynamic_calc2_empty/errors/mandatories.json @@ -0,0 +1,4 @@ +{ + "errors": [], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_5family_dynamic_calc2_empty/file/all.env b/tests/results/60_5family_dynamic_calc2_empty/file/all.env new file mode 100644 index 0000000..aa2f91a --- /dev/null +++ b/tests/results/60_5family_dynamic_calc2_empty/file/all.env @@ -0,0 +1,4 @@ +ROUGAIL.VAR="val1,val2" +ROUGAIL.VAR2="string1" +ROUGAIL.DYNVAL1.VARDYN="string1" +ROUGAIL.DYNVAL2.VARDYN="string1" diff --git a/tests/results/60_5family_dynamic_calc2_empty/file/all_exclude.env b/tests/results/60_5family_dynamic_calc2_empty/file/all_exclude.env new file mode 100644 index 0000000..0d2365d --- /dev/null +++ b/tests/results/60_5family_dynamic_calc2_empty/file/all_exclude.env @@ -0,0 +1,3 @@ +ROUGAIL.VAR2="string1" +ROUGAIL.DYNVAL1.VARDYN="string1" +ROUGAIL.DYNVAL2.VARDYN="string1" diff --git a/tests/results/60_5family_dynamic_calc2_empty/file/mandatories.env b/tests/results/60_5family_dynamic_calc2_empty/file/mandatories.env new file mode 100644 index 0000000..5640f89 --- /dev/null +++ b/tests/results/60_5family_dynamic_calc2_empty/file/mandatories.env @@ -0,0 +1 @@ +ROUGAIL.VAR2="string1" diff --git a/tests/results/60_5family_dynamic_calc2_empty/makedict/all.json b/tests/results/60_5family_dynamic_calc2_empty/makedict/all.json new file mode 100644 index 0000000..b49f492 --- /dev/null +++ b/tests/results/60_5family_dynamic_calc2_empty/makedict/all.json @@ -0,0 +1,9 @@ +{ + "rougail.var": [ + "val1", + "val2" + ], + "rougail.var2": "string1", + "rougail.dynval1.vardyn": "string1", + "rougail.dynval2.vardyn": "string1" +} diff --git a/tests/results/60_5family_dynamic_calc2_empty/makedict/mandatories.json b/tests/results/60_5family_dynamic_calc2_empty/makedict/mandatories.json new file mode 100644 index 0000000..f5b0199 --- /dev/null +++ b/tests/results/60_5family_dynamic_calc2_empty/makedict/mandatories.json @@ -0,0 +1,4 @@ +{ + "rougail.var": [], + "rougail.var2": "string1" +} diff --git a/tests/results/60_5family_dynamic_calc_suffix/errors/mandatories.json b/tests/results/60_5family_dynamic_calc_suffix/errors/mandatories.json index 217db0a..748dd1d 100644 --- a/tests/results/60_5family_dynamic_calc_suffix/errors/mandatories.json +++ b/tests/results/60_5family_dynamic_calc_suffix/errors/mandatories.json @@ -1,4 +1,8 @@ { - "errors": [], + "errors": [ + "unknown option \"dynstring1\" in optiondescription \"rougail\"", + "unknown option \"dynstring2\" in optiondescription \"rougail\"", + "unknown option \"dynstring3\" in optiondescription \"rougail\"" + ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/60_5family_dynamic_calc_suffix/file/all.env b/tests/results/60_5family_dynamic_calc_suffix/file/all.env index ed7016e..d6ad12f 100644 --- a/tests/results/60_5family_dynamic_calc_suffix/file/all.env +++ b/tests/results/60_5family_dynamic_calc_suffix/file/all.env @@ -1,5 +1,5 @@ -ROUGAIL_VAR1="string1,string2,string3" -ROUGAIL_DYNSTRING1.VAR="string1" -ROUGAIL_DYNSTRING2.VAR="string1" -ROUGAIL_DYNSTRING3.VAR="string1" -ROUGAIL_VAR2="string1" +ROUGAIL.VAR1="string1,string2,string3" +ROUGAIL.DYNSTRING1.VAR="string1" +ROUGAIL.DYNSTRING2.VAR="string1" +ROUGAIL.DYNSTRING3.VAR="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/60_5family_dynamic_calc_suffix/file/all_exclude.env b/tests/results/60_5family_dynamic_calc_suffix/file/all_exclude.env index fea1f34..ce92d58 100644 --- a/tests/results/60_5family_dynamic_calc_suffix/file/all_exclude.env +++ b/tests/results/60_5family_dynamic_calc_suffix/file/all_exclude.env @@ -1,4 +1,4 @@ -ROUGAIL_DYNSTRING1.VAR="string1" -ROUGAIL_DYNSTRING2.VAR="string1" -ROUGAIL_DYNSTRING3.VAR="string1" -ROUGAIL_VAR2="string1" +ROUGAIL.DYNSTRING1.VAR="string1" +ROUGAIL.DYNSTRING2.VAR="string1" +ROUGAIL.DYNSTRING3.VAR="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/60_5family_dynamic_calc_suffix/file/mandatories.env b/tests/results/60_5family_dynamic_calc_suffix/file/mandatories.env index a3e2e9b..cf6d584 100644 --- a/tests/results/60_5family_dynamic_calc_suffix/file/mandatories.env +++ b/tests/results/60_5family_dynamic_calc_suffix/file/mandatories.env @@ -1,2 +1,2 @@ -ROUGAIL_DYNVAL1.VAR="string1" -ROUGAIL_DYNVAL2.VAR="string1" +ROUGAIL.DYNVAL1.VAR="string1" +ROUGAIL.DYNVAL2.VAR="string1" diff --git a/tests/results/60_5family_dynamic_calc_suffix2/errors/mandatories.json b/tests/results/60_5family_dynamic_calc_suffix2/errors/mandatories.json index 217db0a..748dd1d 100644 --- a/tests/results/60_5family_dynamic_calc_suffix2/errors/mandatories.json +++ b/tests/results/60_5family_dynamic_calc_suffix2/errors/mandatories.json @@ -1,4 +1,8 @@ { - "errors": [], + "errors": [ + "unknown option \"dynstring1\" in optiondescription \"rougail\"", + "unknown option \"dynstring2\" in optiondescription \"rougail\"", + "unknown option \"dynstring3\" in optiondescription \"rougail\"" + ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/60_5family_dynamic_calc_suffix2/file/all.env b/tests/results/60_5family_dynamic_calc_suffix2/file/all.env index 30a1cd9..695b6ad 100644 --- a/tests/results/60_5family_dynamic_calc_suffix2/file/all.env +++ b/tests/results/60_5family_dynamic_calc_suffix2/file/all.env @@ -1,4 +1,4 @@ -ROUGAIL_VAR="string1,string2,string3" -ROUGAIL_DYNSTRING1.VAR="string1" -ROUGAIL_DYNSTRING2.VAR="string1" -ROUGAIL_DYNSTRING3.VAR="string1" +ROUGAIL.VAR="string1,string2,string3" +ROUGAIL.DYNSTRING1.VAR="string1" +ROUGAIL.DYNSTRING2.VAR="string1" +ROUGAIL.DYNSTRING3.VAR="string1" diff --git a/tests/results/60_5family_dynamic_calc_suffix2/file/all_exclude.env b/tests/results/60_5family_dynamic_calc_suffix2/file/all_exclude.env index 926cb0b..35c6349 100644 --- a/tests/results/60_5family_dynamic_calc_suffix2/file/all_exclude.env +++ b/tests/results/60_5family_dynamic_calc_suffix2/file/all_exclude.env @@ -1,3 +1,3 @@ -ROUGAIL_DYNSTRING1.VAR="string1" -ROUGAIL_DYNSTRING2.VAR="string1" -ROUGAIL_DYNSTRING3.VAR="string1" +ROUGAIL.DYNSTRING1.VAR="string1" +ROUGAIL.DYNSTRING2.VAR="string1" +ROUGAIL.DYNSTRING3.VAR="string1" diff --git a/tests/results/60_5family_dynamic_calc_suffix2_empty/errors/all.json b/tests/results/60_5family_dynamic_calc_suffix2_empty/errors/all.json new file mode 100644 index 0000000..217db0a --- /dev/null +++ b/tests/results/60_5family_dynamic_calc_suffix2_empty/errors/all.json @@ -0,0 +1,4 @@ +{ + "errors": [], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_5family_dynamic_calc_suffix2_empty/errors/mandatories.json b/tests/results/60_5family_dynamic_calc_suffix2_empty/errors/mandatories.json new file mode 100644 index 0000000..217db0a --- /dev/null +++ b/tests/results/60_5family_dynamic_calc_suffix2_empty/errors/mandatories.json @@ -0,0 +1,4 @@ +{ + "errors": [], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_5family_dynamic_calc_suffix2_empty/file/all.env b/tests/results/60_5family_dynamic_calc_suffix2_empty/file/all.env new file mode 100644 index 0000000..2bd697a --- /dev/null +++ b/tests/results/60_5family_dynamic_calc_suffix2_empty/file/all.env @@ -0,0 +1,3 @@ +ROUGAIL.VAR="val1,val2" +ROUGAIL.DYNVAL1.VAR="string1" +ROUGAIL.DYNVAL2.VAR="string1" diff --git a/tests/results/60_5family_dynamic_calc_suffix2_empty/file/all_exclude.env b/tests/results/60_5family_dynamic_calc_suffix2_empty/file/all_exclude.env new file mode 100644 index 0000000..cf6d584 --- /dev/null +++ b/tests/results/60_5family_dynamic_calc_suffix2_empty/file/all_exclude.env @@ -0,0 +1,2 @@ +ROUGAIL.DYNVAL1.VAR="string1" +ROUGAIL.DYNVAL2.VAR="string1" diff --git a/tests/results/60_5family_dynamic_calc_suffix2_empty/file/mandatories.env b/tests/results/60_5family_dynamic_calc_suffix2_empty/file/mandatories.env new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/results/60_5family_dynamic_calc_suffix2_empty/file/mandatories.env @@ -0,0 +1 @@ + diff --git a/tests/results/60_5family_dynamic_calc_suffix2_empty/makedict/all.json b/tests/results/60_5family_dynamic_calc_suffix2_empty/makedict/all.json new file mode 100644 index 0000000..ee96b68 --- /dev/null +++ b/tests/results/60_5family_dynamic_calc_suffix2_empty/makedict/all.json @@ -0,0 +1,8 @@ +{ + "rougail.var": [ + "val1", + "val2" + ], + "rougail.dynval1.var": "string1", + "rougail.dynval2.var": "string1" +} diff --git a/tests/results/60_5family_dynamic_calc_suffix2_empty/makedict/mandatories.json b/tests/results/60_5family_dynamic_calc_suffix2_empty/makedict/mandatories.json new file mode 100644 index 0000000..a132f45 --- /dev/null +++ b/tests/results/60_5family_dynamic_calc_suffix2_empty/makedict/mandatories.json @@ -0,0 +1,3 @@ +{ + "rougail.var": [] +} diff --git a/tests/results/60_5family_dynamic_calc_suffix_disabled/errors/all.json b/tests/results/60_5family_dynamic_calc_suffix_disabled/errors/all.json index 90f9aa3..ea36b24 100644 --- a/tests/results/60_5family_dynamic_calc_suffix_disabled/errors/all.json +++ b/tests/results/60_5family_dynamic_calc_suffix_disabled/errors/all.json @@ -1,6 +1,6 @@ { "errors": [ - "ne peut acc\u00e9der \u00e0 l'option \"rougail.dynval1.var\" (A dynamic variable) \u00e0 cause de la propri\u00e9t\u00e9 \"disabled\"" + "cannot access to option \"rougail.dynval1.var\" (A dynamic variable) because has property \"disabled\"" ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/60_5family_dynamic_calc_suffix_disabled/errors/mandatories.json b/tests/results/60_5family_dynamic_calc_suffix_disabled/errors/mandatories.json index 90f9aa3..ea36b24 100644 --- a/tests/results/60_5family_dynamic_calc_suffix_disabled/errors/mandatories.json +++ b/tests/results/60_5family_dynamic_calc_suffix_disabled/errors/mandatories.json @@ -1,6 +1,6 @@ { "errors": [ - "ne peut acc\u00e9der \u00e0 l'option \"rougail.dynval1.var\" (A dynamic variable) \u00e0 cause de la propri\u00e9t\u00e9 \"disabled\"" + "cannot access to option \"rougail.dynval1.var\" (A dynamic variable) because has property \"disabled\"" ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/60_5family_dynamic_calc_suffix_disabled/file/all.env b/tests/results/60_5family_dynamic_calc_suffix_disabled/file/all.env index a3e2e9b..cf6d584 100644 --- a/tests/results/60_5family_dynamic_calc_suffix_disabled/file/all.env +++ b/tests/results/60_5family_dynamic_calc_suffix_disabled/file/all.env @@ -1,2 +1,2 @@ -ROUGAIL_DYNVAL1.VAR="string1" -ROUGAIL_DYNVAL2.VAR="string1" +ROUGAIL.DYNVAL1.VAR="string1" +ROUGAIL.DYNVAL2.VAR="string1" diff --git a/tests/results/60_5family_dynamic_calc_suffix_disabled/file/all_exclude.env b/tests/results/60_5family_dynamic_calc_suffix_disabled/file/all_exclude.env index a3e2e9b..cf6d584 100644 --- a/tests/results/60_5family_dynamic_calc_suffix_disabled/file/all_exclude.env +++ b/tests/results/60_5family_dynamic_calc_suffix_disabled/file/all_exclude.env @@ -1,2 +1,2 @@ -ROUGAIL_DYNVAL1.VAR="string1" -ROUGAIL_DYNVAL2.VAR="string1" +ROUGAIL.DYNVAL1.VAR="string1" +ROUGAIL.DYNVAL2.VAR="string1" diff --git a/tests/results/60_5family_dynamic_calc_suffix_disabled/file/mandatories.env b/tests/results/60_5family_dynamic_calc_suffix_disabled/file/mandatories.env index a3e2e9b..cf6d584 100644 --- a/tests/results/60_5family_dynamic_calc_suffix_disabled/file/mandatories.env +++ b/tests/results/60_5family_dynamic_calc_suffix_disabled/file/mandatories.env @@ -1,2 +1,2 @@ -ROUGAIL_DYNVAL1.VAR="string1" -ROUGAIL_DYNVAL2.VAR="string1" +ROUGAIL.DYNVAL1.VAR="string1" +ROUGAIL.DYNVAL2.VAR="string1" diff --git a/tests/results/60_5family_dynamic_calc_suffix_empty/errors/all.json b/tests/results/60_5family_dynamic_calc_suffix_empty/errors/all.json new file mode 100644 index 0000000..217db0a --- /dev/null +++ b/tests/results/60_5family_dynamic_calc_suffix_empty/errors/all.json @@ -0,0 +1,4 @@ +{ + "errors": [], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_5family_dynamic_calc_suffix_empty/errors/mandatories.json b/tests/results/60_5family_dynamic_calc_suffix_empty/errors/mandatories.json new file mode 100644 index 0000000..217db0a --- /dev/null +++ b/tests/results/60_5family_dynamic_calc_suffix_empty/errors/mandatories.json @@ -0,0 +1,4 @@ +{ + "errors": [], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_5family_dynamic_calc_suffix_empty/file/all.env b/tests/results/60_5family_dynamic_calc_suffix_empty/file/all.env new file mode 100644 index 0000000..eecf873 --- /dev/null +++ b/tests/results/60_5family_dynamic_calc_suffix_empty/file/all.env @@ -0,0 +1,4 @@ +ROUGAIL.VAR1="val1,val2" +ROUGAIL.DYNVAL1.VAR="string1" +ROUGAIL.DYNVAL2.VAR="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/60_5family_dynamic_calc_suffix_empty/file/all_exclude.env b/tests/results/60_5family_dynamic_calc_suffix_empty/file/all_exclude.env new file mode 100644 index 0000000..17958a1 --- /dev/null +++ b/tests/results/60_5family_dynamic_calc_suffix_empty/file/all_exclude.env @@ -0,0 +1,3 @@ +ROUGAIL.DYNVAL1.VAR="string1" +ROUGAIL.DYNVAL2.VAR="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/60_5family_dynamic_calc_suffix_empty/file/mandatories.env b/tests/results/60_5family_dynamic_calc_suffix_empty/file/mandatories.env new file mode 100644 index 0000000..5640f89 --- /dev/null +++ b/tests/results/60_5family_dynamic_calc_suffix_empty/file/mandatories.env @@ -0,0 +1 @@ +ROUGAIL.VAR2="string1" diff --git a/tests/results/60_5family_dynamic_calc_suffix_empty/makedict/all.json b/tests/results/60_5family_dynamic_calc_suffix_empty/makedict/all.json new file mode 100644 index 0000000..9c0312b --- /dev/null +++ b/tests/results/60_5family_dynamic_calc_suffix_empty/makedict/all.json @@ -0,0 +1,9 @@ +{ + "rougail.var1": [ + "val1", + "val2" + ], + "rougail.dynval1.var": "string1", + "rougail.dynval2.var": "string1", + "rougail.var2": "string1" +} diff --git a/tests/results/60_5family_dynamic_calc_suffix_empty/makedict/mandatories.json b/tests/results/60_5family_dynamic_calc_suffix_empty/makedict/mandatories.json new file mode 100644 index 0000000..9cc7b99 --- /dev/null +++ b/tests/results/60_5family_dynamic_calc_suffix_empty/makedict/mandatories.json @@ -0,0 +1,4 @@ +{ + "rougail.var1": [], + "rougail.var2": "string1" +} diff --git a/tests/results/60_5family_dynamic_calc_suffix_param/errors/mandatories.json b/tests/results/60_5family_dynamic_calc_suffix_param/errors/mandatories.json index 217db0a..748dd1d 100644 --- a/tests/results/60_5family_dynamic_calc_suffix_param/errors/mandatories.json +++ b/tests/results/60_5family_dynamic_calc_suffix_param/errors/mandatories.json @@ -1,4 +1,8 @@ { - "errors": [], + "errors": [ + "unknown option \"dynstring1\" in optiondescription \"rougail\"", + "unknown option \"dynstring2\" in optiondescription \"rougail\"", + "unknown option \"dynstring3\" in optiondescription \"rougail\"" + ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/60_5family_dynamic_calc_suffix_param/file/all.env b/tests/results/60_5family_dynamic_calc_suffix_param/file/all.env index 30a1cd9..695b6ad 100644 --- a/tests/results/60_5family_dynamic_calc_suffix_param/file/all.env +++ b/tests/results/60_5family_dynamic_calc_suffix_param/file/all.env @@ -1,4 +1,4 @@ -ROUGAIL_VAR="string1,string2,string3" -ROUGAIL_DYNSTRING1.VAR="string1" -ROUGAIL_DYNSTRING2.VAR="string1" -ROUGAIL_DYNSTRING3.VAR="string1" +ROUGAIL.VAR="string1,string2,string3" +ROUGAIL.DYNSTRING1.VAR="string1" +ROUGAIL.DYNSTRING2.VAR="string1" +ROUGAIL.DYNSTRING3.VAR="string1" diff --git a/tests/results/60_5family_dynamic_calc_suffix_param/file/all_exclude.env b/tests/results/60_5family_dynamic_calc_suffix_param/file/all_exclude.env index 926cb0b..35c6349 100644 --- a/tests/results/60_5family_dynamic_calc_suffix_param/file/all_exclude.env +++ b/tests/results/60_5family_dynamic_calc_suffix_param/file/all_exclude.env @@ -1,3 +1,3 @@ -ROUGAIL_DYNSTRING1.VAR="string1" -ROUGAIL_DYNSTRING2.VAR="string1" -ROUGAIL_DYNSTRING3.VAR="string1" +ROUGAIL.DYNSTRING1.VAR="string1" +ROUGAIL.DYNSTRING2.VAR="string1" +ROUGAIL.DYNSTRING3.VAR="string1" diff --git a/tests/results/60_5family_dynamic_calc_suffix_param_empty/errors/all.json b/tests/results/60_5family_dynamic_calc_suffix_param_empty/errors/all.json new file mode 100644 index 0000000..217db0a --- /dev/null +++ b/tests/results/60_5family_dynamic_calc_suffix_param_empty/errors/all.json @@ -0,0 +1,4 @@ +{ + "errors": [], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_5family_dynamic_calc_suffix_param_empty/errors/mandatories.json b/tests/results/60_5family_dynamic_calc_suffix_param_empty/errors/mandatories.json new file mode 100644 index 0000000..217db0a --- /dev/null +++ b/tests/results/60_5family_dynamic_calc_suffix_param_empty/errors/mandatories.json @@ -0,0 +1,4 @@ +{ + "errors": [], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_5family_dynamic_calc_suffix_param_empty/file/all.env b/tests/results/60_5family_dynamic_calc_suffix_param_empty/file/all.env new file mode 100644 index 0000000..2bd697a --- /dev/null +++ b/tests/results/60_5family_dynamic_calc_suffix_param_empty/file/all.env @@ -0,0 +1,3 @@ +ROUGAIL.VAR="val1,val2" +ROUGAIL.DYNVAL1.VAR="string1" +ROUGAIL.DYNVAL2.VAR="string1" diff --git a/tests/results/60_5family_dynamic_calc_suffix_param_empty/file/all_exclude.env b/tests/results/60_5family_dynamic_calc_suffix_param_empty/file/all_exclude.env new file mode 100644 index 0000000..cf6d584 --- /dev/null +++ b/tests/results/60_5family_dynamic_calc_suffix_param_empty/file/all_exclude.env @@ -0,0 +1,2 @@ +ROUGAIL.DYNVAL1.VAR="string1" +ROUGAIL.DYNVAL2.VAR="string1" diff --git a/tests/results/60_5family_dynamic_calc_suffix_param_empty/file/mandatories.env b/tests/results/60_5family_dynamic_calc_suffix_param_empty/file/mandatories.env new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/results/60_5family_dynamic_calc_suffix_param_empty/file/mandatories.env @@ -0,0 +1 @@ + diff --git a/tests/results/60_5family_dynamic_calc_suffix_param_empty/makedict/all.json b/tests/results/60_5family_dynamic_calc_suffix_param_empty/makedict/all.json new file mode 100644 index 0000000..ee96b68 --- /dev/null +++ b/tests/results/60_5family_dynamic_calc_suffix_param_empty/makedict/all.json @@ -0,0 +1,8 @@ +{ + "rougail.var": [ + "val1", + "val2" + ], + "rougail.dynval1.var": "string1", + "rougail.dynval2.var": "string1" +} diff --git a/tests/results/60_5family_dynamic_calc_suffix_param_empty/makedict/mandatories.json b/tests/results/60_5family_dynamic_calc_suffix_param_empty/makedict/mandatories.json new file mode 100644 index 0000000..a132f45 --- /dev/null +++ b/tests/results/60_5family_dynamic_calc_suffix_param_empty/makedict/mandatories.json @@ -0,0 +1,3 @@ +{ + "rougail.var": [] +} diff --git a/tests/results/60_5family_dynamic_calc_variable/errors/mandatories.json b/tests/results/60_5family_dynamic_calc_variable/errors/mandatories.json index 217db0a..748dd1d 100644 --- a/tests/results/60_5family_dynamic_calc_variable/errors/mandatories.json +++ b/tests/results/60_5family_dynamic_calc_variable/errors/mandatories.json @@ -1,4 +1,8 @@ { - "errors": [], + "errors": [ + "unknown option \"dynstring1\" in optiondescription \"rougail\"", + "unknown option \"dynstring2\" in optiondescription \"rougail\"", + "unknown option \"dynstring3\" in optiondescription \"rougail\"" + ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/60_5family_dynamic_calc_variable/file/all.env b/tests/results/60_5family_dynamic_calc_variable/file/all.env index ed7016e..d6ad12f 100644 --- a/tests/results/60_5family_dynamic_calc_variable/file/all.env +++ b/tests/results/60_5family_dynamic_calc_variable/file/all.env @@ -1,5 +1,5 @@ -ROUGAIL_VAR1="string1,string2,string3" -ROUGAIL_DYNSTRING1.VAR="string1" -ROUGAIL_DYNSTRING2.VAR="string1" -ROUGAIL_DYNSTRING3.VAR="string1" -ROUGAIL_VAR2="string1" +ROUGAIL.VAR1="string1,string2,string3" +ROUGAIL.DYNSTRING1.VAR="string1" +ROUGAIL.DYNSTRING2.VAR="string1" +ROUGAIL.DYNSTRING3.VAR="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/60_5family_dynamic_calc_variable/file/all_exclude.env b/tests/results/60_5family_dynamic_calc_variable/file/all_exclude.env index fea1f34..ce92d58 100644 --- a/tests/results/60_5family_dynamic_calc_variable/file/all_exclude.env +++ b/tests/results/60_5family_dynamic_calc_variable/file/all_exclude.env @@ -1,4 +1,4 @@ -ROUGAIL_DYNSTRING1.VAR="string1" -ROUGAIL_DYNSTRING2.VAR="string1" -ROUGAIL_DYNSTRING3.VAR="string1" -ROUGAIL_VAR2="string1" +ROUGAIL.DYNSTRING1.VAR="string1" +ROUGAIL.DYNSTRING2.VAR="string1" +ROUGAIL.DYNSTRING3.VAR="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/60_5family_dynamic_calc_variable/file/mandatories.env b/tests/results/60_5family_dynamic_calc_variable/file/mandatories.env index a3e2e9b..cf6d584 100644 --- a/tests/results/60_5family_dynamic_calc_variable/file/mandatories.env +++ b/tests/results/60_5family_dynamic_calc_variable/file/mandatories.env @@ -1,2 +1,2 @@ -ROUGAIL_DYNVAL1.VAR="string1" -ROUGAIL_DYNVAL2.VAR="string1" +ROUGAIL.DYNVAL1.VAR="string1" +ROUGAIL.DYNVAL2.VAR="string1" diff --git a/tests/results/60_5family_dynamic_calc_variable_empty/errors/all.json b/tests/results/60_5family_dynamic_calc_variable_empty/errors/all.json new file mode 100644 index 0000000..217db0a --- /dev/null +++ b/tests/results/60_5family_dynamic_calc_variable_empty/errors/all.json @@ -0,0 +1,4 @@ +{ + "errors": [], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_5family_dynamic_calc_variable_empty/errors/mandatories.json b/tests/results/60_5family_dynamic_calc_variable_empty/errors/mandatories.json new file mode 100644 index 0000000..217db0a --- /dev/null +++ b/tests/results/60_5family_dynamic_calc_variable_empty/errors/mandatories.json @@ -0,0 +1,4 @@ +{ + "errors": [], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_5family_dynamic_calc_variable_empty/file/all.env b/tests/results/60_5family_dynamic_calc_variable_empty/file/all.env new file mode 100644 index 0000000..eecf873 --- /dev/null +++ b/tests/results/60_5family_dynamic_calc_variable_empty/file/all.env @@ -0,0 +1,4 @@ +ROUGAIL.VAR1="val1,val2" +ROUGAIL.DYNVAL1.VAR="string1" +ROUGAIL.DYNVAL2.VAR="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/60_5family_dynamic_calc_variable_empty/file/all_exclude.env b/tests/results/60_5family_dynamic_calc_variable_empty/file/all_exclude.env new file mode 100644 index 0000000..17958a1 --- /dev/null +++ b/tests/results/60_5family_dynamic_calc_variable_empty/file/all_exclude.env @@ -0,0 +1,3 @@ +ROUGAIL.DYNVAL1.VAR="string1" +ROUGAIL.DYNVAL2.VAR="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/60_5family_dynamic_calc_variable_empty/file/mandatories.env b/tests/results/60_5family_dynamic_calc_variable_empty/file/mandatories.env new file mode 100644 index 0000000..5640f89 --- /dev/null +++ b/tests/results/60_5family_dynamic_calc_variable_empty/file/mandatories.env @@ -0,0 +1 @@ +ROUGAIL.VAR2="string1" diff --git a/tests/results/60_5family_dynamic_calc_variable_empty/makedict/all.json b/tests/results/60_5family_dynamic_calc_variable_empty/makedict/all.json new file mode 100644 index 0000000..9c0312b --- /dev/null +++ b/tests/results/60_5family_dynamic_calc_variable_empty/makedict/all.json @@ -0,0 +1,9 @@ +{ + "rougail.var1": [ + "val1", + "val2" + ], + "rougail.dynval1.var": "string1", + "rougail.dynval2.var": "string1", + "rougail.var2": "string1" +} diff --git a/tests/results/60_5family_dynamic_calc_variable_empty/makedict/mandatories.json b/tests/results/60_5family_dynamic_calc_variable_empty/makedict/mandatories.json new file mode 100644 index 0000000..9cc7b99 --- /dev/null +++ b/tests/results/60_5family_dynamic_calc_variable_empty/makedict/mandatories.json @@ -0,0 +1,4 @@ +{ + "rougail.var1": [], + "rougail.var2": "string1" +} diff --git a/tests/results/60_5family_dynamic_hidden_suffix/errors/all.json b/tests/results/60_5family_dynamic_hidden_suffix/errors/all.json index 8582e8f..7cdbd30 100644 --- a/tests/results/60_5family_dynamic_hidden_suffix/errors/all.json +++ b/tests/results/60_5family_dynamic_hidden_suffix/errors/all.json @@ -1,7 +1,7 @@ { "errors": [ - "ne peut acc\u00e9der \u00e0 l'optiondescription \"rougail.dynval2\" (a dynamic family) \u00e0 cause de la propri\u00e9t\u00e9 \"hidden\" (disabled)", - "ne peut acc\u00e9der \u00e0 l'optiondescription \"rougail.dynval2\" (a dynamic family) \u00e0 cause de la propri\u00e9t\u00e9 \"hidden\" (disabled)" + "cannot access to optiondescription \"rougail.dynval2\" (a dynamic family) because has property \"hidden\" (disabled)", + "cannot access to optiondescription \"rougail.dynval2\" (a dynamic family) because has property \"hidden\" (disabled)" ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/60_5family_dynamic_hidden_suffix/file/all.env b/tests/results/60_5family_dynamic_hidden_suffix/file/all.env index e3f54fb..739a311 100644 --- a/tests/results/60_5family_dynamic_hidden_suffix/file/all.env +++ b/tests/results/60_5family_dynamic_hidden_suffix/file/all.env @@ -1,4 +1,4 @@ -ROUGAIL_DYNVAL1.VAR="string1" -ROUGAIL_DYNVAL1.FAMILY.VAR="string1" -ROUGAIL_DYNVAL2.VAR="string1" -ROUGAIL_DYNVAL2.FAMILY.VAR="string1" +ROUGAIL.DYNVAL1.VAR="string1" +ROUGAIL.DYNVAL1.FAMILY.VAR="string1" +ROUGAIL.DYNVAL2.VAR="string1" +ROUGAIL.DYNVAL2.FAMILY.VAR="string1" diff --git a/tests/results/60_5family_dynamic_hidden_suffix/file/all_exclude.env b/tests/results/60_5family_dynamic_hidden_suffix/file/all_exclude.env index e3f54fb..739a311 100644 --- a/tests/results/60_5family_dynamic_hidden_suffix/file/all_exclude.env +++ b/tests/results/60_5family_dynamic_hidden_suffix/file/all_exclude.env @@ -1,4 +1,4 @@ -ROUGAIL_DYNVAL1.VAR="string1" -ROUGAIL_DYNVAL1.FAMILY.VAR="string1" -ROUGAIL_DYNVAL2.VAR="string1" -ROUGAIL_DYNVAL2.FAMILY.VAR="string1" +ROUGAIL.DYNVAL1.VAR="string1" +ROUGAIL.DYNVAL1.FAMILY.VAR="string1" +ROUGAIL.DYNVAL2.VAR="string1" +ROUGAIL.DYNVAL2.FAMILY.VAR="string1" diff --git a/tests/results/60_5family_dynamic_unknown_suffix/errors/mandatories.json b/tests/results/60_5family_dynamic_unknown_suffix/errors/mandatories.json index 217db0a..3baf461 100644 --- a/tests/results/60_5family_dynamic_unknown_suffix/errors/mandatories.json +++ b/tests/results/60_5family_dynamic_unknown_suffix/errors/mandatories.json @@ -1,4 +1,15 @@ { - "errors": [], + "errors": [ + "cannot access to option \"rougail.val1_dyn.var4\" (a variable 4) because has property \"disabled\" (val4 is not a valid value)", + "cannot access to option \"rougail.val2_dyn.var4\" (a variable 4) because has property \"disabled\" (val4 is not a valid value)", + "unknown option \"val3_dyn\" in optiondescription \"rougail\"", + "unknown option \"val3_dyn\" in optiondescription \"rougail\"", + "unknown option \"val3_dyn\" in optiondescription \"rougail\"", + "unknown option \"val3_dyn\" in optiondescription \"rougail\"", + "unknown option \"val4_dyn\" in optiondescription \"rougail\"", + "unknown option \"val4_dyn\" in optiondescription \"rougail\"", + "unknown option \"val4_dyn\" in optiondescription \"rougail\"", + "unknown option \"val4_dyn\" in optiondescription \"rougail\"" + ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/60_5family_dynamic_unknown_suffix/file/all.env b/tests/results/60_5family_dynamic_unknown_suffix/file/all.env index 9eb0523..88cc28c 100644 --- a/tests/results/60_5family_dynamic_unknown_suffix/file/all.env +++ b/tests/results/60_5family_dynamic_unknown_suffix/file/all.env @@ -1,17 +1,17 @@ -ROUGAIL_VAR="val1,val2,val3,val4" -ROUGAIL_VAL1_DYN.VAR1="string1" -ROUGAIL_VAL1_DYN.VAR2="string1" -ROUGAIL_VAL1_DYN.VAR3="string1" -ROUGAIL_VAL1_DYN.VAR4="string1" -ROUGAIL_VAL2_DYN.VAR1="string1" -ROUGAIL_VAL2_DYN.VAR2="string1" -ROUGAIL_VAL2_DYN.VAR3="string1" -ROUGAIL_VAL2_DYN.VAR4="string1" -ROUGAIL_VAL3_DYN.VAR1="string1" -ROUGAIL_VAL3_DYN.VAR2="string1" -ROUGAIL_VAL3_DYN.VAR3="string1" -ROUGAIL_VAL3_DYN.VAR4="string1" -ROUGAIL_VAL4_DYN.VAR1="string1" -ROUGAIL_VAL4_DYN.VAR2="string1" -ROUGAIL_VAL4_DYN.VAR3="string1" -ROUGAIL_VAL4_DYN.VAR4="string1" +ROUGAIL.VAR="val1,val2,val3,val4" +ROUGAIL.VAL1_DYN.VAR1="string1" +ROUGAIL.VAL1_DYN.VAR2="string1" +ROUGAIL.VAL1_DYN.VAR3="string1" +ROUGAIL.VAL1_DYN.VAR4="string1" +ROUGAIL.VAL2_DYN.VAR1="string1" +ROUGAIL.VAL2_DYN.VAR2="string1" +ROUGAIL.VAL2_DYN.VAR3="string1" +ROUGAIL.VAL2_DYN.VAR4="string1" +ROUGAIL.VAL3_DYN.VAR1="string1" +ROUGAIL.VAL3_DYN.VAR2="string1" +ROUGAIL.VAL3_DYN.VAR3="string1" +ROUGAIL.VAL3_DYN.VAR4="string1" +ROUGAIL.VAL4_DYN.VAR1="string1" +ROUGAIL.VAL4_DYN.VAR2="string1" +ROUGAIL.VAL4_DYN.VAR3="string1" +ROUGAIL.VAL4_DYN.VAR4="string1" diff --git a/tests/results/60_5family_dynamic_unknown_suffix/file/all_exclude.env b/tests/results/60_5family_dynamic_unknown_suffix/file/all_exclude.env index a45ef33..86a8573 100644 --- a/tests/results/60_5family_dynamic_unknown_suffix/file/all_exclude.env +++ b/tests/results/60_5family_dynamic_unknown_suffix/file/all_exclude.env @@ -1,16 +1,16 @@ -ROUGAIL_VAL1_DYN.VAR1="string1" -ROUGAIL_VAL1_DYN.VAR2="string1" -ROUGAIL_VAL1_DYN.VAR3="string1" -ROUGAIL_VAL1_DYN.VAR4="string1" -ROUGAIL_VAL2_DYN.VAR1="string1" -ROUGAIL_VAL2_DYN.VAR2="string1" -ROUGAIL_VAL2_DYN.VAR3="string1" -ROUGAIL_VAL2_DYN.VAR4="string1" -ROUGAIL_VAL3_DYN.VAR1="string1" -ROUGAIL_VAL3_DYN.VAR2="string1" -ROUGAIL_VAL3_DYN.VAR3="string1" -ROUGAIL_VAL3_DYN.VAR4="string1" -ROUGAIL_VAL4_DYN.VAR1="string1" -ROUGAIL_VAL4_DYN.VAR2="string1" -ROUGAIL_VAL4_DYN.VAR3="string1" -ROUGAIL_VAL4_DYN.VAR4="string1" +ROUGAIL.VAL1_DYN.VAR1="string1" +ROUGAIL.VAL1_DYN.VAR2="string1" +ROUGAIL.VAL1_DYN.VAR3="string1" +ROUGAIL.VAL1_DYN.VAR4="string1" +ROUGAIL.VAL2_DYN.VAR1="string1" +ROUGAIL.VAL2_DYN.VAR2="string1" +ROUGAIL.VAL2_DYN.VAR3="string1" +ROUGAIL.VAL2_DYN.VAR4="string1" +ROUGAIL.VAL3_DYN.VAR1="string1" +ROUGAIL.VAL3_DYN.VAR2="string1" +ROUGAIL.VAL3_DYN.VAR3="string1" +ROUGAIL.VAL3_DYN.VAR4="string1" +ROUGAIL.VAL4_DYN.VAR1="string1" +ROUGAIL.VAL4_DYN.VAR2="string1" +ROUGAIL.VAL4_DYN.VAR3="string1" +ROUGAIL.VAL4_DYN.VAR4="string1" diff --git a/tests/results/60_5family_dynamic_unknown_suffix_empty/errors/all.json b/tests/results/60_5family_dynamic_unknown_suffix_empty/errors/all.json new file mode 100644 index 0000000..217db0a --- /dev/null +++ b/tests/results/60_5family_dynamic_unknown_suffix_empty/errors/all.json @@ -0,0 +1,4 @@ +{ + "errors": [], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_5family_dynamic_unknown_suffix_empty/errors/mandatories.json b/tests/results/60_5family_dynamic_unknown_suffix_empty/errors/mandatories.json new file mode 100644 index 0000000..217db0a --- /dev/null +++ b/tests/results/60_5family_dynamic_unknown_suffix_empty/errors/mandatories.json @@ -0,0 +1,4 @@ +{ + "errors": [], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_5family_dynamic_unknown_suffix_empty/file/all.env b/tests/results/60_5family_dynamic_unknown_suffix_empty/file/all.env new file mode 100644 index 0000000..88cc28c --- /dev/null +++ b/tests/results/60_5family_dynamic_unknown_suffix_empty/file/all.env @@ -0,0 +1,17 @@ +ROUGAIL.VAR="val1,val2,val3,val4" +ROUGAIL.VAL1_DYN.VAR1="string1" +ROUGAIL.VAL1_DYN.VAR2="string1" +ROUGAIL.VAL1_DYN.VAR3="string1" +ROUGAIL.VAL1_DYN.VAR4="string1" +ROUGAIL.VAL2_DYN.VAR1="string1" +ROUGAIL.VAL2_DYN.VAR2="string1" +ROUGAIL.VAL2_DYN.VAR3="string1" +ROUGAIL.VAL2_DYN.VAR4="string1" +ROUGAIL.VAL3_DYN.VAR1="string1" +ROUGAIL.VAL3_DYN.VAR2="string1" +ROUGAIL.VAL3_DYN.VAR3="string1" +ROUGAIL.VAL3_DYN.VAR4="string1" +ROUGAIL.VAL4_DYN.VAR1="string1" +ROUGAIL.VAL4_DYN.VAR2="string1" +ROUGAIL.VAL4_DYN.VAR3="string1" +ROUGAIL.VAL4_DYN.VAR4="string1" diff --git a/tests/results/60_5family_dynamic_unknown_suffix_empty/file/all_exclude.env b/tests/results/60_5family_dynamic_unknown_suffix_empty/file/all_exclude.env new file mode 100644 index 0000000..86a8573 --- /dev/null +++ b/tests/results/60_5family_dynamic_unknown_suffix_empty/file/all_exclude.env @@ -0,0 +1,16 @@ +ROUGAIL.VAL1_DYN.VAR1="string1" +ROUGAIL.VAL1_DYN.VAR2="string1" +ROUGAIL.VAL1_DYN.VAR3="string1" +ROUGAIL.VAL1_DYN.VAR4="string1" +ROUGAIL.VAL2_DYN.VAR1="string1" +ROUGAIL.VAL2_DYN.VAR2="string1" +ROUGAIL.VAL2_DYN.VAR3="string1" +ROUGAIL.VAL2_DYN.VAR4="string1" +ROUGAIL.VAL3_DYN.VAR1="string1" +ROUGAIL.VAL3_DYN.VAR2="string1" +ROUGAIL.VAL3_DYN.VAR3="string1" +ROUGAIL.VAL3_DYN.VAR4="string1" +ROUGAIL.VAL4_DYN.VAR1="string1" +ROUGAIL.VAL4_DYN.VAR2="string1" +ROUGAIL.VAL4_DYN.VAR3="string1" +ROUGAIL.VAL4_DYN.VAR4="string1" diff --git a/tests/results/60_5family_dynamic_unknown_suffix_empty/file/mandatories.env b/tests/results/60_5family_dynamic_unknown_suffix_empty/file/mandatories.env new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/results/60_5family_dynamic_unknown_suffix_empty/file/mandatories.env @@ -0,0 +1 @@ + diff --git a/tests/results/60_5family_dynamic_unknown_suffix_empty/makedict/all.json b/tests/results/60_5family_dynamic_unknown_suffix_empty/makedict/all.json new file mode 100644 index 0000000..73d23d4 --- /dev/null +++ b/tests/results/60_5family_dynamic_unknown_suffix_empty/makedict/all.json @@ -0,0 +1,24 @@ +{ + "rougail.var": [ + "val1", + "val2", + "val3", + "val4" + ], + "rougail.val1_dyn.var1": "string1", + "rougail.val1_dyn.var2": "string1", + "rougail.val1_dyn.var3": "string1", + "rougail.val1_dyn.var4": "string1", + "rougail.val2_dyn.var1": "string1", + "rougail.val2_dyn.var2": "string1", + "rougail.val2_dyn.var3": "string1", + "rougail.val2_dyn.var4": "string1", + "rougail.val3_dyn.var1": "string1", + "rougail.val3_dyn.var2": "string1", + "rougail.val3_dyn.var3": "string1", + "rougail.val3_dyn.var4": "string1", + "rougail.val4_dyn.var1": "string1", + "rougail.val4_dyn.var2": "string1", + "rougail.val4_dyn.var3": "string1", + "rougail.val4_dyn.var4": "string1" +} diff --git a/tests/results/60_5family_dynamic_unknown_suffix_empty/makedict/mandatories.json b/tests/results/60_5family_dynamic_unknown_suffix_empty/makedict/mandatories.json new file mode 100644 index 0000000..a132f45 --- /dev/null +++ b/tests/results/60_5family_dynamic_unknown_suffix_empty/makedict/mandatories.json @@ -0,0 +1,3 @@ +{ + "rougail.var": [] +} diff --git a/tests/results/60_5family_dynamic_variable_outside/errors/mandatories.json b/tests/results/60_5family_dynamic_variable_outside/errors/mandatories.json index 217db0a..67af2b7 100644 --- a/tests/results/60_5family_dynamic_variable_outside/errors/mandatories.json +++ b/tests/results/60_5family_dynamic_variable_outside/errors/mandatories.json @@ -1,4 +1,8 @@ { - "errors": [], + "errors": [ + "unknown option \"my_dyn_family_string1\" in optiondescription \"rougail\"", + "unknown option \"my_dyn_family_string2\" in optiondescription \"rougail\"", + "unknown option \"my_dyn_family_string3\" in optiondescription \"rougail\"" + ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/60_5family_dynamic_variable_outside/file/all.env b/tests/results/60_5family_dynamic_variable_outside/file/all.env index 19a5700..14a3545 100644 --- a/tests/results/60_5family_dynamic_variable_outside/file/all.env +++ b/tests/results/60_5family_dynamic_variable_outside/file/all.env @@ -1,5 +1,5 @@ -ROUGAIL_VAR="string1,string2,string3" -ROUGAIL_MY_DYN_FAMILY_STRING1.VAR="string1" -ROUGAIL_MY_DYN_FAMILY_STRING2.VAR="string1" -ROUGAIL_MY_DYN_FAMILY_STRING3.VAR="string1" -ROUGAIL_VAR2="string1,string2,string3" +ROUGAIL.VAR="string1,string2,string3" +ROUGAIL.MY_DYN_FAMILY_STRING1.VAR="string1" +ROUGAIL.MY_DYN_FAMILY_STRING2.VAR="string1" +ROUGAIL.MY_DYN_FAMILY_STRING3.VAR="string1" +ROUGAIL.VAR2="string1,string2,string3" diff --git a/tests/results/60_5family_dynamic_variable_outside/file/all_exclude.env b/tests/results/60_5family_dynamic_variable_outside/file/all_exclude.env index 6b32064..153ea81 100644 --- a/tests/results/60_5family_dynamic_variable_outside/file/all_exclude.env +++ b/tests/results/60_5family_dynamic_variable_outside/file/all_exclude.env @@ -1,4 +1,4 @@ -ROUGAIL_MY_DYN_FAMILY_STRING1.VAR="string1" -ROUGAIL_MY_DYN_FAMILY_STRING2.VAR="string1" -ROUGAIL_MY_DYN_FAMILY_STRING3.VAR="string1" -ROUGAIL_VAR2="string1,string2,string3" +ROUGAIL.MY_DYN_FAMILY_STRING1.VAR="string1" +ROUGAIL.MY_DYN_FAMILY_STRING2.VAR="string1" +ROUGAIL.MY_DYN_FAMILY_STRING3.VAR="string1" +ROUGAIL.VAR2="string1,string2,string3" diff --git a/tests/results/60_5family_dynamic_variable_outside2/errors/mandatories.json b/tests/results/60_5family_dynamic_variable_outside2/errors/mandatories.json index 217db0a..67af2b7 100644 --- a/tests/results/60_5family_dynamic_variable_outside2/errors/mandatories.json +++ b/tests/results/60_5family_dynamic_variable_outside2/errors/mandatories.json @@ -1,4 +1,8 @@ { - "errors": [], + "errors": [ + "unknown option \"my_dyn_family_string1\" in optiondescription \"rougail\"", + "unknown option \"my_dyn_family_string2\" in optiondescription \"rougail\"", + "unknown option \"my_dyn_family_string3\" in optiondescription \"rougail\"" + ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/60_5family_dynamic_variable_outside2/file/all.env b/tests/results/60_5family_dynamic_variable_outside2/file/all.env index cdd04b2..b829bb4 100644 --- a/tests/results/60_5family_dynamic_variable_outside2/file/all.env +++ b/tests/results/60_5family_dynamic_variable_outside2/file/all.env @@ -1,5 +1,5 @@ -ROUGAIL_VAR2="string1,string2,string3" -ROUGAIL_VAR="string1,string2,string3" -ROUGAIL_MY_DYN_FAMILY_STRING1.VAR="string1" -ROUGAIL_MY_DYN_FAMILY_STRING2.VAR="string1" -ROUGAIL_MY_DYN_FAMILY_STRING3.VAR="string1" +ROUGAIL.VAR2="string1,string2,string3" +ROUGAIL.VAR="string1,string2,string3" +ROUGAIL.MY_DYN_FAMILY_STRING1.VAR="string1" +ROUGAIL.MY_DYN_FAMILY_STRING2.VAR="string1" +ROUGAIL.MY_DYN_FAMILY_STRING3.VAR="string1" diff --git a/tests/results/60_5family_dynamic_variable_outside2/file/all_exclude.env b/tests/results/60_5family_dynamic_variable_outside2/file/all_exclude.env index 1a8547c..48b461b 100644 --- a/tests/results/60_5family_dynamic_variable_outside2/file/all_exclude.env +++ b/tests/results/60_5family_dynamic_variable_outside2/file/all_exclude.env @@ -1,4 +1,4 @@ -ROUGAIL_VAR2="string1,string2,string3" -ROUGAIL_MY_DYN_FAMILY_STRING1.VAR="string1" -ROUGAIL_MY_DYN_FAMILY_STRING2.VAR="string1" -ROUGAIL_MY_DYN_FAMILY_STRING3.VAR="string1" +ROUGAIL.VAR2="string1,string2,string3" +ROUGAIL.MY_DYN_FAMILY_STRING1.VAR="string1" +ROUGAIL.MY_DYN_FAMILY_STRING2.VAR="string1" +ROUGAIL.MY_DYN_FAMILY_STRING3.VAR="string1" diff --git a/tests/results/60_5family_dynamic_variable_outside2_empty/errors/all.json b/tests/results/60_5family_dynamic_variable_outside2_empty/errors/all.json new file mode 100644 index 0000000..67af2b7 --- /dev/null +++ b/tests/results/60_5family_dynamic_variable_outside2_empty/errors/all.json @@ -0,0 +1,8 @@ +{ + "errors": [ + "unknown option \"my_dyn_family_string1\" in optiondescription \"rougail\"", + "unknown option \"my_dyn_family_string2\" in optiondescription \"rougail\"", + "unknown option \"my_dyn_family_string3\" in optiondescription \"rougail\"" + ], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_5family_dynamic_variable_outside2_empty/errors/mandatories.json b/tests/results/60_5family_dynamic_variable_outside2_empty/errors/mandatories.json new file mode 100644 index 0000000..217db0a --- /dev/null +++ b/tests/results/60_5family_dynamic_variable_outside2_empty/errors/mandatories.json @@ -0,0 +1,4 @@ +{ + "errors": [], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_5family_dynamic_variable_outside2_empty/file/all.env b/tests/results/60_5family_dynamic_variable_outside2_empty/file/all.env new file mode 100644 index 0000000..821376b --- /dev/null +++ b/tests/results/60_5family_dynamic_variable_outside2_empty/file/all.env @@ -0,0 +1,4 @@ +ROUGAIL.VAR2="string1,string2,string3" +ROUGAIL.VAR="val1,val2" +ROUGAIL.MY_DYN_FAMILY_VAL1.VAR="string1" +ROUGAIL.MY_DYN_FAMILY_VAL2.VAR="string1" diff --git a/tests/results/60_5family_dynamic_variable_outside2_empty/file/all_exclude.env b/tests/results/60_5family_dynamic_variable_outside2_empty/file/all_exclude.env new file mode 100644 index 0000000..d619c35 --- /dev/null +++ b/tests/results/60_5family_dynamic_variable_outside2_empty/file/all_exclude.env @@ -0,0 +1,3 @@ +ROUGAIL.VAR2="string1,string2,string3" +ROUGAIL.MY_DYN_FAMILY_VAL1.VAR="string1" +ROUGAIL.MY_DYN_FAMILY_VAL2.VAR="string1" diff --git a/tests/results/60_5family_dynamic_variable_outside2_empty/file/mandatories.env b/tests/results/60_5family_dynamic_variable_outside2_empty/file/mandatories.env new file mode 100644 index 0000000..1e1cc17 --- /dev/null +++ b/tests/results/60_5family_dynamic_variable_outside2_empty/file/mandatories.env @@ -0,0 +1 @@ +ROUGAIL.VAR2="string1,string2,string3" diff --git a/tests/results/60_5family_dynamic_variable_outside2_empty/makedict/all.json b/tests/results/60_5family_dynamic_variable_outside2_empty/makedict/all.json new file mode 100644 index 0000000..828bc63 --- /dev/null +++ b/tests/results/60_5family_dynamic_variable_outside2_empty/makedict/all.json @@ -0,0 +1,13 @@ +{ + "rougail.var2": [ + "string1", + "string2", + "string3" + ], + "rougail.var": [ + "val1", + "val2" + ], + "rougail.my_dyn_family_val1.var": "string1", + "rougail.my_dyn_family_val2.var": "string1" +} diff --git a/tests/results/60_5family_dynamic_variable_outside2_empty/makedict/mandatories.json b/tests/results/60_5family_dynamic_variable_outside2_empty/makedict/mandatories.json new file mode 100644 index 0000000..72705e5 --- /dev/null +++ b/tests/results/60_5family_dynamic_variable_outside2_empty/makedict/mandatories.json @@ -0,0 +1,8 @@ +{ + "rougail.var2": [ + "string1", + "string2", + "string3" + ], + "rougail.var": [] +} diff --git a/tests/results/60_5family_dynamic_variable_outside_empty/errors/all.json b/tests/results/60_5family_dynamic_variable_outside_empty/errors/all.json new file mode 100644 index 0000000..217db0a --- /dev/null +++ b/tests/results/60_5family_dynamic_variable_outside_empty/errors/all.json @@ -0,0 +1,4 @@ +{ + "errors": [], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_5family_dynamic_variable_outside_empty/errors/mandatories.json b/tests/results/60_5family_dynamic_variable_outside_empty/errors/mandatories.json new file mode 100644 index 0000000..217db0a --- /dev/null +++ b/tests/results/60_5family_dynamic_variable_outside_empty/errors/mandatories.json @@ -0,0 +1,4 @@ +{ + "errors": [], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_5family_dynamic_variable_outside_empty/file/all.env b/tests/results/60_5family_dynamic_variable_outside_empty/file/all.env new file mode 100644 index 0000000..dbc5b48 --- /dev/null +++ b/tests/results/60_5family_dynamic_variable_outside_empty/file/all.env @@ -0,0 +1,4 @@ +ROUGAIL.VAR="val1,val2" +ROUGAIL.MY_DYN_FAMILY_VAL1.VAR="string1" +ROUGAIL.MY_DYN_FAMILY_VAL2.VAR="string1" +ROUGAIL.VAR2="string1,string2,string3" diff --git a/tests/results/60_5family_dynamic_variable_outside_empty/file/all_exclude.env b/tests/results/60_5family_dynamic_variable_outside_empty/file/all_exclude.env new file mode 100644 index 0000000..e71b7f5 --- /dev/null +++ b/tests/results/60_5family_dynamic_variable_outside_empty/file/all_exclude.env @@ -0,0 +1,3 @@ +ROUGAIL.MY_DYN_FAMILY_VAL1.VAR="string1" +ROUGAIL.MY_DYN_FAMILY_VAL2.VAR="string1" +ROUGAIL.VAR2="string1,string2,string3" diff --git a/tests/results/60_5family_dynamic_variable_outside_empty/file/mandatories.env b/tests/results/60_5family_dynamic_variable_outside_empty/file/mandatories.env new file mode 100644 index 0000000..1e1cc17 --- /dev/null +++ b/tests/results/60_5family_dynamic_variable_outside_empty/file/mandatories.env @@ -0,0 +1 @@ +ROUGAIL.VAR2="string1,string2,string3" diff --git a/tests/results/60_5family_dynamic_variable_outside_empty/makedict/all.json b/tests/results/60_5family_dynamic_variable_outside_empty/makedict/all.json new file mode 100644 index 0000000..4aecf75 --- /dev/null +++ b/tests/results/60_5family_dynamic_variable_outside_empty/makedict/all.json @@ -0,0 +1,13 @@ +{ + "rougail.var": [ + "val1", + "val2" + ], + "rougail.my_dyn_family_val1.var": "string1", + "rougail.my_dyn_family_val2.var": "string1", + "rougail.var2": [ + "string1", + "string2", + "string3" + ] +} diff --git a/tests/results/60_5family_dynamic_variable_outside_empty/makedict/mandatories.json b/tests/results/60_5family_dynamic_variable_outside_empty/makedict/mandatories.json new file mode 100644 index 0000000..2a8dfb7 --- /dev/null +++ b/tests/results/60_5family_dynamic_variable_outside_empty/makedict/mandatories.json @@ -0,0 +1,8 @@ +{ + "rougail.var": [], + "rougail.var2": [ + "string1", + "string2", + "string3" + ] +} diff --git a/tests/results/60_5family_dynamic_variable_outside_jinja/errors/mandatories.json b/tests/results/60_5family_dynamic_variable_outside_jinja/errors/mandatories.json index 217db0a..67af2b7 100644 --- a/tests/results/60_5family_dynamic_variable_outside_jinja/errors/mandatories.json +++ b/tests/results/60_5family_dynamic_variable_outside_jinja/errors/mandatories.json @@ -1,4 +1,8 @@ { - "errors": [], + "errors": [ + "unknown option \"my_dyn_family_string1\" in optiondescription \"rougail\"", + "unknown option \"my_dyn_family_string2\" in optiondescription \"rougail\"", + "unknown option \"my_dyn_family_string3\" in optiondescription \"rougail\"" + ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/60_5family_dynamic_variable_outside_jinja/file/all.env b/tests/results/60_5family_dynamic_variable_outside_jinja/file/all.env index 19a5700..14a3545 100644 --- a/tests/results/60_5family_dynamic_variable_outside_jinja/file/all.env +++ b/tests/results/60_5family_dynamic_variable_outside_jinja/file/all.env @@ -1,5 +1,5 @@ -ROUGAIL_VAR="string1,string2,string3" -ROUGAIL_MY_DYN_FAMILY_STRING1.VAR="string1" -ROUGAIL_MY_DYN_FAMILY_STRING2.VAR="string1" -ROUGAIL_MY_DYN_FAMILY_STRING3.VAR="string1" -ROUGAIL_VAR2="string1,string2,string3" +ROUGAIL.VAR="string1,string2,string3" +ROUGAIL.MY_DYN_FAMILY_STRING1.VAR="string1" +ROUGAIL.MY_DYN_FAMILY_STRING2.VAR="string1" +ROUGAIL.MY_DYN_FAMILY_STRING3.VAR="string1" +ROUGAIL.VAR2="string1,string2,string3" diff --git a/tests/results/60_5family_dynamic_variable_outside_jinja/file/all_exclude.env b/tests/results/60_5family_dynamic_variable_outside_jinja/file/all_exclude.env index 6b32064..153ea81 100644 --- a/tests/results/60_5family_dynamic_variable_outside_jinja/file/all_exclude.env +++ b/tests/results/60_5family_dynamic_variable_outside_jinja/file/all_exclude.env @@ -1,4 +1,4 @@ -ROUGAIL_MY_DYN_FAMILY_STRING1.VAR="string1" -ROUGAIL_MY_DYN_FAMILY_STRING2.VAR="string1" -ROUGAIL_MY_DYN_FAMILY_STRING3.VAR="string1" -ROUGAIL_VAR2="string1,string2,string3" +ROUGAIL.MY_DYN_FAMILY_STRING1.VAR="string1" +ROUGAIL.MY_DYN_FAMILY_STRING2.VAR="string1" +ROUGAIL.MY_DYN_FAMILY_STRING3.VAR="string1" +ROUGAIL.VAR2="string1,string2,string3" diff --git a/tests/results/60_5family_dynamic_variable_outside_jinja_empty/errors/all.json b/tests/results/60_5family_dynamic_variable_outside_jinja_empty/errors/all.json new file mode 100644 index 0000000..67af2b7 --- /dev/null +++ b/tests/results/60_5family_dynamic_variable_outside_jinja_empty/errors/all.json @@ -0,0 +1,8 @@ +{ + "errors": [ + "unknown option \"my_dyn_family_string1\" in optiondescription \"rougail\"", + "unknown option \"my_dyn_family_string2\" in optiondescription \"rougail\"", + "unknown option \"my_dyn_family_string3\" in optiondescription \"rougail\"" + ], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_5family_dynamic_variable_outside_jinja_empty/errors/mandatories.json b/tests/results/60_5family_dynamic_variable_outside_jinja_empty/errors/mandatories.json new file mode 100644 index 0000000..217db0a --- /dev/null +++ b/tests/results/60_5family_dynamic_variable_outside_jinja_empty/errors/mandatories.json @@ -0,0 +1,4 @@ +{ + "errors": [], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_5family_dynamic_variable_outside_jinja_empty/file/all.env b/tests/results/60_5family_dynamic_variable_outside_jinja_empty/file/all.env new file mode 100644 index 0000000..dbc5b48 --- /dev/null +++ b/tests/results/60_5family_dynamic_variable_outside_jinja_empty/file/all.env @@ -0,0 +1,4 @@ +ROUGAIL.VAR="val1,val2" +ROUGAIL.MY_DYN_FAMILY_VAL1.VAR="string1" +ROUGAIL.MY_DYN_FAMILY_VAL2.VAR="string1" +ROUGAIL.VAR2="string1,string2,string3" diff --git a/tests/results/60_5family_dynamic_variable_outside_jinja_empty/file/all_exclude.env b/tests/results/60_5family_dynamic_variable_outside_jinja_empty/file/all_exclude.env new file mode 100644 index 0000000..e71b7f5 --- /dev/null +++ b/tests/results/60_5family_dynamic_variable_outside_jinja_empty/file/all_exclude.env @@ -0,0 +1,3 @@ +ROUGAIL.MY_DYN_FAMILY_VAL1.VAR="string1" +ROUGAIL.MY_DYN_FAMILY_VAL2.VAR="string1" +ROUGAIL.VAR2="string1,string2,string3" diff --git a/tests/results/60_5family_dynamic_variable_outside_jinja_empty/file/mandatories.env b/tests/results/60_5family_dynamic_variable_outside_jinja_empty/file/mandatories.env new file mode 100644 index 0000000..1e1cc17 --- /dev/null +++ b/tests/results/60_5family_dynamic_variable_outside_jinja_empty/file/mandatories.env @@ -0,0 +1 @@ +ROUGAIL.VAR2="string1,string2,string3" diff --git a/tests/results/60_5family_dynamic_variable_outside_jinja_empty/makedict/all.json b/tests/results/60_5family_dynamic_variable_outside_jinja_empty/makedict/all.json new file mode 100644 index 0000000..4aecf75 --- /dev/null +++ b/tests/results/60_5family_dynamic_variable_outside_jinja_empty/makedict/all.json @@ -0,0 +1,13 @@ +{ + "rougail.var": [ + "val1", + "val2" + ], + "rougail.my_dyn_family_val1.var": "string1", + "rougail.my_dyn_family_val2.var": "string1", + "rougail.var2": [ + "string1", + "string2", + "string3" + ] +} diff --git a/tests/results/60_5family_dynamic_variable_outside_jinja_empty/makedict/mandatories.json b/tests/results/60_5family_dynamic_variable_outside_jinja_empty/makedict/mandatories.json new file mode 100644 index 0000000..2a8dfb7 --- /dev/null +++ b/tests/results/60_5family_dynamic_variable_outside_jinja_empty/makedict/mandatories.json @@ -0,0 +1,8 @@ +{ + "rougail.var": [], + "rougail.var2": [ + "string1", + "string2", + "string3" + ] +} diff --git a/tests/results/60_5family_dynamic_variable_outside_sub_suffix/errors/all.json b/tests/results/60_5family_dynamic_variable_outside_sub_suffix/errors/all.json index 217db0a..5e3fa36 100644 --- a/tests/results/60_5family_dynamic_variable_outside_sub_suffix/errors/all.json +++ b/tests/results/60_5family_dynamic_variable_outside_sub_suffix/errors/all.json @@ -1,4 +1,7 @@ { - "errors": [], + "errors": [ + "unknown option \"my_dyn_family_val1\" in optiondescription \"rougail\"", + "unknown option \"my_dyn_family_val2\" in optiondescription \"rougail\"" + ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/60_5family_dynamic_variable_outside_sub_suffix/errors/mandatories.json b/tests/results/60_5family_dynamic_variable_outside_sub_suffix/errors/mandatories.json index 217db0a..00a091e 100644 --- a/tests/results/60_5family_dynamic_variable_outside_sub_suffix/errors/mandatories.json +++ b/tests/results/60_5family_dynamic_variable_outside_sub_suffix/errors/mandatories.json @@ -1,4 +1,14 @@ { - "errors": [], + "errors": [ + "unknown option \"my_dyn_family_string1\" in optiondescription \"rougail\"", + "unknown option \"my_dyn_family_string1\" in optiondescription \"rougail\"", + "unknown option \"my_dyn_family_string1\" in optiondescription \"rougail\"", + "unknown option \"my_dyn_family_string2\" in optiondescription \"rougail\"", + "unknown option \"my_dyn_family_string2\" in optiondescription \"rougail\"", + "unknown option \"my_dyn_family_string2\" in optiondescription \"rougail\"", + "unknown option \"my_dyn_family_string3\" in optiondescription \"rougail\"", + "unknown option \"my_dyn_family_string3\" in optiondescription \"rougail\"", + "unknown option \"my_dyn_family_string3\" in optiondescription \"rougail\"" + ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/60_5family_dynamic_variable_outside_sub_suffix/file/all.env b/tests/results/60_5family_dynamic_variable_outside_sub_suffix/file/all.env index d62b997..a2ec0d6 100644 --- a/tests/results/60_5family_dynamic_variable_outside_sub_suffix/file/all.env +++ b/tests/results/60_5family_dynamic_variable_outside_sub_suffix/file/all.env @@ -1,11 +1,11 @@ -ROUGAIL_VAR="string1,string2,string3" -ROUGAIL_MY_DYN_FAMILY_STRING1.SUBDYN_STRING1.VAR="string1" -ROUGAIL_MY_DYN_FAMILY_STRING1.SUBDYN_STRING2.VAR="string1" -ROUGAIL_MY_DYN_FAMILY_STRING1.SUBDYN_STRING3.VAR="string1" -ROUGAIL_MY_DYN_FAMILY_STRING2.SUBDYN_STRING1.VAR="string1" -ROUGAIL_MY_DYN_FAMILY_STRING2.SUBDYN_STRING2.VAR="string1" -ROUGAIL_MY_DYN_FAMILY_STRING2.SUBDYN_STRING3.VAR="string1" -ROUGAIL_MY_DYN_FAMILY_STRING3.SUBDYN_STRING1.VAR="string1" -ROUGAIL_MY_DYN_FAMILY_STRING3.SUBDYN_STRING2.VAR="string1" -ROUGAIL_MY_DYN_FAMILY_STRING3.SUBDYN_STRING3.VAR="string1" -ROUGAIL_VAR2="string1,string2,string3" +ROUGAIL.VAR="string1,string2,string3" +ROUGAIL.MY_DYN_FAMILY_STRING1.SUBDYN_STRING1.VAR="string1" +ROUGAIL.MY_DYN_FAMILY_STRING1.SUBDYN_STRING2.VAR="string1" +ROUGAIL.MY_DYN_FAMILY_STRING1.SUBDYN_STRING3.VAR="string1" +ROUGAIL.MY_DYN_FAMILY_STRING2.SUBDYN_STRING1.VAR="string1" +ROUGAIL.MY_DYN_FAMILY_STRING2.SUBDYN_STRING2.VAR="string1" +ROUGAIL.MY_DYN_FAMILY_STRING2.SUBDYN_STRING3.VAR="string1" +ROUGAIL.MY_DYN_FAMILY_STRING3.SUBDYN_STRING1.VAR="string1" +ROUGAIL.MY_DYN_FAMILY_STRING3.SUBDYN_STRING2.VAR="string1" +ROUGAIL.MY_DYN_FAMILY_STRING3.SUBDYN_STRING3.VAR="string1" +ROUGAIL.VAR2="string1,string2,string3" diff --git a/tests/results/60_5family_dynamic_variable_outside_sub_suffix/file/all_exclude.env b/tests/results/60_5family_dynamic_variable_outside_sub_suffix/file/all_exclude.env index ce510fe..f5ab831 100644 --- a/tests/results/60_5family_dynamic_variable_outside_sub_suffix/file/all_exclude.env +++ b/tests/results/60_5family_dynamic_variable_outside_sub_suffix/file/all_exclude.env @@ -1,10 +1,10 @@ -ROUGAIL_MY_DYN_FAMILY_STRING1.SUBDYN_STRING1.VAR="string1" -ROUGAIL_MY_DYN_FAMILY_STRING1.SUBDYN_STRING2.VAR="string1" -ROUGAIL_MY_DYN_FAMILY_STRING1.SUBDYN_STRING3.VAR="string1" -ROUGAIL_MY_DYN_FAMILY_STRING2.SUBDYN_STRING1.VAR="string1" -ROUGAIL_MY_DYN_FAMILY_STRING2.SUBDYN_STRING2.VAR="string1" -ROUGAIL_MY_DYN_FAMILY_STRING2.SUBDYN_STRING3.VAR="string1" -ROUGAIL_MY_DYN_FAMILY_STRING3.SUBDYN_STRING1.VAR="string1" -ROUGAIL_MY_DYN_FAMILY_STRING3.SUBDYN_STRING2.VAR="string1" -ROUGAIL_MY_DYN_FAMILY_STRING3.SUBDYN_STRING3.VAR="string1" -ROUGAIL_VAR2="string1,string2,string3" +ROUGAIL.MY_DYN_FAMILY_STRING1.SUBDYN_STRING1.VAR="string1" +ROUGAIL.MY_DYN_FAMILY_STRING1.SUBDYN_STRING2.VAR="string1" +ROUGAIL.MY_DYN_FAMILY_STRING1.SUBDYN_STRING3.VAR="string1" +ROUGAIL.MY_DYN_FAMILY_STRING2.SUBDYN_STRING1.VAR="string1" +ROUGAIL.MY_DYN_FAMILY_STRING2.SUBDYN_STRING2.VAR="string1" +ROUGAIL.MY_DYN_FAMILY_STRING2.SUBDYN_STRING3.VAR="string1" +ROUGAIL.MY_DYN_FAMILY_STRING3.SUBDYN_STRING1.VAR="string1" +ROUGAIL.MY_DYN_FAMILY_STRING3.SUBDYN_STRING2.VAR="string1" +ROUGAIL.MY_DYN_FAMILY_STRING3.SUBDYN_STRING3.VAR="string1" +ROUGAIL.VAR2="string1,string2,string3" diff --git a/tests/results/60_5family_dynamic_variable_outside_sub_suffix_empty/errors/all.json b/tests/results/60_5family_dynamic_variable_outside_sub_suffix_empty/errors/all.json new file mode 100644 index 0000000..00a091e --- /dev/null +++ b/tests/results/60_5family_dynamic_variable_outside_sub_suffix_empty/errors/all.json @@ -0,0 +1,14 @@ +{ + "errors": [ + "unknown option \"my_dyn_family_string1\" in optiondescription \"rougail\"", + "unknown option \"my_dyn_family_string1\" in optiondescription \"rougail\"", + "unknown option \"my_dyn_family_string1\" in optiondescription \"rougail\"", + "unknown option \"my_dyn_family_string2\" in optiondescription \"rougail\"", + "unknown option \"my_dyn_family_string2\" in optiondescription \"rougail\"", + "unknown option \"my_dyn_family_string2\" in optiondescription \"rougail\"", + "unknown option \"my_dyn_family_string3\" in optiondescription \"rougail\"", + "unknown option \"my_dyn_family_string3\" in optiondescription \"rougail\"", + "unknown option \"my_dyn_family_string3\" in optiondescription \"rougail\"" + ], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_5family_dynamic_variable_outside_sub_suffix_empty/errors/mandatories.json b/tests/results/60_5family_dynamic_variable_outside_sub_suffix_empty/errors/mandatories.json new file mode 100644 index 0000000..217db0a --- /dev/null +++ b/tests/results/60_5family_dynamic_variable_outside_sub_suffix_empty/errors/mandatories.json @@ -0,0 +1,4 @@ +{ + "errors": [], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_5family_dynamic_variable_outside_sub_suffix_empty/file/all.env b/tests/results/60_5family_dynamic_variable_outside_sub_suffix_empty/file/all.env new file mode 100644 index 0000000..ad7fd05 --- /dev/null +++ b/tests/results/60_5family_dynamic_variable_outside_sub_suffix_empty/file/all.env @@ -0,0 +1,6 @@ +ROUGAIL.VAR="val1,val2" +ROUGAIL.MY_DYN_FAMILY_VAL1.SUBDYN_VAL1.VAR="string1" +ROUGAIL.MY_DYN_FAMILY_VAL1.SUBDYN_VAL2.VAR="string1" +ROUGAIL.MY_DYN_FAMILY_VAL2.SUBDYN_VAL1.VAR="string1" +ROUGAIL.MY_DYN_FAMILY_VAL2.SUBDYN_VAL2.VAR="string1" +ROUGAIL.VAR2="string1,string2,string3" diff --git a/tests/results/60_5family_dynamic_variable_outside_sub_suffix_empty/file/all_exclude.env b/tests/results/60_5family_dynamic_variable_outside_sub_suffix_empty/file/all_exclude.env new file mode 100644 index 0000000..8ea6d41 --- /dev/null +++ b/tests/results/60_5family_dynamic_variable_outside_sub_suffix_empty/file/all_exclude.env @@ -0,0 +1,5 @@ +ROUGAIL.MY_DYN_FAMILY_VAL1.SUBDYN_VAL1.VAR="string1" +ROUGAIL.MY_DYN_FAMILY_VAL1.SUBDYN_VAL2.VAR="string1" +ROUGAIL.MY_DYN_FAMILY_VAL2.SUBDYN_VAL1.VAR="string1" +ROUGAIL.MY_DYN_FAMILY_VAL2.SUBDYN_VAL2.VAR="string1" +ROUGAIL.VAR2="string1,string2,string3" diff --git a/tests/results/60_5family_dynamic_variable_outside_sub_suffix_empty/file/mandatories.env b/tests/results/60_5family_dynamic_variable_outside_sub_suffix_empty/file/mandatories.env new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/results/60_5family_dynamic_variable_outside_sub_suffix_empty/file/mandatories.env @@ -0,0 +1 @@ + diff --git a/tests/results/60_5family_dynamic_variable_outside_sub_suffix_empty/makedict/all.json b/tests/results/60_5family_dynamic_variable_outside_sub_suffix_empty/makedict/all.json new file mode 100644 index 0000000..316604c --- /dev/null +++ b/tests/results/60_5family_dynamic_variable_outside_sub_suffix_empty/makedict/all.json @@ -0,0 +1,15 @@ +{ + "rougail.var": [ + "val1", + "val2" + ], + "rougail.my_dyn_family_val1.subdyn_val1.var": "string1", + "rougail.my_dyn_family_val1.subdyn_val2.var": "string1", + "rougail.my_dyn_family_val2.subdyn_val1.var": "string1", + "rougail.my_dyn_family_val2.subdyn_val2.var": "string1", + "rougail.var2": [ + "string1", + "string2", + "string3" + ] +} diff --git a/tests/results/60_5family_dynamic_variable_outside_sub_suffix_empty/makedict/mandatories.json b/tests/results/60_5family_dynamic_variable_outside_sub_suffix_empty/makedict/mandatories.json new file mode 100644 index 0000000..287085a --- /dev/null +++ b/tests/results/60_5family_dynamic_variable_outside_sub_suffix_empty/makedict/mandatories.json @@ -0,0 +1,4 @@ +{ + "rougail.var": [], + "rougail.var2": [] +} diff --git a/tests/results/60_5family_dynamic_variable_outside_suffix/errors/all.json b/tests/results/60_5family_dynamic_variable_outside_suffix/errors/all.json index 217db0a..6315c24 100644 --- a/tests/results/60_5family_dynamic_variable_outside_suffix/errors/all.json +++ b/tests/results/60_5family_dynamic_variable_outside_suffix/errors/all.json @@ -1,4 +1,9 @@ { - "errors": [], + "errors": [ + "unknown option \"my_dyn_family_val1\" in optiondescription \"rougail\"", + "unknown option \"my_dyn_family_val1\" in optiondescription \"rougail\"", + "unknown option \"my_dyn_family_val2\" in optiondescription \"rougail\"", + "unknown option \"my_dyn_family_val2\" in optiondescription \"rougail\"" + ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/60_5family_dynamic_variable_outside_suffix/errors/mandatories.json b/tests/results/60_5family_dynamic_variable_outside_suffix/errors/mandatories.json index 217db0a..6315c24 100644 --- a/tests/results/60_5family_dynamic_variable_outside_suffix/errors/mandatories.json +++ b/tests/results/60_5family_dynamic_variable_outside_suffix/errors/mandatories.json @@ -1,4 +1,9 @@ { - "errors": [], + "errors": [ + "unknown option \"my_dyn_family_val1\" in optiondescription \"rougail\"", + "unknown option \"my_dyn_family_val1\" in optiondescription \"rougail\"", + "unknown option \"my_dyn_family_val2\" in optiondescription \"rougail\"", + "unknown option \"my_dyn_family_val2\" in optiondescription \"rougail\"" + ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/60_5family_dynamic_variable_outside_suffix/file/all.env b/tests/results/60_5family_dynamic_variable_outside_suffix/file/all.env index 9cc2a48..dadcc49 100644 --- a/tests/results/60_5family_dynamic_variable_outside_suffix/file/all.env +++ b/tests/results/60_5family_dynamic_variable_outside_suffix/file/all.env @@ -1,5 +1,5 @@ -ROUGAIL_VAR="string1,string2,string3" -ROUGAIL_DYN_STRING1.VAR="string1" -ROUGAIL_DYN_STRING2.VAR="string1" -ROUGAIL_DYN_STRING3.VAR="string1" -ROUGAIL_VAR2="string1" +ROUGAIL.VAR="string1,string2,string3" +ROUGAIL.DYN_STRING1.VAR="string1" +ROUGAIL.DYN_STRING2.VAR="string1" +ROUGAIL.DYN_STRING3.VAR="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/60_5family_dynamic_variable_outside_suffix/file/all_exclude.env b/tests/results/60_5family_dynamic_variable_outside_suffix/file/all_exclude.env index d49b9a6..a57d08c 100644 --- a/tests/results/60_5family_dynamic_variable_outside_suffix/file/all_exclude.env +++ b/tests/results/60_5family_dynamic_variable_outside_suffix/file/all_exclude.env @@ -1,4 +1,4 @@ -ROUGAIL_DYN_STRING1.VAR="string1" -ROUGAIL_DYN_STRING2.VAR="string1" -ROUGAIL_DYN_STRING3.VAR="string1" -ROUGAIL_VAR2="string1" +ROUGAIL.DYN_STRING1.VAR="string1" +ROUGAIL.DYN_STRING2.VAR="string1" +ROUGAIL.DYN_STRING3.VAR="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/60_5family_dynamic_variable_outside_suffix_empty/errors/all.json b/tests/results/60_5family_dynamic_variable_outside_suffix_empty/errors/all.json new file mode 100644 index 0000000..e91f117 --- /dev/null +++ b/tests/results/60_5family_dynamic_variable_outside_suffix_empty/errors/all.json @@ -0,0 +1,11 @@ +{ + "errors": [ + "unknown option \"my_dyn_family_val1\" in optiondescription \"rougail\"", + "unknown option \"my_dyn_family_val1\" in optiondescription \"rougail\"", + "unknown option \"my_dyn_family_val2\" in optiondescription \"rougail\"", + "unknown option \"my_dyn_family_val2\" in optiondescription \"rougail\"", + "unknown option \"dyn_val1\" in optiondescription \"rougail\"", + "unknown option \"dyn_val2\" in optiondescription \"rougail\"" + ], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_5family_dynamic_variable_outside_suffix_empty/errors/mandatories.json b/tests/results/60_5family_dynamic_variable_outside_suffix_empty/errors/mandatories.json new file mode 100644 index 0000000..e91f117 --- /dev/null +++ b/tests/results/60_5family_dynamic_variable_outside_suffix_empty/errors/mandatories.json @@ -0,0 +1,11 @@ +{ + "errors": [ + "unknown option \"my_dyn_family_val1\" in optiondescription \"rougail\"", + "unknown option \"my_dyn_family_val1\" in optiondescription \"rougail\"", + "unknown option \"my_dyn_family_val2\" in optiondescription \"rougail\"", + "unknown option \"my_dyn_family_val2\" in optiondescription \"rougail\"", + "unknown option \"dyn_val1\" in optiondescription \"rougail\"", + "unknown option \"dyn_val2\" in optiondescription \"rougail\"" + ], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_5family_dynamic_variable_outside_suffix_empty/file/all.env b/tests/results/60_5family_dynamic_variable_outside_suffix_empty/file/all.env new file mode 100644 index 0000000..72a1683 --- /dev/null +++ b/tests/results/60_5family_dynamic_variable_outside_suffix_empty/file/all.env @@ -0,0 +1,4 @@ +ROUGAIL.VAR="val1,val2" +ROUGAIL.DYN_VAL1.VAR="string1" +ROUGAIL.DYN_VAL2.VAR="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/60_5family_dynamic_variable_outside_suffix_empty/file/all_exclude.env b/tests/results/60_5family_dynamic_variable_outside_suffix_empty/file/all_exclude.env new file mode 100644 index 0000000..9fa1365 --- /dev/null +++ b/tests/results/60_5family_dynamic_variable_outside_suffix_empty/file/all_exclude.env @@ -0,0 +1,3 @@ +ROUGAIL.DYN_VAL1.VAR="string1" +ROUGAIL.DYN_VAL2.VAR="string1" +ROUGAIL.VAR2="string1" diff --git a/tests/results/60_5family_dynamic_variable_outside_suffix_empty/file/mandatories.env b/tests/results/60_5family_dynamic_variable_outside_suffix_empty/file/mandatories.env new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/results/60_5family_dynamic_variable_outside_suffix_empty/file/mandatories.env @@ -0,0 +1 @@ + diff --git a/tests/results/60_5family_dynamic_variable_outside_suffix_empty/makedict/all.json b/tests/results/60_5family_dynamic_variable_outside_suffix_empty/makedict/all.json new file mode 100644 index 0000000..d7e0644 --- /dev/null +++ b/tests/results/60_5family_dynamic_variable_outside_suffix_empty/makedict/all.json @@ -0,0 +1,9 @@ +{ + "rougail.var": [ + "val1", + "val2" + ], + "rougail.dyn_val1.var": "string1", + "rougail.dyn_val2.var": "string1", + "rougail.var2": "string1" +} diff --git a/tests/results/60_5family_dynamic_variable_outside_suffix_empty/makedict/mandatories.json b/tests/results/60_5family_dynamic_variable_outside_suffix_empty/makedict/mandatories.json new file mode 100644 index 0000000..cd9083c --- /dev/null +++ b/tests/results/60_5family_dynamic_variable_outside_suffix_empty/makedict/mandatories.json @@ -0,0 +1,4 @@ +{ + "rougail.var": [], + "rougail.var2": null +} diff --git a/tests/results/60_6family_dynamic_inside/errors/all.json b/tests/results/60_6family_dynamic_inside/errors/all.json index 217db0a..fc62ed1 100644 --- a/tests/results/60_6family_dynamic_inside/errors/all.json +++ b/tests/results/60_6family_dynamic_inside/errors/all.json @@ -1,4 +1,15 @@ { - "errors": [], + "errors": [ + "unknown option \"my_dyn_family_val1\" in optiondescription \"rougail\"", + "unknown option \"my_dyn_family_val1\" in optiondescription \"rougail\"", + "unknown option \"my_dyn_family_val2\" in optiondescription \"rougail\"", + "unknown option \"my_dyn_family_val2\" in optiondescription \"rougail\"", + "unknown option \"var2\" in optiondescription \"rougail\"", + "unknown option \"dyn_string1\" in optiondescription \"rougail\"", + "unknown option \"dyn_string2\" in optiondescription \"rougail\"", + "unknown option \"dyn_string3\" in optiondescription \"rougail\"", + "unknown option \"dyn_val1\" in optiondescription \"rougail\"", + "unknown option \"dyn_val2\" in optiondescription \"rougail\"" + ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/60_6family_dynamic_inside/errors/mandatories.json b/tests/results/60_6family_dynamic_inside/errors/mandatories.json index 217db0a..3862f0b 100644 --- a/tests/results/60_6family_dynamic_inside/errors/mandatories.json +++ b/tests/results/60_6family_dynamic_inside/errors/mandatories.json @@ -1,4 +1,17 @@ { - "errors": [], + "errors": [ + "unknown option \"string1_dyn\" in optiondescription \"rougail\"", + "unknown option \"string1_dyn\" in optiondescription \"rougail\"", + "unknown option \"string1_dyn\" in optiondescription \"rougail\"", + "unknown option \"string1_dyn\" in optiondescription \"rougail\"", + "unknown option \"string2_dyn\" in optiondescription \"rougail\"", + "unknown option \"string2_dyn\" in optiondescription \"rougail\"", + "unknown option \"string2_dyn\" in optiondescription \"rougail\"", + "unknown option \"string2_dyn\" in optiondescription \"rougail\"", + "unknown option \"string3_dyn\" in optiondescription \"rougail\"", + "unknown option \"string3_dyn\" in optiondescription \"rougail\"", + "unknown option \"string3_dyn\" in optiondescription \"rougail\"", + "unknown option \"string3_dyn\" in optiondescription \"rougail\"" + ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/60_6family_dynamic_inside/file/all.env b/tests/results/60_6family_dynamic_inside/file/all.env index 281c641..9d25cd5 100644 --- a/tests/results/60_6family_dynamic_inside/file/all.env +++ b/tests/results/60_6family_dynamic_inside/file/all.env @@ -1,13 +1,13 @@ -ROUGAIL_VAR="string1,string2,string3" -ROUGAIL_STRING1_DYN.VAR1="string1" -ROUGAIL_STRING1_DYN.VAR2="string1" -ROUGAIL_STRING1_DYN.VAR3="string1" -ROUGAIL_STRING1_DYN.VAR4="string1" -ROUGAIL_STRING2_DYN.VAR1="string1" -ROUGAIL_STRING2_DYN.VAR2="string1" -ROUGAIL_STRING2_DYN.VAR3="string1" -ROUGAIL_STRING2_DYN.VAR4="string1" -ROUGAIL_STRING3_DYN.VAR1="string1" -ROUGAIL_STRING3_DYN.VAR2="string1" -ROUGAIL_STRING3_DYN.VAR3="string1" -ROUGAIL_STRING3_DYN.VAR4="string1" +ROUGAIL.VAR="string1,string2,string3" +ROUGAIL.STRING1_DYN.VAR1="string1" +ROUGAIL.STRING1_DYN.VAR2="string1" +ROUGAIL.STRING1_DYN.VAR3="string1" +ROUGAIL.STRING1_DYN.VAR4="string1" +ROUGAIL.STRING2_DYN.VAR1="string1" +ROUGAIL.STRING2_DYN.VAR2="string1" +ROUGAIL.STRING2_DYN.VAR3="string1" +ROUGAIL.STRING2_DYN.VAR4="string1" +ROUGAIL.STRING3_DYN.VAR1="string1" +ROUGAIL.STRING3_DYN.VAR2="string1" +ROUGAIL.STRING3_DYN.VAR3="string1" +ROUGAIL.STRING3_DYN.VAR4="string1" diff --git a/tests/results/60_6family_dynamic_inside/file/all_exclude.env b/tests/results/60_6family_dynamic_inside/file/all_exclude.env index 4e63e8a..539825c 100644 --- a/tests/results/60_6family_dynamic_inside/file/all_exclude.env +++ b/tests/results/60_6family_dynamic_inside/file/all_exclude.env @@ -1,12 +1,12 @@ -ROUGAIL_STRING1_DYN.VAR1="string1" -ROUGAIL_STRING1_DYN.VAR2="string1" -ROUGAIL_STRING1_DYN.VAR3="string1" -ROUGAIL_STRING1_DYN.VAR4="string1" -ROUGAIL_STRING2_DYN.VAR1="string1" -ROUGAIL_STRING2_DYN.VAR2="string1" -ROUGAIL_STRING2_DYN.VAR3="string1" -ROUGAIL_STRING2_DYN.VAR4="string1" -ROUGAIL_STRING3_DYN.VAR1="string1" -ROUGAIL_STRING3_DYN.VAR2="string1" -ROUGAIL_STRING3_DYN.VAR3="string1" -ROUGAIL_STRING3_DYN.VAR4="string1" +ROUGAIL.STRING1_DYN.VAR1="string1" +ROUGAIL.STRING1_DYN.VAR2="string1" +ROUGAIL.STRING1_DYN.VAR3="string1" +ROUGAIL.STRING1_DYN.VAR4="string1" +ROUGAIL.STRING2_DYN.VAR1="string1" +ROUGAIL.STRING2_DYN.VAR2="string1" +ROUGAIL.STRING2_DYN.VAR3="string1" +ROUGAIL.STRING2_DYN.VAR4="string1" +ROUGAIL.STRING3_DYN.VAR1="string1" +ROUGAIL.STRING3_DYN.VAR2="string1" +ROUGAIL.STRING3_DYN.VAR3="string1" +ROUGAIL.STRING3_DYN.VAR4="string1" diff --git a/tests/results/60_6family_dynamic_inside_empty/errors/all.json b/tests/results/60_6family_dynamic_inside_empty/errors/all.json new file mode 100644 index 0000000..217db0a --- /dev/null +++ b/tests/results/60_6family_dynamic_inside_empty/errors/all.json @@ -0,0 +1,4 @@ +{ + "errors": [], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_6family_dynamic_inside_empty/errors/mandatories.json b/tests/results/60_6family_dynamic_inside_empty/errors/mandatories.json new file mode 100644 index 0000000..217db0a --- /dev/null +++ b/tests/results/60_6family_dynamic_inside_empty/errors/mandatories.json @@ -0,0 +1,4 @@ +{ + "errors": [], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_6family_dynamic_inside_empty/file/all.env b/tests/results/60_6family_dynamic_inside_empty/file/all.env new file mode 100644 index 0000000..a7dc0b1 --- /dev/null +++ b/tests/results/60_6family_dynamic_inside_empty/file/all.env @@ -0,0 +1,9 @@ +ROUGAIL.VAR="val1,val2" +ROUGAIL.VAL1_DYN.VAR1="string1" +ROUGAIL.VAL1_DYN.VAR2="string1" +ROUGAIL.VAL1_DYN.VAR3="string1" +ROUGAIL.VAL1_DYN.VAR4="string1" +ROUGAIL.VAL2_DYN.VAR1="string1" +ROUGAIL.VAL2_DYN.VAR2="string1" +ROUGAIL.VAL2_DYN.VAR3="string1" +ROUGAIL.VAL2_DYN.VAR4="string1" diff --git a/tests/results/60_6family_dynamic_inside_empty/file/all_exclude.env b/tests/results/60_6family_dynamic_inside_empty/file/all_exclude.env new file mode 100644 index 0000000..46a22f5 --- /dev/null +++ b/tests/results/60_6family_dynamic_inside_empty/file/all_exclude.env @@ -0,0 +1,8 @@ +ROUGAIL.VAL1_DYN.VAR1="string1" +ROUGAIL.VAL1_DYN.VAR2="string1" +ROUGAIL.VAL1_DYN.VAR3="string1" +ROUGAIL.VAL1_DYN.VAR4="string1" +ROUGAIL.VAL2_DYN.VAR1="string1" +ROUGAIL.VAL2_DYN.VAR2="string1" +ROUGAIL.VAL2_DYN.VAR3="string1" +ROUGAIL.VAL2_DYN.VAR4="string1" diff --git a/tests/results/60_6family_dynamic_inside_empty/file/mandatories.env b/tests/results/60_6family_dynamic_inside_empty/file/mandatories.env new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/results/60_6family_dynamic_inside_empty/file/mandatories.env @@ -0,0 +1 @@ + diff --git a/tests/results/60_6family_dynamic_inside_empty/makedict/all.json b/tests/results/60_6family_dynamic_inside_empty/makedict/all.json new file mode 100644 index 0000000..7225362 --- /dev/null +++ b/tests/results/60_6family_dynamic_inside_empty/makedict/all.json @@ -0,0 +1,14 @@ +{ + "rougail.var": [ + "val1", + "val2" + ], + "rougail.val1_dyn.var1": "string1", + "rougail.val1_dyn.var2": "string1", + "rougail.val1_dyn.var3": "string1", + "rougail.val1_dyn.var4": "string1", + "rougail.val2_dyn.var1": "string1", + "rougail.val2_dyn.var2": "string1", + "rougail.val2_dyn.var3": "string1", + "rougail.val2_dyn.var4": "string1" +} diff --git a/tests/results/60_6family_dynamic_inside_empty/makedict/mandatories.json b/tests/results/60_6family_dynamic_inside_empty/makedict/mandatories.json new file mode 100644 index 0000000..a132f45 --- /dev/null +++ b/tests/results/60_6family_dynamic_inside_empty/makedict/mandatories.json @@ -0,0 +1,3 @@ +{ + "rougail.var": [] +} diff --git a/tests/results/60_6family_dynamic_leadership/errors/mandatories.json b/tests/results/60_6family_dynamic_leadership/errors/mandatories.json index 217db0a..1a07f0f 100644 --- a/tests/results/60_6family_dynamic_leadership/errors/mandatories.json +++ b/tests/results/60_6family_dynamic_leadership/errors/mandatories.json @@ -1,4 +1,14 @@ { - "errors": [], + "errors": [ + "unknown option \"dynstring1\" in optiondescription \"rougail\"", + "unknown option \"dynstring1\" in optiondescription \"rougail\"", + "unknown option \"dynstring1\" in optiondescription \"rougail\"", + "unknown option \"dynstring2\" in optiondescription \"rougail\"", + "unknown option \"dynstring2\" in optiondescription \"rougail\"", + "unknown option \"dynstring2\" in optiondescription \"rougail\"", + "unknown option \"dynstring3\" in optiondescription \"rougail\"", + "unknown option \"dynstring3\" in optiondescription \"rougail\"", + "unknown option \"dynstring3\" in optiondescription \"rougail\"" + ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/60_6family_dynamic_leadership/file/all.env b/tests/results/60_6family_dynamic_leadership/file/all.env index 5bc05c4..282ddaa 100644 --- a/tests/results/60_6family_dynamic_leadership/file/all.env +++ b/tests/results/60_6family_dynamic_leadership/file/all.env @@ -1,10 +1,10 @@ -ROUGAIL_VAR="string1,string2,string3" -ROUGAIL_DYNSTRING1.LEADERSHIP.LEADER="string1,string2,string3" -ROUGAIL_DYNSTRING1.LEADERSHIP.FOLLOWER1="string1,string2,string3" -ROUGAIL_DYNSTRING1.LEADERSHIP.FOLLOWER2="string1,string2,string3" -ROUGAIL_DYNSTRING2.LEADERSHIP.LEADER="string1,string2,string3" -ROUGAIL_DYNSTRING2.LEADERSHIP.FOLLOWER1="string1,string2,string3" -ROUGAIL_DYNSTRING2.LEADERSHIP.FOLLOWER2="string1,string2,string3" -ROUGAIL_DYNSTRING3.LEADERSHIP.LEADER="string1,string2,string3" -ROUGAIL_DYNSTRING3.LEADERSHIP.FOLLOWER1="string1,string2,string3" -ROUGAIL_DYNSTRING3.LEADERSHIP.FOLLOWER2="string1,string2,string3" +ROUGAIL.VAR="string1,string2,string3" +ROUGAIL.DYNSTRING1.LEADERSHIP.LEADER="string1,string2,string3" +ROUGAIL.DYNSTRING1.LEADERSHIP.FOLLOWER1="string1,string2,string3" +ROUGAIL.DYNSTRING1.LEADERSHIP.FOLLOWER2="string1,string2,string3" +ROUGAIL.DYNSTRING2.LEADERSHIP.LEADER="string1,string2,string3" +ROUGAIL.DYNSTRING2.LEADERSHIP.FOLLOWER1="string1,string2,string3" +ROUGAIL.DYNSTRING2.LEADERSHIP.FOLLOWER2="string1,string2,string3" +ROUGAIL.DYNSTRING3.LEADERSHIP.LEADER="string1,string2,string3" +ROUGAIL.DYNSTRING3.LEADERSHIP.FOLLOWER1="string1,string2,string3" +ROUGAIL.DYNSTRING3.LEADERSHIP.FOLLOWER2="string1,string2,string3" diff --git a/tests/results/60_6family_dynamic_leadership/file/all_exclude.env b/tests/results/60_6family_dynamic_leadership/file/all_exclude.env index cd4efc0..d765bf5 100644 --- a/tests/results/60_6family_dynamic_leadership/file/all_exclude.env +++ b/tests/results/60_6family_dynamic_leadership/file/all_exclude.env @@ -1,9 +1,9 @@ -ROUGAIL_DYNSTRING1.LEADERSHIP.LEADER="string1,string2,string3" -ROUGAIL_DYNSTRING1.LEADERSHIP.FOLLOWER1="string1,string2,string3" -ROUGAIL_DYNSTRING1.LEADERSHIP.FOLLOWER2="string1,string2,string3" -ROUGAIL_DYNSTRING2.LEADERSHIP.LEADER="string1,string2,string3" -ROUGAIL_DYNSTRING2.LEADERSHIP.FOLLOWER1="string1,string2,string3" -ROUGAIL_DYNSTRING2.LEADERSHIP.FOLLOWER2="string1,string2,string3" -ROUGAIL_DYNSTRING3.LEADERSHIP.LEADER="string1,string2,string3" -ROUGAIL_DYNSTRING3.LEADERSHIP.FOLLOWER1="string1,string2,string3" -ROUGAIL_DYNSTRING3.LEADERSHIP.FOLLOWER2="string1,string2,string3" +ROUGAIL.DYNSTRING1.LEADERSHIP.LEADER="string1,string2,string3" +ROUGAIL.DYNSTRING1.LEADERSHIP.FOLLOWER1="string1,string2,string3" +ROUGAIL.DYNSTRING1.LEADERSHIP.FOLLOWER2="string1,string2,string3" +ROUGAIL.DYNSTRING2.LEADERSHIP.LEADER="string1,string2,string3" +ROUGAIL.DYNSTRING2.LEADERSHIP.FOLLOWER1="string1,string2,string3" +ROUGAIL.DYNSTRING2.LEADERSHIP.FOLLOWER2="string1,string2,string3" +ROUGAIL.DYNSTRING3.LEADERSHIP.LEADER="string1,string2,string3" +ROUGAIL.DYNSTRING3.LEADERSHIP.FOLLOWER1="string1,string2,string3" +ROUGAIL.DYNSTRING3.LEADERSHIP.FOLLOWER2="string1,string2,string3" diff --git a/tests/results/60_6family_dynamic_leadership/file/mandatories.env b/tests/results/60_6family_dynamic_leadership/file/mandatories.env index ec0104d..bcff718 100644 --- a/tests/results/60_6family_dynamic_leadership/file/mandatories.env +++ b/tests/results/60_6family_dynamic_leadership/file/mandatories.env @@ -1,2 +1,2 @@ -ROUGAIL_DYNVAL1.LEADERSHIP.LEADER="string1,string2,string3" -ROUGAIL_DYNVAL2.LEADERSHIP.LEADER="string1,string2,string3" +ROUGAIL.DYNVAL1.LEADERSHIP.LEADER="string1,string2,string3" +ROUGAIL.DYNVAL2.LEADERSHIP.LEADER="string1,string2,string3" diff --git a/tests/results/60_6family_dynamic_leadership_empty/errors/all.json b/tests/results/60_6family_dynamic_leadership_empty/errors/all.json new file mode 100644 index 0000000..217db0a --- /dev/null +++ b/tests/results/60_6family_dynamic_leadership_empty/errors/all.json @@ -0,0 +1,4 @@ +{ + "errors": [], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_6family_dynamic_leadership_empty/errors/mandatories.json b/tests/results/60_6family_dynamic_leadership_empty/errors/mandatories.json new file mode 100644 index 0000000..217db0a --- /dev/null +++ b/tests/results/60_6family_dynamic_leadership_empty/errors/mandatories.json @@ -0,0 +1,4 @@ +{ + "errors": [], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_6family_dynamic_leadership_empty/file/all.env b/tests/results/60_6family_dynamic_leadership_empty/file/all.env new file mode 100644 index 0000000..33edac2 --- /dev/null +++ b/tests/results/60_6family_dynamic_leadership_empty/file/all.env @@ -0,0 +1,7 @@ +ROUGAIL.VAR="val1,val2" +ROUGAIL.DYNVAL1.LEADERSHIP.LEADER="string1,string2,string3" +ROUGAIL.DYNVAL1.LEADERSHIP.FOLLOWER1="string1,string2,string3" +ROUGAIL.DYNVAL1.LEADERSHIP.FOLLOWER2="string1,string2,string3" +ROUGAIL.DYNVAL2.LEADERSHIP.LEADER="string1,string2,string3" +ROUGAIL.DYNVAL2.LEADERSHIP.FOLLOWER1="string1,string2,string3" +ROUGAIL.DYNVAL2.LEADERSHIP.FOLLOWER2="string1,string2,string3" diff --git a/tests/results/60_6family_dynamic_leadership_empty/file/all_exclude.env b/tests/results/60_6family_dynamic_leadership_empty/file/all_exclude.env new file mode 100644 index 0000000..d634e17 --- /dev/null +++ b/tests/results/60_6family_dynamic_leadership_empty/file/all_exclude.env @@ -0,0 +1,6 @@ +ROUGAIL.DYNVAL1.LEADERSHIP.LEADER="string1,string2,string3" +ROUGAIL.DYNVAL1.LEADERSHIP.FOLLOWER1="string1,string2,string3" +ROUGAIL.DYNVAL1.LEADERSHIP.FOLLOWER2="string1,string2,string3" +ROUGAIL.DYNVAL2.LEADERSHIP.LEADER="string1,string2,string3" +ROUGAIL.DYNVAL2.LEADERSHIP.FOLLOWER1="string1,string2,string3" +ROUGAIL.DYNVAL2.LEADERSHIP.FOLLOWER2="string1,string2,string3" diff --git a/tests/results/60_6family_dynamic_leadership_empty/file/mandatories.env b/tests/results/60_6family_dynamic_leadership_empty/file/mandatories.env new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/results/60_6family_dynamic_leadership_empty/file/mandatories.env @@ -0,0 +1 @@ + diff --git a/tests/results/60_6family_dynamic_leadership_empty/makedict/all.json b/tests/results/60_6family_dynamic_leadership_empty/makedict/all.json new file mode 100644 index 0000000..3f9f804 --- /dev/null +++ b/tests/results/60_6family_dynamic_leadership_empty/makedict/all.json @@ -0,0 +1,40 @@ +{ + "rougail.var": [ + "val1", + "val2" + ], + "rougail.dynval1.leadership.leader": [ + { + "rougail.dynval1.leadership.leader": "string1", + "rougail.dynval1.leadership.follower1": "string1", + "rougail.dynval1.leadership.follower2": "string1" + }, + { + "rougail.dynval1.leadership.leader": "string2", + "rougail.dynval1.leadership.follower1": "string2", + "rougail.dynval1.leadership.follower2": "string2" + }, + { + "rougail.dynval1.leadership.leader": "string3", + "rougail.dynval1.leadership.follower1": "string3", + "rougail.dynval1.leadership.follower2": "string3" + } + ], + "rougail.dynval2.leadership.leader": [ + { + "rougail.dynval2.leadership.leader": "string1", + "rougail.dynval2.leadership.follower1": "string1", + "rougail.dynval2.leadership.follower2": "string1" + }, + { + "rougail.dynval2.leadership.leader": "string2", + "rougail.dynval2.leadership.follower1": "string2", + "rougail.dynval2.leadership.follower2": "string2" + }, + { + "rougail.dynval2.leadership.leader": "string3", + "rougail.dynval2.leadership.follower1": "string3", + "rougail.dynval2.leadership.follower2": "string3" + } + ] +} diff --git a/tests/results/60_6family_dynamic_leadership_empty/makedict/mandatories.json b/tests/results/60_6family_dynamic_leadership_empty/makedict/mandatories.json new file mode 100644 index 0000000..a132f45 --- /dev/null +++ b/tests/results/60_6family_dynamic_leadership_empty/makedict/mandatories.json @@ -0,0 +1,3 @@ +{ + "rougail.var": [] +} diff --git a/tests/results/60_6family_dynamic_sub_dynamic/errors/mandatories.json b/tests/results/60_6family_dynamic_sub_dynamic/errors/mandatories.json index 217db0a..2916760 100644 --- a/tests/results/60_6family_dynamic_sub_dynamic/errors/mandatories.json +++ b/tests/results/60_6family_dynamic_sub_dynamic/errors/mandatories.json @@ -1,4 +1,32 @@ { - "errors": [], + "errors": [ + "unknown option \"dynstring1\" in optiondescription \"rougail\"", + "unknown option \"dynstring1\" in optiondescription \"rougail\"", + "unknown option \"dynstring1\" in optiondescription \"rougail\"", + "unknown option \"dynstring1\" in optiondescription \"rougail\"", + "unknown option \"dynstring1\" in optiondescription \"rougail\"", + "unknown option \"dynstring1\" in optiondescription \"rougail\"", + "unknown option \"dynstring1\" in optiondescription \"rougail\"", + "unknown option \"dynstring1\" in optiondescription \"rougail\"", + "unknown option \"dynstring1\" in optiondescription \"rougail\"", + "unknown option \"dynstring2\" in optiondescription \"rougail\"", + "unknown option \"dynstring2\" in optiondescription \"rougail\"", + "unknown option \"dynstring2\" in optiondescription \"rougail\"", + "unknown option \"dynstring2\" in optiondescription \"rougail\"", + "unknown option \"dynstring2\" in optiondescription \"rougail\"", + "unknown option \"dynstring2\" in optiondescription \"rougail\"", + "unknown option \"dynstring2\" in optiondescription \"rougail\"", + "unknown option \"dynstring2\" in optiondescription \"rougail\"", + "unknown option \"dynstring2\" in optiondescription \"rougail\"", + "unknown option \"dynstring3\" in optiondescription \"rougail\"", + "unknown option \"dynstring3\" in optiondescription \"rougail\"", + "unknown option \"dynstring3\" in optiondescription \"rougail\"", + "unknown option \"dynstring3\" in optiondescription \"rougail\"", + "unknown option \"dynstring3\" in optiondescription \"rougail\"", + "unknown option \"dynstring3\" in optiondescription \"rougail\"", + "unknown option \"dynstring3\" in optiondescription \"rougail\"", + "unknown option \"dynstring3\" in optiondescription \"rougail\"", + "unknown option \"dynstring3\" in optiondescription \"rougail\"" + ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/60_6family_dynamic_sub_dynamic/file/all.env b/tests/results/60_6family_dynamic_sub_dynamic/file/all.env index b84cd15..11cbdb8 100644 --- a/tests/results/60_6family_dynamic_sub_dynamic/file/all.env +++ b/tests/results/60_6family_dynamic_sub_dynamic/file/all.env @@ -1,31 +1,31 @@ -ROUGAIL_VAR="string1,string2,string3" -ROUGAIL_DYNSTRING1.VAR="string1,string2,string3" -ROUGAIL_DYNSTRING1.DYN_STRING1.VAR="string1" -ROUGAIL_DYNSTRING1.DYN_STRING1.VAR_IDENTIFIER="string1" -ROUGAIL_DYNSTRING1.DYN_STRING1.VAR_IDENTIFIERS="string1" -ROUGAIL_DYNSTRING1.DYN_STRING2.VAR="string1" -ROUGAIL_DYNSTRING1.DYN_STRING2.VAR_IDENTIFIER="string1" -ROUGAIL_DYNSTRING1.DYN_STRING2.VAR_IDENTIFIERS="string1" -ROUGAIL_DYNSTRING1.DYN_STRING3.VAR="string1" -ROUGAIL_DYNSTRING1.DYN_STRING3.VAR_IDENTIFIER="string1" -ROUGAIL_DYNSTRING1.DYN_STRING3.VAR_IDENTIFIERS="string1" -ROUGAIL_DYNSTRING2.VAR="string1,string2,string3" -ROUGAIL_DYNSTRING2.DYN_STRING1.VAR="string1" -ROUGAIL_DYNSTRING2.DYN_STRING1.VAR_IDENTIFIER="string1" -ROUGAIL_DYNSTRING2.DYN_STRING1.VAR_IDENTIFIERS="string1" -ROUGAIL_DYNSTRING2.DYN_STRING2.VAR="string1" -ROUGAIL_DYNSTRING2.DYN_STRING2.VAR_IDENTIFIER="string1" -ROUGAIL_DYNSTRING2.DYN_STRING2.VAR_IDENTIFIERS="string1" -ROUGAIL_DYNSTRING2.DYN_STRING3.VAR="string1" -ROUGAIL_DYNSTRING2.DYN_STRING3.VAR_IDENTIFIER="string1" -ROUGAIL_DYNSTRING2.DYN_STRING3.VAR_IDENTIFIERS="string1" -ROUGAIL_DYNSTRING3.VAR="string1,string2,string3" -ROUGAIL_DYNSTRING3.DYN_STRING1.VAR="string1" -ROUGAIL_DYNSTRING3.DYN_STRING1.VAR_IDENTIFIER="string1" -ROUGAIL_DYNSTRING3.DYN_STRING1.VAR_IDENTIFIERS="string1" -ROUGAIL_DYNSTRING3.DYN_STRING2.VAR="string1" -ROUGAIL_DYNSTRING3.DYN_STRING2.VAR_IDENTIFIER="string1" -ROUGAIL_DYNSTRING3.DYN_STRING2.VAR_IDENTIFIERS="string1" -ROUGAIL_DYNSTRING3.DYN_STRING3.VAR="string1" -ROUGAIL_DYNSTRING3.DYN_STRING3.VAR_IDENTIFIER="string1" -ROUGAIL_DYNSTRING3.DYN_STRING3.VAR_IDENTIFIERS="string1" +ROUGAIL.VAR="string1,string2,string3" +ROUGAIL.DYNSTRING1.VAR="string1,string2,string3" +ROUGAIL.DYNSTRING1.DYN_STRING1.VAR="string1" +ROUGAIL.DYNSTRING1.DYN_STRING1.VAR_IDENTIFIER="string1" +ROUGAIL.DYNSTRING1.DYN_STRING1.VAR_IDENTIFIERS="string1" +ROUGAIL.DYNSTRING1.DYN_STRING2.VAR="string1" +ROUGAIL.DYNSTRING1.DYN_STRING2.VAR_IDENTIFIER="string1" +ROUGAIL.DYNSTRING1.DYN_STRING2.VAR_IDENTIFIERS="string1" +ROUGAIL.DYNSTRING1.DYN_STRING3.VAR="string1" +ROUGAIL.DYNSTRING1.DYN_STRING3.VAR_IDENTIFIER="string1" +ROUGAIL.DYNSTRING1.DYN_STRING3.VAR_IDENTIFIERS="string1" +ROUGAIL.DYNSTRING2.VAR="string1,string2,string3" +ROUGAIL.DYNSTRING2.DYN_STRING1.VAR="string1" +ROUGAIL.DYNSTRING2.DYN_STRING1.VAR_IDENTIFIER="string1" +ROUGAIL.DYNSTRING2.DYN_STRING1.VAR_IDENTIFIERS="string1" +ROUGAIL.DYNSTRING2.DYN_STRING2.VAR="string1" +ROUGAIL.DYNSTRING2.DYN_STRING2.VAR_IDENTIFIER="string1" +ROUGAIL.DYNSTRING2.DYN_STRING2.VAR_IDENTIFIERS="string1" +ROUGAIL.DYNSTRING2.DYN_STRING3.VAR="string1" +ROUGAIL.DYNSTRING2.DYN_STRING3.VAR_IDENTIFIER="string1" +ROUGAIL.DYNSTRING2.DYN_STRING3.VAR_IDENTIFIERS="string1" +ROUGAIL.DYNSTRING3.VAR="string1,string2,string3" +ROUGAIL.DYNSTRING3.DYN_STRING1.VAR="string1" +ROUGAIL.DYNSTRING3.DYN_STRING1.VAR_IDENTIFIER="string1" +ROUGAIL.DYNSTRING3.DYN_STRING1.VAR_IDENTIFIERS="string1" +ROUGAIL.DYNSTRING3.DYN_STRING2.VAR="string1" +ROUGAIL.DYNSTRING3.DYN_STRING2.VAR_IDENTIFIER="string1" +ROUGAIL.DYNSTRING3.DYN_STRING2.VAR_IDENTIFIERS="string1" +ROUGAIL.DYNSTRING3.DYN_STRING3.VAR="string1" +ROUGAIL.DYNSTRING3.DYN_STRING3.VAR_IDENTIFIER="string1" +ROUGAIL.DYNSTRING3.DYN_STRING3.VAR_IDENTIFIERS="string1" diff --git a/tests/results/60_6family_dynamic_sub_dynamic/file/all_exclude.env b/tests/results/60_6family_dynamic_sub_dynamic/file/all_exclude.env index 2a557e6..d8ecf3b 100644 --- a/tests/results/60_6family_dynamic_sub_dynamic/file/all_exclude.env +++ b/tests/results/60_6family_dynamic_sub_dynamic/file/all_exclude.env @@ -1,27 +1,27 @@ -ROUGAIL_DYNSTRING1.DYN_STRING1.VAR="string1" -ROUGAIL_DYNSTRING1.DYN_STRING1.VAR_IDENTIFIER="string1" -ROUGAIL_DYNSTRING1.DYN_STRING1.VAR_IDENTIFIERS="string1" -ROUGAIL_DYNSTRING1.DYN_STRING2.VAR="string1" -ROUGAIL_DYNSTRING1.DYN_STRING2.VAR_IDENTIFIER="string1" -ROUGAIL_DYNSTRING1.DYN_STRING2.VAR_IDENTIFIERS="string1" -ROUGAIL_DYNSTRING1.DYN_STRING3.VAR="string1" -ROUGAIL_DYNSTRING1.DYN_STRING3.VAR_IDENTIFIER="string1" -ROUGAIL_DYNSTRING1.DYN_STRING3.VAR_IDENTIFIERS="string1" -ROUGAIL_DYNSTRING2.DYN_STRING1.VAR="string1" -ROUGAIL_DYNSTRING2.DYN_STRING1.VAR_IDENTIFIER="string1" -ROUGAIL_DYNSTRING2.DYN_STRING1.VAR_IDENTIFIERS="string1" -ROUGAIL_DYNSTRING2.DYN_STRING2.VAR="string1" -ROUGAIL_DYNSTRING2.DYN_STRING2.VAR_IDENTIFIER="string1" -ROUGAIL_DYNSTRING2.DYN_STRING2.VAR_IDENTIFIERS="string1" -ROUGAIL_DYNSTRING2.DYN_STRING3.VAR="string1" -ROUGAIL_DYNSTRING2.DYN_STRING3.VAR_IDENTIFIER="string1" -ROUGAIL_DYNSTRING2.DYN_STRING3.VAR_IDENTIFIERS="string1" -ROUGAIL_DYNSTRING3.DYN_STRING1.VAR="string1" -ROUGAIL_DYNSTRING3.DYN_STRING1.VAR_IDENTIFIER="string1" -ROUGAIL_DYNSTRING3.DYN_STRING1.VAR_IDENTIFIERS="string1" -ROUGAIL_DYNSTRING3.DYN_STRING2.VAR="string1" -ROUGAIL_DYNSTRING3.DYN_STRING2.VAR_IDENTIFIER="string1" -ROUGAIL_DYNSTRING3.DYN_STRING2.VAR_IDENTIFIERS="string1" -ROUGAIL_DYNSTRING3.DYN_STRING3.VAR="string1" -ROUGAIL_DYNSTRING3.DYN_STRING3.VAR_IDENTIFIER="string1" -ROUGAIL_DYNSTRING3.DYN_STRING3.VAR_IDENTIFIERS="string1" +ROUGAIL.DYNSTRING1.DYN_STRING1.VAR="string1" +ROUGAIL.DYNSTRING1.DYN_STRING1.VAR_IDENTIFIER="string1" +ROUGAIL.DYNSTRING1.DYN_STRING1.VAR_IDENTIFIERS="string1" +ROUGAIL.DYNSTRING1.DYN_STRING2.VAR="string1" +ROUGAIL.DYNSTRING1.DYN_STRING2.VAR_IDENTIFIER="string1" +ROUGAIL.DYNSTRING1.DYN_STRING2.VAR_IDENTIFIERS="string1" +ROUGAIL.DYNSTRING1.DYN_STRING3.VAR="string1" +ROUGAIL.DYNSTRING1.DYN_STRING3.VAR_IDENTIFIER="string1" +ROUGAIL.DYNSTRING1.DYN_STRING3.VAR_IDENTIFIERS="string1" +ROUGAIL.DYNSTRING2.DYN_STRING1.VAR="string1" +ROUGAIL.DYNSTRING2.DYN_STRING1.VAR_IDENTIFIER="string1" +ROUGAIL.DYNSTRING2.DYN_STRING1.VAR_IDENTIFIERS="string1" +ROUGAIL.DYNSTRING2.DYN_STRING2.VAR="string1" +ROUGAIL.DYNSTRING2.DYN_STRING2.VAR_IDENTIFIER="string1" +ROUGAIL.DYNSTRING2.DYN_STRING2.VAR_IDENTIFIERS="string1" +ROUGAIL.DYNSTRING2.DYN_STRING3.VAR="string1" +ROUGAIL.DYNSTRING2.DYN_STRING3.VAR_IDENTIFIER="string1" +ROUGAIL.DYNSTRING2.DYN_STRING3.VAR_IDENTIFIERS="string1" +ROUGAIL.DYNSTRING3.DYN_STRING1.VAR="string1" +ROUGAIL.DYNSTRING3.DYN_STRING1.VAR_IDENTIFIER="string1" +ROUGAIL.DYNSTRING3.DYN_STRING1.VAR_IDENTIFIERS="string1" +ROUGAIL.DYNSTRING3.DYN_STRING2.VAR="string1" +ROUGAIL.DYNSTRING3.DYN_STRING2.VAR_IDENTIFIER="string1" +ROUGAIL.DYNSTRING3.DYN_STRING2.VAR_IDENTIFIERS="string1" +ROUGAIL.DYNSTRING3.DYN_STRING3.VAR="string1" +ROUGAIL.DYNSTRING3.DYN_STRING3.VAR_IDENTIFIER="string1" +ROUGAIL.DYNSTRING3.DYN_STRING3.VAR_IDENTIFIERS="string1" diff --git a/tests/results/60_6family_dynamic_sub_dynamic_1_0/errors/all.json b/tests/results/60_6family_dynamic_sub_dynamic_1_0/errors/all.json new file mode 100644 index 0000000..217db0a --- /dev/null +++ b/tests/results/60_6family_dynamic_sub_dynamic_1_0/errors/all.json @@ -0,0 +1,4 @@ +{ + "errors": [], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_6family_dynamic_sub_dynamic_1_0/errors/mandatories.json b/tests/results/60_6family_dynamic_sub_dynamic_1_0/errors/mandatories.json new file mode 100644 index 0000000..2916760 --- /dev/null +++ b/tests/results/60_6family_dynamic_sub_dynamic_1_0/errors/mandatories.json @@ -0,0 +1,32 @@ +{ + "errors": [ + "unknown option \"dynstring1\" in optiondescription \"rougail\"", + "unknown option \"dynstring1\" in optiondescription \"rougail\"", + "unknown option \"dynstring1\" in optiondescription \"rougail\"", + "unknown option \"dynstring1\" in optiondescription \"rougail\"", + "unknown option \"dynstring1\" in optiondescription \"rougail\"", + "unknown option \"dynstring1\" in optiondescription \"rougail\"", + "unknown option \"dynstring1\" in optiondescription \"rougail\"", + "unknown option \"dynstring1\" in optiondescription \"rougail\"", + "unknown option \"dynstring1\" in optiondescription \"rougail\"", + "unknown option \"dynstring2\" in optiondescription \"rougail\"", + "unknown option \"dynstring2\" in optiondescription \"rougail\"", + "unknown option \"dynstring2\" in optiondescription \"rougail\"", + "unknown option \"dynstring2\" in optiondescription \"rougail\"", + "unknown option \"dynstring2\" in optiondescription \"rougail\"", + "unknown option \"dynstring2\" in optiondescription \"rougail\"", + "unknown option \"dynstring2\" in optiondescription \"rougail\"", + "unknown option \"dynstring2\" in optiondescription \"rougail\"", + "unknown option \"dynstring2\" in optiondescription \"rougail\"", + "unknown option \"dynstring3\" in optiondescription \"rougail\"", + "unknown option \"dynstring3\" in optiondescription \"rougail\"", + "unknown option \"dynstring3\" in optiondescription \"rougail\"", + "unknown option \"dynstring3\" in optiondescription \"rougail\"", + "unknown option \"dynstring3\" in optiondescription \"rougail\"", + "unknown option \"dynstring3\" in optiondescription \"rougail\"", + "unknown option \"dynstring3\" in optiondescription \"rougail\"", + "unknown option \"dynstring3\" in optiondescription \"rougail\"", + "unknown option \"dynstring3\" in optiondescription \"rougail\"" + ], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_6family_dynamic_sub_dynamic_1_0/file/all.env b/tests/results/60_6family_dynamic_sub_dynamic_1_0/file/all.env new file mode 100644 index 0000000..11cbdb8 --- /dev/null +++ b/tests/results/60_6family_dynamic_sub_dynamic_1_0/file/all.env @@ -0,0 +1,31 @@ +ROUGAIL.VAR="string1,string2,string3" +ROUGAIL.DYNSTRING1.VAR="string1,string2,string3" +ROUGAIL.DYNSTRING1.DYN_STRING1.VAR="string1" +ROUGAIL.DYNSTRING1.DYN_STRING1.VAR_IDENTIFIER="string1" +ROUGAIL.DYNSTRING1.DYN_STRING1.VAR_IDENTIFIERS="string1" +ROUGAIL.DYNSTRING1.DYN_STRING2.VAR="string1" +ROUGAIL.DYNSTRING1.DYN_STRING2.VAR_IDENTIFIER="string1" +ROUGAIL.DYNSTRING1.DYN_STRING2.VAR_IDENTIFIERS="string1" +ROUGAIL.DYNSTRING1.DYN_STRING3.VAR="string1" +ROUGAIL.DYNSTRING1.DYN_STRING3.VAR_IDENTIFIER="string1" +ROUGAIL.DYNSTRING1.DYN_STRING3.VAR_IDENTIFIERS="string1" +ROUGAIL.DYNSTRING2.VAR="string1,string2,string3" +ROUGAIL.DYNSTRING2.DYN_STRING1.VAR="string1" +ROUGAIL.DYNSTRING2.DYN_STRING1.VAR_IDENTIFIER="string1" +ROUGAIL.DYNSTRING2.DYN_STRING1.VAR_IDENTIFIERS="string1" +ROUGAIL.DYNSTRING2.DYN_STRING2.VAR="string1" +ROUGAIL.DYNSTRING2.DYN_STRING2.VAR_IDENTIFIER="string1" +ROUGAIL.DYNSTRING2.DYN_STRING2.VAR_IDENTIFIERS="string1" +ROUGAIL.DYNSTRING2.DYN_STRING3.VAR="string1" +ROUGAIL.DYNSTRING2.DYN_STRING3.VAR_IDENTIFIER="string1" +ROUGAIL.DYNSTRING2.DYN_STRING3.VAR_IDENTIFIERS="string1" +ROUGAIL.DYNSTRING3.VAR="string1,string2,string3" +ROUGAIL.DYNSTRING3.DYN_STRING1.VAR="string1" +ROUGAIL.DYNSTRING3.DYN_STRING1.VAR_IDENTIFIER="string1" +ROUGAIL.DYNSTRING3.DYN_STRING1.VAR_IDENTIFIERS="string1" +ROUGAIL.DYNSTRING3.DYN_STRING2.VAR="string1" +ROUGAIL.DYNSTRING3.DYN_STRING2.VAR_IDENTIFIER="string1" +ROUGAIL.DYNSTRING3.DYN_STRING2.VAR_IDENTIFIERS="string1" +ROUGAIL.DYNSTRING3.DYN_STRING3.VAR="string1" +ROUGAIL.DYNSTRING3.DYN_STRING3.VAR_IDENTIFIER="string1" +ROUGAIL.DYNSTRING3.DYN_STRING3.VAR_IDENTIFIERS="string1" diff --git a/tests/results/60_6family_dynamic_sub_dynamic_1_0/file/all_exclude.env b/tests/results/60_6family_dynamic_sub_dynamic_1_0/file/all_exclude.env new file mode 100644 index 0000000..d8ecf3b --- /dev/null +++ b/tests/results/60_6family_dynamic_sub_dynamic_1_0/file/all_exclude.env @@ -0,0 +1,27 @@ +ROUGAIL.DYNSTRING1.DYN_STRING1.VAR="string1" +ROUGAIL.DYNSTRING1.DYN_STRING1.VAR_IDENTIFIER="string1" +ROUGAIL.DYNSTRING1.DYN_STRING1.VAR_IDENTIFIERS="string1" +ROUGAIL.DYNSTRING1.DYN_STRING2.VAR="string1" +ROUGAIL.DYNSTRING1.DYN_STRING2.VAR_IDENTIFIER="string1" +ROUGAIL.DYNSTRING1.DYN_STRING2.VAR_IDENTIFIERS="string1" +ROUGAIL.DYNSTRING1.DYN_STRING3.VAR="string1" +ROUGAIL.DYNSTRING1.DYN_STRING3.VAR_IDENTIFIER="string1" +ROUGAIL.DYNSTRING1.DYN_STRING3.VAR_IDENTIFIERS="string1" +ROUGAIL.DYNSTRING2.DYN_STRING1.VAR="string1" +ROUGAIL.DYNSTRING2.DYN_STRING1.VAR_IDENTIFIER="string1" +ROUGAIL.DYNSTRING2.DYN_STRING1.VAR_IDENTIFIERS="string1" +ROUGAIL.DYNSTRING2.DYN_STRING2.VAR="string1" +ROUGAIL.DYNSTRING2.DYN_STRING2.VAR_IDENTIFIER="string1" +ROUGAIL.DYNSTRING2.DYN_STRING2.VAR_IDENTIFIERS="string1" +ROUGAIL.DYNSTRING2.DYN_STRING3.VAR="string1" +ROUGAIL.DYNSTRING2.DYN_STRING3.VAR_IDENTIFIER="string1" +ROUGAIL.DYNSTRING2.DYN_STRING3.VAR_IDENTIFIERS="string1" +ROUGAIL.DYNSTRING3.DYN_STRING1.VAR="string1" +ROUGAIL.DYNSTRING3.DYN_STRING1.VAR_IDENTIFIER="string1" +ROUGAIL.DYNSTRING3.DYN_STRING1.VAR_IDENTIFIERS="string1" +ROUGAIL.DYNSTRING3.DYN_STRING2.VAR="string1" +ROUGAIL.DYNSTRING3.DYN_STRING2.VAR_IDENTIFIER="string1" +ROUGAIL.DYNSTRING3.DYN_STRING2.VAR_IDENTIFIERS="string1" +ROUGAIL.DYNSTRING3.DYN_STRING3.VAR="string1" +ROUGAIL.DYNSTRING3.DYN_STRING3.VAR_IDENTIFIER="string1" +ROUGAIL.DYNSTRING3.DYN_STRING3.VAR_IDENTIFIERS="string1" diff --git a/tests/results/60_6family_dynamic_sub_dynamic_1_0/file/mandatories.env b/tests/results/60_6family_dynamic_sub_dynamic_1_0/file/mandatories.env new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/results/60_6family_dynamic_sub_dynamic_1_0/file/mandatories.env @@ -0,0 +1 @@ + diff --git a/tests/results/60_6family_dynamic_sub_dynamic_1_0/makedict/all.json b/tests/results/60_6family_dynamic_sub_dynamic_1_0/makedict/all.json new file mode 100644 index 0000000..f50d14d --- /dev/null +++ b/tests/results/60_6family_dynamic_sub_dynamic_1_0/makedict/all.json @@ -0,0 +1,49 @@ +{ + "rougail.var": [ + "string1", + "string2", + "string3" + ], + "rougail.dynstring1.var": [ + "string1", + "string2", + "string3" + ], + "rougail.dynstring1.dyn_string1.var": "string1", + "rougail.dynstring1.dyn_string1.var_identifier": "string1", + "rougail.dynstring1.dyn_string1.var_identifiers": "string1", + "rougail.dynstring1.dyn_string2.var": "string1", + "rougail.dynstring1.dyn_string2.var_identifier": "string1", + "rougail.dynstring1.dyn_string2.var_identifiers": "string1", + "rougail.dynstring1.dyn_string3.var": "string1", + "rougail.dynstring1.dyn_string3.var_identifier": "string1", + "rougail.dynstring1.dyn_string3.var_identifiers": "string1", + "rougail.dynstring2.var": [ + "string1", + "string2", + "string3" + ], + "rougail.dynstring2.dyn_string1.var": "string1", + "rougail.dynstring2.dyn_string1.var_identifier": "string1", + "rougail.dynstring2.dyn_string1.var_identifiers": "string1", + "rougail.dynstring2.dyn_string2.var": "string1", + "rougail.dynstring2.dyn_string2.var_identifier": "string1", + "rougail.dynstring2.dyn_string2.var_identifiers": "string1", + "rougail.dynstring2.dyn_string3.var": "string1", + "rougail.dynstring2.dyn_string3.var_identifier": "string1", + "rougail.dynstring2.dyn_string3.var_identifiers": "string1", + "rougail.dynstring3.var": [ + "string1", + "string2", + "string3" + ], + "rougail.dynstring3.dyn_string1.var": "string1", + "rougail.dynstring3.dyn_string1.var_identifier": "string1", + "rougail.dynstring3.dyn_string1.var_identifiers": "string1", + "rougail.dynstring3.dyn_string2.var": "string1", + "rougail.dynstring3.dyn_string2.var_identifier": "string1", + "rougail.dynstring3.dyn_string2.var_identifiers": "string1", + "rougail.dynstring3.dyn_string3.var": "string1", + "rougail.dynstring3.dyn_string3.var_identifier": "string1", + "rougail.dynstring3.dyn_string3.var_identifiers": "string1" +} diff --git a/tests/results/60_6family_dynamic_sub_dynamic_1_0/makedict/mandatories.json b/tests/results/60_6family_dynamic_sub_dynamic_1_0/makedict/mandatories.json new file mode 100644 index 0000000..07461b6 --- /dev/null +++ b/tests/results/60_6family_dynamic_sub_dynamic_1_0/makedict/mandatories.json @@ -0,0 +1,26 @@ +{ + "rougail.var": [ + "val1", + "val2" + ], + "rougail.dynval1.var": [ + "tval1", + "tval2" + ], + "rougail.dynval1.dyn_tval1.var": "tval1", + "rougail.dynval1.dyn_tval1.var_identifier": "val1", + "rougail.dynval1.dyn_tval1.var_identifiers": "val1-tval1", + "rougail.dynval1.dyn_tval2.var": "tval2", + "rougail.dynval1.dyn_tval2.var_identifier": "val1", + "rougail.dynval1.dyn_tval2.var_identifiers": "val1-tval2", + "rougail.dynval2.var": [ + "tval1", + "tval2" + ], + "rougail.dynval2.dyn_tval1.var": "tval1", + "rougail.dynval2.dyn_tval1.var_identifier": "val2", + "rougail.dynval2.dyn_tval1.var_identifiers": "val2-tval1", + "rougail.dynval2.dyn_tval2.var": "tval2", + "rougail.dynval2.dyn_tval2.var_identifier": "val2", + "rougail.dynval2.dyn_tval2.var_identifiers": "val2-tval2" +} diff --git a/tests/results/60_6family_dynamic_sub_dynamic_empty/errors/all.json b/tests/results/60_6family_dynamic_sub_dynamic_empty/errors/all.json new file mode 100644 index 0000000..217db0a --- /dev/null +++ b/tests/results/60_6family_dynamic_sub_dynamic_empty/errors/all.json @@ -0,0 +1,4 @@ +{ + "errors": [], + "warnings": [] +} \ No newline at end of file diff --git a/tests/results/60_6family_dynamic_sub_dynamic_empty/file/all.env b/tests/results/60_6family_dynamic_sub_dynamic_empty/file/all.env new file mode 100644 index 0000000..126983e --- /dev/null +++ b/tests/results/60_6family_dynamic_sub_dynamic_empty/file/all.env @@ -0,0 +1,21 @@ +ROUGAIL.VAR="val1,val2" +ROUGAIL.DYNVAL1.VAR="string1,string2,string3" +ROUGAIL.DYNVAL1.DYN_STRING1.VAR="string1" +ROUGAIL.DYNVAL1.DYN_STRING1.VAR_IDENTIFIER="string1" +ROUGAIL.DYNVAL1.DYN_STRING1.VAR_IDENTIFIERS="string1" +ROUGAIL.DYNVAL1.DYN_STRING2.VAR="string1" +ROUGAIL.DYNVAL1.DYN_STRING2.VAR_IDENTIFIER="string1" +ROUGAIL.DYNVAL1.DYN_STRING2.VAR_IDENTIFIERS="string1" +ROUGAIL.DYNVAL1.DYN_STRING3.VAR="string1" +ROUGAIL.DYNVAL1.DYN_STRING3.VAR_IDENTIFIER="string1" +ROUGAIL.DYNVAL1.DYN_STRING3.VAR_IDENTIFIERS="string1" +ROUGAIL.DYNVAL2.VAR="string1,string2,string3" +ROUGAIL.DYNVAL2.DYN_STRING1.VAR="string1" +ROUGAIL.DYNVAL2.DYN_STRING1.VAR_IDENTIFIER="string1" +ROUGAIL.DYNVAL2.DYN_STRING1.VAR_IDENTIFIERS="string1" +ROUGAIL.DYNVAL2.DYN_STRING2.VAR="string1" +ROUGAIL.DYNVAL2.DYN_STRING2.VAR_IDENTIFIER="string1" +ROUGAIL.DYNVAL2.DYN_STRING2.VAR_IDENTIFIERS="string1" +ROUGAIL.DYNVAL2.DYN_STRING3.VAR="string1" +ROUGAIL.DYNVAL2.DYN_STRING3.VAR_IDENTIFIER="string1" +ROUGAIL.DYNVAL2.DYN_STRING3.VAR_IDENTIFIERS="string1" diff --git a/tests/results/60_6family_dynamic_sub_dynamic_empty/file/all_exclude.env b/tests/results/60_6family_dynamic_sub_dynamic_empty/file/all_exclude.env new file mode 100644 index 0000000..458137a --- /dev/null +++ b/tests/results/60_6family_dynamic_sub_dynamic_empty/file/all_exclude.env @@ -0,0 +1,18 @@ +ROUGAIL.DYNVAL1.DYN_STRING1.VAR="string1" +ROUGAIL.DYNVAL1.DYN_STRING1.VAR_IDENTIFIER="string1" +ROUGAIL.DYNVAL1.DYN_STRING1.VAR_IDENTIFIERS="string1" +ROUGAIL.DYNVAL1.DYN_STRING2.VAR="string1" +ROUGAIL.DYNVAL1.DYN_STRING2.VAR_IDENTIFIER="string1" +ROUGAIL.DYNVAL1.DYN_STRING2.VAR_IDENTIFIERS="string1" +ROUGAIL.DYNVAL1.DYN_STRING3.VAR="string1" +ROUGAIL.DYNVAL1.DYN_STRING3.VAR_IDENTIFIER="string1" +ROUGAIL.DYNVAL1.DYN_STRING3.VAR_IDENTIFIERS="string1" +ROUGAIL.DYNVAL2.DYN_STRING1.VAR="string1" +ROUGAIL.DYNVAL2.DYN_STRING1.VAR_IDENTIFIER="string1" +ROUGAIL.DYNVAL2.DYN_STRING1.VAR_IDENTIFIERS="string1" +ROUGAIL.DYNVAL2.DYN_STRING2.VAR="string1" +ROUGAIL.DYNVAL2.DYN_STRING2.VAR_IDENTIFIER="string1" +ROUGAIL.DYNVAL2.DYN_STRING2.VAR_IDENTIFIERS="string1" +ROUGAIL.DYNVAL2.DYN_STRING3.VAR="string1" +ROUGAIL.DYNVAL2.DYN_STRING3.VAR_IDENTIFIER="string1" +ROUGAIL.DYNVAL2.DYN_STRING3.VAR_IDENTIFIERS="string1" diff --git a/tests/results/60_6family_dynamic_sub_dynamic_empty/file/mandatories.env b/tests/results/60_6family_dynamic_sub_dynamic_empty/file/mandatories.env new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/results/60_6family_dynamic_sub_dynamic_empty/file/mandatories.env @@ -0,0 +1 @@ + diff --git a/tests/results/60_6family_dynamic_sub_dynamic_empty/makedict/all.json b/tests/results/60_6family_dynamic_sub_dynamic_empty/makedict/all.json new file mode 100644 index 0000000..ac826ec --- /dev/null +++ b/tests/results/60_6family_dynamic_sub_dynamic_empty/makedict/all.json @@ -0,0 +1,34 @@ +{ + "rougail.var": [ + "val1", + "val2" + ], + "rougail.dynval1.var": [ + "string1", + "string2", + "string3" + ], + "rougail.dynval1.dyn_string1.var": "string1", + "rougail.dynval1.dyn_string1.var_identifier": "string1", + "rougail.dynval1.dyn_string1.var_identifiers": "string1", + "rougail.dynval1.dyn_string2.var": "string1", + "rougail.dynval1.dyn_string2.var_identifier": "string1", + "rougail.dynval1.dyn_string2.var_identifiers": "string1", + "rougail.dynval1.dyn_string3.var": "string1", + "rougail.dynval1.dyn_string3.var_identifier": "string1", + "rougail.dynval1.dyn_string3.var_identifiers": "string1", + "rougail.dynval2.var": [ + "string1", + "string2", + "string3" + ], + "rougail.dynval2.dyn_string1.var": "string1", + "rougail.dynval2.dyn_string1.var_identifier": "string1", + "rougail.dynval2.dyn_string1.var_identifiers": "string1", + "rougail.dynval2.dyn_string2.var": "string1", + "rougail.dynval2.dyn_string2.var_identifier": "string1", + "rougail.dynval2.dyn_string2.var_identifiers": "string1", + "rougail.dynval2.dyn_string3.var": "string1", + "rougail.dynval2.dyn_string3.var_identifier": "string1", + "rougail.dynval2.dyn_string3.var_identifiers": "string1" +} diff --git a/tests/results/60_6family_dynamic_sub_dynamic_empty/makedict/mandatories.json b/tests/results/60_6family_dynamic_sub_dynamic_empty/makedict/mandatories.json new file mode 100644 index 0000000..a132f45 --- /dev/null +++ b/tests/results/60_6family_dynamic_sub_dynamic_empty/makedict/mandatories.json @@ -0,0 +1,3 @@ +{ + "rougail.var": [] +} diff --git a/tests/results/60_9extra_dynamic/errors/all.json b/tests/results/60_9extra_dynamic/errors/all.json index 217db0a..9d97a6e 100644 --- a/tests/results/60_9extra_dynamic/errors/all.json +++ b/tests/results/60_9extra_dynamic/errors/all.json @@ -1,4 +1,23 @@ { - "errors": [], + "errors": [ + "unknown option \"dynval1\" in optiondescription \"rougail\"", + "unknown option \"dynval1\" in optiondescription \"rougail\"", + "unknown option \"dynval1\" in optiondescription \"rougail\"", + "unknown option \"dynval1\" in optiondescription \"rougail\"", + "unknown option \"dynval1\" in optiondescription \"rougail\"", + "unknown option \"dynval1\" in optiondescription \"rougail\"", + "unknown option \"dynval1\" in optiondescription \"rougail\"", + "unknown option \"dynval1\" in optiondescription \"rougail\"", + "unknown option \"dynval1\" in optiondescription \"rougail\"", + "unknown option \"dynval2\" in optiondescription \"rougail\"", + "unknown option \"dynval2\" in optiondescription \"rougail\"", + "unknown option \"dynval2\" in optiondescription \"rougail\"", + "unknown option \"dynval2\" in optiondescription \"rougail\"", + "unknown option \"dynval2\" in optiondescription \"rougail\"", + "unknown option \"dynval2\" in optiondescription \"rougail\"", + "unknown option \"dynval2\" in optiondescription \"rougail\"", + "unknown option \"dynval2\" in optiondescription \"rougail\"", + "unknown option \"dynval2\" in optiondescription \"rougail\"" + ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/60_9extra_dynamic/file/all.env b/tests/results/60_9extra_dynamic/file/all.env index 43b491d..ce2a647 100644 --- a/tests/results/60_9extra_dynamic/file/all.env +++ b/tests/results/60_9extra_dynamic/file/all.env @@ -1 +1 @@ -ROUGAIL_VAR="string1,string2,string3" +ROUGAIL.VAR="string1,string2,string3" diff --git a/tests/results/60_9extra_dynamic/file/all_exclude.env b/tests/results/60_9extra_dynamic/file/all_exclude.env index 43b491d..ce2a647 100644 --- a/tests/results/60_9extra_dynamic/file/all_exclude.env +++ b/tests/results/60_9extra_dynamic/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_VAR="string1,string2,string3" +ROUGAIL.VAR="string1,string2,string3" diff --git a/tests/results/60_9extra_dynamic_extra/errors/all.json b/tests/results/60_9extra_dynamic_extra/errors/all.json index 217db0a..8aa143e 100644 --- a/tests/results/60_9extra_dynamic_extra/errors/all.json +++ b/tests/results/60_9extra_dynamic_extra/errors/all.json @@ -1,4 +1,6 @@ { - "errors": [], + "errors": [ + "unknown option \"var\" in optiondescription \"rougail\"" + ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/60_9extra_dynamic_extra/file/all.env b/tests/results/60_9extra_dynamic_extra/file/all.env index b372aef..56a78cd 100644 --- a/tests/results/60_9extra_dynamic_extra/file/all.env +++ b/tests/results/60_9extra_dynamic_extra/file/all.env @@ -1 +1 @@ -ROUGAIL_GENERAL.VARNAME="string1,string2,string3" +ROUGAIL.GENERAL.VARNAME="string1,string2,string3" diff --git a/tests/results/60_9extra_dynamic_extra/file/all_exclude.env b/tests/results/60_9extra_dynamic_extra/file/all_exclude.env index b372aef..56a78cd 100644 --- a/tests/results/60_9extra_dynamic_extra/file/all_exclude.env +++ b/tests/results/60_9extra_dynamic_extra/file/all_exclude.env @@ -1 +1 @@ -ROUGAIL_GENERAL.VARNAME="string1,string2,string3" +ROUGAIL.GENERAL.VARNAME="string1,string2,string3" diff --git a/tests/results/60_9family_dynamic_calc_both/errors/all.json b/tests/results/60_9family_dynamic_calc_both/errors/all.json index 217db0a..51c333f 100644 --- a/tests/results/60_9family_dynamic_calc_both/errors/all.json +++ b/tests/results/60_9family_dynamic_calc_both/errors/all.json @@ -1,4 +1,6 @@ { - "errors": [], + "errors": [ + "unknown option \"general\" in optiondescription \"rougail\"" + ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/60_9family_dynamic_calc_both/errors/mandatories.json b/tests/results/60_9family_dynamic_calc_both/errors/mandatories.json index 217db0a..c5d187c 100644 --- a/tests/results/60_9family_dynamic_calc_both/errors/mandatories.json +++ b/tests/results/60_9family_dynamic_calc_both/errors/mandatories.json @@ -1,4 +1,6 @@ { - "errors": [], + "errors": [ + "unknown option \"dynval2\" in optiondescription \"rougail\"" + ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/60_9family_dynamic_calc_both/file/all.env b/tests/results/60_9family_dynamic_calc_both/file/all.env index a967eeb..334811c 100644 --- a/tests/results/60_9family_dynamic_calc_both/file/all.env +++ b/tests/results/60_9family_dynamic_calc_both/file/all.env @@ -1,3 +1,3 @@ -ROUGAIL_VAR="string1" -ROUGAIL_DYNVAL1.VARDYN="string1" -ROUGAIL_DYNSTRING1.VARDYN="string1" +ROUGAIL.VAR="string1" +ROUGAIL.DYNVAL1.VARDYN="string1" +ROUGAIL.DYNSTRING1.VARDYN="string1" diff --git a/tests/results/60_9family_dynamic_calc_both/file/all_exclude.env b/tests/results/60_9family_dynamic_calc_both/file/all_exclude.env index a967eeb..334811c 100644 --- a/tests/results/60_9family_dynamic_calc_both/file/all_exclude.env +++ b/tests/results/60_9family_dynamic_calc_both/file/all_exclude.env @@ -1,3 +1,3 @@ -ROUGAIL_VAR="string1" -ROUGAIL_DYNVAL1.VARDYN="string1" -ROUGAIL_DYNSTRING1.VARDYN="string1" +ROUGAIL.VAR="string1" +ROUGAIL.DYNVAL1.VARDYN="string1" +ROUGAIL.DYNSTRING1.VARDYN="string1" diff --git a/tests/results/60_9family_dynamic_calc_both/file/mandatories.env b/tests/results/60_9family_dynamic_calc_both/file/mandatories.env index 9c41048..95ebc10 100644 --- a/tests/results/60_9family_dynamic_calc_both/file/mandatories.env +++ b/tests/results/60_9family_dynamic_calc_both/file/mandatories.env @@ -1,2 +1,2 @@ -ROUGAIL_DYNVAL1.VARDYN="string1" -ROUGAIL_DYNVAL2.VARDYN="string1" +ROUGAIL.DYNVAL1.VARDYN="string1" +ROUGAIL.DYNVAL2.VARDYN="string1" diff --git a/tests/results/68_0family_leadership_mode/errors/all.json b/tests/results/68_0family_leadership_mode/errors/all.json index 217db0a..6a5e971 100644 --- a/tests/results/68_0family_leadership_mode/errors/all.json +++ b/tests/results/68_0family_leadership_mode/errors/all.json @@ -1,4 +1,9 @@ { - "errors": [], + "errors": [ + "unknown option \"var\" in optiondescription \"rougail\"", + "unknown option \"dynval1\" in optiondescription \"rougail\"", + "unknown option \"dynstring1\" in optiondescription \"rougail\"", + "unknown option \"dynval2\" in optiondescription \"rougail\"" + ], "warnings": [] } \ No newline at end of file diff --git a/tests/results/68_0family_leadership_mode/file/all.env b/tests/results/68_0family_leadership_mode/file/all.env index b45ebff..636bb16 100644 --- a/tests/results/68_0family_leadership_mode/file/all.env +++ b/tests/results/68_0family_leadership_mode/file/all.env @@ -1,3 +1,3 @@ -ROUGAIL_LEADER.LEADER="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER1="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER2="string1,string2,string3" +ROUGAIL.LEADER.LEADER="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER1="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER2="string1,string2,string3" diff --git a/tests/results/68_0family_leadership_mode/file/all_exclude.env b/tests/results/68_0family_leadership_mode/file/all_exclude.env index b45ebff..636bb16 100644 --- a/tests/results/68_0family_leadership_mode/file/all_exclude.env +++ b/tests/results/68_0family_leadership_mode/file/all_exclude.env @@ -1,3 +1,3 @@ -ROUGAIL_LEADER.LEADER="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER1="string1,string2,string3" -ROUGAIL_LEADER.FOLLOWER2="string1,string2,string3" +ROUGAIL.LEADER.LEADER="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER1="string1,string2,string3" +ROUGAIL.LEADER.FOLLOWER2="string1,string2,string3" diff --git a/tests/test_load.py b/tests/test_load.py index c5313f2..e1f7c79 100644 --- a/tests/test_load.py +++ b/tests/test_load.py @@ -159,8 +159,6 @@ def values_to_env(values): for key, value in values_.items(): if level == 0: sub_root_path = key - elif level == 1: - sub_root_path = root_path + '_' + key else: sub_root_path = root_path + '.' + key if isinstance(value, dict):