feat: display loaded_from informations
This commit is contained in:
parent
e3e531bfba
commit
7646c85546
257 changed files with 987 additions and 60 deletions
1
tests/errors/environment/00_unknown_variable.env
Normal file
1
tests/errors/environment/00_unknown_variable.env
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
ROUGAIL_UNKNOWN=1
|
||||||
2
tests/errors/environment/01_disabled_family.env
Normal file
2
tests/errors/environment/01_disabled_family.env
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
ROUGAIL_FAMILY_DISABLED.VARIABLE1=test
|
||||||
|
ROUGAIL_FAMILY_DISABLED.VARIABLE2=test
|
||||||
1
tests/errors/environment/01_disabled_variable.env
Normal file
1
tests/errors/environment/01_disabled_variable.env
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
ROUGAIL_VARIABLE_DISABLED=test
|
||||||
1
tests/errors/environment/01_wrong_type.env
Normal file
1
tests/errors/environment/01_wrong_type.env
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
ROUGAIL_VARIABLE_INT=test
|
||||||
1
tests/errors/environment/02_disabled_hidden_family.env
Normal file
1
tests/errors/environment/02_disabled_hidden_family.env
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
ROUGAIL_FAMILY_DISABLED_HIDDEN.VARIABLE1=test
|
||||||
1
tests/errors/environment/04_value_secret.env
Normal file
1
tests/errors/environment/04_value_secret.env
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
ROUGAIL_SECRET=a
|
||||||
1
tests/errors/environment/05_value_family.env
Normal file
1
tests/errors/environment/05_value_family.env
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
ROUGAIL_FAMILY=test
|
||||||
1
tests/errors/environment/06_dynamic_unknown.env
Normal file
1
tests/errors/environment/06_dynamic_unknown.env
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
ROUGAIL_DYN_UNKNOWN.VARIABLE=test
|
||||||
4
tests/errors/environment/07_leadership_disabled.env
Normal file
4
tests/errors/environment/07_leadership_disabled.env
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
ROUGAIL_LEADERSHIP.LEADER=test1,test2,test3
|
||||||
|
ROUGAIL_LEADERSHIP.FOLLOWER=test1,test2,test3
|
||||||
|
ROUGAIL_LEADERSHIP.FOLLOWER_DISABLED=test1,test2,test3
|
||||||
|
ROUGAIL_LEADERSHIP.FOLLOWER_DISABLED_AT_INDEX=test1,test2,test3
|
||||||
2
tests/errors/environment/07_leadership_unknown.env
Normal file
2
tests/errors/environment/07_leadership_unknown.env
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
ROUGAIL_LEADERSHIP.LEADER=test
|
||||||
|
ROUGAIL_LEADERSHIP.UNKNWON=test
|
||||||
2
tests/errors/environment/07_leadership_wrong_len.env
Normal file
2
tests/errors/environment/07_leadership_wrong_len.env
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
ROUGAIL_LEADERSHIP.LEADER=test
|
||||||
|
ROUGAIL_LEADERSHIP.FOLLOWER=test1,test2
|
||||||
6
tests/errors/results/00_unknown_variable.env
Normal file
6
tests/errors/results/00_unknown_variable.env
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"errors": [],
|
||||||
|
"warnings": [
|
||||||
|
"variable or family \"unknown\" does not exist, it will be ignored when loading from environment variable"
|
||||||
|
]
|
||||||
|
}
|
||||||
7
tests/errors/results/01_disabled_family.env
Normal file
7
tests/errors/results/01_disabled_family.env
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"errors": [],
|
||||||
|
"warnings": [
|
||||||
|
"family \"family_disabled\" is disabled, \"family_disabled.variable1\" will be ignored when loading from environment variable",
|
||||||
|
"family \"family_disabled\" is disabled, \"family_disabled.variable2\" will be ignored when loading from environment variable"
|
||||||
|
]
|
||||||
|
}
|
||||||
6
tests/errors/results/01_disabled_variable.env
Normal file
6
tests/errors/results/01_disabled_variable.env
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"errors": [],
|
||||||
|
"warnings": [
|
||||||
|
"variable \"variable_disabled\" is disabled, it will be ignored when loading from environment variable"
|
||||||
|
]
|
||||||
|
}
|
||||||
6
tests/errors/results/01_wrong_type.env
Normal file
6
tests/errors/results/01_wrong_type.env
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"errors": [],
|
||||||
|
"warnings": [
|
||||||
|
"the value \"test\" is invalid for \"variable_int\", which is not an integer, it will be ignored when loading from environment variable"
|
||||||
|
]
|
||||||
|
}
|
||||||
6
tests/errors/results/02_disabled_hidden_family.env
Normal file
6
tests/errors/results/02_disabled_hidden_family.env
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"errors": [],
|
||||||
|
"warnings": [
|
||||||
|
"family \"family_disabled_hidden\" is disabled and hidden, \"family_disabled_hidden.variable1\" will be ignored when loading from environment variable"
|
||||||
|
]
|
||||||
|
}
|
||||||
6
tests/errors/results/04_value_secret.env
Normal file
6
tests/errors/results/04_value_secret.env
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"errors": [],
|
||||||
|
"warnings": [
|
||||||
|
"the value \"**********\" is invalid for \"secret\", at least 10 characters are required, it will be ignored when loading from environment variable"
|
||||||
|
]
|
||||||
|
}
|
||||||
6
tests/errors/results/05_value_family.env
Normal file
6
tests/errors/results/05_value_family.env
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"errors": [],
|
||||||
|
"warnings": [
|
||||||
|
"cannot set the value \"test\" to the family \"family\", it will be ignored when loading from environment variable"
|
||||||
|
]
|
||||||
|
}
|
||||||
6
tests/errors/results/06_dynamic_unknown.env
Normal file
6
tests/errors/results/06_dynamic_unknown.env
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"errors": [],
|
||||||
|
"warnings": [
|
||||||
|
"variable or family \"dyn_unknown\" does not exist, it will be ignored when loading from environment variable"
|
||||||
|
]
|
||||||
|
}
|
||||||
9
tests/errors/results/07_leadership_disabled.env
Normal file
9
tests/errors/results/07_leadership_disabled.env
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"errors": [],
|
||||||
|
"warnings": [
|
||||||
|
"variable \"leadership.follower_disabled\" at index \"0\" is disabled, it will be ignored when loading from environment variable",
|
||||||
|
"variable \"leadership.follower_disabled\" at index \"1\" is disabled, it will be ignored when loading from environment variable",
|
||||||
|
"variable \"leadership.follower_disabled\" at index \"2\" is disabled, it will be ignored when loading from environment variable",
|
||||||
|
"variable \"leadership.follower_disabled_at_index\" at index \"1\" is disabled, it will be ignored when loading from environment variable"
|
||||||
|
]
|
||||||
|
}
|
||||||
6
tests/errors/results/07_leadership_unknown.env
Normal file
6
tests/errors/results/07_leadership_unknown.env
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"errors": [],
|
||||||
|
"warnings": [
|
||||||
|
"variable or family \"leadership.unknwon\" does not exist, it will be ignored when loading from environment variable"
|
||||||
|
]
|
||||||
|
}
|
||||||
6
tests/errors/results/07_leadership_wrong_len.env
Normal file
6
tests/errors/results/07_leadership_wrong_len.env
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"errors": [],
|
||||||
|
"warnings": [
|
||||||
|
"index \"1\" is greater than the leadership length \"1\" for option \"leadership.follower\" in environment variable"
|
||||||
|
]
|
||||||
|
}
|
||||||
68
tests/errors/structure/rougail/00_rougail.yml
Normal file
68
tests/errors/structure/rougail/00_rougail.yml
Normal file
|
|
@ -0,0 +1,68 @@
|
||||||
|
%YAML 1.2
|
||||||
|
---
|
||||||
|
version: 1.1
|
||||||
|
|
||||||
|
variable:
|
||||||
|
|
||||||
|
secret:
|
||||||
|
type: secret
|
||||||
|
params:
|
||||||
|
min_len: 10
|
||||||
|
|
||||||
|
variable_disabled:
|
||||||
|
disabled: true
|
||||||
|
|
||||||
|
variable_disabled_hidden:
|
||||||
|
disabled: true
|
||||||
|
hidden: true
|
||||||
|
|
||||||
|
variable_int:
|
||||||
|
type: number
|
||||||
|
|
||||||
|
family:
|
||||||
|
|
||||||
|
variable:
|
||||||
|
|
||||||
|
family_disabled:
|
||||||
|
disabled: true
|
||||||
|
|
||||||
|
variable1:
|
||||||
|
|
||||||
|
variable2:
|
||||||
|
|
||||||
|
family_disabled_hidden:
|
||||||
|
disabled: true
|
||||||
|
hidden: true
|
||||||
|
|
||||||
|
variable1:
|
||||||
|
|
||||||
|
variable2:
|
||||||
|
|
||||||
|
dyn_{{ identifier }}:
|
||||||
|
dynamic:
|
||||||
|
- var1
|
||||||
|
- var2
|
||||||
|
|
||||||
|
variable:
|
||||||
|
|
||||||
|
leadership:
|
||||||
|
type: leadership
|
||||||
|
|
||||||
|
leader:
|
||||||
|
|
||||||
|
follower:
|
||||||
|
|
||||||
|
follower_disabled:
|
||||||
|
disabled: true
|
||||||
|
|
||||||
|
follower_disabled_at_index:
|
||||||
|
disabled:
|
||||||
|
jinja: >-
|
||||||
|
{% if index == 1 %}
|
||||||
|
true
|
||||||
|
{% else %}
|
||||||
|
{% endif %}
|
||||||
|
params:
|
||||||
|
index:
|
||||||
|
type: index
|
||||||
|
...
|
||||||
4
tests/results/test/00_0no_variable/errors/all.json
Normal file
4
tests/results/test/00_0no_variable/errors/all.json
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
"errors": [],
|
||||||
|
"warnings": []
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
"errors": [],
|
||||||
|
"warnings": []
|
||||||
|
}
|
||||||
1
tests/results/test/00_0no_variable/file/all.env
Normal file
1
tests/results/test/00_0no_variable/file/all.env
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
|
||||||
1
tests/results/test/00_0no_variable/file/all_exclude.env
Normal file
1
tests/results/test/00_0no_variable/file/all_exclude.env
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
|
||||||
1
tests/results/test/00_0no_variable/file/mandatories.env
Normal file
1
tests/results/test/00_0no_variable/file/mandatories.env
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
|
||||||
1
tests/results/test/00_0no_variable/makedict/all.json
Normal file
1
tests/results/test/00_0no_variable/makedict/all.json
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
{}
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
{}
|
||||||
|
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
"errors": [],
|
||||||
|
"warnings": []
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
"errors": [],
|
||||||
|
"warnings": []
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
{}
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
{}
|
||||||
|
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
"errors": [],
|
||||||
|
"warnings": []
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
"errors": [],
|
||||||
|
"warnings": []
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
{}
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
{}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"errors": [],
|
||||||
|
"warnings": [
|
||||||
|
"family \"leadership\" is hidden, \"leadership.var1\" (a first variable) will be ignored when loading from environment variable",
|
||||||
|
"family \"leadership\" is hidden, \"leadership.var2\" (a first variable) at index \"0\" will be ignored when loading from environment variable",
|
||||||
|
"index \"1\" is greater than the leadership length \"1\" for option \"leadership.var2\" (a first variable) in environment variable",
|
||||||
|
"index \"2\" is greater than the leadership length \"1\" for option \"leadership.var2\" (a first variable) in environment variable"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
"errors": [],
|
||||||
|
"warnings": []
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
ROUGAIL_LEADERSHIP.VAR1="string1,string2,string3"
|
||||||
|
ROUGAIL_LEADERSHIP.VAR2="string1,,"
|
||||||
|
ROUGAIL_VAR2="string1"
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
ROUGAIL_LEADERSHIP.VAR1="string1,string2,string3"
|
||||||
|
ROUGAIL_LEADERSHIP.VAR2="string1,,"
|
||||||
|
ROUGAIL_VAR2="string1"
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"leadership.var1": [
|
||||||
|
{
|
||||||
|
"leadership.var1": "a_value",
|
||||||
|
"leadership.var2": "a_value"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"var2": "string1"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"leadership.var1": [
|
||||||
|
{
|
||||||
|
"leadership.var1": "a_value",
|
||||||
|
"leadership.var2": "a_value"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"var2": "a_value"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
"errors": [],
|
||||||
|
"warnings": []
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
"errors": [],
|
||||||
|
"warnings": []
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,2 @@
|
||||||
|
ROUGAIL_VAR1="string1"
|
||||||
|
ROUGAIL_VAR2="string1"
|
||||||
|
|
@ -0,0 +1,2 @@
|
||||||
|
ROUGAIL_VAR1="string1"
|
||||||
|
ROUGAIL_VAR2="string1"
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
ROUGAIL_VAR1="string1"
|
||||||
|
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
"var1": "string1",
|
||||||
|
"var2": "string1"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
"var1": "string1",
|
||||||
|
"var2": "string1"
|
||||||
|
}
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"errors": [],
|
"errors": [],
|
||||||
"warnings": [
|
"warnings": [
|
||||||
"cannot access to option \"var2\" (a second variable) because has property \"disabled\" loaded from environment variable"
|
"variable \"var2\" (a second variable) is disabled, it will be ignored when loading from environment variable"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"errors": [],
|
"errors": [],
|
||||||
"warnings": [
|
"warnings": [
|
||||||
"cannot access to option \"var2\" (a second variable) because has property \"disabled\" loaded from environment variable"
|
"variable \"var2\" (a second variable) is disabled, it will be ignored when loading from environment variable"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"errors": [],
|
||||||
|
"warnings": [
|
||||||
|
"variable \"var1\" (a first variable) is hidden, it will be ignored when loading from environment variable",
|
||||||
|
"variable \"var2\" (a second variable) is disabled, it will be ignored when loading from environment variable"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"errors": [],
|
||||||
|
"warnings": [
|
||||||
|
"variable \"var2\" (a second variable) is disabled, it will be ignored when loading from environment variable"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
ROUGAIL_VAR1="string1"
|
||||||
|
ROUGAIL_VAR2="string1"
|
||||||
|
ROUGAIL_VAR3="string1"
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
ROUGAIL_VAR1="string1"
|
||||||
|
ROUGAIL_VAR2="string1"
|
||||||
|
ROUGAIL_VAR3="string1"
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
ROUGAIL_VAR2="string1"
|
||||||
|
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
"var1": "value",
|
||||||
|
"var3": "string1"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
"var1": "value",
|
||||||
|
"var3": "value"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"errors": [],
|
||||||
|
"warnings": [
|
||||||
|
"variable \"var1\" (a first variable) is hidden, it will be ignored when loading from environment variable"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
"errors": [],
|
||||||
|
"warnings": []
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
ROUGAIL_VAR1="string1"
|
||||||
|
ROUGAIL_VAR2="string1"
|
||||||
|
ROUGAIL_VAR3="string1"
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
ROUGAIL_VAR1="string1"
|
||||||
|
ROUGAIL_VAR2="string1"
|
||||||
|
ROUGAIL_VAR3="string1"
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
ROUGAIL_VAR2="string1"
|
||||||
|
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
"var1": "value",
|
||||||
|
"var2": "string1",
|
||||||
|
"var3": "string1"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
"var1": "value",
|
||||||
|
"var2": "string1",
|
||||||
|
"var3": "value"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"errors": [],
|
||||||
|
"warnings": [
|
||||||
|
"variable \"var2\" (a second variable) is hidden, it will be ignored when loading from environment variable"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"errors": [],
|
||||||
|
"warnings": [
|
||||||
|
"variable \"var3\" (a third variable) is disabled, it will be ignored when loading from environment variable"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
ROUGAIL_VAR1="string1"
|
||||||
|
ROUGAIL_VAR2="string1"
|
||||||
|
ROUGAIL_VAR3="string1"
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
ROUGAIL_VAR1="string1"
|
||||||
|
ROUGAIL_VAR2="string1"
|
||||||
|
ROUGAIL_VAR3="string1"
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
ROUGAIL_VAR3="string1"
|
||||||
|
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
"var1": "string1",
|
||||||
|
"var2": "string1",
|
||||||
|
"var3": "string1"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
"var1": "value",
|
||||||
|
"var2": "value"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"errors": [],
|
||||||
|
"warnings": [
|
||||||
|
"variable \"var2\" (a second variable) is hidden, it will be ignored when loading from environment variable",
|
||||||
|
"variable \"var3\" (a third variable) is disabled, it will be ignored when loading from environment variable"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
"errors": [],
|
||||||
|
"warnings": []
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
ROUGAIL_VAR1="string1"
|
||||||
|
ROUGAIL_VAR2="string1"
|
||||||
|
ROUGAIL_VAR3="string1"
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
ROUGAIL_VAR1="string1"
|
||||||
|
ROUGAIL_VAR2="string1"
|
||||||
|
ROUGAIL_VAR3="string1"
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
ROUGAIL_VAR3="string1"
|
||||||
|
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
"var1": "string1",
|
||||||
|
"var2": "string1"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
"var1": "value",
|
||||||
|
"var2": "value",
|
||||||
|
"var3": "string1"
|
||||||
|
}
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"errors": [],
|
"errors": [],
|
||||||
"warnings": [
|
"warnings": [
|
||||||
"cannot access to option \"var1\" (a first variable) because has property \"hidden\" (unknown is undefined) loaded from environment variable"
|
"variable \"var1\" (a first variable) is hidden, it will be ignored when loading from environment variable"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"errors": [],
|
"errors": [],
|
||||||
"warnings": [
|
"warnings": [
|
||||||
"cannot access to option \"variable\" (a variable) because has property \"disabled\" loaded from environment variable"
|
"variable \"variable\" (a variable) is disabled, it will be ignored when loading from environment variable"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"errors": [],
|
"errors": [],
|
||||||
"warnings": [
|
"warnings": [
|
||||||
"cannot access to option \"variable\" (a variable) because has property \"disabled\" loaded from environment variable"
|
"variable \"variable\" (a variable) is disabled, it will be ignored when loading from environment variable"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"errors": [],
|
"errors": [],
|
||||||
"warnings": [
|
"warnings": [
|
||||||
"cannot access to option \"variable\" (a variable) because has property \"disabled\" loaded from environment variable"
|
"variable \"variable\" (a variable) is disabled, it will be ignored when loading from environment variable"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"errors": [],
|
"errors": [],
|
||||||
"warnings": [
|
"warnings": [
|
||||||
"cannot access to option \"variable\" (a variable) because has property \"disabled\" loaded from environment variable"
|
"variable \"variable\" (a variable) is disabled, it will be ignored when loading from environment variable"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"errors": [],
|
"errors": [],
|
||||||
"warnings": [
|
"warnings": [
|
||||||
"cannot access to option \"variable\" (a variable) because has property \"disabled\" loaded from environment variable"
|
"variable \"variable\" (a variable) is disabled, it will be ignored when loading from environment variable"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"errors": [],
|
"errors": [],
|
||||||
"warnings": [
|
"warnings": [
|
||||||
"cannot access to option \"variable\" (a variable) because has property \"disabled\" loaded from environment variable"
|
"variable \"variable\" (a variable) is disabled, it will be ignored when loading from environment variable"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
4
tests/results/test/04_5validators_multi3/errors/all.json
Normal file
4
tests/results/test/04_5validators_multi3/errors/all.json
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
"errors": [],
|
||||||
|
"warnings": []
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
"errors": [],
|
||||||
|
"warnings": []
|
||||||
|
}
|
||||||
1
tests/results/test/04_5validators_multi3/file/all.env
Normal file
1
tests/results/test/04_5validators_multi3/file/all.env
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
ROUGAIL_VAR1="0"
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
ROUGAIL_VAR1="0"
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
|
||||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue