diff --git a/src/rougail/output_console/__init__.py b/src/rougail/output_console/__init__.py index 235aa04..b1dfc7a 100644 --- a/src/rougail/output_console/__init__.py +++ b/src/rougail/output_console/__init__.py @@ -17,10 +17,13 @@ along with this program. If not, see . """ from typing import Any, List, Optional +from io import BytesIO + from rich.tree import Tree from rich.console import Console from rich.table import Table from rich.panel import Panel +from ruamel.yaml import YAML from tiramisu import undefined from tiramisu.error import PropertiesOptionError, ConfigError @@ -122,7 +125,7 @@ class RougailOutputConsole: def run(self) -> str: with self.console.capture() as capture: self.print() - return capture.get() + return capture.get() def print(self) -> None: self.exporter() @@ -211,10 +214,13 @@ class RougailOutputConsole: self.out.append(tree) def get_root(self) -> None: + yaml = YAML() + yaml.indent(mapping=2, sequence=4, offset=2) self.output = OutputFamily( _("Variables:"), None, self, + yaml, no_icon=True, ) return self.output @@ -225,7 +231,7 @@ class RougailOutputConsole: class OutputFamily: def __init__( - self, family, parent, root, *, is_leader: bool = False, no_icon: bool = False + self, family, parent, root, _yaml, *, is_leader: bool = False, no_icon: bool = False ) -> None: if parent is None: tree = Tree @@ -247,6 +253,7 @@ class OutputFamily: guide_style="bold bright_blue", ) self.root = root + self._yaml = _yaml def add_family( self, @@ -268,6 +275,7 @@ class OutputFamily: ), self.tree, self.root, + self._yaml, ) def add_variable( @@ -288,9 +296,18 @@ class OutputFamily: elif "advanced" in properties: variable_color = self.root.variable_advanced_and_modified_color color = None - default_value = option.value.default() - if leader_index is not None and len(default_value) > leader_index: - default_value = default_value[leader_index] + try: + default_value = option.value.default() + except ConfigError: + if option.ismulti(): + default_value = [] + else: + default_value = None + if leader_index is not None: + if len(default_value) > leader_index: + default_value = default_value[leader_index] + else: + default_value = None if value is undefined: value = option.value.get() key = self.colorize( @@ -325,6 +342,7 @@ class OutputFamily: if isinstance(value, list): if default_value is None: default_value = [] +# default_value = [self.convert_value(option, val) for val in default_value] len_value = len(value) len_default_value = len(default_value) len_values = max(len_value, len_default_value) @@ -335,8 +353,6 @@ class OutputFamily: else: val = "" if idx < len_default_value: - if val: - val += " " default = default_value[idx] else: default = None @@ -349,30 +365,43 @@ class OutputFamily: ) ) return ret - if option and value is not None: + if option: value = self.convert_value( option, value, ) - else: - value = str(value) if color is not None: ret = f"[{color}]{value}[/{color}]" else: ret = value - if default_value and "force_store_value" not in option.property.get(): + if default_value is not None and "force_store_value" not in option.property.get(): default_value_color = self.root.value_default_color - ret += f" ([{default_value_color}]{default_value}[/{default_value_color}])" + default_value = self.convert_value(option, default_value) + if ret: + ret += f" ([{default_value_color}]{default_value}[/{default_value_color}])" + else: + ret = f"[{default_value_color}]{default_value}[/{default_value_color}]" return ret def convert_value( self, option, - value, - ): + value: Any, + ) -> str: + if isinstance(value, list): + print(value) + raise Exception('pfff') + """Dump variable, means transform bool, ... to yaml string""" if not self.root.show_secrets and option.type() == "password": return "*" * 10 - return str(value) + if isinstance(value, str): + return value + with BytesIO() as ymlfh: + self._yaml.dump(value, ymlfh) + ret = ymlfh.getvalue().decode("utf-8").strip() + if ret.endswith("..."): + ret = ret[:-3].strip() + return ret RougailOutput = RougailOutputConsole diff --git a/tests/results/test_mandatory_secrets/00_0empty.sh b/tests/results/test_mandatory_secrets/00_0empty.sh new file mode 100644 index 0000000..d2701ec --- /dev/null +++ b/tests/results/test_mandatory_secrets/00_0empty.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_mandatory_secrets/00_0version_underscore.sh b/tests/results/test_mandatory_secrets/00_0version_underscore.sh new file mode 100644 index 0000000..cbb3131 --- /dev/null +++ b/tests/results/test_mandatory_secrets/00_0version_underscore.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 version: string1 diff --git a/tests/results/test_mandatory_secrets/00_1empty_variable.sh b/tests/results/test_mandatory_secrets/00_1empty_variable.sh new file mode 100644 index 0000000..10d4ca9 --- /dev/null +++ b/tests/results/test_mandatory_secrets/00_1empty_variable.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 empty: string1 diff --git a/tests/results/test_mandatory_secrets/00_2default_calculated.sh b/tests/results/test_mandatory_secrets/00_2default_calculated.sh new file mode 100644 index 0000000..456e0a0 --- /dev/null +++ b/tests/results/test_mandatory_secrets/00_2default_calculated.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: string1 (no) +┗━━ 📓 var2 : + ┣━━ string1 (string1) + ┣━━ string2 + ┗━━ string3 diff --git a/tests/results/test_mandatory_secrets/00_2default_calculated_multi.sh b/tests/results/test_mandatory_secrets/00_2default_calculated_multi.sh new file mode 100644 index 0000000..a5340fd --- /dev/null +++ b/tests/results/test_mandatory_secrets/00_2default_calculated_multi.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ string1 (no) +┃ ┣━━ string2 (yes) +┃ ┗━━ string3 (maybe) +┗━━ 📓 var2 : + ┣━━ string1 (string1) + ┣━━ string2 (string2) + ┗━━ string3 (string3) diff --git a/tests/results/test_mandatory_secrets/00_2default_calculated_variable_transitive.sh b/tests/results/test_mandatory_secrets/00_2default_calculated_variable_transitive.sh new file mode 100644 index 0000000..851283d --- /dev/null +++ b/tests/results/test_mandatory_secrets/00_2default_calculated_variable_transitive.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ domain1.lan +┃ ┗━━ domain2.lan +┗━━ 📓 var2 : + ┣━━ domain1.lan (domain1.lan) + ┗━━ domain2.lan (domain2.lan) diff --git a/tests/results/test_mandatory_secrets/00_4load_subfolder.sh b/tests/results/test_mandatory_secrets/00_4load_subfolder.sh new file mode 100644 index 0000000..745d9a2 --- /dev/null +++ b/tests/results/test_mandatory_secrets/00_4load_subfolder.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: string1 +┗━━ 📓 var2: string1 diff --git a/tests/results/test_mandatory_secrets/00_5load_notype.sh b/tests/results/test_mandatory_secrets/00_5load_notype.sh new file mode 100644 index 0000000..65bd95e --- /dev/null +++ b/tests/results/test_mandatory_secrets/00_5load_notype.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 without_type: string1 (non) diff --git a/tests/results/test_mandatory_secrets/00_6boolean.sh b/tests/results/test_mandatory_secrets/00_6boolean.sh new file mode 100644 index 0000000..b27ab1f --- /dev/null +++ b/tests/results/test_mandatory_secrets/00_6boolean.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: true (true) +┣━━ 📓 var2: true (true) +┣━━ 📓 var3: true (true) +┣━━ 📓 var4: true (false) +┣━━ 📓 var5: true (false) +┗━━ 📓 var6: true (false) diff --git a/tests/results/test_mandatory_secrets/00_6boolean_no_mandatory.sh b/tests/results/test_mandatory_secrets/00_6boolean_no_mandatory.sh new file mode 100644 index 0000000..20d348f --- /dev/null +++ b/tests/results/test_mandatory_secrets/00_6boolean_no_mandatory.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: true (true) diff --git a/tests/results/test_mandatory_secrets/00_6choice.sh b/tests/results/test_mandatory_secrets/00_6choice.sh new file mode 100644 index 0000000..49df8e5 --- /dev/null +++ b/tests/results/test_mandatory_secrets/00_6choice.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: a +┣━━ 📓 var2: a +┣━━ 📓 var3: a +┣━━ 📓 var4: null +┣━━ 📓 var5: a (a) +┗━━ 📓 var6: 1 (1) diff --git a/tests/results/test_mandatory_secrets/00_6choice_calculation.sh b/tests/results/test_mandatory_secrets/00_6choice_calculation.sh new file mode 100644 index 0000000..ac78811 --- /dev/null +++ b/tests/results/test_mandatory_secrets/00_6choice_calculation.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: 0 (9) diff --git a/tests/results/test_mandatory_secrets/00_6choice_variable.sh b/tests/results/test_mandatory_secrets/00_6choice_variable.sh new file mode 100644 index 0000000..8acfef6 --- /dev/null +++ b/tests/results/test_mandatory_secrets/00_6choice_variable.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ string1 (a) +┃ ┣━━ string2 (b) +┃ ┗━━ string3 (c) +┗━━ 📓 var2: string1 (a) diff --git a/tests/results/test_mandatory_secrets/00_6custom.sh b/tests/results/test_mandatory_secrets/00_6custom.sh new file mode 100644 index 0000000..3e4f83a --- /dev/null +++ b/tests/results/test_mandatory_secrets/00_6custom.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 custom1: string1 +┗━━ 📓 custom2: string1 (value) diff --git a/tests/results/test_mandatory_secrets/00_6domainname.sh b/tests/results/test_mandatory_secrets/00_6domainname.sh new file mode 100644 index 0000000..4b6a7cc --- /dev/null +++ b/tests/results/test_mandatory_secrets/00_6domainname.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: domain1.lan (my.domain.name) diff --git a/tests/results/test_mandatory_secrets/00_6domainname_params.sh b/tests/results/test_mandatory_secrets/00_6domainname_params.sh new file mode 100644 index 0000000..4b6a7cc --- /dev/null +++ b/tests/results/test_mandatory_secrets/00_6domainname_params.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: domain1.lan (my.domain.name) diff --git a/tests/results/test_mandatory_secrets/00_6float.sh b/tests/results/test_mandatory_secrets/00_6float.sh new file mode 100644 index 0000000..b2f2084 --- /dev/null +++ b/tests/results/test_mandatory_secrets/00_6float.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: 1.1 (0.0) +┣━━ 📓 var2: 1.1 (0.0) +┣━━ 📓 var3: 1.1 (0.0) +┣━━ 📓 var4: 1.1 (10.1) +┣━━ 📓 var5: 1.1 (10.1) +┗━━ 📓 var6: 1.1 (10.1) diff --git a/tests/results/test_mandatory_secrets/00_6number.sh b/tests/results/test_mandatory_secrets/00_6number.sh new file mode 100644 index 0000000..65e8ec8 --- /dev/null +++ b/tests/results/test_mandatory_secrets/00_6number.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: 1 (0) +┣━━ 📓 var2: 1 (0) +┣━━ 📓 var3: 1 (0) +┣━━ 📓 var4: 1 (10) +┣━━ 📓 var5: 1 (10) +┗━━ 📓 var6: 1 (10) diff --git a/tests/results/test_mandatory_secrets/00_6port.sh b/tests/results/test_mandatory_secrets/00_6port.sh new file mode 100644 index 0000000..8a43519 --- /dev/null +++ b/tests/results/test_mandatory_secrets/00_6port.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 variable1: 80 +┣━━ 📓 variable2: 80 (8080) +┗━━ 📓 variable3: 80 (8080) diff --git a/tests/results/test_mandatory_secrets/00_6regexp.sh b/tests/results/test_mandatory_secrets/00_6regexp.sh new file mode 100644 index 0000000..c85c7c3 --- /dev/null +++ b/tests/results/test_mandatory_secrets/00_6regexp.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: #b1b1b1 (#a1a1a1) diff --git a/tests/results/test_mandatory_secrets/00_6string.sh b/tests/results/test_mandatory_secrets/00_6string.sh new file mode 100644 index 0000000..8ab1c48 --- /dev/null +++ b/tests/results/test_mandatory_secrets/00_6string.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: string1 +┣━━ 📓 var2: string1 +┣━━ 📓 var3: string1 +┣━━ 📓 var4: string1 (value) +┣━━ 📓 var5: string1 (value) +┗━━ 📓 var6: string1 (value) diff --git a/tests/results/test_mandatory_secrets/00_7choice_quote.sh b/tests/results/test_mandatory_secrets/00_7choice_quote.sh new file mode 100644 index 0000000..514be07 --- /dev/null +++ b/tests/results/test_mandatory_secrets/00_7choice_quote.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: quote' (quote') diff --git a/tests/results/test_mandatory_secrets/00_7help_quote.sh b/tests/results/test_mandatory_secrets/00_7help_quote.sh new file mode 100644 index 0000000..745d9a2 --- /dev/null +++ b/tests/results/test_mandatory_secrets/00_7help_quote.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: string1 +┗━━ 📓 var2: string1 diff --git a/tests/results/test_mandatory_secrets/00_7value_doublequote.sh b/tests/results/test_mandatory_secrets/00_7value_doublequote.sh new file mode 100644 index 0000000..cfb0fba --- /dev/null +++ b/tests/results/test_mandatory_secrets/00_7value_doublequote.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: string1 (quote") diff --git a/tests/results/test_mandatory_secrets/00_7value_doublequote2.sh b/tests/results/test_mandatory_secrets/00_7value_doublequote2.sh new file mode 100644 index 0000000..d2d1201 --- /dev/null +++ b/tests/results/test_mandatory_secrets/00_7value_doublequote2.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: string1 (quote'") diff --git a/tests/results/test_mandatory_secrets/00_7value_doublequote3.sh b/tests/results/test_mandatory_secrets/00_7value_doublequote3.sh new file mode 100644 index 0000000..452fc21 --- /dev/null +++ b/tests/results/test_mandatory_secrets/00_7value_doublequote3.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: string1 (quote\"\') diff --git a/tests/results/test_mandatory_secrets/00_7value_quote.sh b/tests/results/test_mandatory_secrets/00_7value_quote.sh new file mode 100644 index 0000000..4d59689 --- /dev/null +++ b/tests/results/test_mandatory_secrets/00_7value_quote.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: string1 (quote') diff --git a/tests/results/test_mandatory_secrets/00_8calculation_information.sh b/tests/results/test_mandatory_secrets/00_8calculation_information.sh new file mode 100644 index 0000000..20ee287 --- /dev/null +++ b/tests/results/test_mandatory_secrets/00_8calculation_information.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: string1 diff --git a/tests/results/test_mandatory_secrets/00_8test.sh b/tests/results/test_mandatory_secrets/00_8test.sh new file mode 100644 index 0000000..b1ffb34 --- /dev/null +++ b/tests/results/test_mandatory_secrets/00_8test.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: test +┣━━ 📓 var2: test (value) +┣━━ 📓 var3: test1 +┣━━ 📓 var4: null +┣━━ 📓 var5: false (true) +┗━━ 📓 var6 : + ┣━━ test1 + ┗━━ test2 diff --git a/tests/results/test_mandatory_secrets/00_9choice_variable_multi.sh b/tests/results/test_mandatory_secrets/00_9choice_variable_multi.sh new file mode 100644 index 0000000..a583b22 --- /dev/null +++ b/tests/results/test_mandatory_secrets/00_9choice_variable_multi.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 variable1 : +┃ ┣━━ val1 +┃ ┗━━ val2 +┗━━ 📓 variable2 : + ┣━━ val1 + ┗━━ val2 diff --git a/tests/results/test_mandatory_secrets/00_9choice_variables.sh b/tests/results/test_mandatory_secrets/00_9choice_variables.sh new file mode 100644 index 0000000..ab3878d --- /dev/null +++ b/tests/results/test_mandatory_secrets/00_9choice_variables.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 source_variable_1: string1 (val1) +┣━━ 📓 source_variable_2: string1 (val2) +┗━━ 📓 my_variable: string1 (val1) diff --git a/tests/results/test_mandatory_secrets/00_9default_calculation.sh b/tests/results/test_mandatory_secrets/00_9default_calculation.sh new file mode 100644 index 0000000..f48bdd2 --- /dev/null +++ b/tests/results/test_mandatory_secrets/00_9default_calculation.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: string1 (string_1_True_None) diff --git a/tests/results/test_mandatory_secrets/00_9default_calculation_information.sh b/tests/results/test_mandatory_secrets/00_9default_calculation_information.sh new file mode 100644 index 0000000..9d9c8c4 --- /dev/null +++ b/tests/results/test_mandatory_secrets/00_9default_calculation_information.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: string1 diff --git a/tests/results/test_mandatory_secrets/00_9default_calculation_information_other_variable.sh b/tests/results/test_mandatory_secrets/00_9default_calculation_information_other_variable.sh new file mode 100644 index 0000000..745d9a2 --- /dev/null +++ b/tests/results/test_mandatory_secrets/00_9default_calculation_information_other_variable.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: string1 +┗━━ 📓 var2: string1 diff --git a/tests/results/test_mandatory_secrets/00_9default_calculation_multi_optional.sh b/tests/results/test_mandatory_secrets/00_9default_calculation_multi_optional.sh new file mode 100644 index 0000000..09d1e5c --- /dev/null +++ b/tests/results/test_mandatory_secrets/00_9default_calculation_multi_optional.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 my_variable: string1 (val1) +┗━━ 📓 my_calculated_variable : + ┣━━ string1 (string1) + ┣━━ string2 + ┗━━ string3 diff --git a/tests/results/test_mandatory_secrets/00_9default_calculation_multi_optional2.sh b/tests/results/test_mandatory_secrets/00_9default_calculation_multi_optional2.sh new file mode 100644 index 0000000..09d1e5c --- /dev/null +++ b/tests/results/test_mandatory_secrets/00_9default_calculation_multi_optional2.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 my_variable: string1 (val1) +┗━━ 📓 my_calculated_variable : + ┣━━ string1 (string1) + ┣━━ string2 + ┗━━ string3 diff --git a/tests/results/test_mandatory_secrets/00_9default_calculation_optional.sh b/tests/results/test_mandatory_secrets/00_9default_calculation_optional.sh new file mode 100644 index 0000000..1636046 --- /dev/null +++ b/tests/results/test_mandatory_secrets/00_9default_calculation_optional.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 my_calculated_variable : + ┣━━ string1 + ┣━━ string2 + ┗━━ string3 diff --git a/tests/results/test_mandatory_secrets/00_9default_calculation_optional_exists.sh b/tests/results/test_mandatory_secrets/00_9default_calculation_optional_exists.sh new file mode 100644 index 0000000..2d44a09 --- /dev/null +++ b/tests/results/test_mandatory_secrets/00_9default_calculation_optional_exists.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 my_variable : +┃ ┣━━ string1 (val1) +┃ ┣━━ string2 (val2) +┃ ┗━━ string3 +┗━━ 📓 my_calculated_variable : + ┣━━ string1 (string1) + ┣━━ string2 (string2) + ┗━━ string3 (string3) diff --git a/tests/results/test_mandatory_secrets/00_9default_calculation_param_optional.sh b/tests/results/test_mandatory_secrets/00_9default_calculation_param_optional.sh new file mode 100644 index 0000000..67cc3d2 --- /dev/null +++ b/tests/results/test_mandatory_secrets/00_9default_calculation_param_optional.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: string1 (string1) +┗━━ 📓 var2: string1 (no) diff --git a/tests/results/test_mandatory_secrets/00_9default_information_other_variable.sh b/tests/results/test_mandatory_secrets/00_9default_information_other_variable.sh new file mode 100644 index 0000000..745d9a2 --- /dev/null +++ b/tests/results/test_mandatory_secrets/00_9default_information_other_variable.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: string1 +┗━━ 📓 var2: string1 diff --git a/tests/results/test_mandatory_secrets/00_9default_integer.sh b/tests/results/test_mandatory_secrets/00_9default_integer.sh new file mode 100644 index 0000000..ac78811 --- /dev/null +++ b/tests/results/test_mandatory_secrets/00_9default_integer.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: 0 (9) diff --git a/tests/results/test_mandatory_secrets/01_6boolean_multi.sh b/tests/results/test_mandatory_secrets/01_6boolean_multi.sh new file mode 100644 index 0000000..fd45bd5 --- /dev/null +++ b/tests/results/test_mandatory_secrets/01_6boolean_multi.sh @@ -0,0 +1,23 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┗━━ true (true) +┣━━ 📓 var2 : +┃ ┗━━ true (true) +┣━━ 📓 var3 : +┃ ┗━━ true (true) +┣━━ 📓 var4 : +┃ ┗━━ true (false) +┣━━ 📓 var5 : +┃ ┗━━ true (false) +┣━━ 📓 var6 : +┃ ┗━━ true (false) +┣━━ 📓 var7 : +┃ ┗━━ true (true) +┗━━ 📓 var8 : + ┗━━ true (true) diff --git a/tests/results/test_mandatory_secrets/01_6custom_multi.sh b/tests/results/test_mandatory_secrets/01_6custom_multi.sh new file mode 100644 index 0000000..9ca11f8 --- /dev/null +++ b/tests/results/test_mandatory_secrets/01_6custom_multi.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 custom1 : +┃ ┣━━ string1 +┃ ┣━━ string2 +┃ ┗━━ string3 +┗━━ 📓 custom2 : + ┣━━ string1 (value) + ┣━━ string2 + ┗━━ string3 diff --git a/tests/results/test_mandatory_secrets/01_6float_multi.sh b/tests/results/test_mandatory_secrets/01_6float_multi.sh new file mode 100644 index 0000000..23d167b --- /dev/null +++ b/tests/results/test_mandatory_secrets/01_6float_multi.sh @@ -0,0 +1,39 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ 1.1 (0.0) +┃ ┣━━ 2.2 +┃ ┗━━ 3.3 +┣━━ 📓 var2 : +┃ ┣━━ 1.1 (0.0) +┃ ┣━━ 2.2 +┃ ┗━━ 3.3 +┣━━ 📓 var3 : +┃ ┣━━ 1.1 (0.0) +┃ ┣━━ 2.2 +┃ ┗━━ 3.3 +┣━━ 📓 var4 : +┃ ┣━━ 1.1 (10.1) +┃ ┣━━ 2.2 +┃ ┗━━ 3.3 +┣━━ 📓 var5 : +┃ ┣━━ 1.1 (10.1) +┃ ┣━━ 2.2 +┃ ┗━━ 3.3 +┣━━ 📓 var6 : +┃ ┣━━ 1.1 (10.1) +┃ ┣━━ 2.2 +┃ ┗━━ 3.3 +┣━━ 📓 var7 : +┃ ┣━━ 1.1 (0.0) +┃ ┣━━ 2.2 +┃ ┗━━ 3.3 +┗━━ 📓 var8 : + ┣━━ 1.1 (0.0) + ┣━━ 2.2 + ┗━━ 3.3 diff --git a/tests/results/test_mandatory_secrets/01_6number_multi.sh b/tests/results/test_mandatory_secrets/01_6number_multi.sh new file mode 100644 index 0000000..a5ad107 --- /dev/null +++ b/tests/results/test_mandatory_secrets/01_6number_multi.sh @@ -0,0 +1,39 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ 1 (0) +┃ ┣━━ 2 +┃ ┗━━ 3 +┣━━ 📓 var2 : +┃ ┣━━ 1 (0) +┃ ┣━━ 2 +┃ ┗━━ 3 +┣━━ 📓 var3 : +┃ ┣━━ 1 (0) +┃ ┣━━ 2 +┃ ┗━━ 3 +┣━━ 📓 var4 : +┃ ┣━━ 1 (10) +┃ ┣━━ 2 +┃ ┗━━ 3 +┣━━ 📓 var5 : +┃ ┣━━ 1 (10) +┃ ┣━━ 2 +┃ ┗━━ 3 +┣━━ 📓 var6 : +┃ ┣━━ 1 (10) +┃ ┣━━ 2 +┃ ┗━━ 3 +┣━━ 📓 var7 : +┃ ┣━━ 1 (0) +┃ ┣━━ 2 +┃ ┗━━ 3 +┗━━ 📓 var8 : + ┣━━ 1 (0) + ┣━━ 2 + ┗━━ 3 diff --git a/tests/results/test_mandatory_secrets/01_6string_empty.sh b/tests/results/test_mandatory_secrets/01_6string_empty.sh new file mode 100644 index 0000000..c8a3fd0 --- /dev/null +++ b/tests/results/test_mandatory_secrets/01_6string_empty.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var1 : + ┣━━ string1 (value) + ┣━━ string2 + ┗━━ string3 diff --git a/tests/results/test_mandatory_secrets/01_6string_multi.sh b/tests/results/test_mandatory_secrets/01_6string_multi.sh new file mode 100644 index 0000000..4e254cd --- /dev/null +++ b/tests/results/test_mandatory_secrets/01_6string_multi.sh @@ -0,0 +1,36 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ string1 +┃ ┣━━ string2 +┃ ┗━━ string3 +┣━━ 📓 var2 : +┃ ┣━━ string1 +┃ ┣━━ string2 +┃ ┗━━ string3 +┣━━ 📓 var3: string1 +┣━━ 📓 var4 : +┃ ┣━━ string1 (value) +┃ ┣━━ string2 +┃ ┗━━ string3 +┣━━ 📓 var5 : +┃ ┣━━ string1 (value) +┃ ┣━━ string2 +┃ ┗━━ string3 +┣━━ 📓 var6 : +┃ ┣━━ string1 (value) +┃ ┣━━ string2 +┃ ┗━━ string3 +┣━━ 📓 var7 : +┃ ┣━━ string1 (value) +┃ ┣━━ string2 +┃ ┗━━ string3 +┗━━ 📓 var8 : + ┣━━ string1 (value) + ┣━━ string2 + ┗━━ string3 diff --git a/tests/results/test_mandatory_secrets/01_7value_multi_doublequote.sh b/tests/results/test_mandatory_secrets/01_7value_multi_doublequote.sh new file mode 100644 index 0000000..c48b269 --- /dev/null +++ b/tests/results/test_mandatory_secrets/01_7value_multi_doublequote.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable : + ┣━━ string1 (quote") + ┣━━ string2 + ┗━━ string3 diff --git a/tests/results/test_mandatory_secrets/01_7value_multi_doublequote2.sh b/tests/results/test_mandatory_secrets/01_7value_multi_doublequote2.sh new file mode 100644 index 0000000..d28cadf --- /dev/null +++ b/tests/results/test_mandatory_secrets/01_7value_multi_doublequote2.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable : + ┣━━ string1 (quote'") + ┣━━ string2 + ┗━━ string3 diff --git a/tests/results/test_mandatory_secrets/01_7value_multi_quote.sh b/tests/results/test_mandatory_secrets/01_7value_multi_quote.sh new file mode 100644 index 0000000..7a0036e --- /dev/null +++ b/tests/results/test_mandatory_secrets/01_7value_multi_quote.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable : + ┣━━ string1 (quote') + ┣━━ string2 + ┗━━ string3 diff --git a/tests/results/test_mandatory_secrets/01_8calculation_information_multi.sh b/tests/results/test_mandatory_secrets/01_8calculation_information_multi.sh new file mode 100644 index 0000000..3d17763 --- /dev/null +++ b/tests/results/test_mandatory_secrets/01_8calculation_information_multi.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable : + ┣━━ string1 + ┣━━ string2 + ┗━━ string3 diff --git a/tests/results/test_mandatory_secrets/01_9choice_variable_multi.sh b/tests/results/test_mandatory_secrets/01_9choice_variable_multi.sh new file mode 100644 index 0000000..d7a7ea2 --- /dev/null +++ b/tests/results/test_mandatory_secrets/01_9choice_variable_multi.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 variable1 : +┃ ┣━━ string1 (a) +┃ ┣━━ string2 (b) +┃ ┗━━ string3 (c) +┗━━ 📓 variable2: string1 diff --git a/tests/results/test_mandatory_secrets/04_0type_param.sh b/tests/results/test_mandatory_secrets/04_0type_param.sh new file mode 100644 index 0000000..ddfef88 --- /dev/null +++ b/tests/results/test_mandatory_secrets/04_0type_param.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 int: 1 (10) diff --git a/tests/results/test_mandatory_secrets/04_1auto_save.sh b/tests/results/test_mandatory_secrets/04_1auto_save.sh new file mode 100644 index 0000000..a99ff67 --- /dev/null +++ b/tests/results/test_mandatory_secrets/04_1auto_save.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: no diff --git a/tests/results/test_mandatory_secrets/04_1auto_save_and_calculated.sh b/tests/results/test_mandatory_secrets/04_1auto_save_and_calculated.sh new file mode 100644 index 0000000..a730525 --- /dev/null +++ b/tests/results/test_mandatory_secrets/04_1auto_save_and_calculated.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: string1 (no) +┗━━ 📓 var2: no diff --git a/tests/results/test_mandatory_secrets/04_1auto_save_and_calculated_hidden.sh b/tests/results/test_mandatory_secrets/04_1auto_save_and_calculated_hidden.sh new file mode 100644 index 0000000..823343a --- /dev/null +++ b/tests/results/test_mandatory_secrets/04_1auto_save_and_calculated_hidden.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: string1 (no) +┗━━ 📓 var2: yes diff --git a/tests/results/test_mandatory_secrets/04_1auto_save_and_hidden.sh b/tests/results/test_mandatory_secrets/04_1auto_save_and_hidden.sh new file mode 100644 index 0000000..f3bbf7c --- /dev/null +++ b/tests/results/test_mandatory_secrets/04_1auto_save_and_hidden.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: yes diff --git a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden.sh b/tests/results/test_mandatory_secrets/04_1default_calculation_hidden.sh new file mode 100644 index 0000000..f4a35c3 --- /dev/null +++ b/tests/results/test_mandatory_secrets/04_1default_calculation_hidden.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: string1 (value) +┣━━ 📓 var2: string1 +┗━━ 📓 var3: string1 diff --git a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_2.sh b/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_2.sh new file mode 100644 index 0000000..f4a35c3 --- /dev/null +++ b/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_2.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: string1 (value) +┣━━ 📓 var2: string1 +┗━━ 📓 var3: string1 diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_optional.sh b/tests/results/test_mandatory_secrets/04_5disabled_calculation_optional.sh new file mode 100644 index 0000000..c862f1f --- /dev/null +++ b/tests/results/test_mandatory_secrets/04_5disabled_calculation_optional.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 condition: string1 (no) +┣━━ 📓 var1: null +┗━━ 📓 var2: string1 diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable.sh b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable.sh new file mode 100644 index 0000000..a9481ef --- /dev/null +++ b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 condition: true (false) diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable2.sh b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable2.sh new file mode 100644 index 0000000..881ad94 --- /dev/null +++ b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable2.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 condition: true (true) diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable3.sh b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable3.sh new file mode 100644 index 0000000..36d67de --- /dev/null +++ b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable3.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 condition: string1 (yes) +┗━━ 📓 variable: string1 diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable4.sh b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable4.sh new file mode 100644 index 0000000..672c603 --- /dev/null +++ b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable4.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 condition: string1 (yes) diff --git a/tests/results/test_mandatory_secrets/04_5validators.sh b/tests/results/test_mandatory_secrets/04_5validators.sh new file mode 100644 index 0000000..adce015 --- /dev/null +++ b/tests/results/test_mandatory_secrets/04_5validators.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 int: 1 diff --git a/tests/results/test_mandatory_secrets/04_5validators_differ.sh b/tests/results/test_mandatory_secrets/04_5validators_differ.sh new file mode 100644 index 0000000..e30325e --- /dev/null +++ b/tests/results/test_mandatory_secrets/04_5validators_differ.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: another_value (oui) +┗━━ 📓 var2: string1 (no) diff --git a/tests/results/test_mandatory_secrets/04_5validators_multi.sh b/tests/results/test_mandatory_secrets/04_5validators_multi.sh new file mode 100644 index 0000000..7f26d87 --- /dev/null +++ b/tests/results/test_mandatory_secrets/04_5validators_multi.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var1 : + ┣━━ string1 (no) + ┣━━ string2 (yes) + ┗━━ string3 diff --git a/tests/results/test_mandatory_secrets/04_5validators_multi2.sh b/tests/results/test_mandatory_secrets/04_5validators_multi2.sh new file mode 100644 index 0000000..3fcdbdb --- /dev/null +++ b/tests/results/test_mandatory_secrets/04_5validators_multi2.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var1 : + ┣━━ val1 (no) + ┗━━ val2 (yes) diff --git a/tests/results/test_mandatory_secrets/05_0multi_not_uniq.sh b/tests/results/test_mandatory_secrets/05_0multi_not_uniq.sh new file mode 100644 index 0000000..472495b --- /dev/null +++ b/tests/results/test_mandatory_secrets/05_0multi_not_uniq.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var1 : + ┣━━ string1 (non) + ┣━━ string2 + ┗━━ string3 diff --git a/tests/results/test_mandatory_secrets/05_0multi_uniq.sh b/tests/results/test_mandatory_secrets/05_0multi_uniq.sh new file mode 100644 index 0000000..d52c787 --- /dev/null +++ b/tests/results/test_mandatory_secrets/05_0multi_uniq.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable : + ┣━━ string1 (non) + ┣━━ string2 + ┗━━ string3 diff --git a/tests/results/test_mandatory_secrets/12_1auto_save_expert.sh b/tests/results/test_mandatory_secrets/12_1auto_save_expert.sh new file mode 100644 index 0000000..29435ca --- /dev/null +++ b/tests/results/test_mandatory_secrets/12_1auto_save_expert.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: no diff --git a/tests/results/test_mandatory_secrets/16_0redefine_description.sh b/tests/results/test_mandatory_secrets/16_0redefine_description.sh new file mode 100644 index 0000000..9d9c8c4 --- /dev/null +++ b/tests/results/test_mandatory_secrets/16_0redefine_description.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: string1 diff --git a/tests/results/test_mandatory_secrets/16_2family_redefine_calculation.sh b/tests/results/test_mandatory_secrets/16_2family_redefine_calculation.sh new file mode 100644 index 0000000..d2701ec --- /dev/null +++ b/tests/results/test_mandatory_secrets/16_2family_redefine_calculation.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_mandatory_secrets/16_2family_redefine_disabled.sh b/tests/results/test_mandatory_secrets/16_2family_redefine_disabled.sh new file mode 100644 index 0000000..d2701ec --- /dev/null +++ b/tests/results/test_mandatory_secrets/16_2family_redefine_disabled.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_mandatory_secrets/16_5exists_nonexists.sh b/tests/results/test_mandatory_secrets/16_5exists_nonexists.sh new file mode 100644 index 0000000..3466da7 --- /dev/null +++ b/tests/results/test_mandatory_secrets/16_5exists_nonexists.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: string1 (no) +┗━━ 📓 var2: string1 (yes) diff --git a/tests/results/test_mandatory_secrets/16_5exists_redefine.sh b/tests/results/test_mandatory_secrets/16_5exists_redefine.sh new file mode 100644 index 0000000..d93518e --- /dev/null +++ b/tests/results/test_mandatory_secrets/16_5exists_redefine.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var1: yes diff --git a/tests/results/test_mandatory_secrets/16_5redefine_calculation.sh b/tests/results/test_mandatory_secrets/16_5redefine_calculation.sh new file mode 100644 index 0000000..41a9217 --- /dev/null +++ b/tests/results/test_mandatory_secrets/16_5redefine_calculation.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: string1 (yes) diff --git a/tests/results/test_mandatory_secrets/16_5redefine_choice.sh b/tests/results/test_mandatory_secrets/16_5redefine_choice.sh new file mode 100644 index 0000000..a9898f1 --- /dev/null +++ b/tests/results/test_mandatory_secrets/16_5redefine_choice.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: a diff --git a/tests/results/test_mandatory_secrets/16_5redefine_default.sh b/tests/results/test_mandatory_secrets/16_5redefine_default.sh new file mode 100644 index 0000000..41a9217 --- /dev/null +++ b/tests/results/test_mandatory_secrets/16_5redefine_default.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: string1 (yes) diff --git a/tests/results/test_mandatory_secrets/16_5redefine_default_calculation.sh b/tests/results/test_mandatory_secrets/16_5redefine_default_calculation.sh new file mode 100644 index 0000000..20ee287 --- /dev/null +++ b/tests/results/test_mandatory_secrets/16_5redefine_default_calculation.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: string1 diff --git a/tests/results/test_mandatory_secrets/16_5redefine_family.sh b/tests/results/test_mandatory_secrets/16_5redefine_family.sh new file mode 100644 index 0000000..bfc9f47 --- /dev/null +++ b/tests/results/test_mandatory_secrets/16_5redefine_family.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 family + ┗━━ 📓 variable: string1 diff --git a/tests/results/test_mandatory_secrets/16_5redefine_help.sh b/tests/results/test_mandatory_secrets/16_5redefine_help.sh new file mode 100644 index 0000000..bfc9f47 --- /dev/null +++ b/tests/results/test_mandatory_secrets/16_5redefine_help.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 family + ┗━━ 📓 variable: string1 diff --git a/tests/results/test_mandatory_secrets/16_5redefine_hidden.sh b/tests/results/test_mandatory_secrets/16_5redefine_hidden.sh new file mode 100644 index 0000000..a958bd4 --- /dev/null +++ b/tests/results/test_mandatory_secrets/16_5redefine_hidden.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: no diff --git a/tests/results/test_mandatory_secrets/16_5redefine_multi.sh b/tests/results/test_mandatory_secrets/16_5redefine_multi.sh new file mode 100644 index 0000000..d52c787 --- /dev/null +++ b/tests/results/test_mandatory_secrets/16_5redefine_multi.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable : + ┣━━ string1 (non) + ┣━━ string2 + ┗━━ string3 diff --git a/tests/results/test_mandatory_secrets/16_5redefine_remove_disable_calculation.sh b/tests/results/test_mandatory_secrets/16_5redefine_remove_disable_calculation.sh new file mode 100644 index 0000000..7122d35 --- /dev/null +++ b/tests/results/test_mandatory_secrets/16_5redefine_remove_disable_calculation.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 condition: string1 (no) +┗━━ 📓 variable: string1 diff --git a/tests/results/test_mandatory_secrets/16_5test_redefine.sh b/tests/results/test_mandatory_secrets/16_5test_redefine.sh new file mode 100644 index 0000000..3208745 --- /dev/null +++ b/tests/results/test_mandatory_secrets/16_5test_redefine.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: test1 (no) +┣━━ 📓 var2: test1 (non) +┗━━ 📓 var3: string1 diff --git a/tests/results/test_mandatory_secrets/16_6choice_redefine.sh b/tests/results/test_mandatory_secrets/16_6choice_redefine.sh new file mode 100644 index 0000000..569602b --- /dev/null +++ b/tests/results/test_mandatory_secrets/16_6choice_redefine.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: a (c) diff --git a/tests/results/test_mandatory_secrets/16_6exists_redefine_family.sh b/tests/results/test_mandatory_secrets/16_6exists_redefine_family.sh new file mode 100644 index 0000000..0958ff9 --- /dev/null +++ b/tests/results/test_mandatory_secrets/16_6exists_redefine_family.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📂 family1 +┃ ┗━━ 📓 variable1: string1 +┗━━ 📂 family2 + ┗━━ 📓 variable2: string1 diff --git a/tests/results/test_mandatory_secrets/16exists_exists.sh b/tests/results/test_mandatory_secrets/16exists_exists.sh new file mode 100644 index 0000000..9d9c8c4 --- /dev/null +++ b/tests/results/test_mandatory_secrets/16exists_exists.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: string1 diff --git a/tests/results/test_mandatory_secrets/17_5redefine_leadership.sh b/tests/results/test_mandatory_secrets/17_5redefine_leadership.sh new file mode 100644 index 0000000..0986b3a --- /dev/null +++ b/tests/results/test_mandatory_secrets/17_5redefine_leadership.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader diff --git a/tests/results/test_mandatory_secrets/20_0empty_family.sh b/tests/results/test_mandatory_secrets/20_0empty_family.sh new file mode 100644 index 0000000..d2701ec --- /dev/null +++ b/tests/results/test_mandatory_secrets/20_0empty_family.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_mandatory_secrets/20_0family_append.sh b/tests/results/test_mandatory_secrets/20_0family_append.sh new file mode 100644 index 0000000..2a1dc69 --- /dev/null +++ b/tests/results/test_mandatory_secrets/20_0family_append.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 family + ┣━━ 📓 var1: string1 + ┗━━ 📓 var2: string1 diff --git a/tests/results/test_mandatory_secrets/20_0family_underscore.sh b/tests/results/test_mandatory_secrets/20_0family_underscore.sh new file mode 100644 index 0000000..d2701ec --- /dev/null +++ b/tests/results/test_mandatory_secrets/20_0family_underscore.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_mandatory_secrets/20_0multi_family.sh b/tests/results/test_mandatory_secrets/20_0multi_family.sh new file mode 100644 index 0000000..c94a75f --- /dev/null +++ b/tests/results/test_mandatory_secrets/20_0multi_family.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 family + ┗━━ 📂 subfamily +  ┗━━ 📓 variable: string1 diff --git a/tests/results/test_mandatory_secrets/20_0multi_family_basic.sh b/tests/results/test_mandatory_secrets/20_0multi_family_basic.sh new file mode 100644 index 0000000..c94a75f --- /dev/null +++ b/tests/results/test_mandatory_secrets/20_0multi_family_basic.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 family + ┗━━ 📂 subfamily +  ┗━━ 📓 variable: string1 diff --git a/tests/results/test_mandatory_secrets/20_0multi_family_expert.sh b/tests/results/test_mandatory_secrets/20_0multi_family_expert.sh new file mode 100644 index 0000000..a0a7fcb --- /dev/null +++ b/tests/results/test_mandatory_secrets/20_0multi_family_expert.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 family + ┗━━ 📂 subfamily +  ┗━━ 📓 variable: string1 diff --git a/tests/results/test_mandatory_secrets/20_0multi_family_order.sh b/tests/results/test_mandatory_secrets/20_0multi_family_order.sh new file mode 100644 index 0000000..cabace8 --- /dev/null +++ b/tests/results/test_mandatory_secrets/20_0multi_family_order.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 variable: string1 +┗━━ 📂 family + ┣━━ 📓 variable1: string1 + ┣━━ 📂 subfamily + ┃ ┗━━ 📓 variable: string1 + ┗━━ 📓 variable2: string1 diff --git a/tests/results/test_mandatory_secrets/20_0validators_differ_redefine.sh b/tests/results/test_mandatory_secrets/20_0validators_differ_redefine.sh new file mode 100644 index 0000000..9e562b8 --- /dev/null +++ b/tests/results/test_mandatory_secrets/20_0validators_differ_redefine.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: string1 (no) +┣━━ 📓 var2: string1 (no) +┗━━ 📓 var3: yes (yes) diff --git a/tests/results/test_mandatory_secrets/20_1empty_subfamily.sh b/tests/results/test_mandatory_secrets/20_1empty_subfamily.sh new file mode 100644 index 0000000..d2701ec --- /dev/null +++ b/tests/results/test_mandatory_secrets/20_1empty_subfamily.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_mandatory_secrets/20_9default_information_parent.sh b/tests/results/test_mandatory_secrets/20_9default_information_parent.sh new file mode 100644 index 0000000..2a1dc69 --- /dev/null +++ b/tests/results/test_mandatory_secrets/20_9default_information_parent.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 family + ┣━━ 📓 var1: string1 + ┗━━ 📓 var2: string1 diff --git a/tests/results/test_mandatory_secrets/24_0family_hidden_condition_sub_family.sh b/tests/results/test_mandatory_secrets/24_0family_hidden_condition_sub_family.sh new file mode 100644 index 0000000..386c7f7 --- /dev/null +++ b/tests/results/test_mandatory_secrets/24_0family_hidden_condition_sub_family.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 condition: string1 (no) +┗━━ 📂 family + ┗━━ 📂 subfamily +  ┗━━ 📓 var1: string1 diff --git a/tests/results/test_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.sh b/tests/results/test_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.sh new file mode 100644 index 0000000..d12c240 --- /dev/null +++ b/tests/results/test_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 condition: true (true) +┗━━ 📂 family + ┗━━ 📂 subfamily +  ┗━━ 📓 var1: null diff --git a/tests/results/test_mandatory_secrets/24_0family_hidden_param_condition_sub_family.sh b/tests/results/test_mandatory_secrets/24_0family_hidden_param_condition_sub_family.sh new file mode 100644 index 0000000..a43d055 --- /dev/null +++ b/tests/results/test_mandatory_secrets/24_0family_hidden_param_condition_sub_family.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 condition: string1 (no) +┗━━ 📂 family + ┗━━ 📂 sub_family +  ┗━━ 📓 var1: string1 diff --git a/tests/results/test_mandatory_secrets/24_0family_mandatory_condition.sh b/tests/results/test_mandatory_secrets/24_0family_mandatory_condition.sh new file mode 100644 index 0000000..d7edcb8 --- /dev/null +++ b/tests/results/test_mandatory_secrets/24_0family_mandatory_condition.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 condition: string1 (no) +┗━━ 📓 var: string1 diff --git a/tests/results/test_mandatory_secrets/24_0family_mandatory_condition_variable.sh b/tests/results/test_mandatory_secrets/24_0family_mandatory_condition_variable.sh new file mode 100644 index 0000000..d88e1e8 --- /dev/null +++ b/tests/results/test_mandatory_secrets/24_0family_mandatory_condition_variable.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 condition: true (true) +┗━━ 📓 var: string1 diff --git a/tests/results/test_mandatory_secrets/24_7validators_variable_optional.sh b/tests/results/test_mandatory_secrets/24_7validators_variable_optional.sh new file mode 100644 index 0000000..0c957fe --- /dev/null +++ b/tests/results/test_mandatory_secrets/24_7validators_variable_optional.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 general + ┣━━ 📓 int: 5 + ┗━━ 📓 int2: 1 (1) diff --git a/tests/results/test_mandatory_secrets/24_family_disabled_var_hidden.sh b/tests/results/test_mandatory_secrets/24_family_disabled_var_hidden.sh new file mode 100644 index 0000000..d2701ec --- /dev/null +++ b/tests/results/test_mandatory_secrets/24_family_disabled_var_hidden.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_mandatory_secrets/40_0leadership.sh b/tests/results/test_mandatory_secrets/40_0leadership.sh new file mode 100644 index 0000000..1cf06b1 --- /dev/null +++ b/tests/results/test_mandatory_secrets/40_0leadership.sh @@ -0,0 +1,20 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string1 + ┃ ┣━━ 📓 follower1: string1 + ┃ ┗━━ 📓 follower2: string1 + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string2 + ┃ ┣━━ 📓 follower1: string2 + ┃ ┗━━ 📓 follower2: string2 + ┗━━ 📂 leader +  ┣━━ 📓 leader: string3 +  ┣━━ 📓 follower1: string3 +  ┗━━ 📓 follower2: string3 diff --git a/tests/results/test_mandatory_secrets/40_0leadership_diff_name.sh b/tests/results/test_mandatory_secrets/40_0leadership_diff_name.sh new file mode 100644 index 0000000..a4b3870 --- /dev/null +++ b/tests/results/test_mandatory_secrets/40_0leadership_diff_name.sh @@ -0,0 +1,20 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leadership + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string1 + ┃ ┣━━ 📓 follower1: string1 + ┃ ┗━━ 📓 follower2: string1 + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string2 + ┃ ┣━━ 📓 follower1: string2 + ┃ ┗━━ 📓 follower2: string2 + ┗━━ 📂 leader +  ┣━━ 📓 leader: string3 +  ┣━━ 📓 follower1: string3 +  ┗━━ 📓 follower2: string3 diff --git a/tests/results/test_mandatory_secrets/40_0leadership_empty.sh b/tests/results/test_mandatory_secrets/40_0leadership_empty.sh new file mode 100644 index 0000000..d2701ec --- /dev/null +++ b/tests/results/test_mandatory_secrets/40_0leadership_empty.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_mandatory_secrets/40_0leadership_follower_default_calculation.sh b/tests/results/test_mandatory_secrets/40_0leadership_follower_default_calculation.sh new file mode 100644 index 0000000..de2c6b6 --- /dev/null +++ b/tests/results/test_mandatory_secrets/40_0leadership_follower_default_calculation.sh @@ -0,0 +1,20 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string1 + ┃ ┣━━ 📓 follower1: string1 (value) + ┃ ┗━━ 📓 follower2: string1 (string1) + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string2 + ┃ ┣━━ 📓 follower1: string2 (value) + ┃ ┗━━ 📓 follower2: string2 (string2) + ┗━━ 📂 leader +  ┣━━ 📓 leader: string3 +  ┣━━ 📓 follower1: string3 (value) +  ┗━━ 📓 follower2: string3 (string3) diff --git a/tests/results/test_mandatory_secrets/40_0leadership_follower_default_value.sh b/tests/results/test_mandatory_secrets/40_0leadership_follower_default_value.sh new file mode 100644 index 0000000..ec2629f --- /dev/null +++ b/tests/results/test_mandatory_secrets/40_0leadership_follower_default_value.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string1 + ┃ ┗━━ 📓 follower1: string1 (value) + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string2 + ┃ ┗━━ 📓 follower1: string2 (value) + ┗━━ 📂 leader +  ┣━━ 📓 leader: string3 +  ┗━━ 📓 follower1: string3 (value) diff --git a/tests/results/test_mandatory_secrets/40_0leadership_leader_not_multi.sh b/tests/results/test_mandatory_secrets/40_0leadership_leader_not_multi.sh new file mode 100644 index 0000000..3559fd2 --- /dev/null +++ b/tests/results/test_mandatory_secrets/40_0leadership_leader_not_multi.sh @@ -0,0 +1,23 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📂 general +┃ ┗━━ 📓 mode_conteneur_actif: string1 (non) +┗━━ 📂 general1 + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 +  ┃ ┣━━ 📓 follower1: string1 +  ┃ ┗━━ 📓 follower2: string1 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┣━━ 📓 follower1: string2 +  ┃ ┗━━ 📓 follower2: string2 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┣━━ 📓 follower1: string3 +   ┗━━ 📓 follower2: string3 diff --git a/tests/results/test_mandatory_secrets/40_1leadership_append_follower.sh b/tests/results/test_mandatory_secrets/40_1leadership_append_follower.sh new file mode 100644 index 0000000..6f82870 --- /dev/null +++ b/tests/results/test_mandatory_secrets/40_1leadership_append_follower.sh @@ -0,0 +1,23 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string1 + ┃ ┣━━ 📓 follower1: string1 + ┃ ┣━━ 📓 follower2: string1 + ┃ ┗━━ 📓 follower3: string1 + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string2 + ┃ ┣━━ 📓 follower1: string2 + ┃ ┣━━ 📓 follower2: string2 + ┃ ┗━━ 📓 follower3: string2 + ┗━━ 📂 leader +  ┣━━ 📓 leader: string3 +  ┣━━ 📓 follower1: string3 +  ┣━━ 📓 follower2: string3 +  ┗━━ 📓 follower3: string3 diff --git a/tests/results/test_mandatory_secrets/40_6leadership_follower_multi.sh b/tests/results/test_mandatory_secrets/40_6leadership_follower_multi.sh new file mode 100644 index 0000000..edf63fb --- /dev/null +++ b/tests/results/test_mandatory_secrets/40_6leadership_follower_multi.sh @@ -0,0 +1,38 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leadership + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string1 + ┃ ┣━━ 📓 follower1 : + ┃ ┃ ┣━━ string1 + ┃ ┃ ┣━━ string2 + ┃ ┃ ┗━━ string3 + ┃ ┗━━ 📓 follower2 : + ┃  ┣━━ string1 (value) + ┃  ┣━━ string2 + ┃  ┗━━ string3 + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string2 + ┃ ┣━━ 📓 follower1 : + ┃ ┃ ┣━━ string1 + ┃ ┃ ┣━━ string2 + ┃ ┃ ┗━━ string3 + ┃ ┗━━ 📓 follower2 : + ┃  ┣━━ string1 (value) + ┃  ┣━━ string2 + ┃  ┗━━ string3 + ┗━━ 📂 leader +  ┣━━ 📓 leader: string3 +  ┣━━ 📓 follower1 : +  ┃ ┣━━ string1 +  ┃ ┣━━ string2 +  ┃ ┗━━ string3 +  ┗━━ 📓 follower2 : +   ┣━━ string1 (value) +   ┣━━ string2 +   ┗━━ string3 diff --git a/tests/results/test_mandatory_secrets/40_8calculation_boolean.sh b/tests/results/test_mandatory_secrets/40_8calculation_boolean.sh new file mode 100644 index 0000000..5ad3273 --- /dev/null +++ b/tests/results/test_mandatory_secrets/40_8calculation_boolean.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 bool: true (false) +┣━━ 📓 multi1 : +┃ ┣━━ true (true) +┃ ┗━━ false +┗━━ 📓 multi2 : + ┗━━ true (false) diff --git a/tests/results/test_mandatory_secrets/40_8calculation_multi_variable.sh b/tests/results/test_mandatory_secrets/40_8calculation_multi_variable.sh new file mode 100644 index 0000000..f02cd68 --- /dev/null +++ b/tests/results/test_mandatory_secrets/40_8calculation_multi_variable.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ string1 (string1) +┃ ┣━━ string2 (string1) +┃ ┗━━ string3 +┣━━ 📓 var2: string1 (no) +┗━━ 📓 var3: string1 (yes) diff --git a/tests/results/test_mandatory_secrets/40_8calculation_multi_variable_parent.sh b/tests/results/test_mandatory_secrets/40_8calculation_multi_variable_parent.sh new file mode 100644 index 0000000..e3c89bf --- /dev/null +++ b/tests/results/test_mandatory_secrets/40_8calculation_multi_variable_parent.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var: string1 (no) +┗━━ 📂 fam1 + ┗━━ 📓 var: string1 (string1) diff --git a/tests/results/test_mandatory_secrets/40_8calculation_multi_variable_parent2.sh b/tests/results/test_mandatory_secrets/40_8calculation_multi_variable_parent2.sh new file mode 100644 index 0000000..b3ffd39 --- /dev/null +++ b/tests/results/test_mandatory_secrets/40_8calculation_multi_variable_parent2.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📂 fam1 +┃ ┗━━ 📓 var: string1 (no) +┗━━ 📂 fam2 + ┗━━ 📓 var: string1 (string1) diff --git a/tests/results/test_mandatory_secrets/41_0choice_leader.sh b/tests/results/test_mandatory_secrets/41_0choice_leader.sh new file mode 100644 index 0000000..621054f --- /dev/null +++ b/tests/results/test_mandatory_secrets/41_0choice_leader.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string1 + ┃ ┗━━ 📓 follower1: a + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string2 + ┃ ┗━━ 📓 follower1: b + ┗━━ 📂 leader +  ┣━━ 📓 leader: string3 +  ┗━━ 📓 follower1: c diff --git a/tests/results/test_mandatory_secrets/44_0leadership_hidden.sh b/tests/results/test_mandatory_secrets/44_0leadership_hidden.sh new file mode 100644 index 0000000..0986b3a --- /dev/null +++ b/tests/results/test_mandatory_secrets/44_0leadership_hidden.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader diff --git a/tests/results/test_mandatory_secrets/44_0leadership_leader_hidden.sh b/tests/results/test_mandatory_secrets/44_0leadership_leader_hidden.sh new file mode 100644 index 0000000..0986b3a --- /dev/null +++ b/tests/results/test_mandatory_secrets/44_0leadership_leader_hidden.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader diff --git a/tests/results/test_mandatory_secrets/44_1leadership_append_hidden_follower.sh b/tests/results/test_mandatory_secrets/44_1leadership_append_hidden_follower.sh new file mode 100644 index 0000000..0986b3a --- /dev/null +++ b/tests/results/test_mandatory_secrets/44_1leadership_append_hidden_follower.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader diff --git a/tests/results/test_mandatory_secrets/44_4leadership_mandatory.sh b/tests/results/test_mandatory_secrets/44_4leadership_mandatory.sh new file mode 100644 index 0000000..2631fe9 --- /dev/null +++ b/tests/results/test_mandatory_secrets/44_4leadership_mandatory.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string1 + ┃ ┗━━ 📓 follower1: string1 + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string2 + ┃ ┗━━ 📓 follower1: string2 + ┗━━ 📂 leader +  ┣━━ 📓 leader: string3 +  ┗━━ 📓 follower1: string3 diff --git a/tests/results/test_mandatory_secrets/44_4leadership_mandatory_follower.sh b/tests/results/test_mandatory_secrets/44_4leadership_mandatory_follower.sh new file mode 100644 index 0000000..76d1cd5 --- /dev/null +++ b/tests/results/test_mandatory_secrets/44_4leadership_mandatory_follower.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string1 + ┃ ┗━━ 📓 follower: string1 + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string2 + ┃ ┗━━ 📓 follower: string2 + ┗━━ 📂 leader +  ┣━━ 📓 leader: string3 +  ┗━━ 📓 follower: string3 diff --git a/tests/results/test_mandatory_secrets/44_5leadership_leader_hidden_calculation.sh b/tests/results/test_mandatory_secrets/44_5leadership_leader_hidden_calculation.sh new file mode 100644 index 0000000..3ed7795 --- /dev/null +++ b/tests/results/test_mandatory_secrets/44_5leadership_leader_hidden_calculation.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 condition: string1 (no) +┗━━ 📂 leader + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string1 + ┃ ┗━━ 📓 follower: string1 + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string2 + ┃ ┗━━ 📓 follower: string2 + ┗━━ 📂 leader +  ┣━━ 📓 leader: string3 +  ┗━━ 📓 follower: string3 diff --git a/tests/results/test_mandatory_secrets/44_6leadership_follower_disabled_calculation.sh b/tests/results/test_mandatory_secrets/44_6leadership_follower_disabled_calculation.sh new file mode 100644 index 0000000..c8cf81c --- /dev/null +++ b/tests/results/test_mandatory_secrets/44_6leadership_follower_disabled_calculation.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 condition: string1 (yes) +┗━━ 📂 leader + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string1 + ┃ ┗━━ 📓 follower: string1 + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string2 + ┃ ┗━━ 📓 follower: string2 + ┗━━ 📂 leader +  ┣━━ 📓 leader: string3 +  ┗━━ 📓 follower: string3 diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic.sh b/tests/results/test_mandatory_secrets/60_0family_dynamic.sh new file mode 100644 index 0000000..ef89e4b --- /dev/null +++ b/tests/results/test_mandatory_secrets/60_0family_dynamic.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 (val1) +┃ ┗━━ val2 (val2) +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: string1 +┗━━ 📂 dynval2 + ┗━━ 📓 var: string1 diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_1_1.sh b/tests/results/test_mandatory_secrets/60_0family_dynamic_1_1.sh new file mode 100644 index 0000000..ec8930d --- /dev/null +++ b/tests/results/test_mandatory_secrets/60_0family_dynamic_1_1.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 (val1) +┃ ┗━━ val2 (val2) +┣━━ 📂 dynval1 +┃ ┗━━ 📓 vardyn: string1 +┗━━ 📂 dynval2 + ┗━━ 📓 vardyn: string1 diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_1_1_empty.sh b/tests/results/test_mandatory_secrets/60_0family_dynamic_1_1_empty.sh new file mode 100644 index 0000000..89e74b5 --- /dev/null +++ b/tests/results/test_mandatory_secrets/60_0family_dynamic_1_1_empty.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 vardyn: string1 +┗━━ 📂 dynval2 + ┗━━ 📓 vardyn: string1 diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_empty.sh b/tests/results/test_mandatory_secrets/60_0family_dynamic_empty.sh new file mode 100644 index 0000000..db9c00d --- /dev/null +++ b/tests/results/test_mandatory_secrets/60_0family_dynamic_empty.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ string1 +┃ ┣━━ string2 +┃ ┗━━ string3 +┣━━ 📂 dynstring1 +┃ ┗━━ 📓 var: string1 +┣━━ 📂 dynstring2 +┃ ┗━━ 📓 var: string1 +┗━━ 📂 dynstring3 + ┗━━ 📓 var: string1 diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_no_description.sh b/tests/results/test_mandatory_secrets/60_0family_dynamic_no_description.sh new file mode 100644 index 0000000..ef89e4b --- /dev/null +++ b/tests/results/test_mandatory_secrets/60_0family_dynamic_no_description.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 (val1) +┃ ┗━━ val2 (val2) +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: string1 +┗━━ 📂 dynval2 + ┗━━ 📓 var: string1 diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_no_description_empty.sh b/tests/results/test_mandatory_secrets/60_0family_dynamic_no_description_empty.sh new file mode 100644 index 0000000..c64d84a --- /dev/null +++ b/tests/results/test_mandatory_secrets/60_0family_dynamic_no_description_empty.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: string1 +┗━━ 📂 dynval2 + ┗━━ 📓 var: string1 diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_static.sh b/tests/results/test_mandatory_secrets/60_0family_dynamic_static.sh new file mode 100644 index 0000000..8433ae8 --- /dev/null +++ b/tests/results/test_mandatory_secrets/60_0family_dynamic_static.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: string1 +┗━━ 📂 dynval2 + ┗━━ 📓 var: string1 diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_test.sh b/tests/results/test_mandatory_secrets/60_0family_dynamic_test.sh new file mode 100644 index 0000000..c64d84a --- /dev/null +++ b/tests/results/test_mandatory_secrets/60_0family_dynamic_test.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: string1 +┗━━ 📂 dynval2 + ┗━━ 📓 var: string1 diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_empty.sh b/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_empty.sh new file mode 100644 index 0000000..a953da0 --- /dev/null +++ b/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_empty.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ string1 +┃ ┣━━ string2 +┃ ┗━━ string3 +┣━━ 📂 dynstring1 +┃ ┗━━ 📓 var: string1 (val) +┣━━ 📂 dynstring2 +┃ ┗━━ 📓 var: string1 (val) +┗━━ 📂 dynstring3 + ┗━━ 📓 var: string1 (val) diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_suffix.sh b/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_suffix.sh new file mode 100644 index 0000000..3c86228 --- /dev/null +++ b/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_suffix.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 (val1) +┃ ┗━━ val2 (val2) +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: string1 (a value) +┗━━ 📂 dynval2 + ┗━━ 📓 var: string1 (a value) diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.sh b/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.sh new file mode 100644 index 0000000..19ac83d --- /dev/null +++ b/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: string1 (a value) +┗━━ 📂 dynval2 + ┗━━ 📓 var: string1 (a value) diff --git a/tests/results/test_mandatory_secrets/60_0family_empty.sh b/tests/results/test_mandatory_secrets/60_0family_empty.sh new file mode 100644 index 0000000..d2701ec --- /dev/null +++ b/tests/results/test_mandatory_secrets/60_0family_empty.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_mandatory_secrets/60_0family_hidden.sh b/tests/results/test_mandatory_secrets/60_0family_hidden.sh new file mode 100644 index 0000000..10fba37 --- /dev/null +++ b/tests/results/test_mandatory_secrets/60_0family_hidden.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 family + ┗━━ 📓 var: null diff --git a/tests/results/test_mandatory_secrets/60_0family_mode.sh b/tests/results/test_mandatory_secrets/60_0family_mode.sh new file mode 100644 index 0000000..d5af23e --- /dev/null +++ b/tests/results/test_mandatory_secrets/60_0family_mode.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 family + ┗━━ 📓 var: string1 (non) diff --git a/tests/results/test_mandatory_secrets/60_1family_dynamic_jinja.sh b/tests/results/test_mandatory_secrets/60_1family_dynamic_jinja.sh new file mode 100644 index 0000000..7d22b32 --- /dev/null +++ b/tests/results/test_mandatory_secrets/60_1family_dynamic_jinja.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ string1 (val1) +┃ ┣━━ string2 (val2) +┃ ┗━━ string3 +┣━━ 📂 dyn1 +┃ ┗━━ 📓 var: string1 (val) +┣━━ 📂 dyn2 +┃ ┗━━ 📓 var: string1 (val) +┗━━ 📂 dyn3 + ┗━━ 📓 var: string1 (val) diff --git a/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.sh b/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.sh new file mode 100644 index 0000000..cd45ae4 --- /dev/null +++ b/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ val1 (val1) +┃ ┗━━ val2 (val2) +┣━━ 📂 dynval1 +┃ ┗━━ 📂 family +┃  ┗━━ 📓 var: string1 +┣━━ 📂 dynval2 +┃ ┗━━ 📂 family +┃  ┗━━ 📓 var: string1 +┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.sh b/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.sh new file mode 100644 index 0000000..63ec016 --- /dev/null +++ b/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 (val1) +┃ ┗━━ val2 (val2) +┣━━ 📂 dynval1 +┃ ┗━━ 📂 family +┃  ┗━━ 📓 var: string1 (val1) +┣━━ 📂 dynval2 +┃ ┗━━ 📂 family +┃  ┗━━ 📓 var: string1 (val2) +┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh b/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh new file mode 100644 index 0000000..a11d5fb --- /dev/null +++ b/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📂 family +┃  ┗━━ 📓 var: string1 (val1) +┣━━ 📂 dynval2 +┃ ┗━━ 📂 family +┃  ┗━━ 📓 var: string1 (val2) +┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.sh b/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.sh new file mode 100644 index 0000000..b2582f2 --- /dev/null +++ b/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📂 family +┃  ┗━━ 📓 var: string1 +┣━━ 📂 dynval2 +┃ ┗━━ 📂 family +┃  ┗━━ 📓 var: string1 +┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_mandatory_secrets/60_2family_dynamic_outside_calc.sh b/tests/results/test_mandatory_secrets/60_2family_dynamic_outside_calc.sh new file mode 100644 index 0000000..283c64a --- /dev/null +++ b/tests/results/test_mandatory_secrets/60_2family_dynamic_outside_calc.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ val1 (val1) +┃ ┗━━ val2 (val2) +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: string1 (val) +┣━━ 📂 dynval2 +┃ ┗━━ 📓 var: string1 (val) +┗━━ 📓 newvar: string1 (string1) diff --git a/tests/results/test_mandatory_secrets/60_2family_dynamic_outside_calc_empty.sh b/tests/results/test_mandatory_secrets/60_2family_dynamic_outside_calc_empty.sh new file mode 100644 index 0000000..01fbe72 --- /dev/null +++ b/tests/results/test_mandatory_secrets/60_2family_dynamic_outside_calc_empty.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: string1 (val) +┣━━ 📂 dynval2 +┃ ┗━━ 📓 var: string1 (val) +┗━━ 📓 newvar: string1 (string1) diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix2.sh b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix2.sh new file mode 100644 index 0000000..8f4cc48 --- /dev/null +++ b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix2.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 (val1) +┃ ┗━━ val2 (val2) +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: string1 (val1) +┗━━ 📂 dynval2 + ┗━━ 📓 var: string1 (val2) diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.sh b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.sh new file mode 100644 index 0000000..21086f8 --- /dev/null +++ b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: string1 (val1) +┗━━ 📂 dynval2 + ┗━━ 📓 var: string1 (val2) diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix_param.sh b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix_param.sh new file mode 100644 index 0000000..8f4cc48 --- /dev/null +++ b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix_param.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 (val1) +┃ ┗━━ val2 (val2) +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: string1 (val1) +┗━━ 📂 dynval2 + ┗━━ 📓 var: string1 (val2) diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.sh b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.sh new file mode 100644 index 0000000..21086f8 --- /dev/null +++ b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: string1 (val1) +┗━━ 📂 dynval2 + ┗━━ 📓 var: string1 (val2) diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable.sh b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable.sh new file mode 100644 index 0000000..09730e3 --- /dev/null +++ b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ val1 (val1) +┃ ┗━━ val2 (val2) +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: string1 +┣━━ 📂 dynval2 +┃ ┗━━ 📓 var: string1 +┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable_empty.sh b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable_empty.sh new file mode 100644 index 0000000..db12349 --- /dev/null +++ b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable_empty.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: string1 +┣━━ 📂 dynval2 +┃ ┗━━ 📓 var: string1 +┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_hidden_suffix.sh b/tests/results/test_mandatory_secrets/60_5family_dynamic_hidden_suffix.sh new file mode 100644 index 0000000..cabdce6 --- /dev/null +++ b/tests/results/test_mandatory_secrets/60_5family_dynamic_hidden_suffix.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📂 dynval1 +┃ ┣━━ 📓 var: string1 +┃ ┗━━ 📂 family +┃  ┗━━ 📓 var: string1 +┗━━ 📂 dynval2 + ┣━━ 📓 var: null + ┗━━ 📂 family +  ┗━━ 📓 var: null diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.sh b/tests/results/test_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.sh new file mode 100644 index 0000000..4c4033a --- /dev/null +++ b/tests/results/test_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 (val1) +┃ ┗━━ val2 (val2) +┣━━ 📂 dyn_val1 +┃ ┗━━ 📓 var: string1 (val1) +┣━━ 📂 dyn_val2 +┃ ┗━━ 📓 var: string1 (val2) +┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.sh b/tests/results/test_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.sh new file mode 100644 index 0000000..a834550 --- /dev/null +++ b/tests/results/test_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dyn_val1 +┃ ┗━━ 📓 var: string1 (val1) +┣━━ 📂 dyn_val2 +┃ ┗━━ 📓 var: string1 (val2) +┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_mandatory_secrets/60_6family_dynamic_leadership.sh b/tests/results/test_mandatory_secrets/60_6family_dynamic_leadership.sh new file mode 100644 index 0000000..a9c3f90 --- /dev/null +++ b/tests/results/test_mandatory_secrets/60_6family_dynamic_leadership.sh @@ -0,0 +1,38 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 (val1) +┃ ┗━━ val2 (val2) +┣━━ 📂 dynval1 +┃ ┗━━ 📂 leadership +┃  ┣━━ 📂 leader +┃  ┃ ┣━━ 📓 leader: string1 +┃  ┃ ┣━━ 📓 follower1: string1 +┃  ┃ ┗━━ 📓 follower2: string1 +┃  ┣━━ 📂 leader +┃  ┃ ┣━━ 📓 leader: string2 +┃  ┃ ┣━━ 📓 follower1: string2 +┃  ┃ ┗━━ 📓 follower2: string2 +┃  ┗━━ 📂 leader +┃   ┣━━ 📓 leader: string3 +┃   ┣━━ 📓 follower1: string3 +┃   ┗━━ 📓 follower2: string3 +┗━━ 📂 dynval2 + ┗━━ 📂 leadership +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 +  ┃ ┣━━ 📓 follower1: string1 +  ┃ ┗━━ 📓 follower2: string1 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┣━━ 📓 follower1: string2 +  ┃ ┗━━ 📓 follower2: string2 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┣━━ 📓 follower1: string3 +   ┗━━ 📓 follower2: string3 diff --git a/tests/results/test_mandatory_secrets/60_6family_dynamic_leadership_empty.sh b/tests/results/test_mandatory_secrets/60_6family_dynamic_leadership_empty.sh new file mode 100644 index 0000000..8acc46c --- /dev/null +++ b/tests/results/test_mandatory_secrets/60_6family_dynamic_leadership_empty.sh @@ -0,0 +1,38 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📂 leadership +┃  ┣━━ 📂 leader +┃  ┃ ┣━━ 📓 leader: string1 +┃  ┃ ┣━━ 📓 follower1: string1 +┃  ┃ ┗━━ 📓 follower2: string1 +┃  ┣━━ 📂 leader +┃  ┃ ┣━━ 📓 leader: string2 +┃  ┃ ┣━━ 📓 follower1: string2 +┃  ┃ ┗━━ 📓 follower2: string2 +┃  ┗━━ 📂 leader +┃   ┣━━ 📓 leader: string3 +┃   ┣━━ 📓 follower1: string3 +┃   ┗━━ 📓 follower2: string3 +┗━━ 📂 dynval2 + ┗━━ 📂 leadership +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 +  ┃ ┣━━ 📓 follower1: string1 +  ┃ ┗━━ 📓 follower2: string1 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┣━━ 📓 follower1: string2 +  ┃ ┗━━ 📓 follower2: string2 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┣━━ 📓 follower1: string3 +   ┗━━ 📓 follower2: string3 diff --git a/tests/results/test_mandatory_secrets/60_9family_dynamic_calc_both.sh b/tests/results/test_mandatory_secrets/60_9family_dynamic_calc_both.sh new file mode 100644 index 0000000..407ad72 --- /dev/null +++ b/tests/results/test_mandatory_secrets/60_9family_dynamic_calc_both.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var: string1 (val2) +┣━━ 📂 dynval1 +┃ ┗━━ 📓 vardyn: string1 +┗━━ 📂 dynstring1 + ┗━━ 📓 vardyn: string1 diff --git a/tests/results/test_mandatory_secrets/68_0family_leadership_mode.sh b/tests/results/test_mandatory_secrets/68_0family_leadership_mode.sh new file mode 100644 index 0000000..1cf06b1 --- /dev/null +++ b/tests/results/test_mandatory_secrets/68_0family_leadership_mode.sh @@ -0,0 +1,20 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string1 + ┃ ┣━━ 📓 follower1: string1 + ┃ ┗━━ 📓 follower2: string1 + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string2 + ┃ ┣━━ 📓 follower1: string2 + ┃ ┗━━ 📓 follower2: string2 + ┗━━ 📂 leader +  ┣━━ 📓 leader: string3 +  ┣━━ 📓 follower1: string3 +  ┗━━ 📓 follower2: string3 diff --git a/tests/results/test_namespace_mandatory_secrets/00_0empty.sh b/tests/results/test_namespace_mandatory_secrets/00_0empty.sh new file mode 100644 index 0000000..d2701ec --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/00_0empty.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_namespace_mandatory_secrets/00_0version_underscore.sh b/tests/results/test_namespace_mandatory_secrets/00_0version_underscore.sh new file mode 100644 index 0000000..27c2258 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/00_0version_underscore.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 version: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/00_1empty_variable.sh b/tests/results/test_namespace_mandatory_secrets/00_1empty_variable.sh new file mode 100644 index 0000000..9413de7 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/00_1empty_variable.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 empty: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated.sh b/tests/results/test_namespace_mandatory_secrets/00_2default_calculated.sh new file mode 100644 index 0000000..a835e23 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/00_2default_calculated.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: string1 (no) + ┗━━ 📓 var2 : +  ┣━━ string1 (string1) +  ┣━━ string2 +  ┗━━ string3 diff --git a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_multi.sh b/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_multi.sh new file mode 100644 index 0000000..9411e95 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_multi.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ string1 (no) + ┃ ┣━━ string2 (yes) + ┃ ┗━━ string3 (maybe) + ┗━━ 📓 var2 : +  ┣━━ string1 (string1) +  ┣━━ string2 (string2) +  ┗━━ string3 (string3) diff --git a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable_transitive.sh b/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable_transitive.sh new file mode 100644 index 0000000..2be0a76 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable_transitive.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ domain1.lan + ┃ ┗━━ domain2.lan + ┗━━ 📓 var2 : +  ┣━━ domain1.lan (domain1.lan) +  ┗━━ domain2.lan (domain2.lan) diff --git a/tests/results/test_namespace_mandatory_secrets/00_4load_subfolder.sh b/tests/results/test_namespace_mandatory_secrets/00_4load_subfolder.sh new file mode 100644 index 0000000..874cc7e --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/00_4load_subfolder.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: string1 + ┗━━ 📓 var2: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/00_5load_notype.sh b/tests/results/test_namespace_mandatory_secrets/00_5load_notype.sh new file mode 100644 index 0000000..03776cc --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/00_5load_notype.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 without_type: string1 (non) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6boolean.sh b/tests/results/test_namespace_mandatory_secrets/00_6boolean.sh new file mode 100644 index 0000000..7bc694e --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/00_6boolean.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: true (true) + ┣━━ 📓 var2: true (true) + ┣━━ 📓 var3: true (true) + ┣━━ 📓 var4: true (false) + ┣━━ 📓 var5: true (false) + ┗━━ 📓 var6: true (false) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6boolean_no_mandatory.sh b/tests/results/test_namespace_mandatory_secrets/00_6boolean_no_mandatory.sh new file mode 100644 index 0000000..311b7c7 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/00_6boolean_no_mandatory.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: true (true) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6choice.sh b/tests/results/test_namespace_mandatory_secrets/00_6choice.sh new file mode 100644 index 0000000..e96af4d --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/00_6choice.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: a + ┣━━ 📓 var2: a + ┣━━ 📓 var3: a + ┣━━ 📓 var4: null + ┣━━ 📓 var5: a (a) + ┗━━ 📓 var6: 1 (1) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6choice_calculation.sh b/tests/results/test_namespace_mandatory_secrets/00_6choice_calculation.sh new file mode 100644 index 0000000..438fae7 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/00_6choice_calculation.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: 0 (9) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6choice_variable.sh b/tests/results/test_namespace_mandatory_secrets/00_6choice_variable.sh new file mode 100644 index 0000000..95f675c --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/00_6choice_variable.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ string1 (a) + ┃ ┣━━ string2 (b) + ┃ ┗━━ string3 (c) + ┗━━ 📓 var2: string1 (a) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6custom.sh b/tests/results/test_namespace_mandatory_secrets/00_6custom.sh new file mode 100644 index 0000000..6bd301f --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/00_6custom.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 custom1: string1 + ┗━━ 📓 custom2: string1 (value) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6domainname.sh b/tests/results/test_namespace_mandatory_secrets/00_6domainname.sh new file mode 100644 index 0000000..c39818d --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/00_6domainname.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: domain1.lan (my.domain.name) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6domainname_params.sh b/tests/results/test_namespace_mandatory_secrets/00_6domainname_params.sh new file mode 100644 index 0000000..c39818d --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/00_6domainname_params.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: domain1.lan (my.domain.name) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6float.sh b/tests/results/test_namespace_mandatory_secrets/00_6float.sh new file mode 100644 index 0000000..2a6b33c --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/00_6float.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: 1.1 (0.0) + ┣━━ 📓 var2: 1.1 (0.0) + ┣━━ 📓 var3: 1.1 (0.0) + ┣━━ 📓 var4: 1.1 (10.1) + ┣━━ 📓 var5: 1.1 (10.1) + ┗━━ 📓 var6: 1.1 (10.1) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6number.sh b/tests/results/test_namespace_mandatory_secrets/00_6number.sh new file mode 100644 index 0000000..775f0a2 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/00_6number.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: 1 (0) + ┣━━ 📓 var2: 1 (0) + ┣━━ 📓 var3: 1 (0) + ┣━━ 📓 var4: 1 (10) + ┣━━ 📓 var5: 1 (10) + ┗━━ 📓 var6: 1 (10) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6port.sh b/tests/results/test_namespace_mandatory_secrets/00_6port.sh new file mode 100644 index 0000000..2db48f1 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/00_6port.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 variable1: 80 + ┣━━ 📓 variable2: 80 (8080) + ┗━━ 📓 variable3: 80 (8080) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6regexp.sh b/tests/results/test_namespace_mandatory_secrets/00_6regexp.sh new file mode 100644 index 0000000..825fb2e --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/00_6regexp.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: #b1b1b1 (#a1a1a1) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6string.sh b/tests/results/test_namespace_mandatory_secrets/00_6string.sh new file mode 100644 index 0000000..9ee9b1f --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/00_6string.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: string1 + ┣━━ 📓 var2: string1 + ┣━━ 📓 var3: string1 + ┣━━ 📓 var4: string1 (value) + ┣━━ 📓 var5: string1 (value) + ┗━━ 📓 var6: string1 (value) diff --git a/tests/results/test_namespace_mandatory_secrets/00_7choice_quote.sh b/tests/results/test_namespace_mandatory_secrets/00_7choice_quote.sh new file mode 100644 index 0000000..9622afb --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/00_7choice_quote.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: quote' (quote') diff --git a/tests/results/test_namespace_mandatory_secrets/00_7help_quote.sh b/tests/results/test_namespace_mandatory_secrets/00_7help_quote.sh new file mode 100644 index 0000000..874cc7e --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/00_7help_quote.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: string1 + ┗━━ 📓 var2: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote.sh b/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote.sh new file mode 100644 index 0000000..e8ec0b1 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: string1 (quote") diff --git a/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote2.sh b/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote2.sh new file mode 100644 index 0000000..51ba23a --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote2.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: string1 (quote'") diff --git a/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote3.sh b/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote3.sh new file mode 100644 index 0000000..666a92a --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote3.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: string1 (quote\"\') diff --git a/tests/results/test_namespace_mandatory_secrets/00_7value_quote.sh b/tests/results/test_namespace_mandatory_secrets/00_7value_quote.sh new file mode 100644 index 0000000..cda367b --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/00_7value_quote.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: string1 (quote') diff --git a/tests/results/test_namespace_mandatory_secrets/00_8calculation_information.sh b/tests/results/test_namespace_mandatory_secrets/00_8calculation_information.sh new file mode 100644 index 0000000..c0e9411 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/00_8calculation_information.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/00_8test.sh b/tests/results/test_namespace_mandatory_secrets/00_8test.sh new file mode 100644 index 0000000..0b2e0e4 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/00_8test.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: test + ┣━━ 📓 var2: test (value) + ┣━━ 📓 var3: test1 + ┣━━ 📓 var4: null + ┣━━ 📓 var5: false (true) + ┗━━ 📓 var6 : +  ┣━━ test1 +  ┗━━ test2 diff --git a/tests/results/test_namespace_mandatory_secrets/00_9choice_variable_multi.sh b/tests/results/test_namespace_mandatory_secrets/00_9choice_variable_multi.sh new file mode 100644 index 0000000..1aeea67 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/00_9choice_variable_multi.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 variable1 : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┗━━ 📓 variable2 : +  ┣━━ val1 +  ┗━━ val2 diff --git a/tests/results/test_namespace_mandatory_secrets/00_9choice_variables.sh b/tests/results/test_namespace_mandatory_secrets/00_9choice_variables.sh new file mode 100644 index 0000000..c0dec63 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/00_9choice_variables.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 source_variable_1: string1 (val1) + ┣━━ 📓 source_variable_2: string1 (val2) + ┗━━ 📓 my_variable: string1 (val1) diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation.sh b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation.sh new file mode 100644 index 0000000..973d755 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: string1 (string_1_True_None) diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_information.sh b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_information.sh new file mode 100644 index 0000000..4518adc --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_information.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_information_other_variable.sh b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_information_other_variable.sh new file mode 100644 index 0000000..874cc7e --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_information_other_variable.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: string1 + ┗━━ 📓 var2: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_multi_optional.sh b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_multi_optional.sh new file mode 100644 index 0000000..7056ce5 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_multi_optional.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 my_variable: string1 (val1) + ┗━━ 📓 my_calculated_variable : +  ┣━━ string1 (string1) +  ┣━━ string2 +  ┗━━ string3 diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_multi_optional2.sh b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_multi_optional2.sh new file mode 100644 index 0000000..7056ce5 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_multi_optional2.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 my_variable: string1 (val1) + ┗━━ 📓 my_calculated_variable : +  ┣━━ string1 (string1) +  ┣━━ string2 +  ┗━━ string3 diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_optional.sh b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_optional.sh new file mode 100644 index 0000000..98cdfd1 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_optional.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 my_calculated_variable : +  ┣━━ string1 +  ┣━━ string2 +  ┗━━ string3 diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_optional_exists.sh b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_optional_exists.sh new file mode 100644 index 0000000..194c5b0 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_optional_exists.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 my_variable : + ┃ ┣━━ string1 (val1) + ┃ ┣━━ string2 (val2) + ┃ ┗━━ string3 + ┗━━ 📓 my_calculated_variable : +  ┣━━ string1 (string1) +  ┣━━ string2 (string2) +  ┗━━ string3 (string3) diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_param_optional.sh b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_param_optional.sh new file mode 100644 index 0000000..7f477e8 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_param_optional.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: string1 (string1) + ┗━━ 📓 var2: string1 (no) diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_information_other_variable.sh b/tests/results/test_namespace_mandatory_secrets/00_9default_information_other_variable.sh new file mode 100644 index 0000000..874cc7e --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/00_9default_information_other_variable.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: string1 + ┗━━ 📓 var2: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_integer.sh b/tests/results/test_namespace_mandatory_secrets/00_9default_integer.sh new file mode 100644 index 0000000..438fae7 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/00_9default_integer.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: 0 (9) diff --git a/tests/results/test_namespace_mandatory_secrets/00_9extra.sh b/tests/results/test_namespace_mandatory_secrets/00_9extra.sh new file mode 100644 index 0000000..8844492 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/00_9extra.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📂 rougail +┃ ┗━━ 📓 variable: string1 (rougail) +┗━━ 📂 extra + ┗━━ 📓 variable: string1 (no) diff --git a/tests/results/test_namespace_mandatory_secrets/00_9extra_calculation.sh b/tests/results/test_namespace_mandatory_secrets/00_9extra_calculation.sh new file mode 100644 index 0000000..da8b9d7 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/00_9extra_calculation.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📂 rougail +┃ ┗━━ 📓 variable: string1 (value) +┗━━ 📂 extra + ┣━━ 📓 variable1: string1 (string1) + ┣━━ 📓 variable2: string1 (string1) + ┗━━ 📓 variable3: string1 (string1) diff --git a/tests/results/test_namespace_mandatory_secrets/01_6boolean_multi.sh b/tests/results/test_namespace_mandatory_secrets/01_6boolean_multi.sh new file mode 100644 index 0000000..2f5ec95 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/01_6boolean_multi.sh @@ -0,0 +1,24 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┗━━ true (true) + ┣━━ 📓 var2 : + ┃ ┗━━ true (true) + ┣━━ 📓 var3 : + ┃ ┗━━ true (true) + ┣━━ 📓 var4 : + ┃ ┗━━ true (false) + ┣━━ 📓 var5 : + ┃ ┗━━ true (false) + ┣━━ 📓 var6 : + ┃ ┗━━ true (false) + ┣━━ 📓 var7 : + ┃ ┗━━ true (true) + ┗━━ 📓 var8 : +  ┗━━ true (true) diff --git a/tests/results/test_namespace_mandatory_secrets/01_6custom_multi.sh b/tests/results/test_namespace_mandatory_secrets/01_6custom_multi.sh new file mode 100644 index 0000000..46e7304 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/01_6custom_multi.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 custom1 : + ┃ ┣━━ string1 + ┃ ┣━━ string2 + ┃ ┗━━ string3 + ┗━━ 📓 custom2 : +  ┣━━ string1 (value) +  ┣━━ string2 +  ┗━━ string3 diff --git a/tests/results/test_namespace_mandatory_secrets/01_6float_multi.sh b/tests/results/test_namespace_mandatory_secrets/01_6float_multi.sh new file mode 100644 index 0000000..688b474 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/01_6float_multi.sh @@ -0,0 +1,40 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ 1.1 (0.0) + ┃ ┣━━ 2.2 + ┃ ┗━━ 3.3 + ┣━━ 📓 var2 : + ┃ ┣━━ 1.1 (0.0) + ┃ ┣━━ 2.2 + ┃ ┗━━ 3.3 + ┣━━ 📓 var3 : + ┃ ┣━━ 1.1 (0.0) + ┃ ┣━━ 2.2 + ┃ ┗━━ 3.3 + ┣━━ 📓 var4 : + ┃ ┣━━ 1.1 (10.1) + ┃ ┣━━ 2.2 + ┃ ┗━━ 3.3 + ┣━━ 📓 var5 : + ┃ ┣━━ 1.1 (10.1) + ┃ ┣━━ 2.2 + ┃ ┗━━ 3.3 + ┣━━ 📓 var6 : + ┃ ┣━━ 1.1 (10.1) + ┃ ┣━━ 2.2 + ┃ ┗━━ 3.3 + ┣━━ 📓 var7 : + ┃ ┣━━ 1.1 (0.0) + ┃ ┣━━ 2.2 + ┃ ┗━━ 3.3 + ┗━━ 📓 var8 : +  ┣━━ 1.1 (0.0) +  ┣━━ 2.2 +  ┗━━ 3.3 diff --git a/tests/results/test_namespace_mandatory_secrets/01_6number_multi.sh b/tests/results/test_namespace_mandatory_secrets/01_6number_multi.sh new file mode 100644 index 0000000..2b421cd --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/01_6number_multi.sh @@ -0,0 +1,40 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ 1 (0) + ┃ ┣━━ 2 + ┃ ┗━━ 3 + ┣━━ 📓 var2 : + ┃ ┣━━ 1 (0) + ┃ ┣━━ 2 + ┃ ┗━━ 3 + ┣━━ 📓 var3 : + ┃ ┣━━ 1 (0) + ┃ ┣━━ 2 + ┃ ┗━━ 3 + ┣━━ 📓 var4 : + ┃ ┣━━ 1 (10) + ┃ ┣━━ 2 + ┃ ┗━━ 3 + ┣━━ 📓 var5 : + ┃ ┣━━ 1 (10) + ┃ ┣━━ 2 + ┃ ┗━━ 3 + ┣━━ 📓 var6 : + ┃ ┣━━ 1 (10) + ┃ ┣━━ 2 + ┃ ┗━━ 3 + ┣━━ 📓 var7 : + ┃ ┣━━ 1 (0) + ┃ ┣━━ 2 + ┃ ┗━━ 3 + ┗━━ 📓 var8 : +  ┣━━ 1 (0) +  ┣━━ 2 +  ┗━━ 3 diff --git a/tests/results/test_namespace_mandatory_secrets/01_6string_empty.sh b/tests/results/test_namespace_mandatory_secrets/01_6string_empty.sh new file mode 100644 index 0000000..48f1f2a --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/01_6string_empty.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var1 : +  ┣━━ string1 (value) +  ┣━━ string2 +  ┗━━ string3 diff --git a/tests/results/test_namespace_mandatory_secrets/01_6string_multi.sh b/tests/results/test_namespace_mandatory_secrets/01_6string_multi.sh new file mode 100644 index 0000000..064cdbe --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/01_6string_multi.sh @@ -0,0 +1,37 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ string1 + ┃ ┣━━ string2 + ┃ ┗━━ string3 + ┣━━ 📓 var2 : + ┃ ┣━━ string1 + ┃ ┣━━ string2 + ┃ ┗━━ string3 + ┣━━ 📓 var3: string1 + ┣━━ 📓 var4 : + ┃ ┣━━ string1 (value) + ┃ ┣━━ string2 + ┃ ┗━━ string3 + ┣━━ 📓 var5 : + ┃ ┣━━ string1 (value) + ┃ ┣━━ string2 + ┃ ┗━━ string3 + ┣━━ 📓 var6 : + ┃ ┣━━ string1 (value) + ┃ ┣━━ string2 + ┃ ┗━━ string3 + ┣━━ 📓 var7 : + ┃ ┣━━ string1 (value) + ┃ ┣━━ string2 + ┃ ┗━━ string3 + ┗━━ 📓 var8 : +  ┣━━ string1 (value) +  ┣━━ string2 +  ┗━━ string3 diff --git a/tests/results/test_namespace_mandatory_secrets/01_7value_multi_doublequote.sh b/tests/results/test_namespace_mandatory_secrets/01_7value_multi_doublequote.sh new file mode 100644 index 0000000..8c79959 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/01_7value_multi_doublequote.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable : +  ┣━━ string1 (quote") +  ┣━━ string2 +  ┗━━ string3 diff --git a/tests/results/test_namespace_mandatory_secrets/01_7value_multi_doublequote2.sh b/tests/results/test_namespace_mandatory_secrets/01_7value_multi_doublequote2.sh new file mode 100644 index 0000000..25389f2 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/01_7value_multi_doublequote2.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable : +  ┣━━ string1 (quote'") +  ┣━━ string2 +  ┗━━ string3 diff --git a/tests/results/test_namespace_mandatory_secrets/01_7value_multi_quote.sh b/tests/results/test_namespace_mandatory_secrets/01_7value_multi_quote.sh new file mode 100644 index 0000000..b98585c --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/01_7value_multi_quote.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable : +  ┣━━ string1 (quote') +  ┣━━ string2 +  ┗━━ string3 diff --git a/tests/results/test_namespace_mandatory_secrets/01_8calculation_information_multi.sh b/tests/results/test_namespace_mandatory_secrets/01_8calculation_information_multi.sh new file mode 100644 index 0000000..211be5b --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/01_8calculation_information_multi.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable : +  ┣━━ string1 +  ┣━━ string2 +  ┗━━ string3 diff --git a/tests/results/test_namespace_mandatory_secrets/01_9choice_variable_multi.sh b/tests/results/test_namespace_mandatory_secrets/01_9choice_variable_multi.sh new file mode 100644 index 0000000..db4ad7f --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/01_9choice_variable_multi.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 variable1 : + ┃ ┣━━ string1 (a) + ┃ ┣━━ string2 (b) + ┃ ┗━━ string3 (c) + ┗━━ 📓 variable2: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/04_0type_param.sh b/tests/results/test_namespace_mandatory_secrets/04_0type_param.sh new file mode 100644 index 0000000..db96d2f --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/04_0type_param.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 int: 1 (10) diff --git a/tests/results/test_namespace_mandatory_secrets/04_1auto_save.sh b/tests/results/test_namespace_mandatory_secrets/04_1auto_save.sh new file mode 100644 index 0000000..ebc4b68 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/04_1auto_save.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: no diff --git a/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_calculated.sh b/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_calculated.sh new file mode 100644 index 0000000..38212dd --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_calculated.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: string1 (no) + ┗━━ 📓 var2: no diff --git a/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_calculated_hidden.sh b/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_calculated_hidden.sh new file mode 100644 index 0000000..3b45977 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_calculated_hidden.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: string1 (no) + ┗━━ 📓 var2: yes diff --git a/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_hidden.sh b/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_hidden.sh new file mode 100644 index 0000000..bb536aa --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_hidden.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: yes diff --git a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden.sh b/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden.sh new file mode 100644 index 0000000..e11e18c --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: string1 (value) + ┣━━ 📓 var2: string1 + ┗━━ 📓 var3: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_2.sh b/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_2.sh new file mode 100644 index 0000000..e11e18c --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_2.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: string1 (value) + ┣━━ 📓 var2: string1 + ┗━━ 📓 var3: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation.sh b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation.sh new file mode 100644 index 0000000..f5504fd --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: string1 (no) + ┣━━ 📓 variable1: string1 + ┗━━ 📓 variable2: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_default.sh b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_default.sh new file mode 100644 index 0000000..5d33ea8 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_default.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: string1 (no) + ┣━━ 📓 var1: string1 (string1) + ┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_optional.sh b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_optional.sh new file mode 100644 index 0000000..b1b78d0 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_optional.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: string1 (no) + ┣━━ 📓 var1: null + ┗━━ 📓 var2: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable.sh b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable.sh new file mode 100644 index 0000000..a174541 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 condition: true (false) diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable2.sh b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable2.sh new file mode 100644 index 0000000..f06ac73 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable2.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 condition: true (true) diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable3.sh b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable3.sh new file mode 100644 index 0000000..38eb686 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable3.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: string1 (yes) + ┗━━ 📓 variable: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable4.sh b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable4.sh new file mode 100644 index 0000000..5a9387b --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable4.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 condition: string1 (yes) diff --git a/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation.sh b/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation.sh new file mode 100644 index 0000000..7953e0d --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: string1 (no) + ┣━━ 📓 var1: string1 (no) + ┗━━ 📓 var2: string1 (no) diff --git a/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation2.sh b/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation2.sh new file mode 100644 index 0000000..3ef1c0a --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation2.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: string1 (no) + ┣━━ 📓 var1: string1 + ┗━━ 📓 var2: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation_default_calculation.sh b/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation_default_calculation.sh new file mode 100644 index 0000000..5d33ea8 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation_default_calculation.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: string1 (no) + ┣━━ 📓 var1: string1 (string1) + ┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_namespace_mandatory_secrets/04_5validators.sh b/tests/results/test_namespace_mandatory_secrets/04_5validators.sh new file mode 100644 index 0000000..86af547 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/04_5validators.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 int: 1 diff --git a/tests/results/test_namespace_mandatory_secrets/04_5validators_differ.sh b/tests/results/test_namespace_mandatory_secrets/04_5validators_differ.sh new file mode 100644 index 0000000..44a37de --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/04_5validators_differ.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: another_value (oui) + ┗━━ 📓 var2: string1 (no) diff --git a/tests/results/test_namespace_mandatory_secrets/04_5validators_multi.sh b/tests/results/test_namespace_mandatory_secrets/04_5validators_multi.sh new file mode 100644 index 0000000..a809ef2 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/04_5validators_multi.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var1 : +  ┣━━ string1 (no) +  ┣━━ string2 (yes) +  ┗━━ string3 diff --git a/tests/results/test_namespace_mandatory_secrets/04_5validators_multi2.sh b/tests/results/test_namespace_mandatory_secrets/04_5validators_multi2.sh new file mode 100644 index 0000000..3f473dd --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/04_5validators_multi2.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var1 : +  ┣━━ val1 (no) +  ┗━━ val2 (yes) diff --git a/tests/results/test_namespace_mandatory_secrets/05_0multi_not_uniq.sh b/tests/results/test_namespace_mandatory_secrets/05_0multi_not_uniq.sh new file mode 100644 index 0000000..af091c9 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/05_0multi_not_uniq.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var1 : +  ┣━━ string1 (non) +  ┣━━ string2 +  ┗━━ string3 diff --git a/tests/results/test_namespace_mandatory_secrets/05_0multi_uniq.sh b/tests/results/test_namespace_mandatory_secrets/05_0multi_uniq.sh new file mode 100644 index 0000000..4260e1b --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/05_0multi_uniq.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable : +  ┣━━ string1 (non) +  ┣━━ string2 +  ┗━━ string3 diff --git a/tests/results/test_namespace_mandatory_secrets/12_1auto_save_expert.sh b/tests/results/test_namespace_mandatory_secrets/12_1auto_save_expert.sh new file mode 100644 index 0000000..73211d0 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/12_1auto_save_expert.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: no diff --git a/tests/results/test_namespace_mandatory_secrets/16_0redefine_description.sh b/tests/results/test_namespace_mandatory_secrets/16_0redefine_description.sh new file mode 100644 index 0000000..4518adc --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/16_0redefine_description.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/16_2family_redefine_calculation.sh b/tests/results/test_namespace_mandatory_secrets/16_2family_redefine_calculation.sh new file mode 100644 index 0000000..5ade45e --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/16_2family_redefine_calculation.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_mandatory_secrets/16_2family_redefine_disabled.sh b/tests/results/test_namespace_mandatory_secrets/16_2family_redefine_disabled.sh new file mode 100644 index 0000000..5ade45e --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/16_2family_redefine_disabled.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_mandatory_secrets/16_5exists_nonexists.sh b/tests/results/test_namespace_mandatory_secrets/16_5exists_nonexists.sh new file mode 100644 index 0000000..5f4d450 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/16_5exists_nonexists.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: string1 (no) + ┗━━ 📓 var2: string1 (yes) diff --git a/tests/results/test_namespace_mandatory_secrets/16_5exists_redefine.sh b/tests/results/test_namespace_mandatory_secrets/16_5exists_redefine.sh new file mode 100644 index 0000000..9bf39eb --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/16_5exists_redefine.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var1: yes diff --git a/tests/results/test_namespace_mandatory_secrets/16_5redefine_calculation.sh b/tests/results/test_namespace_mandatory_secrets/16_5redefine_calculation.sh new file mode 100644 index 0000000..c447ce5 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/16_5redefine_calculation.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: string1 (yes) diff --git a/tests/results/test_namespace_mandatory_secrets/16_5redefine_choice.sh b/tests/results/test_namespace_mandatory_secrets/16_5redefine_choice.sh new file mode 100644 index 0000000..18c73bf --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/16_5redefine_choice.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: a diff --git a/tests/results/test_namespace_mandatory_secrets/16_5redefine_default.sh b/tests/results/test_namespace_mandatory_secrets/16_5redefine_default.sh new file mode 100644 index 0000000..c447ce5 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/16_5redefine_default.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: string1 (yes) diff --git a/tests/results/test_namespace_mandatory_secrets/16_5redefine_default_calculation.sh b/tests/results/test_namespace_mandatory_secrets/16_5redefine_default_calculation.sh new file mode 100644 index 0000000..c0e9411 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/16_5redefine_default_calculation.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/16_5redefine_family.sh b/tests/results/test_namespace_mandatory_secrets/16_5redefine_family.sh new file mode 100644 index 0000000..b51f3c9 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/16_5redefine_family.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 family +  ┗━━ 📓 variable: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/16_5redefine_help.sh b/tests/results/test_namespace_mandatory_secrets/16_5redefine_help.sh new file mode 100644 index 0000000..b51f3c9 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/16_5redefine_help.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 family +  ┗━━ 📓 variable: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/16_5redefine_hidden.sh b/tests/results/test_namespace_mandatory_secrets/16_5redefine_hidden.sh new file mode 100644 index 0000000..621ccbd --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/16_5redefine_hidden.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: no diff --git a/tests/results/test_namespace_mandatory_secrets/16_5redefine_multi.sh b/tests/results/test_namespace_mandatory_secrets/16_5redefine_multi.sh new file mode 100644 index 0000000..4260e1b --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/16_5redefine_multi.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable : +  ┣━━ string1 (non) +  ┣━━ string2 +  ┗━━ string3 diff --git a/tests/results/test_namespace_mandatory_secrets/16_5redefine_remove_disable_calculation.sh b/tests/results/test_namespace_mandatory_secrets/16_5redefine_remove_disable_calculation.sh new file mode 100644 index 0000000..4e760cd --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/16_5redefine_remove_disable_calculation.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: string1 (no) + ┗━━ 📓 variable: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/16_5test_redefine.sh b/tests/results/test_namespace_mandatory_secrets/16_5test_redefine.sh new file mode 100644 index 0000000..fd45290 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/16_5test_redefine.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: test1 (no) + ┣━━ 📓 var2: test1 (non) + ┗━━ 📓 var3: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/16_6choice_redefine.sh b/tests/results/test_namespace_mandatory_secrets/16_6choice_redefine.sh new file mode 100644 index 0000000..c34542a --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/16_6choice_redefine.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: a (c) diff --git a/tests/results/test_namespace_mandatory_secrets/16_6exists_redefine_family.sh b/tests/results/test_namespace_mandatory_secrets/16_6exists_redefine_family.sh new file mode 100644 index 0000000..2c69982 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/16_6exists_redefine_family.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📂 family1 + ┃ ┗━━ 📓 variable1: string1 + ┗━━ 📂 family2 +  ┗━━ 📓 variable2: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/16exists_exists.sh b/tests/results/test_namespace_mandatory_secrets/16exists_exists.sh new file mode 100644 index 0000000..4518adc --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/16exists_exists.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/17_5redefine_leadership.sh b/tests/results/test_namespace_mandatory_secrets/17_5redefine_leadership.sh new file mode 100644 index 0000000..60c6aae --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/17_5redefine_leadership.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader diff --git a/tests/results/test_namespace_mandatory_secrets/20_0empty_family.sh b/tests/results/test_namespace_mandatory_secrets/20_0empty_family.sh new file mode 100644 index 0000000..5efe8ae --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/20_0empty_family.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_mandatory_secrets/20_0family_append.sh b/tests/results/test_namespace_mandatory_secrets/20_0family_append.sh new file mode 100644 index 0000000..d192a58 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/20_0family_append.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 family +  ┣━━ 📓 var1: string1 +  ┗━━ 📓 var2: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/20_0family_underscore.sh b/tests/results/test_namespace_mandatory_secrets/20_0family_underscore.sh new file mode 100644 index 0000000..5ade45e --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/20_0family_underscore.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_mandatory_secrets/20_0multi_family.sh b/tests/results/test_namespace_mandatory_secrets/20_0multi_family.sh new file mode 100644 index 0000000..bee0bd0 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/20_0multi_family.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 family +  ┗━━ 📂 subfamily +   ┗━━ 📓 variable: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/20_0multi_family_basic.sh b/tests/results/test_namespace_mandatory_secrets/20_0multi_family_basic.sh new file mode 100644 index 0000000..bee0bd0 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/20_0multi_family_basic.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 family +  ┗━━ 📂 subfamily +   ┗━━ 📓 variable: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/20_0multi_family_expert.sh b/tests/results/test_namespace_mandatory_secrets/20_0multi_family_expert.sh new file mode 100644 index 0000000..8f170d1 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/20_0multi_family_expert.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 family +  ┗━━ 📂 subfamily +   ┗━━ 📓 variable: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/20_0multi_family_order.sh b/tests/results/test_namespace_mandatory_secrets/20_0multi_family_order.sh new file mode 100644 index 0000000..e03de20 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/20_0multi_family_order.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 variable: string1 + ┗━━ 📂 family +  ┣━━ 📓 variable1: string1 +  ┣━━ 📂 subfamily +  ┃ ┗━━ 📓 variable: string1 +  ┗━━ 📓 variable2: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/20_0validators_differ_redefine.sh b/tests/results/test_namespace_mandatory_secrets/20_0validators_differ_redefine.sh new file mode 100644 index 0000000..fc903ac --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/20_0validators_differ_redefine.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: string1 (no) + ┣━━ 📓 var2: string1 (no) + ┗━━ 📓 var3: yes (yes) diff --git a/tests/results/test_namespace_mandatory_secrets/20_1empty_subfamily.sh b/tests/results/test_namespace_mandatory_secrets/20_1empty_subfamily.sh new file mode 100644 index 0000000..5efe8ae --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/20_1empty_subfamily.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_mandatory_secrets/20_9default_information_parent.sh b/tests/results/test_namespace_mandatory_secrets/20_9default_information_parent.sh new file mode 100644 index 0000000..d192a58 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/20_9default_information_parent.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 family +  ┣━━ 📓 var1: string1 +  ┗━━ 📓 var2: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition.sh b/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition.sh new file mode 100644 index 0000000..e41a065 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: string1 (no) + ┗━━ 📂 family +  ┗━━ 📓 var1: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_boolean.sh b/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_boolean.sh new file mode 100644 index 0000000..8a8e780 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_boolean.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: true (false) + ┗━━ 📂 family +  ┗━━ 📓 variable: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_sub_family.sh b/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_sub_family.sh new file mode 100644 index 0000000..7da310d --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_sub_family.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: string1 (no) + ┗━━ 📂 family +  ┗━━ 📂 subfamily +   ┗━━ 📓 var1: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.sh b/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.sh new file mode 100644 index 0000000..8d74df3 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: true (true) + ┗━━ 📂 family +  ┗━━ 📂 subfamily +   ┗━━ 📓 var1: null diff --git a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_with_variable.sh b/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_with_variable.sh new file mode 100644 index 0000000..da585a8 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_with_variable.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition1: true (false) + ┣━━ 📓 condition2: true (false) + ┗━━ 📂 family +  ┗━━ 📓 variable: null diff --git a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_param_condition_sub_family.sh b/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_param_condition_sub_family.sh new file mode 100644 index 0000000..0211d2b --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_param_condition_sub_family.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: string1 (no) + ┗━━ 📂 family +  ┗━━ 📂 sub_family +   ┗━━ 📓 var1: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/24_0family_mandatory_condition.sh b/tests/results/test_namespace_mandatory_secrets/24_0family_mandatory_condition.sh new file mode 100644 index 0000000..7cac874 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/24_0family_mandatory_condition.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: string1 (no) + ┗━━ 📓 var: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/24_0family_mandatory_condition_variable.sh b/tests/results/test_namespace_mandatory_secrets/24_0family_mandatory_condition_variable.sh new file mode 100644 index 0000000..f7e0623 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/24_0family_mandatory_condition_variable.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: true (true) + ┗━━ 📓 var: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/24_7validators_variable_optional.sh b/tests/results/test_namespace_mandatory_secrets/24_7validators_variable_optional.sh new file mode 100644 index 0000000..e746c00 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/24_7validators_variable_optional.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 general +  ┣━━ 📓 int: 5 +  ┗━━ 📓 int2: 1 (1) diff --git a/tests/results/test_namespace_mandatory_secrets/24_family_disabled_var_hidden.sh b/tests/results/test_namespace_mandatory_secrets/24_family_disabled_var_hidden.sh new file mode 100644 index 0000000..5ade45e --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/24_family_disabled_var_hidden.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership.sh b/tests/results/test_namespace_mandatory_secrets/40_0leadership.sh new file mode 100644 index 0000000..5938837 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/40_0leadership.sh @@ -0,0 +1,21 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 +  ┃ ┣━━ 📓 follower1: string1 +  ┃ ┗━━ 📓 follower2: string1 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┣━━ 📓 follower1: string2 +  ┃ ┗━━ 📓 follower2: string2 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┣━━ 📓 follower1: string3 +   ┗━━ 📓 follower2: string3 diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership_diff_name.sh b/tests/results/test_namespace_mandatory_secrets/40_0leadership_diff_name.sh new file mode 100644 index 0000000..165e971 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/40_0leadership_diff_name.sh @@ -0,0 +1,21 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leadership +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 +  ┃ ┣━━ 📓 follower1: string1 +  ┃ ┗━━ 📓 follower2: string1 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┣━━ 📓 follower1: string2 +  ┃ ┗━━ 📓 follower2: string2 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┣━━ 📓 follower1: string3 +   ┗━━ 📓 follower2: string3 diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership_empty.sh b/tests/results/test_namespace_mandatory_secrets/40_0leadership_empty.sh new file mode 100644 index 0000000..5efe8ae --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/40_0leadership_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_calculation.sh b/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_calculation.sh new file mode 100644 index 0000000..7bda3a7 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_calculation.sh @@ -0,0 +1,21 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 +  ┃ ┣━━ 📓 follower1: string1 (value) +  ┃ ┗━━ 📓 follower2: string1 (string1) +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┣━━ 📓 follower1: string2 (value) +  ┃ ┗━━ 📓 follower2: string2 (string2) +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┣━━ 📓 follower1: string3 (value) +   ┗━━ 📓 follower2: string3 (string3) diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_submulti.sh b/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_submulti.sh new file mode 100644 index 0000000..e1b3f32 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_submulti.sh @@ -0,0 +1,39 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 (leader) +  ┃ ┣━━ 📓 follower1 : +  ┃ ┃ ┣━━ string1 (value) +  ┃ ┃ ┣━━ string2 +  ┃ ┃ ┗━━ string3 +  ┃ ┗━━ 📓 follower2 : +  ┃  ┣━━ string1 (value1) +  ┃  ┣━━ string2 (value2) +  ┃  ┗━━ string3 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┣━━ 📓 follower1 : +  ┃ ┃ ┣━━ string1 (value) +  ┃ ┃ ┣━━ string2 +  ┃ ┃ ┗━━ string3 +  ┃ ┗━━ 📓 follower2 : +  ┃  ┣━━ string1 (value1) +  ┃  ┣━━ string2 (value2) +  ┃  ┗━━ string3 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┣━━ 📓 follower1 : +   ┃ ┣━━ string1 (value) +   ┃ ┣━━ string2 +   ┃ ┗━━ string3 +   ┗━━ 📓 follower2 : +    ┣━━ string1 (value1) +    ┣━━ string2 (value2) +    ┗━━ string3 diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_submulti_calculation.sh b/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_submulti_calculation.sh new file mode 100644 index 0000000..ec71278 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_submulti_calculation.sh @@ -0,0 +1,39 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 (leader) +  ┃ ┣━━ 📓 follower1 : +  ┃ ┃ ┣━━ string1 (value) +  ┃ ┃ ┣━━ string2 +  ┃ ┃ ┗━━ string3 +  ┃ ┗━━ 📓 follower2 : +  ┃  ┣━━ string1 (string1) +  ┃  ┣━━ string2 (string2) +  ┃  ┗━━ string3 (string3) +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┣━━ 📓 follower1 : +  ┃ ┃ ┣━━ string1 (value) +  ┃ ┃ ┣━━ string2 +  ┃ ┃ ┗━━ string3 +  ┃ ┗━━ 📓 follower2 : +  ┃  ┣━━ string1 (string1) +  ┃  ┣━━ string2 (string2) +  ┃  ┗━━ string3 (string3) +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┣━━ 📓 follower1 : +   ┃ ┣━━ string1 (value) +   ┃ ┣━━ string2 +   ┃ ┗━━ string3 +   ┗━━ 📓 follower2 : +    ┣━━ string1 (string1) +    ┣━━ string2 (string2) +    ┗━━ string3 (string3) diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_value.sh b/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_value.sh new file mode 100644 index 0000000..a492069 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_value.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 +  ┃ ┗━━ 📓 follower1: string1 (value) +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┗━━ 📓 follower1: string2 (value) +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┗━━ 📓 follower1: string3 (value) diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership_leader_not_multi.sh b/tests/results/test_namespace_mandatory_secrets/40_0leadership_leader_not_multi.sh new file mode 100644 index 0000000..0a071c3 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/40_0leadership_leader_not_multi.sh @@ -0,0 +1,24 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📂 general + ┃ ┗━━ 📓 mode_conteneur_actif: string1 (non) + ┗━━ 📂 general1 +  ┗━━ 📂 leader +   ┣━━ 📂 leader +   ┃ ┣━━ 📓 leader: string1 +   ┃ ┣━━ 📓 follower1: string1 +   ┃ ┗━━ 📓 follower2: string1 +   ┣━━ 📂 leader +   ┃ ┣━━ 📓 leader: string2 +   ┃ ┣━━ 📓 follower1: string2 +   ┃ ┗━━ 📓 follower2: string2 +   ┗━━ 📂 leader +    ┣━━ 📓 leader: string3 +    ┣━━ 📓 follower1: string3 +    ┗━━ 📓 follower2: string3 diff --git a/tests/results/test_namespace_mandatory_secrets/40_1leadership_append_follower.sh b/tests/results/test_namespace_mandatory_secrets/40_1leadership_append_follower.sh new file mode 100644 index 0000000..ecf1747 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/40_1leadership_append_follower.sh @@ -0,0 +1,24 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 +  ┃ ┣━━ 📓 follower1: string1 +  ┃ ┣━━ 📓 follower2: string1 +  ┃ ┗━━ 📓 follower3: string1 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┣━━ 📓 follower1: string2 +  ┃ ┣━━ 📓 follower2: string2 +  ┃ ┗━━ 📓 follower3: string2 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┣━━ 📓 follower1: string3 +   ┣━━ 📓 follower2: string3 +   ┗━━ 📓 follower3: string3 diff --git a/tests/results/test_namespace_mandatory_secrets/40_2leadership_calculation_index.sh b/tests/results/test_namespace_mandatory_secrets/40_2leadership_calculation_index.sh new file mode 100644 index 0000000..a89bc69 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/40_2leadership_calculation_index.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 (a) +  ┃ ┗━━ 📓 follower1: 1 (0) +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 (b) +  ┃ ┗━━ 📓 follower1: 2 (1) +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 (c) +   ┗━━ 📓 follower1: 3 (2) diff --git a/tests/results/test_namespace_mandatory_secrets/40_2leadership_calculation_param_index.sh b/tests/results/test_namespace_mandatory_secrets/40_2leadership_calculation_param_index.sh new file mode 100644 index 0000000..a89bc69 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/40_2leadership_calculation_param_index.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 (a) +  ┃ ┗━━ 📓 follower1: 1 (0) +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 (b) +  ┃ ┗━━ 📓 follower1: 2 (1) +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 (c) +   ┗━━ 📓 follower1: 3 (2) diff --git a/tests/results/test_namespace_mandatory_secrets/40_2leadership_leader_calculation.sh b/tests/results/test_namespace_mandatory_secrets/40_2leadership_leader_calculation.sh new file mode 100644 index 0000000..bf56e3b --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/40_2leadership_leader_calculation.sh @@ -0,0 +1,21 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 (val1) +  ┃ ┣━━ 📓 follower1: string1 +  ┃ ┗━━ 📓 follower2: string1 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 (val2) +  ┃ ┣━━ 📓 follower1: string2 +  ┃ ┗━━ 📓 follower2: string2 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┣━━ 📓 follower1: string3 +   ┗━━ 📓 follower2: string3 diff --git a/tests/results/test_namespace_mandatory_secrets/40_6leadership_follower_multi.sh b/tests/results/test_namespace_mandatory_secrets/40_6leadership_follower_multi.sh new file mode 100644 index 0000000..f3cd2f2 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/40_6leadership_follower_multi.sh @@ -0,0 +1,39 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leadership +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 +  ┃ ┣━━ 📓 follower1 : +  ┃ ┃ ┣━━ string1 +  ┃ ┃ ┣━━ string2 +  ┃ ┃ ┗━━ string3 +  ┃ ┗━━ 📓 follower2 : +  ┃  ┣━━ string1 (value) +  ┃  ┣━━ string2 +  ┃  ┗━━ string3 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┣━━ 📓 follower1 : +  ┃ ┃ ┣━━ string1 +  ┃ ┃ ┣━━ string2 +  ┃ ┃ ┗━━ string3 +  ┃ ┗━━ 📓 follower2 : +  ┃  ┣━━ string1 (value) +  ┃  ┣━━ string2 +  ┃  ┗━━ string3 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┣━━ 📓 follower1 : +   ┃ ┣━━ string1 +   ┃ ┣━━ string2 +   ┃ ┗━━ string3 +   ┗━━ 📓 follower2 : +    ┣━━ string1 (value) +    ┣━━ string2 +    ┗━━ string3 diff --git a/tests/results/test_namespace_mandatory_secrets/40_8calculation_boolean.sh b/tests/results/test_namespace_mandatory_secrets/40_8calculation_boolean.sh new file mode 100644 index 0000000..bc0d2e5 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/40_8calculation_boolean.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 bool: true (false) + ┣━━ 📓 multi1 : + ┃ ┣━━ true (true) + ┃ ┗━━ false + ┗━━ 📓 multi2 : +  ┗━━ true (false) diff --git a/tests/results/test_namespace_mandatory_secrets/40_8calculation_boolean_return_none.sh b/tests/results/test_namespace_mandatory_secrets/40_8calculation_boolean_return_none.sh new file mode 100644 index 0000000..f5b6f17 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/40_8calculation_boolean_return_none.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: string1 (yes) + ┗━━ 📓 var2: true diff --git a/tests/results/test_namespace_mandatory_secrets/40_8calculation_integer.sh b/tests/results/test_namespace_mandatory_secrets/40_8calculation_integer.sh new file mode 100644 index 0000000..4167981 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/40_8calculation_integer.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 bool: true (false) + ┣━━ 📓 int1: 1 (1) + ┗━━ 📓 int2: 1 (4) diff --git a/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable.sh b/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable.sh new file mode 100644 index 0000000..c1570e8 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ string1 (string1) + ┃ ┣━━ string2 (string1) + ┃ ┗━━ string3 + ┣━━ 📓 var2: string1 (no) + ┗━━ 📓 var3: string1 (yes) diff --git a/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable_parent.sh b/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable_parent.sh new file mode 100644 index 0000000..0e84895 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable_parent.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var: string1 (no) + ┗━━ 📂 fam1 +  ┗━━ 📓 var: string1 (string1) diff --git a/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable_parent2.sh b/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable_parent2.sh new file mode 100644 index 0000000..b665414 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable_parent2.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📂 fam1 + ┃ ┗━━ 📓 var: string1 (no) + ┗━━ 📂 fam2 +  ┗━━ 📓 var: string1 (string1) diff --git a/tests/results/test_namespace_mandatory_secrets/41_0choice_leader.sh b/tests/results/test_namespace_mandatory_secrets/41_0choice_leader.sh new file mode 100644 index 0000000..3bbb879 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/41_0choice_leader.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 +  ┃ ┗━━ 📓 follower1: a +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┗━━ 📓 follower1: b +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┗━━ 📓 follower1: c diff --git a/tests/results/test_namespace_mandatory_secrets/44_0leadership_hidden.sh b/tests/results/test_namespace_mandatory_secrets/44_0leadership_hidden.sh new file mode 100644 index 0000000..60c6aae --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/44_0leadership_hidden.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader diff --git a/tests/results/test_namespace_mandatory_secrets/44_0leadership_leader_hidden.sh b/tests/results/test_namespace_mandatory_secrets/44_0leadership_leader_hidden.sh new file mode 100644 index 0000000..60c6aae --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/44_0leadership_leader_hidden.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader diff --git a/tests/results/test_namespace_mandatory_secrets/44_1leadership_append_hidden_follower.sh b/tests/results/test_namespace_mandatory_secrets/44_1leadership_append_hidden_follower.sh new file mode 100644 index 0000000..60c6aae --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/44_1leadership_append_hidden_follower.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader diff --git a/tests/results/test_namespace_mandatory_secrets/44_4disabled_calcultion_follower.sh b/tests/results/test_namespace_mandatory_secrets/44_4disabled_calcultion_follower.sh new file mode 100644 index 0000000..0d2cff3 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/44_4disabled_calcultion_follower.sh @@ -0,0 +1,19 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: true (true) + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 (a) +  ┃ ┗━━ 📓 follower: string1 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┗━━ 📓 follower: string2 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┗━━ 📓 follower: string3 diff --git a/tests/results/test_namespace_mandatory_secrets/44_4leadership_mandatory.sh b/tests/results/test_namespace_mandatory_secrets/44_4leadership_mandatory.sh new file mode 100644 index 0000000..bb1fc5b --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/44_4leadership_mandatory.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 +  ┃ ┗━━ 📓 follower1: string1 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┗━━ 📓 follower1: string2 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┗━━ 📓 follower1: string3 diff --git a/tests/results/test_namespace_mandatory_secrets/44_4leadership_mandatory_follower.sh b/tests/results/test_namespace_mandatory_secrets/44_4leadership_mandatory_follower.sh new file mode 100644 index 0000000..71bea47 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/44_4leadership_mandatory_follower.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 +  ┃ ┗━━ 📓 follower: string1 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┗━━ 📓 follower: string2 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┗━━ 📓 follower: string3 diff --git a/tests/results/test_namespace_mandatory_secrets/44_5leadership_leader_hidden_calculation.sh b/tests/results/test_namespace_mandatory_secrets/44_5leadership_leader_hidden_calculation.sh new file mode 100644 index 0000000..96e34f3 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/44_5leadership_leader_hidden_calculation.sh @@ -0,0 +1,19 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: string1 (no) + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 +  ┃ ┗━━ 📓 follower: string1 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┗━━ 📓 follower: string2 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┗━━ 📓 follower: string3 diff --git a/tests/results/test_namespace_mandatory_secrets/44_6leadership_follower_disabled_calculation.sh b/tests/results/test_namespace_mandatory_secrets/44_6leadership_follower_disabled_calculation.sh new file mode 100644 index 0000000..117765c --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/44_6leadership_follower_disabled_calculation.sh @@ -0,0 +1,19 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: string1 (yes) + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 +  ┃ ┗━━ 📓 follower: string1 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┗━━ 📓 follower: string2 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┗━━ 📓 follower: string3 diff --git a/tests/results/test_namespace_mandatory_secrets/44_9calculated_default_leadership_leader.sh b/tests/results/test_namespace_mandatory_secrets/44_9calculated_default_leadership_leader.sh new file mode 100644 index 0000000..c34ff15 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/44_9calculated_default_leadership_leader.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 (a) +  ┃ ┗━━ 📓 follower: string1 (string1) +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 (b) +  ┃ ┗━━ 📓 follower: string2 (string2) +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┗━━ 📓 follower: string3 (string3) diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic.sh b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic.sh new file mode 100644 index 0000000..3004f45 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0.sh b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0.sh new file mode 100644 index 0000000..abcf691 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 vardyn: string1 + ┗━━ 📂 dynval2 +  ┗━━ 📓 vardyn: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_empty.sh new file mode 100644 index 0000000..9db0591 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_empty.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 vardyn: string1 + ┗━━ 📂 dynval2 +  ┗━━ 📓 vardyn: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_type.sh b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_type.sh new file mode 100644 index 0000000..abcf691 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_type.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 vardyn: string1 + ┗━━ 📂 dynval2 +  ┗━━ 📓 vardyn: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_type_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_type_empty.sh new file mode 100644 index 0000000..9db0591 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_type_empty.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 vardyn: string1 + ┗━━ 📂 dynval2 +  ┗━━ 📓 vardyn: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_1.sh b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_1.sh new file mode 100644 index 0000000..abcf691 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_1.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 vardyn: string1 + ┗━━ 📂 dynval2 +  ┗━━ 📓 vardyn: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_1_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_1_empty.sh new file mode 100644 index 0000000..9db0591 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_1_empty.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 vardyn: string1 + ┗━━ 📂 dynval2 +  ┗━━ 📓 vardyn: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_empty.sh new file mode 100644 index 0000000..afdbf37 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_empty.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ string1 + ┃ ┣━━ string2 + ┃ ┗━━ string3 + ┣━━ 📂 dynstring1 + ┃ ┗━━ 📓 var: string1 + ┣━━ 📂 dynstring2 + ┃ ┗━━ 📓 var: string1 + ┗━━ 📂 dynstring3 +  ┗━━ 📓 var: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_jinja_number.sh b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_jinja_number.sh new file mode 100644 index 0000000..6a2b055 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_jinja_number.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ 1 (1) + ┃ ┗━━ 2 (2) + ┣━━ 📂 dyn1 + ┃ ┗━━ 📓 var: string1 (val) + ┣━━ 📂 dyn2 + ┃ ┗━━ 📓 var: string1 (val) + ┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_jinja_number_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_jinja_number_empty.sh new file mode 100644 index 0000000..17627a9 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_jinja_number_empty.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ 1 + ┃ ┗━━ 2 + ┣━━ 📂 dyn1 + ┃ ┗━━ 📓 var: string1 (val) + ┣━━ 📂 dyn2 + ┃ ┗━━ 📓 var: string1 (val) + ┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_no_description.sh b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_no_description.sh new file mode 100644 index 0000000..3004f45 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_no_description.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_no_description_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_no_description_empty.sh new file mode 100644 index 0000000..0501207 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_no_description_empty.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_static.sh b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_static.sh new file mode 100644 index 0000000..71fb99f --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_static.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_test.sh b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_test.sh new file mode 100644 index 0000000..0501207 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_test.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_empty.sh new file mode 100644 index 0000000..cfea96b --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_empty.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ string1 + ┃ ┣━━ string2 + ┃ ┗━━ string3 + ┣━━ 📂 dynstring1 + ┃ ┗━━ 📓 var: string1 (val) + ┣━━ 📂 dynstring2 + ┃ ┗━━ 📓 var: string1 (val) + ┗━━ 📂 dynstring3 +  ┗━━ 📓 var: string1 (val) diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_suffix.sh b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_suffix.sh new file mode 100644 index 0000000..5d335ee --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_suffix.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 (a value) + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: string1 (a value) diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.sh new file mode 100644 index 0000000..b00c0ad --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 (a value) + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: string1 (a value) diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_0family_empty.sh new file mode 100644 index 0000000..5efe8ae --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_0family_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_hidden.sh b/tests/results/test_namespace_mandatory_secrets/60_0family_hidden.sh new file mode 100644 index 0000000..97bb713 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_0family_hidden.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 family +  ┗━━ 📓 var: null diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_mode.sh b/tests/results/test_namespace_mandatory_secrets/60_0family_mode.sh new file mode 100644 index 0000000..d6cf87c --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_0family_mode.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 family +  ┗━━ 📓 var: string1 (non) diff --git a/tests/results/test_namespace_mandatory_secrets/60_1family_dynamic_jinja.sh b/tests/results/test_namespace_mandatory_secrets/60_1family_dynamic_jinja.sh new file mode 100644 index 0000000..f5515d6 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_1family_dynamic_jinja.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ string1 (val1) + ┃ ┣━━ string2 (val2) + ┃ ┗━━ string3 + ┣━━ 📂 dyn1 + ┃ ┗━━ 📓 var: string1 (val) + ┣━━ 📂 dyn2 + ┃ ┗━━ 📓 var: string1 (val) + ┗━━ 📂 dyn3 +  ┗━━ 📓 var: string1 (val) diff --git a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.sh b/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.sh new file mode 100644 index 0000000..54c0a7e --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📂 family + ┃  ┗━━ 📓 var: string1 + ┣━━ 📂 dynval2 + ┃ ┗━━ 📂 family + ┃  ┗━━ 📓 var: string1 + ┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.sh b/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.sh new file mode 100644 index 0000000..99c0aa4 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📂 family + ┃  ┗━━ 📓 var: string1 (val1) + ┣━━ 📂 dynval2 + ┃ ┗━━ 📂 family + ┃  ┗━━ 📓 var: string1 (val2) + ┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh new file mode 100644 index 0000000..2625e89 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📂 family + ┃  ┗━━ 📓 var: string1 (val1) + ┣━━ 📂 dynval2 + ┃ ┗━━ 📂 family + ┃  ┗━━ 📓 var: string1 (val2) + ┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.sh new file mode 100644 index 0000000..2c45496 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📂 family + ┃  ┗━━ 📓 var: string1 + ┣━━ 📂 dynval2 + ┃ ┗━━ 📂 family + ┃  ┗━━ 📓 var: string1 + ┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_outside_calc.sh b/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_outside_calc.sh new file mode 100644 index 0000000..3a50720 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_outside_calc.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 (val) + ┣━━ 📂 dynval2 + ┃ ┗━━ 📓 var: string1 (val) + ┗━━ 📓 newvar: string1 (string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_outside_calc_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_outside_calc_empty.sh new file mode 100644 index 0000000..29858f6 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_outside_calc_empty.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 (val) + ┣━━ 📂 dynval2 + ┃ ┗━━ 📓 var: string1 (val) + ┗━━ 📓 newvar: string1 (string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc2.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc2.sh new file mode 100644 index 0000000..211d74c --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc2.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📓 var2: string1 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 vardyn: string1 (val) + ┗━━ 📂 dynval2 +  ┗━━ 📓 vardyn: string1 (val) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc2_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc2_empty.sh new file mode 100644 index 0000000..f1e39b3 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc2_empty.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📓 var2: string1 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 vardyn: string1 (val) + ┗━━ 📂 dynval2 +  ┗━━ 📓 vardyn: string1 (val) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix.sh new file mode 100644 index 0000000..f7d90eb --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 + ┣━━ 📂 dynval2 + ┃ ┗━━ 📓 var: string1 + ┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix2.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix2.sh new file mode 100644 index 0000000..270983d --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix2.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 (val1) + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: string1 (val2) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.sh new file mode 100644 index 0000000..ed92a05 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 (val1) + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: string1 (val2) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.sh new file mode 100644 index 0000000..e11f85a --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📂 dynval1 + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_empty.sh new file mode 100644 index 0000000..1a7c5cf --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_empty.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 + ┣━━ 📂 dynval2 + ┃ ┗━━ 📓 var: string1 + ┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_param.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_param.sh new file mode 100644 index 0000000..270983d --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_param.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 (val1) + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: string1 (val2) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.sh new file mode 100644 index 0000000..ed92a05 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 (val1) + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: string1 (val2) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable.sh new file mode 100644 index 0000000..f7d90eb --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 + ┣━━ 📂 dynval2 + ┃ ┗━━ 📓 var: string1 + ┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable_empty.sh new file mode 100644 index 0000000..1a7c5cf --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable_empty.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 + ┣━━ 📂 dynval2 + ┃ ┗━━ 📓 var: string1 + ┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_hidden_suffix.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_hidden_suffix.sh new file mode 100644 index 0000000..28ff5a9 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_hidden_suffix.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📂 dynval1 + ┃ ┣━━ 📓 var: string1 + ┃ ┗━━ 📂 family + ┃  ┗━━ 📓 var: string1 + ┗━━ 📂 dynval2 +  ┣━━ 📓 var: null +  ┗━━ 📂 family +   ┗━━ 📓 var: null diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_unknown_suffix.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_unknown_suffix.sh new file mode 100644 index 0000000..4a7fca5 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_unknown_suffix.sh @@ -0,0 +1,19 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 val1_dyn + ┃ ┣━━ 📓 var1: string1 (val1) + ┃ ┣━━ 📓 var2: string1 (string1) + ┃ ┗━━ 📓 var3: string1 (string1) + ┗━━ 📂 val2_dyn +  ┣━━ 📓 var1: string1 (val2) +  ┣━━ 📓 var2: string1 (string1) +  ┗━━ 📓 var3: string1 (string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_unknown_suffix_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_unknown_suffix_empty.sh new file mode 100644 index 0000000..6393a4b --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_unknown_suffix_empty.sh @@ -0,0 +1,33 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┣━━ val2 + ┃ ┣━━ val3 + ┃ ┗━━ val4 + ┣━━ 📂 val1_dyn + ┃ ┣━━ 📓 var1: string1 (val1) + ┃ ┣━━ 📓 var2: string1 (string1) + ┃ ┣━━ 📓 var3: string1 (string1) + ┃ ┗━━ 📓 var4: string1 (string1) + ┣━━ 📂 val2_dyn + ┃ ┣━━ 📓 var1: string1 (val2) + ┃ ┣━━ 📓 var2: string1 (string1) + ┃ ┣━━ 📓 var3: string1 (string1) + ┃ ┗━━ 📓 var4: string1 (string1) + ┣━━ 📂 val3_dyn + ┃ ┣━━ 📓 var1: string1 (val3) + ┃ ┣━━ 📓 var2: string1 (string1) + ┃ ┣━━ 📓 var3: string1 (string1) + ┃ ┗━━ 📓 var4: string1 (string1) + ┗━━ 📂 val4_dyn +  ┣━━ 📓 var1: string1 (val4) +  ┣━━ 📓 var2: string1 (string1) +  ┣━━ 📓 var3: string1 (string1) +  ┗━━ 📓 var4: string1 (string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside.sh new file mode 100644 index 0000000..6390d1f --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside.sh @@ -0,0 +1,19 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 my_dyn_family_val1 + ┃ ┗━━ 📓 var: string1 (val1) + ┣━━ 📂 my_dyn_family_val2 + ┃ ┗━━ 📓 var: string1 (val2) + ┗━━ 📓 var2 : +  ┣━━ string1 (string1) +  ┣━━ string2 (string1) +  ┗━━ string3 diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside2.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside2.sh new file mode 100644 index 0000000..33ba297 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside2.sh @@ -0,0 +1,19 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var2 : + ┃ ┣━━ string1 (string1) + ┃ ┣━━ string2 (string1) + ┃ ┗━━ string3 + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 my_dyn_family_val1 + ┃ ┗━━ 📓 var: string1 (val1) + ┗━━ 📂 my_dyn_family_val2 +  ┗━━ 📓 var: string1 (val2) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside2_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside2_empty.sh new file mode 100644 index 0000000..706bfd3 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside2_empty.sh @@ -0,0 +1,19 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var2 : + ┃ ┣━━ string1 (string1) + ┃ ┣━━ string2 (string1) + ┃ ┗━━ string3 + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 my_dyn_family_val1 + ┃ ┗━━ 📓 var: string1 (val1) + ┗━━ 📂 my_dyn_family_val2 +  ┗━━ 📓 var: string1 (val2) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_empty.sh new file mode 100644 index 0000000..79a53ed --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_empty.sh @@ -0,0 +1,19 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 my_dyn_family_val1 + ┃ ┗━━ 📓 var: string1 (val1) + ┣━━ 📂 my_dyn_family_val2 + ┃ ┗━━ 📓 var: string1 (val2) + ┗━━ 📓 var2 : +  ┣━━ string1 (string1) +  ┣━━ string2 (string1) +  ┗━━ string3 diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_jinja.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_jinja.sh new file mode 100644 index 0000000..6390d1f --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_jinja.sh @@ -0,0 +1,19 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 my_dyn_family_val1 + ┃ ┗━━ 📓 var: string1 (val1) + ┣━━ 📂 my_dyn_family_val2 + ┃ ┗━━ 📓 var: string1 (val2) + ┗━━ 📓 var2 : +  ┣━━ string1 (string1) +  ┣━━ string2 (string1) +  ┗━━ string3 diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_jinja_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_jinja_empty.sh new file mode 100644 index 0000000..79a53ed --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_jinja_empty.sh @@ -0,0 +1,19 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 my_dyn_family_val1 + ┃ ┗━━ 📓 var: string1 (val1) + ┣━━ 📂 my_dyn_family_val2 + ┃ ┗━━ 📓 var: string1 (val2) + ┗━━ 📓 var2 : +  ┣━━ string1 (string1) +  ┣━━ string2 (string1) +  ┗━━ string3 diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix.sh new file mode 100644 index 0000000..7ff8683 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix.sh @@ -0,0 +1,25 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 my_dyn_family_val1 + ┃ ┣━━ 📂 subdyn_val1 + ┃ ┃ ┗━━ 📓 var: string1 (val1) + ┃ ┗━━ 📂 subdyn_val2 + ┃  ┗━━ 📓 var: string1 (val2) + ┣━━ 📂 my_dyn_family_val2 + ┃ ┣━━ 📂 subdyn_val1 + ┃ ┃ ┗━━ 📓 var: string1 (val1) + ┃ ┗━━ 📂 subdyn_val2 + ┃  ┗━━ 📓 var: string1 (val2) + ┗━━ 📓 var2 : +  ┣━━ string1 (string1) +  ┣━━ string2 (string1) +  ┗━━ string3 diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix_empty.sh new file mode 100644 index 0000000..2be4b4c --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix_empty.sh @@ -0,0 +1,25 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 my_dyn_family_val1 + ┃ ┣━━ 📂 subdyn_val1 + ┃ ┃ ┗━━ 📓 var: string1 (val1) + ┃ ┗━━ 📂 subdyn_val2 + ┃  ┗━━ 📓 var: string1 (val2) + ┣━━ 📂 my_dyn_family_val2 + ┃ ┣━━ 📂 subdyn_val1 + ┃ ┃ ┗━━ 📓 var: string1 (val1) + ┃ ┗━━ 📂 subdyn_val2 + ┃  ┗━━ 📓 var: string1 (val2) + ┗━━ 📓 var2 : +  ┣━━ string1 (string1) +  ┣━━ string2 (string1) +  ┗━━ string3 diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.sh new file mode 100644 index 0000000..f2eb50c --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dyn_val1 + ┃ ┗━━ 📓 var: string1 (val1) + ┣━━ 📂 dyn_val2 + ┃ ┗━━ 📓 var: string1 (val2) + ┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.sh new file mode 100644 index 0000000..a0ab071 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dyn_val1 + ┃ ┗━━ 📓 var: string1 (val1) + ┣━━ 📂 dyn_val2 + ┃ ┗━━ 📓 var: string1 (val2) + ┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_inside.sh b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_inside.sh new file mode 100644 index 0000000..32207f0 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_inside.sh @@ -0,0 +1,21 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 val1_dyn + ┃ ┣━━ 📓 var1: string1 (val1) + ┃ ┣━━ 📓 var2: string1 (string1) + ┃ ┣━━ 📓 var3: string1 (string1) + ┃ ┗━━ 📓 var4: string1 (string1) + ┗━━ 📂 val2_dyn +  ┣━━ 📓 var1: string1 (val2) +  ┣━━ 📓 var2: string1 (string1) +  ┣━━ 📓 var3: string1 (string1) +  ┗━━ 📓 var4: string1 (string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_inside_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_inside_empty.sh new file mode 100644 index 0000000..e8ccafe --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_inside_empty.sh @@ -0,0 +1,21 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 val1_dyn + ┃ ┣━━ 📓 var1: string1 (val1) + ┃ ┣━━ 📓 var2: string1 (string1) + ┃ ┣━━ 📓 var3: string1 (string1) + ┃ ┗━━ 📓 var4: string1 (string1) + ┗━━ 📂 val2_dyn +  ┣━━ 📓 var1: string1 (val2) +  ┣━━ 📓 var2: string1 (string1) +  ┣━━ 📓 var3: string1 (string1) +  ┗━━ 📓 var4: string1 (string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_leadership.sh b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_leadership.sh new file mode 100644 index 0000000..f028040 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_leadership.sh @@ -0,0 +1,39 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📂 leadership + ┃  ┣━━ 📂 leader + ┃  ┃ ┣━━ 📓 leader: string1 + ┃  ┃ ┣━━ 📓 follower1: string1 + ┃  ┃ ┗━━ 📓 follower2: string1 + ┃  ┣━━ 📂 leader + ┃  ┃ ┣━━ 📓 leader: string2 + ┃  ┃ ┣━━ 📓 follower1: string2 + ┃  ┃ ┗━━ 📓 follower2: string2 + ┃  ┗━━ 📂 leader + ┃   ┣━━ 📓 leader: string3 + ┃   ┣━━ 📓 follower1: string3 + ┃   ┗━━ 📓 follower2: string3 + ┗━━ 📂 dynval2 +  ┗━━ 📂 leadership +   ┣━━ 📂 leader +   ┃ ┣━━ 📓 leader: string1 +   ┃ ┣━━ 📓 follower1: string1 +   ┃ ┗━━ 📓 follower2: string1 +   ┣━━ 📂 leader +   ┃ ┣━━ 📓 leader: string2 +   ┃ ┣━━ 📓 follower1: string2 +   ┃ ┗━━ 📓 follower2: string2 +   ┗━━ 📂 leader +    ┣━━ 📓 leader: string3 +    ┣━━ 📓 follower1: string3 +    ┗━━ 📓 follower2: string3 diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_leadership_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_leadership_empty.sh new file mode 100644 index 0000000..b2acb4b --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_leadership_empty.sh @@ -0,0 +1,39 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📂 leadership + ┃  ┣━━ 📂 leader + ┃  ┃ ┣━━ 📓 leader: string1 + ┃  ┃ ┣━━ 📓 follower1: string1 + ┃  ┃ ┗━━ 📓 follower2: string1 + ┃  ┣━━ 📂 leader + ┃  ┃ ┣━━ 📓 leader: string2 + ┃  ┃ ┣━━ 📓 follower1: string2 + ┃  ┃ ┗━━ 📓 follower2: string2 + ┃  ┗━━ 📂 leader + ┃   ┣━━ 📓 leader: string3 + ┃   ┣━━ 📓 follower1: string3 + ┃   ┗━━ 📓 follower2: string3 + ┗━━ 📂 dynval2 +  ┗━━ 📂 leadership +   ┣━━ 📂 leader +   ┃ ┣━━ 📓 leader: string1 +   ┃ ┣━━ 📓 follower1: string1 +   ┃ ┗━━ 📓 follower2: string1 +   ┣━━ 📂 leader +   ┃ ┣━━ 📓 leader: string2 +   ┃ ┣━━ 📓 follower1: string2 +   ┃ ┗━━ 📓 follower2: string2 +   ┗━━ 📂 leader +    ┣━━ 📓 leader: string3 +    ┣━━ 📓 follower1: string3 +    ┗━━ 📓 follower2: string3 diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic.sh b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic.sh new file mode 100644 index 0000000..ccc6b3a --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic.sh @@ -0,0 +1,35 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┣━━ 📓 var : + ┃ ┃ ┣━━ tval1 (tval1) + ┃ ┃ ┗━━ tval2 (tval2) + ┃ ┣━━ 📂 dyn_tval1 + ┃ ┃ ┣━━ 📓 var: string1 (tval1) + ┃ ┃ ┣━━ 📓 var_identifier: string1 (val1) + ┃ ┃ ┗━━ 📓 var_identifiers: string1 (val1-tval1) + ┃ ┗━━ 📂 dyn_tval2 + ┃  ┣━━ 📓 var: string1 (tval2) + ┃  ┣━━ 📓 var_identifier: string1 (val1) + ┃  ┗━━ 📓 var_identifiers: string1 (val1-tval2) + ┗━━ 📂 dynval2 +  ┣━━ 📓 var : +  ┃ ┣━━ tval1 (tval1) +  ┃ ┗━━ tval2 (tval2) +  ┣━━ 📂 dyn_tval1 +  ┃ ┣━━ 📓 var: string1 (tval1) +  ┃ ┣━━ 📓 var_identifier: string1 (val2) +  ┃ ┗━━ 📓 var_identifiers: string1 (val2-tval1) +  ┗━━ 📂 dyn_tval2 +   ┣━━ 📓 var: string1 (tval2) +   ┣━━ 📓 var_identifier: string1 (val2) +   ┗━━ 📓 var_identifiers: string1 (val2-tval2) diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0.sh b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0.sh new file mode 100644 index 0000000..ccc6b3a --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0.sh @@ -0,0 +1,35 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┣━━ 📓 var : + ┃ ┃ ┣━━ tval1 (tval1) + ┃ ┃ ┗━━ tval2 (tval2) + ┃ ┣━━ 📂 dyn_tval1 + ┃ ┃ ┣━━ 📓 var: string1 (tval1) + ┃ ┃ ┣━━ 📓 var_identifier: string1 (val1) + ┃ ┃ ┗━━ 📓 var_identifiers: string1 (val1-tval1) + ┃ ┗━━ 📂 dyn_tval2 + ┃  ┣━━ 📓 var: string1 (tval2) + ┃  ┣━━ 📓 var_identifier: string1 (val1) + ┃  ┗━━ 📓 var_identifiers: string1 (val1-tval2) + ┗━━ 📂 dynval2 +  ┣━━ 📓 var : +  ┃ ┣━━ tval1 (tval1) +  ┃ ┗━━ tval2 (tval2) +  ┣━━ 📂 dyn_tval1 +  ┃ ┣━━ 📓 var: string1 (tval1) +  ┃ ┣━━ 📓 var_identifier: string1 (val2) +  ┃ ┗━━ 📓 var_identifiers: string1 (val2-tval1) +  ┗━━ 📂 dyn_tval2 +   ┣━━ 📓 var: string1 (tval2) +   ┣━━ 📓 var_identifier: string1 (val2) +   ┗━━ 📓 var_identifiers: string1 (val2-tval2) diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty.sh new file mode 100644 index 0000000..f3dd5cf --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty.sh @@ -0,0 +1,35 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┣━━ 📓 var : + ┃ ┃ ┣━━ tval1 (tval1) + ┃ ┃ ┗━━ tval2 (tval2) + ┃ ┣━━ 📂 dyn_tval1 + ┃ ┃ ┣━━ 📓 var: string1 (tval1) + ┃ ┃ ┣━━ 📓 var_identifier: string1 (val1) + ┃ ┃ ┗━━ 📓 var_identifiers: string1 (val1-tval1) + ┃ ┗━━ 📂 dyn_tval2 + ┃  ┣━━ 📓 var: string1 (tval2) + ┃  ┣━━ 📓 var_identifier: string1 (val1) + ┃  ┗━━ 📓 var_identifiers: string1 (val1-tval2) + ┗━━ 📂 dynval2 +  ┣━━ 📓 var : +  ┃ ┣━━ tval1 (tval1) +  ┃ ┗━━ tval2 (tval2) +  ┣━━ 📂 dyn_tval1 +  ┃ ┣━━ 📓 var: string1 (tval1) +  ┃ ┣━━ 📓 var_identifier: string1 (val2) +  ┃ ┗━━ 📓 var_identifiers: string1 (val2-tval1) +  ┗━━ 📂 dyn_tval2 +   ┣━━ 📓 var: string1 (tval2) +   ┣━━ 📓 var_identifier: string1 (val2) +   ┗━━ 📓 var_identifiers: string1 (val2-tval2) diff --git a/tests/results/test_namespace_mandatory_secrets/60_9extra_dynamic.sh b/tests/results/test_namespace_mandatory_secrets/60_9extra_dynamic.sh new file mode 100644 index 0000000..4559fbe --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_9extra_dynamic.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📂 rougail +┃ ┗━━ 📓 var : +┃  ┗━━ a (a) +┗━━ 📂 extra + ┗━━ 📂 dyn_a +  ┗━━ 📓 var: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/60_9extra_dynamic_extra.sh b/tests/results/test_namespace_mandatory_secrets/60_9extra_dynamic_extra.sh new file mode 100644 index 0000000..ead5b03 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_9extra_dynamic_extra.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📂 rougail +┃ ┗━━ 📂 general +┃  ┗━━ 📓 varname : +┃   ┣━━ string1 (a) +┃   ┣━━ string2 +┃   ┗━━ string3 +┗━━ 📂 extra + ┣━━ 📓 var : + ┃ ┗━━ a (a) + ┗━━ 📂 dyn_a +  ┗━━ 📓 var: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/60_9family_dynamic_calc_both.sh b/tests/results/test_namespace_mandatory_secrets/60_9family_dynamic_calc_both.sh new file mode 100644 index 0000000..f593879 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/60_9family_dynamic_calc_both.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var: string1 (val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 vardyn: string1 + ┗━━ 📂 dynstring1 +  ┗━━ 📓 vardyn: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/68_0family_leadership_mode.sh b/tests/results/test_namespace_mandatory_secrets/68_0family_leadership_mode.sh new file mode 100644 index 0000000..5938837 --- /dev/null +++ b/tests/results/test_namespace_mandatory_secrets/68_0family_leadership_mode.sh @@ -0,0 +1,21 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 +  ┃ ┣━━ 📓 follower1: string1 +  ┃ ┗━━ 📓 follower2: string1 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┣━━ 📓 follower1: string2 +  ┃ ┗━━ 📓 follower2: string2 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┣━━ 📓 follower1: string3 +   ┗━━ 📓 follower2: string3 diff --git a/tests/results/test_namespace_read_write/00_0empty.sh b/tests/results/test_namespace_read_write/00_0empty.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_namespace_read_write/00_0empty.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_namespace_read_write/00_0version_underscore.sh b/tests/results/test_namespace_read_write/00_0version_underscore.sh new file mode 100644 index 0000000..6a842db --- /dev/null +++ b/tests/results/test_namespace_read_write/00_0version_underscore.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 version: null diff --git a/tests/results/test_namespace_read_write/00_1empty_variable.sh b/tests/results/test_namespace_read_write/00_1empty_variable.sh new file mode 100644 index 0000000..7259d85 --- /dev/null +++ b/tests/results/test_namespace_read_write/00_1empty_variable.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 empty: null diff --git a/tests/results/test_namespace_read_write/00_2default_calculated.sh b/tests/results/test_namespace_read_write/00_2default_calculated.sh new file mode 100644 index 0000000..bf2e2ec --- /dev/null +++ b/tests/results/test_namespace_read_write/00_2default_calculated.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: no + ┗━━ 📓 var2 : +  ┗━━ no diff --git a/tests/results/test_namespace_read_write/00_2default_calculated_multi.sh b/tests/results/test_namespace_read_write/00_2default_calculated_multi.sh new file mode 100644 index 0000000..88e08bc --- /dev/null +++ b/tests/results/test_namespace_read_write/00_2default_calculated_multi.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ no + ┃ ┣━━ yes + ┃ ┗━━ maybe + ┗━━ 📓 var2 : +  ┣━━ no +  ┣━━ yes +  ┗━━ maybe diff --git a/tests/results/test_namespace_read_write/00_2default_calculated_variable_transitive.sh b/tests/results/test_namespace_read_write/00_2default_calculated_variable_transitive.sh new file mode 100644 index 0000000..cc4594d --- /dev/null +++ b/tests/results/test_namespace_read_write/00_2default_calculated_variable_transitive.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┗━━ 📓 var2 : diff --git a/tests/results/test_namespace_read_write/00_4load_subfolder.sh b/tests/results/test_namespace_read_write/00_4load_subfolder.sh new file mode 100644 index 0000000..cfb4b92 --- /dev/null +++ b/tests/results/test_namespace_read_write/00_4load_subfolder.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: null + ┗━━ 📓 var2: null diff --git a/tests/results/test_namespace_read_write/00_5load_notype.sh b/tests/results/test_namespace_read_write/00_5load_notype.sh new file mode 100644 index 0000000..c9f6465 --- /dev/null +++ b/tests/results/test_namespace_read_write/00_5load_notype.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 without_type: non diff --git a/tests/results/test_namespace_read_write/00_6boolean.sh b/tests/results/test_namespace_read_write/00_6boolean.sh new file mode 100644 index 0000000..40ba29f --- /dev/null +++ b/tests/results/test_namespace_read_write/00_6boolean.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: true + ┣━━ 📓 var2: true + ┣━━ 📓 var3: true + ┣━━ 📓 var4: false + ┣━━ 📓 var5: false + ┗━━ 📓 var6: false diff --git a/tests/results/test_namespace_read_write/00_6boolean_no_mandatory.sh b/tests/results/test_namespace_read_write/00_6boolean_no_mandatory.sh new file mode 100644 index 0000000..d51c8d7 --- /dev/null +++ b/tests/results/test_namespace_read_write/00_6boolean_no_mandatory.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: true diff --git a/tests/results/test_namespace_read_write/00_6choice.sh b/tests/results/test_namespace_read_write/00_6choice.sh new file mode 100644 index 0000000..c4d4e43 --- /dev/null +++ b/tests/results/test_namespace_read_write/00_6choice.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: null + ┣━━ 📓 var2: null + ┣━━ 📓 var3: null + ┣━━ 📓 var4: null + ┣━━ 📓 var5: a + ┗━━ 📓 var6: 1 diff --git a/tests/results/test_namespace_read_write/00_6choice_calculation.sh b/tests/results/test_namespace_read_write/00_6choice_calculation.sh new file mode 100644 index 0000000..e24e624 --- /dev/null +++ b/tests/results/test_namespace_read_write/00_6choice_calculation.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: 9 diff --git a/tests/results/test_namespace_read_write/00_6choice_variable.sh b/tests/results/test_namespace_read_write/00_6choice_variable.sh new file mode 100644 index 0000000..12f3af2 --- /dev/null +++ b/tests/results/test_namespace_read_write/00_6choice_variable.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ a + ┃ ┣━━ b + ┃ ┗━━ c + ┗━━ 📓 var2: a diff --git a/tests/results/test_namespace_read_write/00_6custom.sh b/tests/results/test_namespace_read_write/00_6custom.sh new file mode 100644 index 0000000..de7463e --- /dev/null +++ b/tests/results/test_namespace_read_write/00_6custom.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 custom1: null + ┗━━ 📓 custom2: value diff --git a/tests/results/test_namespace_read_write/00_6domainname.sh b/tests/results/test_namespace_read_write/00_6domainname.sh new file mode 100644 index 0000000..11a330a --- /dev/null +++ b/tests/results/test_namespace_read_write/00_6domainname.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: my.domain.name diff --git a/tests/results/test_namespace_read_write/00_6domainname_params.sh b/tests/results/test_namespace_read_write/00_6domainname_params.sh new file mode 100644 index 0000000..11a330a --- /dev/null +++ b/tests/results/test_namespace_read_write/00_6domainname_params.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: my.domain.name diff --git a/tests/results/test_namespace_read_write/00_6float.sh b/tests/results/test_namespace_read_write/00_6float.sh new file mode 100644 index 0000000..86d1540 --- /dev/null +++ b/tests/results/test_namespace_read_write/00_6float.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: 0.0 + ┣━━ 📓 var2: 0.0 + ┣━━ 📓 var3: 0.0 + ┣━━ 📓 var4: 10.1 + ┣━━ 📓 var5: 10.1 + ┗━━ 📓 var6: 10.1 diff --git a/tests/results/test_namespace_read_write/00_6number.sh b/tests/results/test_namespace_read_write/00_6number.sh new file mode 100644 index 0000000..891bf6c --- /dev/null +++ b/tests/results/test_namespace_read_write/00_6number.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: 0 + ┣━━ 📓 var2: 0 + ┣━━ 📓 var3: 0 + ┣━━ 📓 var4: 10 + ┣━━ 📓 var5: 10 + ┗━━ 📓 var6: 10 diff --git a/tests/results/test_namespace_read_write/00_6port.sh b/tests/results/test_namespace_read_write/00_6port.sh new file mode 100644 index 0000000..ac498a7 --- /dev/null +++ b/tests/results/test_namespace_read_write/00_6port.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 variable1: null + ┣━━ 📓 variable2: 8080 + ┗━━ 📓 variable3: 8080 diff --git a/tests/results/test_namespace_read_write/00_6regexp.sh b/tests/results/test_namespace_read_write/00_6regexp.sh new file mode 100644 index 0000000..d4400ef --- /dev/null +++ b/tests/results/test_namespace_read_write/00_6regexp.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: #a1a1a1 diff --git a/tests/results/test_namespace_read_write/00_6string.sh b/tests/results/test_namespace_read_write/00_6string.sh new file mode 100644 index 0000000..acf6a45 --- /dev/null +++ b/tests/results/test_namespace_read_write/00_6string.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: null + ┣━━ 📓 var2: null + ┣━━ 📓 var3: null + ┣━━ 📓 var4: value + ┣━━ 📓 var5: value + ┗━━ 📓 var6: value diff --git a/tests/results/test_namespace_read_write/00_7choice_quote.sh b/tests/results/test_namespace_read_write/00_7choice_quote.sh new file mode 100644 index 0000000..401cadd --- /dev/null +++ b/tests/results/test_namespace_read_write/00_7choice_quote.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: quote' diff --git a/tests/results/test_namespace_read_write/00_7help_quote.sh b/tests/results/test_namespace_read_write/00_7help_quote.sh new file mode 100644 index 0000000..cfb4b92 --- /dev/null +++ b/tests/results/test_namespace_read_write/00_7help_quote.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: null + ┗━━ 📓 var2: null diff --git a/tests/results/test_namespace_read_write/00_7value_doublequote.sh b/tests/results/test_namespace_read_write/00_7value_doublequote.sh new file mode 100644 index 0000000..ff6fe2e --- /dev/null +++ b/tests/results/test_namespace_read_write/00_7value_doublequote.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: quote" diff --git a/tests/results/test_namespace_read_write/00_7value_doublequote2.sh b/tests/results/test_namespace_read_write/00_7value_doublequote2.sh new file mode 100644 index 0000000..9986d63 --- /dev/null +++ b/tests/results/test_namespace_read_write/00_7value_doublequote2.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: quote'" diff --git a/tests/results/test_namespace_read_write/00_7value_doublequote3.sh b/tests/results/test_namespace_read_write/00_7value_doublequote3.sh new file mode 100644 index 0000000..23f8b45 --- /dev/null +++ b/tests/results/test_namespace_read_write/00_7value_doublequote3.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: quote\"\' diff --git a/tests/results/test_namespace_read_write/00_7value_quote.sh b/tests/results/test_namespace_read_write/00_7value_quote.sh new file mode 100644 index 0000000..827fb9a --- /dev/null +++ b/tests/results/test_namespace_read_write/00_7value_quote.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: quote' diff --git a/tests/results/test_namespace_read_write/00_8calculation_information.sh b/tests/results/test_namespace_read_write/00_8calculation_information.sh new file mode 100644 index 0000000..f2de40a --- /dev/null +++ b/tests/results/test_namespace_read_write/00_8calculation_information.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: null diff --git a/tests/results/test_namespace_read_write/00_8test.sh b/tests/results/test_namespace_read_write/00_8test.sh new file mode 100644 index 0000000..7f40e74 --- /dev/null +++ b/tests/results/test_namespace_read_write/00_8test.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: null + ┣━━ 📓 var2: value + ┣━━ 📓 var3: null + ┣━━ 📓 var4: null + ┣━━ 📓 var5: true + ┗━━ 📓 var6 : diff --git a/tests/results/test_namespace_read_write/00_9choice_variable_multi.sh b/tests/results/test_namespace_read_write/00_9choice_variable_multi.sh new file mode 100644 index 0000000..38d6008 --- /dev/null +++ b/tests/results/test_namespace_read_write/00_9choice_variable_multi.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 variable1 : + ┗━━ 📓 variable2 : diff --git a/tests/results/test_namespace_read_write/00_9choice_variables.sh b/tests/results/test_namespace_read_write/00_9choice_variables.sh new file mode 100644 index 0000000..7a97c06 --- /dev/null +++ b/tests/results/test_namespace_read_write/00_9choice_variables.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 source_variable_1: val1 + ┣━━ 📓 source_variable_2: val2 + ┗━━ 📓 my_variable: val1 diff --git a/tests/results/test_namespace_read_write/00_9default_calculation.sh b/tests/results/test_namespace_read_write/00_9default_calculation.sh new file mode 100644 index 0000000..b9369a6 --- /dev/null +++ b/tests/results/test_namespace_read_write/00_9default_calculation.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: string_1_True_None diff --git a/tests/results/test_namespace_read_write/00_9default_calculation_information.sh b/tests/results/test_namespace_read_write/00_9default_calculation_information.sh new file mode 100644 index 0000000..c581e31 --- /dev/null +++ b/tests/results/test_namespace_read_write/00_9default_calculation_information.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: null diff --git a/tests/results/test_namespace_read_write/00_9default_calculation_information_other_variable.sh b/tests/results/test_namespace_read_write/00_9default_calculation_information_other_variable.sh new file mode 100644 index 0000000..cfb4b92 --- /dev/null +++ b/tests/results/test_namespace_read_write/00_9default_calculation_information_other_variable.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: null + ┗━━ 📓 var2: null diff --git a/tests/results/test_namespace_read_write/00_9default_calculation_multi_optional.sh b/tests/results/test_namespace_read_write/00_9default_calculation_multi_optional.sh new file mode 100644 index 0000000..623c440 --- /dev/null +++ b/tests/results/test_namespace_read_write/00_9default_calculation_multi_optional.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 my_variable: val1 + ┗━━ 📓 my_calculated_variable : +  ┗━━ val1 diff --git a/tests/results/test_namespace_read_write/00_9default_calculation_multi_optional2.sh b/tests/results/test_namespace_read_write/00_9default_calculation_multi_optional2.sh new file mode 100644 index 0000000..623c440 --- /dev/null +++ b/tests/results/test_namespace_read_write/00_9default_calculation_multi_optional2.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 my_variable: val1 + ┗━━ 📓 my_calculated_variable : +  ┗━━ val1 diff --git a/tests/results/test_namespace_read_write/00_9default_calculation_optional.sh b/tests/results/test_namespace_read_write/00_9default_calculation_optional.sh new file mode 100644 index 0000000..a3ba859 --- /dev/null +++ b/tests/results/test_namespace_read_write/00_9default_calculation_optional.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 my_calculated_variable : diff --git a/tests/results/test_namespace_read_write/00_9default_calculation_optional_exists.sh b/tests/results/test_namespace_read_write/00_9default_calculation_optional_exists.sh new file mode 100644 index 0000000..4aadfbe --- /dev/null +++ b/tests/results/test_namespace_read_write/00_9default_calculation_optional_exists.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 my_variable : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┗━━ 📓 my_calculated_variable : +  ┣━━ val1 +  ┗━━ val2 diff --git a/tests/results/test_namespace_read_write/00_9default_calculation_param_optional.sh b/tests/results/test_namespace_read_write/00_9default_calculation_param_optional.sh new file mode 100644 index 0000000..709f7b9 --- /dev/null +++ b/tests/results/test_namespace_read_write/00_9default_calculation_param_optional.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: no + ┗━━ 📓 var2: no diff --git a/tests/results/test_namespace_read_write/00_9default_information_other_variable.sh b/tests/results/test_namespace_read_write/00_9default_information_other_variable.sh new file mode 100644 index 0000000..cfb4b92 --- /dev/null +++ b/tests/results/test_namespace_read_write/00_9default_information_other_variable.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: null + ┗━━ 📓 var2: null diff --git a/tests/results/test_namespace_read_write/00_9default_integer.sh b/tests/results/test_namespace_read_write/00_9default_integer.sh new file mode 100644 index 0000000..e24e624 --- /dev/null +++ b/tests/results/test_namespace_read_write/00_9default_integer.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: 9 diff --git a/tests/results/test_namespace_read_write/00_9extra.sh b/tests/results/test_namespace_read_write/00_9extra.sh new file mode 100644 index 0000000..9df494b --- /dev/null +++ b/tests/results/test_namespace_read_write/00_9extra.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📂 rougail +┃ ┗━━ 📓 variable: rougail +┗━━ 📂 extra + ┗━━ 📓 variable: no diff --git a/tests/results/test_namespace_read_write/00_9extra_calculation.sh b/tests/results/test_namespace_read_write/00_9extra_calculation.sh new file mode 100644 index 0000000..01606d3 --- /dev/null +++ b/tests/results/test_namespace_read_write/00_9extra_calculation.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📂 rougail +┃ ┗━━ 📓 variable: value +┗━━ 📂 extra + ┣━━ 📓 variable1: value + ┣━━ 📓 variable2: value + ┗━━ 📓 variable3: value diff --git a/tests/results/test_namespace_read_write/01_6boolean_multi.sh b/tests/results/test_namespace_read_write/01_6boolean_multi.sh new file mode 100644 index 0000000..95ef385 --- /dev/null +++ b/tests/results/test_namespace_read_write/01_6boolean_multi.sh @@ -0,0 +1,23 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┗━━ true + ┣━━ 📓 var2 : + ┃ ┗━━ true + ┣━━ 📓 var3 : + ┃ ┗━━ true + ┣━━ 📓 var4 : + ┃ ┗━━ false + ┣━━ 📓 var5 : + ┃ ┗━━ false + ┣━━ 📓 var6 : + ┃ ┗━━ false + ┣━━ 📓 var7 : + ┃ ┗━━ true + ┗━━ 📓 var8 : +  ┗━━ true diff --git a/tests/results/test_namespace_read_write/01_6custom_multi.sh b/tests/results/test_namespace_read_write/01_6custom_multi.sh new file mode 100644 index 0000000..3021066 --- /dev/null +++ b/tests/results/test_namespace_read_write/01_6custom_multi.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 custom1 : + ┗━━ 📓 custom2 : +  ┗━━ value diff --git a/tests/results/test_namespace_read_write/01_6float_multi.sh b/tests/results/test_namespace_read_write/01_6float_multi.sh new file mode 100644 index 0000000..8c27f21 --- /dev/null +++ b/tests/results/test_namespace_read_write/01_6float_multi.sh @@ -0,0 +1,23 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┗━━ 0.0 + ┣━━ 📓 var2 : + ┃ ┗━━ 0.0 + ┣━━ 📓 var3 : + ┃ ┗━━ 0.0 + ┣━━ 📓 var4 : + ┃ ┗━━ 10.1 + ┣━━ 📓 var5 : + ┃ ┗━━ 10.1 + ┣━━ 📓 var6 : + ┃ ┗━━ 10.1 + ┣━━ 📓 var7 : + ┃ ┗━━ 0.0 + ┗━━ 📓 var8 : +  ┗━━ 0.0 diff --git a/tests/results/test_namespace_read_write/01_6number_multi.sh b/tests/results/test_namespace_read_write/01_6number_multi.sh new file mode 100644 index 0000000..726c5a5 --- /dev/null +++ b/tests/results/test_namespace_read_write/01_6number_multi.sh @@ -0,0 +1,23 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┗━━ 0 + ┣━━ 📓 var2 : + ┃ ┗━━ 0 + ┣━━ 📓 var3 : + ┃ ┗━━ 0 + ┣━━ 📓 var4 : + ┃ ┗━━ 10 + ┣━━ 📓 var5 : + ┃ ┗━━ 10 + ┣━━ 📓 var6 : + ┃ ┗━━ 10 + ┣━━ 📓 var7 : + ┃ ┗━━ 0 + ┗━━ 📓 var8 : +  ┗━━ 0 diff --git a/tests/results/test_namespace_read_write/01_6string_empty.sh b/tests/results/test_namespace_read_write/01_6string_empty.sh new file mode 100644 index 0000000..4eb4a04 --- /dev/null +++ b/tests/results/test_namespace_read_write/01_6string_empty.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var1 : +  ┣━━ value +  ┗━━ null diff --git a/tests/results/test_namespace_read_write/01_6string_multi.sh b/tests/results/test_namespace_read_write/01_6string_multi.sh new file mode 100644 index 0000000..38ea1f5 --- /dev/null +++ b/tests/results/test_namespace_read_write/01_6string_multi.sh @@ -0,0 +1,20 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┣━━ 📓 var2 : + ┣━━ 📓 var3: null + ┣━━ 📓 var4 : + ┃ ┗━━ value + ┣━━ 📓 var5 : + ┃ ┗━━ value + ┣━━ 📓 var6 : + ┃ ┗━━ value + ┣━━ 📓 var7 : + ┃ ┗━━ value + ┗━━ 📓 var8 : +  ┗━━ value diff --git a/tests/results/test_namespace_read_write/01_7value_multi_doublequote.sh b/tests/results/test_namespace_read_write/01_7value_multi_doublequote.sh new file mode 100644 index 0000000..f713749 --- /dev/null +++ b/tests/results/test_namespace_read_write/01_7value_multi_doublequote.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable : +  ┗━━ quote" diff --git a/tests/results/test_namespace_read_write/01_7value_multi_doublequote2.sh b/tests/results/test_namespace_read_write/01_7value_multi_doublequote2.sh new file mode 100644 index 0000000..46f4fe4 --- /dev/null +++ b/tests/results/test_namespace_read_write/01_7value_multi_doublequote2.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable : +  ┗━━ quote'" diff --git a/tests/results/test_namespace_read_write/01_7value_multi_quote.sh b/tests/results/test_namespace_read_write/01_7value_multi_quote.sh new file mode 100644 index 0000000..1e26815 --- /dev/null +++ b/tests/results/test_namespace_read_write/01_7value_multi_quote.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable : +  ┗━━ quote' diff --git a/tests/results/test_namespace_read_write/01_8calculation_information_multi.sh b/tests/results/test_namespace_read_write/01_8calculation_information_multi.sh new file mode 100644 index 0000000..b4a06ad --- /dev/null +++ b/tests/results/test_namespace_read_write/01_8calculation_information_multi.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable : diff --git a/tests/results/test_namespace_read_write/01_9choice_variable_multi.sh b/tests/results/test_namespace_read_write/01_9choice_variable_multi.sh new file mode 100644 index 0000000..9915048 --- /dev/null +++ b/tests/results/test_namespace_read_write/01_9choice_variable_multi.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 variable1 : + ┃ ┣━━ a + ┃ ┣━━ b + ┃ ┗━━ c + ┗━━ 📓 variable2: null diff --git a/tests/results/test_namespace_read_write/04_0type_param.sh b/tests/results/test_namespace_read_write/04_0type_param.sh new file mode 100644 index 0000000..33ba0e7 --- /dev/null +++ b/tests/results/test_namespace_read_write/04_0type_param.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 int: 10 diff --git a/tests/results/test_namespace_read_write/04_1auto_save.sh b/tests/results/test_namespace_read_write/04_1auto_save.sh new file mode 100644 index 0000000..967acec --- /dev/null +++ b/tests/results/test_namespace_read_write/04_1auto_save.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: no diff --git a/tests/results/test_namespace_read_write/04_1auto_save_and_calculated.sh b/tests/results/test_namespace_read_write/04_1auto_save_and_calculated.sh new file mode 100644 index 0000000..9c721e6 --- /dev/null +++ b/tests/results/test_namespace_read_write/04_1auto_save_and_calculated.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: no + ┗━━ 📓 var2: no diff --git a/tests/results/test_namespace_read_write/04_1auto_save_and_calculated_hidden.sh b/tests/results/test_namespace_read_write/04_1auto_save_and_calculated_hidden.sh new file mode 100644 index 0000000..a7d95d6 --- /dev/null +++ b/tests/results/test_namespace_read_write/04_1auto_save_and_calculated_hidden.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: no + ┗━━ 📓 var2: yes diff --git a/tests/results/test_namespace_read_write/04_1auto_save_and_hidden.sh b/tests/results/test_namespace_read_write/04_1auto_save_and_hidden.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write/04_1auto_save_and_hidden.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write/04_1default_calculation_hidden.sh b/tests/results/test_namespace_read_write/04_1default_calculation_hidden.sh new file mode 100644 index 0000000..2a9e364 --- /dev/null +++ b/tests/results/test_namespace_read_write/04_1default_calculation_hidden.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: value + ┗━━ 📓 var3: value diff --git a/tests/results/test_namespace_read_write/04_1default_calculation_hidden_2.sh b/tests/results/test_namespace_read_write/04_1default_calculation_hidden_2.sh new file mode 100644 index 0000000..2a9e364 --- /dev/null +++ b/tests/results/test_namespace_read_write/04_1default_calculation_hidden_2.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: value + ┗━━ 📓 var3: value diff --git a/tests/results/test_namespace_read_write/04_5disabled_calculation.sh b/tests/results/test_namespace_read_write/04_5disabled_calculation.sh new file mode 100644 index 0000000..00f217d --- /dev/null +++ b/tests/results/test_namespace_read_write/04_5disabled_calculation.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: no + ┣━━ 📓 variable1: null + ┗━━ 📓 variable2: null diff --git a/tests/results/test_namespace_read_write/04_5disabled_calculation_default.sh b/tests/results/test_namespace_read_write/04_5disabled_calculation_default.sh new file mode 100644 index 0000000..2d2eb7a --- /dev/null +++ b/tests/results/test_namespace_read_write/04_5disabled_calculation_default.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: no + ┣━━ 📓 var1: no + ┗━━ 📓 var2: no diff --git a/tests/results/test_namespace_read_write/04_5disabled_calculation_optional.sh b/tests/results/test_namespace_read_write/04_5disabled_calculation_optional.sh new file mode 100644 index 0000000..21be0ca --- /dev/null +++ b/tests/results/test_namespace_read_write/04_5disabled_calculation_optional.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 condition: no diff --git a/tests/results/test_namespace_read_write/04_5disabled_calculation_variable.sh b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable.sh new file mode 100644 index 0000000..8f6a95d --- /dev/null +++ b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: false + ┗━━ 📓 variable: null diff --git a/tests/results/test_namespace_read_write/04_5disabled_calculation_variable2.sh b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable2.sh new file mode 100644 index 0000000..de131ef --- /dev/null +++ b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable2.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 condition: true diff --git a/tests/results/test_namespace_read_write/04_5disabled_calculation_variable3.sh b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable3.sh new file mode 100644 index 0000000..ed2ce4a --- /dev/null +++ b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable3.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 condition: yes diff --git a/tests/results/test_namespace_read_write/04_5disabled_calculation_variable4.sh b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable4.sh new file mode 100644 index 0000000..915d397 --- /dev/null +++ b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable4.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: yes + ┗━━ 📓 variable: null diff --git a/tests/results/test_namespace_read_write/04_5hidden_calculation.sh b/tests/results/test_namespace_read_write/04_5hidden_calculation.sh new file mode 100644 index 0000000..2d2eb7a --- /dev/null +++ b/tests/results/test_namespace_read_write/04_5hidden_calculation.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: no + ┣━━ 📓 var1: no + ┗━━ 📓 var2: no diff --git a/tests/results/test_namespace_read_write/04_5hidden_calculation2.sh b/tests/results/test_namespace_read_write/04_5hidden_calculation2.sh new file mode 100644 index 0000000..21be0ca --- /dev/null +++ b/tests/results/test_namespace_read_write/04_5hidden_calculation2.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 condition: no diff --git a/tests/results/test_namespace_read_write/04_5hidden_calculation_default_calculation.sh b/tests/results/test_namespace_read_write/04_5hidden_calculation_default_calculation.sh new file mode 100644 index 0000000..2d2eb7a --- /dev/null +++ b/tests/results/test_namespace_read_write/04_5hidden_calculation_default_calculation.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: no + ┣━━ 📓 var1: no + ┗━━ 📓 var2: no diff --git a/tests/results/test_namespace_read_write/04_5validators.sh b/tests/results/test_namespace_read_write/04_5validators.sh new file mode 100644 index 0000000..031f568 --- /dev/null +++ b/tests/results/test_namespace_read_write/04_5validators.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 int: null diff --git a/tests/results/test_namespace_read_write/04_5validators_differ.sh b/tests/results/test_namespace_read_write/04_5validators_differ.sh new file mode 100644 index 0000000..414983f --- /dev/null +++ b/tests/results/test_namespace_read_write/04_5validators_differ.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: oui + ┗━━ 📓 var2: no diff --git a/tests/results/test_namespace_read_write/04_5validators_multi.sh b/tests/results/test_namespace_read_write/04_5validators_multi.sh new file mode 100644 index 0000000..e462f59 --- /dev/null +++ b/tests/results/test_namespace_read_write/04_5validators_multi.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var1 : +  ┣━━ no +  ┗━━ yes diff --git a/tests/results/test_namespace_read_write/04_5validators_multi2.sh b/tests/results/test_namespace_read_write/04_5validators_multi2.sh new file mode 100644 index 0000000..e462f59 --- /dev/null +++ b/tests/results/test_namespace_read_write/04_5validators_multi2.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var1 : +  ┣━━ no +  ┗━━ yes diff --git a/tests/results/test_namespace_read_write/05_0multi_not_uniq.sh b/tests/results/test_namespace_read_write/05_0multi_not_uniq.sh new file mode 100644 index 0000000..2b32f5e --- /dev/null +++ b/tests/results/test_namespace_read_write/05_0multi_not_uniq.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var1 : +  ┗━━ non diff --git a/tests/results/test_namespace_read_write/05_0multi_uniq.sh b/tests/results/test_namespace_read_write/05_0multi_uniq.sh new file mode 100644 index 0000000..0183a17 --- /dev/null +++ b/tests/results/test_namespace_read_write/05_0multi_uniq.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable : +  ┗━━ non diff --git a/tests/results/test_namespace_read_write/12_1auto_save_expert.sh b/tests/results/test_namespace_read_write/12_1auto_save_expert.sh new file mode 100644 index 0000000..d73522e --- /dev/null +++ b/tests/results/test_namespace_read_write/12_1auto_save_expert.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: no diff --git a/tests/results/test_namespace_read_write/16_0redefine_description.sh b/tests/results/test_namespace_read_write/16_0redefine_description.sh new file mode 100644 index 0000000..c581e31 --- /dev/null +++ b/tests/results/test_namespace_read_write/16_0redefine_description.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: null diff --git a/tests/results/test_namespace_read_write/16_2family_redefine_calculation.sh b/tests/results/test_namespace_read_write/16_2family_redefine_calculation.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write/16_2family_redefine_calculation.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write/16_2family_redefine_disabled.sh b/tests/results/test_namespace_read_write/16_2family_redefine_disabled.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write/16_2family_redefine_disabled.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write/16_5exists_nonexists.sh b/tests/results/test_namespace_read_write/16_5exists_nonexists.sh new file mode 100644 index 0000000..c4b3f93 --- /dev/null +++ b/tests/results/test_namespace_read_write/16_5exists_nonexists.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: no + ┗━━ 📓 var2: yes diff --git a/tests/results/test_namespace_read_write/16_5exists_redefine.sh b/tests/results/test_namespace_read_write/16_5exists_redefine.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write/16_5exists_redefine.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write/16_5redefine_calculation.sh b/tests/results/test_namespace_read_write/16_5redefine_calculation.sh new file mode 100644 index 0000000..9836bef --- /dev/null +++ b/tests/results/test_namespace_read_write/16_5redefine_calculation.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: yes diff --git a/tests/results/test_namespace_read_write/16_5redefine_choice.sh b/tests/results/test_namespace_read_write/16_5redefine_choice.sh new file mode 100644 index 0000000..f2de40a --- /dev/null +++ b/tests/results/test_namespace_read_write/16_5redefine_choice.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: null diff --git a/tests/results/test_namespace_read_write/16_5redefine_default.sh b/tests/results/test_namespace_read_write/16_5redefine_default.sh new file mode 100644 index 0000000..9836bef --- /dev/null +++ b/tests/results/test_namespace_read_write/16_5redefine_default.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: yes diff --git a/tests/results/test_namespace_read_write/16_5redefine_default_calculation.sh b/tests/results/test_namespace_read_write/16_5redefine_default_calculation.sh new file mode 100644 index 0000000..f2de40a --- /dev/null +++ b/tests/results/test_namespace_read_write/16_5redefine_default_calculation.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: null diff --git a/tests/results/test_namespace_read_write/16_5redefine_family.sh b/tests/results/test_namespace_read_write/16_5redefine_family.sh new file mode 100644 index 0000000..38d480a --- /dev/null +++ b/tests/results/test_namespace_read_write/16_5redefine_family.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 family +  ┗━━ 📓 variable: null diff --git a/tests/results/test_namespace_read_write/16_5redefine_help.sh b/tests/results/test_namespace_read_write/16_5redefine_help.sh new file mode 100644 index 0000000..38d480a --- /dev/null +++ b/tests/results/test_namespace_read_write/16_5redefine_help.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 family +  ┗━━ 📓 variable: null diff --git a/tests/results/test_namespace_read_write/16_5redefine_hidden.sh b/tests/results/test_namespace_read_write/16_5redefine_hidden.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write/16_5redefine_hidden.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write/16_5redefine_multi.sh b/tests/results/test_namespace_read_write/16_5redefine_multi.sh new file mode 100644 index 0000000..0183a17 --- /dev/null +++ b/tests/results/test_namespace_read_write/16_5redefine_multi.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable : +  ┗━━ non diff --git a/tests/results/test_namespace_read_write/16_5redefine_remove_disable_calculation.sh b/tests/results/test_namespace_read_write/16_5redefine_remove_disable_calculation.sh new file mode 100644 index 0000000..a669f54 --- /dev/null +++ b/tests/results/test_namespace_read_write/16_5redefine_remove_disable_calculation.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: no + ┗━━ 📓 variable: null diff --git a/tests/results/test_namespace_read_write/16_5test_redefine.sh b/tests/results/test_namespace_read_write/16_5test_redefine.sh new file mode 100644 index 0000000..da28b26 --- /dev/null +++ b/tests/results/test_namespace_read_write/16_5test_redefine.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: no + ┣━━ 📓 var2: non + ┗━━ 📓 var3: null diff --git a/tests/results/test_namespace_read_write/16_6choice_redefine.sh b/tests/results/test_namespace_read_write/16_6choice_redefine.sh new file mode 100644 index 0000000..2e35dfd --- /dev/null +++ b/tests/results/test_namespace_read_write/16_6choice_redefine.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: c diff --git a/tests/results/test_namespace_read_write/16_6exists_redefine_family.sh b/tests/results/test_namespace_read_write/16_6exists_redefine_family.sh new file mode 100644 index 0000000..fe728b6 --- /dev/null +++ b/tests/results/test_namespace_read_write/16_6exists_redefine_family.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📂 family1 + ┃ ┗━━ 📓 variable1: null + ┗━━ 📂 family2 +  ┗━━ 📓 variable2: null diff --git a/tests/results/test_namespace_read_write/16exists_exists.sh b/tests/results/test_namespace_read_write/16exists_exists.sh new file mode 100644 index 0000000..c581e31 --- /dev/null +++ b/tests/results/test_namespace_read_write/16exists_exists.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: null diff --git a/tests/results/test_namespace_read_write/17_5redefine_leadership.sh b/tests/results/test_namespace_read_write/17_5redefine_leadership.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write/17_5redefine_leadership.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write/20_0empty_family.sh b/tests/results/test_namespace_read_write/20_0empty_family.sh new file mode 100644 index 0000000..2fc78e0 --- /dev/null +++ b/tests/results/test_namespace_read_write/20_0empty_family.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write/20_0family_append.sh b/tests/results/test_namespace_read_write/20_0family_append.sh new file mode 100644 index 0000000..47f03de --- /dev/null +++ b/tests/results/test_namespace_read_write/20_0family_append.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 family +  ┣━━ 📓 var1: null +  ┗━━ 📓 var2: null diff --git a/tests/results/test_namespace_read_write/20_0family_underscore.sh b/tests/results/test_namespace_read_write/20_0family_underscore.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write/20_0family_underscore.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write/20_0multi_family.sh b/tests/results/test_namespace_read_write/20_0multi_family.sh new file mode 100644 index 0000000..5bc2162 --- /dev/null +++ b/tests/results/test_namespace_read_write/20_0multi_family.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 family +  ┗━━ 📂 subfamily +   ┗━━ 📓 variable: null diff --git a/tests/results/test_namespace_read_write/20_0multi_family_basic.sh b/tests/results/test_namespace_read_write/20_0multi_family_basic.sh new file mode 100644 index 0000000..5bc2162 --- /dev/null +++ b/tests/results/test_namespace_read_write/20_0multi_family_basic.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 family +  ┗━━ 📂 subfamily +   ┗━━ 📓 variable: null diff --git a/tests/results/test_namespace_read_write/20_0multi_family_expert.sh b/tests/results/test_namespace_read_write/20_0multi_family_expert.sh new file mode 100644 index 0000000..f2c0510 --- /dev/null +++ b/tests/results/test_namespace_read_write/20_0multi_family_expert.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 family +  ┗━━ 📂 subfamily +   ┗━━ 📓 variable: null diff --git a/tests/results/test_namespace_read_write/20_0multi_family_order.sh b/tests/results/test_namespace_read_write/20_0multi_family_order.sh new file mode 100644 index 0000000..8a3705d --- /dev/null +++ b/tests/results/test_namespace_read_write/20_0multi_family_order.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 variable: null + ┗━━ 📂 family +  ┣━━ 📓 variable1: null +  ┣━━ 📂 subfamily +  ┃ ┗━━ 📓 variable: null +  ┗━━ 📓 variable2: null diff --git a/tests/results/test_namespace_read_write/20_0validators_differ_redefine.sh b/tests/results/test_namespace_read_write/20_0validators_differ_redefine.sh new file mode 100644 index 0000000..cd704b6 --- /dev/null +++ b/tests/results/test_namespace_read_write/20_0validators_differ_redefine.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: no + ┣━━ 📓 var2: no + ┗━━ 📓 var3: yes diff --git a/tests/results/test_namespace_read_write/20_1empty_subfamily.sh b/tests/results/test_namespace_read_write/20_1empty_subfamily.sh new file mode 100644 index 0000000..2fc78e0 --- /dev/null +++ b/tests/results/test_namespace_read_write/20_1empty_subfamily.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write/20_9default_information_parent.sh b/tests/results/test_namespace_read_write/20_9default_information_parent.sh new file mode 100644 index 0000000..47f03de --- /dev/null +++ b/tests/results/test_namespace_read_write/20_9default_information_parent.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 family +  ┣━━ 📓 var1: null +  ┗━━ 📓 var2: null diff --git a/tests/results/test_namespace_read_write/24_0family_hidden_condition.sh b/tests/results/test_namespace_read_write/24_0family_hidden_condition.sh new file mode 100644 index 0000000..3d44471 --- /dev/null +++ b/tests/results/test_namespace_read_write/24_0family_hidden_condition.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: no + ┗━━ 📂 family +  ┗━━ 📓 var1: null diff --git a/tests/results/test_namespace_read_write/24_0family_hidden_condition_boolean.sh b/tests/results/test_namespace_read_write/24_0family_hidden_condition_boolean.sh new file mode 100644 index 0000000..957fe08 --- /dev/null +++ b/tests/results/test_namespace_read_write/24_0family_hidden_condition_boolean.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 condition: false diff --git a/tests/results/test_namespace_read_write/24_0family_hidden_condition_sub_family.sh b/tests/results/test_namespace_read_write/24_0family_hidden_condition_sub_family.sh new file mode 100644 index 0000000..9c57ff6 --- /dev/null +++ b/tests/results/test_namespace_read_write/24_0family_hidden_condition_sub_family.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: no + ┗━━ 📂 family +  ┗━━ 📂 subfamily +   ┗━━ 📓 var1: null diff --git a/tests/results/test_namespace_read_write/24_0family_hidden_condition_variable_sub_family.sh b/tests/results/test_namespace_read_write/24_0family_hidden_condition_variable_sub_family.sh new file mode 100644 index 0000000..de131ef --- /dev/null +++ b/tests/results/test_namespace_read_write/24_0family_hidden_condition_variable_sub_family.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 condition: true diff --git a/tests/results/test_namespace_read_write/24_0family_hidden_condition_with_variable.sh b/tests/results/test_namespace_read_write/24_0family_hidden_condition_with_variable.sh new file mode 100644 index 0000000..3c11484 --- /dev/null +++ b/tests/results/test_namespace_read_write/24_0family_hidden_condition_with_variable.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition1: false + ┗━━ 📓 condition2: false diff --git a/tests/results/test_namespace_read_write/24_0family_hidden_param_condition_sub_family.sh b/tests/results/test_namespace_read_write/24_0family_hidden_param_condition_sub_family.sh new file mode 100644 index 0000000..65ede1e --- /dev/null +++ b/tests/results/test_namespace_read_write/24_0family_hidden_param_condition_sub_family.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: no + ┗━━ 📂 family +  ┗━━ 📂 sub_family +   ┗━━ 📓 var1: null diff --git a/tests/results/test_namespace_read_write/24_0family_mandatory_condition.sh b/tests/results/test_namespace_read_write/24_0family_mandatory_condition.sh new file mode 100644 index 0000000..dc9b127 --- /dev/null +++ b/tests/results/test_namespace_read_write/24_0family_mandatory_condition.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: no + ┗━━ 📓 var: null diff --git a/tests/results/test_namespace_read_write/24_0family_mandatory_condition_variable.sh b/tests/results/test_namespace_read_write/24_0family_mandatory_condition_variable.sh new file mode 100644 index 0000000..a4b6974 --- /dev/null +++ b/tests/results/test_namespace_read_write/24_0family_mandatory_condition_variable.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: true + ┗━━ 📓 var: null diff --git a/tests/results/test_namespace_read_write/24_7validators_variable_optional.sh b/tests/results/test_namespace_read_write/24_7validators_variable_optional.sh new file mode 100644 index 0000000..bcbfcb2 --- /dev/null +++ b/tests/results/test_namespace_read_write/24_7validators_variable_optional.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 general +  ┣━━ 📓 int: null +  ┗━━ 📓 int2: 1 diff --git a/tests/results/test_namespace_read_write/24_family_disabled_var_hidden.sh b/tests/results/test_namespace_read_write/24_family_disabled_var_hidden.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write/24_family_disabled_var_hidden.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write/40_0leadership.sh b/tests/results/test_namespace_read_write/40_0leadership.sh new file mode 100644 index 0000000..409a85b --- /dev/null +++ b/tests/results/test_namespace_read_write/40_0leadership.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader diff --git a/tests/results/test_namespace_read_write/40_0leadership_diff_name.sh b/tests/results/test_namespace_read_write/40_0leadership_diff_name.sh new file mode 100644 index 0000000..01d73ba --- /dev/null +++ b/tests/results/test_namespace_read_write/40_0leadership_diff_name.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leadership diff --git a/tests/results/test_namespace_read_write/40_0leadership_empty.sh b/tests/results/test_namespace_read_write/40_0leadership_empty.sh new file mode 100644 index 0000000..2fc78e0 --- /dev/null +++ b/tests/results/test_namespace_read_write/40_0leadership_empty.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write/40_0leadership_follower_default_calculation.sh b/tests/results/test_namespace_read_write/40_0leadership_follower_default_calculation.sh new file mode 100644 index 0000000..409a85b --- /dev/null +++ b/tests/results/test_namespace_read_write/40_0leadership_follower_default_calculation.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader diff --git a/tests/results/test_namespace_read_write/40_0leadership_follower_default_submulti.sh b/tests/results/test_namespace_read_write/40_0leadership_follower_default_submulti.sh new file mode 100644 index 0000000..5440046 --- /dev/null +++ b/tests/results/test_namespace_read_write/40_0leadership_follower_default_submulti.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┗━━ 📂 leader +   ┣━━ 📓 leader: leader +   ┣━━ 📓 follower1 : +   ┃ ┗━━ value +   ┗━━ 📓 follower2 : +    ┣━━ value1 +    ┗━━ value2 diff --git a/tests/results/test_namespace_read_write/40_0leadership_follower_default_submulti_calculation.sh b/tests/results/test_namespace_read_write/40_0leadership_follower_default_submulti_calculation.sh new file mode 100644 index 0000000..8edbb98 --- /dev/null +++ b/tests/results/test_namespace_read_write/40_0leadership_follower_default_submulti_calculation.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┗━━ 📂 leader +   ┣━━ 📓 leader: leader +   ┣━━ 📓 follower1 : +   ┃ ┗━━ value +   ┗━━ 📓 follower2 : +    ┗━━ value diff --git a/tests/results/test_namespace_read_write/40_0leadership_follower_default_value.sh b/tests/results/test_namespace_read_write/40_0leadership_follower_default_value.sh new file mode 100644 index 0000000..409a85b --- /dev/null +++ b/tests/results/test_namespace_read_write/40_0leadership_follower_default_value.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader diff --git a/tests/results/test_namespace_read_write/40_0leadership_leader_not_multi.sh b/tests/results/test_namespace_read_write/40_0leadership_leader_not_multi.sh new file mode 100644 index 0000000..99d5d40 --- /dev/null +++ b/tests/results/test_namespace_read_write/40_0leadership_leader_not_multi.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📂 general + ┃ ┗━━ 📓 mode_conteneur_actif: non + ┗━━ 📂 general1 +  ┗━━ 📂 leader diff --git a/tests/results/test_namespace_read_write/40_1leadership_append_follower.sh b/tests/results/test_namespace_read_write/40_1leadership_append_follower.sh new file mode 100644 index 0000000..409a85b --- /dev/null +++ b/tests/results/test_namespace_read_write/40_1leadership_append_follower.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader diff --git a/tests/results/test_namespace_read_write/40_2leadership_calculation_index.sh b/tests/results/test_namespace_read_write/40_2leadership_calculation_index.sh new file mode 100644 index 0000000..079783d --- /dev/null +++ b/tests/results/test_namespace_read_write/40_2leadership_calculation_index.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: a +  ┃ ┗━━ 📓 follower1: 0 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: b +  ┃ ┗━━ 📓 follower1: 1 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: c +   ┗━━ 📓 follower1: 2 diff --git a/tests/results/test_namespace_read_write/40_2leadership_calculation_param_index.sh b/tests/results/test_namespace_read_write/40_2leadership_calculation_param_index.sh new file mode 100644 index 0000000..079783d --- /dev/null +++ b/tests/results/test_namespace_read_write/40_2leadership_calculation_param_index.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: a +  ┃ ┗━━ 📓 follower1: 0 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: b +  ┃ ┗━━ 📓 follower1: 1 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: c +   ┗━━ 📓 follower1: 2 diff --git a/tests/results/test_namespace_read_write/40_2leadership_leader_calculation.sh b/tests/results/test_namespace_read_write/40_2leadership_leader_calculation.sh new file mode 100644 index 0000000..58e0bed --- /dev/null +++ b/tests/results/test_namespace_read_write/40_2leadership_leader_calculation.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: val1 +  ┃ ┣━━ 📓 follower1: null +  ┃ ┗━━ 📓 follower2: null +  ┗━━ 📂 leader +   ┣━━ 📓 leader: val2 +   ┣━━ 📓 follower1: null +   ┗━━ 📓 follower2: null diff --git a/tests/results/test_namespace_read_write/40_6leadership_follower_multi.sh b/tests/results/test_namespace_read_write/40_6leadership_follower_multi.sh new file mode 100644 index 0000000..01d73ba --- /dev/null +++ b/tests/results/test_namespace_read_write/40_6leadership_follower_multi.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leadership diff --git a/tests/results/test_namespace_read_write/40_8calculation_boolean.sh b/tests/results/test_namespace_read_write/40_8calculation_boolean.sh new file mode 100644 index 0000000..13c3107 --- /dev/null +++ b/tests/results/test_namespace_read_write/40_8calculation_boolean.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 bool: false + ┣━━ 📓 multi1 : + ┃ ┗━━ false + ┗━━ 📓 multi2 : +  ┣━━ true +  ┗━━ false diff --git a/tests/results/test_namespace_read_write/40_8calculation_boolean_return_none.sh b/tests/results/test_namespace_read_write/40_8calculation_boolean_return_none.sh new file mode 100644 index 0000000..0c707f9 --- /dev/null +++ b/tests/results/test_namespace_read_write/40_8calculation_boolean_return_none.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: yes + ┗━━ 📓 var2: null diff --git a/tests/results/test_namespace_read_write/40_8calculation_integer.sh b/tests/results/test_namespace_read_write/40_8calculation_integer.sh new file mode 100644 index 0000000..22ae871 --- /dev/null +++ b/tests/results/test_namespace_read_write/40_8calculation_integer.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 bool: false + ┣━━ 📓 int1: 2 + ┗━━ 📓 int2: 3 diff --git a/tests/results/test_namespace_read_write/40_8calculation_multi_variable.sh b/tests/results/test_namespace_read_write/40_8calculation_multi_variable.sh new file mode 100644 index 0000000..7652f1c --- /dev/null +++ b/tests/results/test_namespace_read_write/40_8calculation_multi_variable.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ no + ┃ ┗━━ yes + ┣━━ 📓 var2: no + ┗━━ 📓 var3: yes diff --git a/tests/results/test_namespace_read_write/40_8calculation_multi_variable_parent.sh b/tests/results/test_namespace_read_write/40_8calculation_multi_variable_parent.sh new file mode 100644 index 0000000..edd2ec7 --- /dev/null +++ b/tests/results/test_namespace_read_write/40_8calculation_multi_variable_parent.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var: no + ┗━━ 📂 fam1 +  ┗━━ 📓 var: no diff --git a/tests/results/test_namespace_read_write/40_8calculation_multi_variable_parent2.sh b/tests/results/test_namespace_read_write/40_8calculation_multi_variable_parent2.sh new file mode 100644 index 0000000..48268a5 --- /dev/null +++ b/tests/results/test_namespace_read_write/40_8calculation_multi_variable_parent2.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📂 fam1 + ┃ ┗━━ 📓 var: no + ┗━━ 📂 fam2 +  ┗━━ 📓 var: no diff --git a/tests/results/test_namespace_read_write/41_0choice_leader.sh b/tests/results/test_namespace_read_write/41_0choice_leader.sh new file mode 100644 index 0000000..409a85b --- /dev/null +++ b/tests/results/test_namespace_read_write/41_0choice_leader.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader diff --git a/tests/results/test_namespace_read_write/44_0leadership_hidden.sh b/tests/results/test_namespace_read_write/44_0leadership_hidden.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write/44_0leadership_hidden.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write/44_0leadership_leader_hidden.sh b/tests/results/test_namespace_read_write/44_0leadership_leader_hidden.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write/44_0leadership_leader_hidden.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write/44_1leadership_append_hidden_follower.sh b/tests/results/test_namespace_read_write/44_1leadership_append_hidden_follower.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write/44_1leadership_append_hidden_follower.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write/44_4disabled_calcultion_follower.sh b/tests/results/test_namespace_read_write/44_4disabled_calcultion_follower.sh new file mode 100644 index 0000000..db63cf6 --- /dev/null +++ b/tests/results/test_namespace_read_write/44_4disabled_calcultion_follower.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: true + ┗━━ 📂 leader +  ┗━━ 📂 leader +   ┣━━ 📓 leader: a +   ┗━━ 📓 follower: null diff --git a/tests/results/test_namespace_read_write/44_4leadership_mandatory.sh b/tests/results/test_namespace_read_write/44_4leadership_mandatory.sh new file mode 100644 index 0000000..409a85b --- /dev/null +++ b/tests/results/test_namespace_read_write/44_4leadership_mandatory.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader diff --git a/tests/results/test_namespace_read_write/44_4leadership_mandatory_follower.sh b/tests/results/test_namespace_read_write/44_4leadership_mandatory_follower.sh new file mode 100644 index 0000000..409a85b --- /dev/null +++ b/tests/results/test_namespace_read_write/44_4leadership_mandatory_follower.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader diff --git a/tests/results/test_namespace_read_write/44_5leadership_leader_hidden_calculation.sh b/tests/results/test_namespace_read_write/44_5leadership_leader_hidden_calculation.sh new file mode 100644 index 0000000..21be0ca --- /dev/null +++ b/tests/results/test_namespace_read_write/44_5leadership_leader_hidden_calculation.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 condition: no diff --git a/tests/results/test_namespace_read_write/44_6leadership_follower_disabled_calculation.sh b/tests/results/test_namespace_read_write/44_6leadership_follower_disabled_calculation.sh new file mode 100644 index 0000000..d4c5b4a --- /dev/null +++ b/tests/results/test_namespace_read_write/44_6leadership_follower_disabled_calculation.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: yes + ┗━━ 📂 leader diff --git a/tests/results/test_namespace_read_write/44_9calculated_default_leadership_leader.sh b/tests/results/test_namespace_read_write/44_9calculated_default_leadership_leader.sh new file mode 100644 index 0000000..060aee8 --- /dev/null +++ b/tests/results/test_namespace_read_write/44_9calculated_default_leadership_leader.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┗━━ 📓 leader: a +  ┗━━ 📂 leader +   ┣━━ 📓 leader: b +   ┗━━ 📓 follower: b diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic.sh b/tests/results/test_namespace_read_write/60_0family_dynamic.sh new file mode 100644 index 0000000..068c933 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_0family_dynamic.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: null + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: null diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic_1_0.sh b/tests/results/test_namespace_read_write/60_0family_dynamic_1_0.sh new file mode 100644 index 0000000..18f5e96 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_0family_dynamic_1_0.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 vardyn: null + ┗━━ 📂 dynval2 +  ┗━━ 📓 vardyn: null diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic_1_0_empty.sh b/tests/results/test_namespace_read_write/60_0family_dynamic_1_0_empty.sh new file mode 100644 index 0000000..2c6efb5 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_0family_dynamic_1_0_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var : diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic_1_0_type.sh b/tests/results/test_namespace_read_write/60_0family_dynamic_1_0_type.sh new file mode 100644 index 0000000..18f5e96 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_0family_dynamic_1_0_type.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 vardyn: null + ┗━━ 📂 dynval2 +  ┗━━ 📓 vardyn: null diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic_1_0_type_empty.sh b/tests/results/test_namespace_read_write/60_0family_dynamic_1_0_type_empty.sh new file mode 100644 index 0000000..2c6efb5 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_0family_dynamic_1_0_type_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var : diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic_1_1.sh b/tests/results/test_namespace_read_write/60_0family_dynamic_1_1.sh new file mode 100644 index 0000000..18f5e96 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_0family_dynamic_1_1.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 vardyn: null + ┗━━ 📂 dynval2 +  ┗━━ 📓 vardyn: null diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic_1_1_empty.sh b/tests/results/test_namespace_read_write/60_0family_dynamic_1_1_empty.sh new file mode 100644 index 0000000..2c6efb5 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_0family_dynamic_1_1_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var : diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic_empty.sh b/tests/results/test_namespace_read_write/60_0family_dynamic_empty.sh new file mode 100644 index 0000000..2c6efb5 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_0family_dynamic_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var : diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic_jinja_number.sh b/tests/results/test_namespace_read_write/60_0family_dynamic_jinja_number.sh new file mode 100644 index 0000000..8209d5d --- /dev/null +++ b/tests/results/test_namespace_read_write/60_0family_dynamic_jinja_number.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ 1 + ┃ ┗━━ 2 + ┣━━ 📂 dyn1 + ┃ ┗━━ 📓 var: val + ┣━━ 📂 dyn2 + ┃ ┗━━ 📓 var: val + ┗━━ 📓 var2: val diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic_jinja_number_empty.sh b/tests/results/test_namespace_read_write/60_0family_dynamic_jinja_number_empty.sh new file mode 100644 index 0000000..ffcaf11 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_0family_dynamic_jinja_number_empty.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┗━━ 📓 var2: null diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic_no_description.sh b/tests/results/test_namespace_read_write/60_0family_dynamic_no_description.sh new file mode 100644 index 0000000..068c933 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_0family_dynamic_no_description.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: null + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: null diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic_no_description_empty.sh b/tests/results/test_namespace_read_write/60_0family_dynamic_no_description_empty.sh new file mode 100644 index 0000000..2c6efb5 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_0family_dynamic_no_description_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var : diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic_static.sh b/tests/results/test_namespace_read_write/60_0family_dynamic_static.sh new file mode 100644 index 0000000..a909e05 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_0family_dynamic_static.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: null + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: null diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic_test.sh b/tests/results/test_namespace_read_write/60_0family_dynamic_test.sh new file mode 100644 index 0000000..2c6efb5 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_0family_dynamic_test.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var : diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic_variable_empty.sh b/tests/results/test_namespace_read_write/60_0family_dynamic_variable_empty.sh new file mode 100644 index 0000000..2c6efb5 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_0family_dynamic_variable_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var : diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic_variable_suffix.sh b/tests/results/test_namespace_read_write/60_0family_dynamic_variable_suffix.sh new file mode 100644 index 0000000..045b271 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_0family_dynamic_variable_suffix.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: a value + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: a value diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic_variable_suffix_empty.sh b/tests/results/test_namespace_read_write/60_0family_dynamic_variable_suffix_empty.sh new file mode 100644 index 0000000..2c6efb5 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_0family_dynamic_variable_suffix_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var : diff --git a/tests/results/test_namespace_read_write/60_0family_empty.sh b/tests/results/test_namespace_read_write/60_0family_empty.sh new file mode 100644 index 0000000..2fc78e0 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_0family_empty.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write/60_0family_hidden.sh b/tests/results/test_namespace_read_write/60_0family_hidden.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write/60_0family_hidden.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write/60_0family_mode.sh b/tests/results/test_namespace_read_write/60_0family_mode.sh new file mode 100644 index 0000000..ee913c7 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_0family_mode.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 family +  ┗━━ 📓 var: non diff --git a/tests/results/test_namespace_read_write/60_1family_dynamic_jinja.sh b/tests/results/test_namespace_read_write/60_1family_dynamic_jinja.sh new file mode 100644 index 0000000..7c79f11 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_1family_dynamic_jinja.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dyn1 + ┃ ┗━━ 📓 var: val + ┗━━ 📂 dyn2 +  ┗━━ 📓 var: val diff --git a/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group.sh b/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group.sh new file mode 100644 index 0000000..4918f39 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📂 family + ┃  ┗━━ 📓 var: null + ┣━━ 📂 dynval2 + ┃ ┗━━ 📂 family + ┃  ┗━━ 📓 var: null + ┗━━ 📓 var2: null diff --git a/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group_2.sh b/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group_2.sh new file mode 100644 index 0000000..e3e359c --- /dev/null +++ b/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group_2.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📂 family + ┃  ┗━━ 📓 var: val1 + ┣━━ 📂 dynval2 + ┃ ┗━━ 📂 family + ┃  ┗━━ 📓 var: val2 + ┗━━ 📓 var2: val1 diff --git a/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh b/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh new file mode 100644 index 0000000..ffcaf11 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┗━━ 📓 var2: null diff --git a/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group_empty.sh b/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group_empty.sh new file mode 100644 index 0000000..725e9ea --- /dev/null +++ b/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group_empty.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┗━━ 📓 var2: null diff --git a/tests/results/test_namespace_read_write/60_2family_dynamic_outside_calc.sh b/tests/results/test_namespace_read_write/60_2family_dynamic_outside_calc.sh new file mode 100644 index 0000000..59d56c8 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_2family_dynamic_outside_calc.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: val + ┣━━ 📂 dynval2 + ┃ ┗━━ 📓 var: val + ┗━━ 📓 newvar: val diff --git a/tests/results/test_namespace_read_write/60_2family_dynamic_outside_calc_empty.sh b/tests/results/test_namespace_read_write/60_2family_dynamic_outside_calc_empty.sh new file mode 100644 index 0000000..88b28cd --- /dev/null +++ b/tests/results/test_namespace_read_write/60_2family_dynamic_outside_calc_empty.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┗━━ 📓 newvar: null diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc2.sh b/tests/results/test_namespace_read_write/60_5family_dynamic_calc2.sh new file mode 100644 index 0000000..0d32c80 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc2.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📓 var2: null + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 vardyn: val + ┗━━ 📂 dynval2 +  ┗━━ 📓 vardyn: val diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc2_empty.sh b/tests/results/test_namespace_read_write/60_5family_dynamic_calc2_empty.sh new file mode 100644 index 0000000..ffcaf11 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc2_empty.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┗━━ 📓 var2: null diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix.sh b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix.sh new file mode 100644 index 0000000..dd73cbf --- /dev/null +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: null + ┣━━ 📂 dynval2 + ┃ ┗━━ 📓 var: null + ┗━━ 📓 var2: null diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix2.sh b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix2.sh new file mode 100644 index 0000000..5f1bdb4 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix2.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: val1 + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: val2 diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix2_empty.sh b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix2_empty.sh new file mode 100644 index 0000000..2c6efb5 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix2_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var : diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_disabled.sh b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_disabled.sh new file mode 100644 index 0000000..45f0c57 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_disabled.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📂 dynval1 + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: null diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_empty.sh b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_empty.sh new file mode 100644 index 0000000..725e9ea --- /dev/null +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_empty.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┗━━ 📓 var2: null diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_param.sh b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_param.sh new file mode 100644 index 0000000..5f1bdb4 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_param.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: val1 + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: val2 diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_param_empty.sh b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_param_empty.sh new file mode 100644 index 0000000..2c6efb5 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_param_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var : diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_variable.sh b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_variable.sh new file mode 100644 index 0000000..dd73cbf --- /dev/null +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_variable.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: null + ┣━━ 📂 dynval2 + ┃ ┗━━ 📓 var: null + ┗━━ 📓 var2: null diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_variable_empty.sh b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_variable_empty.sh new file mode 100644 index 0000000..725e9ea --- /dev/null +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_variable_empty.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┗━━ 📓 var2: null diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_hidden_suffix.sh b/tests/results/test_namespace_read_write/60_5family_dynamic_hidden_suffix.sh new file mode 100644 index 0000000..3c9e0cf --- /dev/null +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_hidden_suffix.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 dynval1 +  ┣━━ 📓 var: null +  ┗━━ 📂 family +   ┗━━ 📓 var: null diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_unknown_suffix.sh b/tests/results/test_namespace_read_write/60_5family_dynamic_unknown_suffix.sh new file mode 100644 index 0000000..471fc4b --- /dev/null +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_unknown_suffix.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 val1_dyn + ┃ ┣━━ 📓 var1: val1 + ┃ ┣━━ 📓 var2: val1 + ┃ ┗━━ 📓 var3: val1 + ┗━━ 📂 val2_dyn +  ┣━━ 📓 var1: val2 +  ┣━━ 📓 var2: val2 +  ┗━━ 📓 var3: val2 diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_unknown_suffix_empty.sh b/tests/results/test_namespace_read_write/60_5family_dynamic_unknown_suffix_empty.sh new file mode 100644 index 0000000..2c6efb5 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_unknown_suffix_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var : diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside.sh b/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside.sh new file mode 100644 index 0000000..af6cec2 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 my_dyn_family_val1 + ┃ ┗━━ 📓 var: val1 + ┣━━ 📂 my_dyn_family_val2 + ┃ ┗━━ 📓 var: val2 + ┗━━ 📓 var2 : +  ┣━━ val1 +  ┗━━ val2 diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside2.sh b/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside2.sh new file mode 100644 index 0000000..4d72d86 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside2.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var2 : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 my_dyn_family_val1 + ┃ ┗━━ 📓 var: val1 + ┗━━ 📂 my_dyn_family_val2 +  ┗━━ 📓 var: val2 diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside2_empty.sh b/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside2_empty.sh new file mode 100644 index 0000000..d3a18ae --- /dev/null +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside2_empty.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var2 : + ┗━━ 📓 var : diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_empty.sh b/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_empty.sh new file mode 100644 index 0000000..b1ddd66 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_empty.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┗━━ 📓 var2 : diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_jinja.sh b/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_jinja.sh new file mode 100644 index 0000000..af6cec2 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_jinja.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 my_dyn_family_val1 + ┃ ┗━━ 📓 var: val1 + ┣━━ 📂 my_dyn_family_val2 + ┃ ┗━━ 📓 var: val2 + ┗━━ 📓 var2 : +  ┣━━ val1 +  ┗━━ val2 diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_jinja_empty.sh b/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_jinja_empty.sh new file mode 100644 index 0000000..b1ddd66 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_jinja_empty.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┗━━ 📓 var2 : diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_sub_suffix.sh b/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_sub_suffix.sh new file mode 100644 index 0000000..bf2a9b6 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_sub_suffix.sh @@ -0,0 +1,23 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 my_dyn_family_val1 + ┃ ┣━━ 📂 subdyn_val1 + ┃ ┃ ┗━━ 📓 var: val1 + ┃ ┗━━ 📂 subdyn_val2 + ┃  ┗━━ 📓 var: val2 + ┣━━ 📂 my_dyn_family_val2 + ┃ ┣━━ 📂 subdyn_val1 + ┃ ┃ ┗━━ 📓 var: val1 + ┃ ┗━━ 📂 subdyn_val2 + ┃  ┗━━ 📓 var: val2 + ┗━━ 📓 var2 : +  ┣━━ val1 +  ┗━━ val2 diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_sub_suffix_empty.sh b/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_sub_suffix_empty.sh new file mode 100644 index 0000000..b1ddd66 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_sub_suffix_empty.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┗━━ 📓 var2 : diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_suffix.sh b/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_suffix.sh new file mode 100644 index 0000000..c5970b6 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_suffix.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dyn_val1 + ┃ ┗━━ 📓 var: val1 + ┣━━ 📂 dyn_val2 + ┃ ┗━━ 📓 var: val2 + ┗━━ 📓 var2: val1 diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_suffix_empty.sh b/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_suffix_empty.sh new file mode 100644 index 0000000..ffcaf11 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_suffix_empty.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┗━━ 📓 var2: null diff --git a/tests/results/test_namespace_read_write/60_6family_dynamic_inside.sh b/tests/results/test_namespace_read_write/60_6family_dynamic_inside.sh new file mode 100644 index 0000000..4e8ca65 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_6family_dynamic_inside.sh @@ -0,0 +1,20 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 val1_dyn + ┃ ┣━━ 📓 var1: val1 + ┃ ┣━━ 📓 var2: val1 + ┃ ┣━━ 📓 var3: val1 + ┃ ┗━━ 📓 var4: val1 + ┗━━ 📂 val2_dyn +  ┣━━ 📓 var1: val2 +  ┣━━ 📓 var2: val2 +  ┣━━ 📓 var3: val2 +  ┗━━ 📓 var4: val1 diff --git a/tests/results/test_namespace_read_write/60_6family_dynamic_inside_empty.sh b/tests/results/test_namespace_read_write/60_6family_dynamic_inside_empty.sh new file mode 100644 index 0000000..2c6efb5 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_6family_dynamic_inside_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var : diff --git a/tests/results/test_namespace_read_write/60_6family_dynamic_leadership.sh b/tests/results/test_namespace_read_write/60_6family_dynamic_leadership.sh new file mode 100644 index 0000000..456cf1c --- /dev/null +++ b/tests/results/test_namespace_read_write/60_6family_dynamic_leadership.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📂 leadership + ┗━━ 📂 dynval2 +  ┗━━ 📂 leadership diff --git a/tests/results/test_namespace_read_write/60_6family_dynamic_leadership_empty.sh b/tests/results/test_namespace_read_write/60_6family_dynamic_leadership_empty.sh new file mode 100644 index 0000000..2c6efb5 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_6family_dynamic_leadership_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var : diff --git a/tests/results/test_namespace_read_write/60_6family_dynamic_sub_dynamic.sh b/tests/results/test_namespace_read_write/60_6family_dynamic_sub_dynamic.sh new file mode 100644 index 0000000..ed294db --- /dev/null +++ b/tests/results/test_namespace_read_write/60_6family_dynamic_sub_dynamic.sh @@ -0,0 +1,34 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┣━━ 📓 var : + ┃ ┃ ┣━━ tval1 + ┃ ┃ ┗━━ tval2 + ┃ ┣━━ 📂 dyn_tval1 + ┃ ┃ ┣━━ 📓 var: tval1 + ┃ ┃ ┣━━ 📓 var_identifier: val1 + ┃ ┃ ┗━━ 📓 var_identifiers: val1-tval1 + ┃ ┗━━ 📂 dyn_tval2 + ┃  ┣━━ 📓 var: tval2 + ┃  ┣━━ 📓 var_identifier: val1 + ┃  ┗━━ 📓 var_identifiers: val1-tval2 + ┗━━ 📂 dynval2 +  ┣━━ 📓 var : +  ┃ ┣━━ tval1 +  ┃ ┗━━ tval2 +  ┣━━ 📂 dyn_tval1 +  ┃ ┣━━ 📓 var: tval1 +  ┃ ┣━━ 📓 var_identifier: val2 +  ┃ ┗━━ 📓 var_identifiers: val2-tval1 +  ┗━━ 📂 dyn_tval2 +   ┣━━ 📓 var: tval2 +   ┣━━ 📓 var_identifier: val2 +   ┗━━ 📓 var_identifiers: val2-tval2 diff --git a/tests/results/test_namespace_read_write/60_6family_dynamic_sub_dynamic_1_0.sh b/tests/results/test_namespace_read_write/60_6family_dynamic_sub_dynamic_1_0.sh new file mode 100644 index 0000000..ed294db --- /dev/null +++ b/tests/results/test_namespace_read_write/60_6family_dynamic_sub_dynamic_1_0.sh @@ -0,0 +1,34 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┣━━ 📓 var : + ┃ ┃ ┣━━ tval1 + ┃ ┃ ┗━━ tval2 + ┃ ┣━━ 📂 dyn_tval1 + ┃ ┃ ┣━━ 📓 var: tval1 + ┃ ┃ ┣━━ 📓 var_identifier: val1 + ┃ ┃ ┗━━ 📓 var_identifiers: val1-tval1 + ┃ ┗━━ 📂 dyn_tval2 + ┃  ┣━━ 📓 var: tval2 + ┃  ┣━━ 📓 var_identifier: val1 + ┃  ┗━━ 📓 var_identifiers: val1-tval2 + ┗━━ 📂 dynval2 +  ┣━━ 📓 var : +  ┃ ┣━━ tval1 +  ┃ ┗━━ tval2 +  ┣━━ 📂 dyn_tval1 +  ┃ ┣━━ 📓 var: tval1 +  ┃ ┣━━ 📓 var_identifier: val2 +  ┃ ┗━━ 📓 var_identifiers: val2-tval1 +  ┗━━ 📂 dyn_tval2 +   ┣━━ 📓 var: tval2 +   ┣━━ 📓 var_identifier: val2 +   ┗━━ 📓 var_identifiers: val2-tval2 diff --git a/tests/results/test_namespace_read_write/60_6family_dynamic_sub_dynamic_empty.sh b/tests/results/test_namespace_read_write/60_6family_dynamic_sub_dynamic_empty.sh new file mode 100644 index 0000000..2c6efb5 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_6family_dynamic_sub_dynamic_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var : diff --git a/tests/results/test_namespace_read_write/60_9extra_dynamic.sh b/tests/results/test_namespace_read_write/60_9extra_dynamic.sh new file mode 100644 index 0000000..0465140 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_9extra_dynamic.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📂 rougail +┃ ┗━━ 📓 var : +┃  ┗━━ a +┗━━ 📂 extra + ┗━━ 📂 dyn_a +  ┗━━ 📓 var: null diff --git a/tests/results/test_namespace_read_write/60_9extra_dynamic_extra.sh b/tests/results/test_namespace_read_write/60_9extra_dynamic_extra.sh new file mode 100644 index 0000000..f005b9f --- /dev/null +++ b/tests/results/test_namespace_read_write/60_9extra_dynamic_extra.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📂 rougail +┃ ┗━━ 📂 general +┃  ┗━━ 📓 varname : +┃   ┗━━ a +┗━━ 📂 extra + ┣━━ 📓 var : + ┃ ┗━━ a + ┗━━ 📂 dyn_a +  ┗━━ 📓 var: null diff --git a/tests/results/test_namespace_read_write/60_9family_dynamic_calc_both.sh b/tests/results/test_namespace_read_write/60_9family_dynamic_calc_both.sh new file mode 100644 index 0000000..57ead28 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_9family_dynamic_calc_both.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var: val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 vardyn: null + ┗━━ 📂 dynval2 +  ┗━━ 📓 vardyn: null diff --git a/tests/results/test_namespace_read_write/68_0family_leadership_mode.sh b/tests/results/test_namespace_read_write/68_0family_leadership_mode.sh new file mode 100644 index 0000000..409a85b --- /dev/null +++ b/tests/results/test_namespace_read_write/68_0family_leadership_mode.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_0empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_0empty.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_0empty.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_0version_underscore.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_0version_underscore.sh new file mode 100644 index 0000000..b653346 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_0version_underscore.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 version: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_1empty_variable.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_1empty_variable.sh new file mode 100644 index 0000000..8f29694 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_1empty_variable.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 empty: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated.sh new file mode 100644 index 0000000..ab6d3f1 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: string1 (no) + ┗━━ 📓 var2 : +  ┣━━ string1 (string1) +  ┣━━ string2 +  ┗━━ string3 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_multi.sh new file mode 100644 index 0000000..39bd02b --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_multi.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ string1 (no) + ┃ ┣━━ string2 (yes) + ┃ ┗━━ string3 (maybe) + ┗━━ 📓 var2 : +  ┣━━ string1 (string1) +  ┣━━ string2 (string2) +  ┗━━ string3 (string3) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable_transitive.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable_transitive.sh new file mode 100644 index 0000000..204ffd8 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable_transitive.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ domain1.lan + ┃ ┗━━ domain2.lan + ┗━━ 📓 var2 : +  ┣━━ domain1.lan (domain1.lan) +  ┗━━ domain2.lan (domain2.lan) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_4load_subfolder.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_4load_subfolder.sh new file mode 100644 index 0000000..cd39a39 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_4load_subfolder.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: string1 + ┗━━ 📓 var2: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_5load_notype.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_5load_notype.sh new file mode 100644 index 0000000..91a60e9 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_5load_notype.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 without_type: string1 (non) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6boolean.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_6boolean.sh new file mode 100644 index 0000000..bd3111c --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_6boolean.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: true (true) + ┣━━ 📓 var2: true (true) + ┣━━ 📓 var3: true (true) + ┣━━ 📓 var4: true (false) + ┣━━ 📓 var5: true (false) + ┗━━ 📓 var6: true (false) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6boolean_no_mandatory.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_6boolean_no_mandatory.sh new file mode 100644 index 0000000..583f2c5 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_6boolean_no_mandatory.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: true (true) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice.sh new file mode 100644 index 0000000..1d33018 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: a + ┣━━ 📓 var2: a + ┣━━ 📓 var3: a + ┣━━ 📓 var4: null + ┣━━ 📓 var5: a (a) + ┗━━ 📓 var6: 1 (1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_calculation.sh new file mode 100644 index 0000000..5175be0 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_calculation.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: 0 (9) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_variable.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_variable.sh new file mode 100644 index 0000000..c302003 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_variable.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ string1 (a) + ┃ ┣━━ string2 (b) + ┃ ┗━━ string3 (c) + ┗━━ 📓 var2: string1 (a) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6custom.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_6custom.sh new file mode 100644 index 0000000..85380ee --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_6custom.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 custom1: string1 + ┗━━ 📓 custom2: string1 (value) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6domainname.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_6domainname.sh new file mode 100644 index 0000000..156dea0 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_6domainname.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: domain1.lan (my.domain.name) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6domainname_params.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_6domainname_params.sh new file mode 100644 index 0000000..156dea0 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_6domainname_params.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: domain1.lan (my.domain.name) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6float.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_6float.sh new file mode 100644 index 0000000..1820eaf --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_6float.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: 1.1 (0.0) + ┣━━ 📓 var2: 1.1 (0.0) + ┣━━ 📓 var3: 1.1 (0.0) + ┣━━ 📓 var4: 1.1 (10.1) + ┣━━ 📓 var5: 1.1 (10.1) + ┗━━ 📓 var6: 1.1 (10.1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6number.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_6number.sh new file mode 100644 index 0000000..1a9f125 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_6number.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: 1 (0) + ┣━━ 📓 var2: 1 (0) + ┣━━ 📓 var3: 1 (0) + ┣━━ 📓 var4: 1 (10) + ┣━━ 📓 var5: 1 (10) + ┗━━ 📓 var6: 1 (10) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6port.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_6port.sh new file mode 100644 index 0000000..a0e60d1 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_6port.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 variable1: 80 + ┣━━ 📓 variable2: 80 (8080) + ┗━━ 📓 variable3: 80 (8080) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6regexp.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_6regexp.sh new file mode 100644 index 0000000..33ba94a --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_6regexp.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: #b1b1b1 (#a1a1a1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6string.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_6string.sh new file mode 100644 index 0000000..8fa758d --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_6string.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: string1 + ┣━━ 📓 var2: string1 + ┣━━ 📓 var3: string1 + ┣━━ 📓 var4: string1 (value) + ┣━━ 📓 var5: string1 (value) + ┗━━ 📓 var6: string1 (value) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_7choice_quote.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_7choice_quote.sh new file mode 100644 index 0000000..65bf561 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_7choice_quote.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: quote' (quote') diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_7help_quote.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_7help_quote.sh new file mode 100644 index 0000000..cd39a39 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_7help_quote.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: string1 + ┗━━ 📓 var2: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote.sh new file mode 100644 index 0000000..3eade6f --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: string1 (quote") diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote2.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote2.sh new file mode 100644 index 0000000..3affce3 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote2.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: string1 (quote'") diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote3.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote3.sh new file mode 100644 index 0000000..f59250c --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote3.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: string1 (quote\"\') diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_quote.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_quote.sh new file mode 100644 index 0000000..6daace0 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_quote.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: string1 (quote') diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_8calculation_information.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_8calculation_information.sh new file mode 100644 index 0000000..e332755 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_8calculation_information.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_8test.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_8test.sh new file mode 100644 index 0000000..f6f34e2 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_8test.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: test + ┣━━ 📓 var2: test (value) + ┣━━ 📓 var3: test1 + ┣━━ 📓 var4: null + ┣━━ 📓 var5: false (true) + ┗━━ 📓 var6 : +  ┣━━ test1 +  ┗━━ test2 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9choice_variable_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_9choice_variable_multi.sh new file mode 100644 index 0000000..02de717 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_9choice_variable_multi.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 variable1 : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┗━━ 📓 variable2 : +  ┣━━ val1 +  ┗━━ val2 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9choice_variables.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_9choice_variables.sh new file mode 100644 index 0000000..691c5c2 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_9choice_variables.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 source_variable_1: string1 (val1) + ┣━━ 📓 source_variable_2: string1 (val2) + ┗━━ 📓 my_variable: string1 (val1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation.sh new file mode 100644 index 0000000..b2a434c --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: string1 (string_1_True_None) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_information.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_information.sh new file mode 100644 index 0000000..8e2fb69 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_information.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_information_other_variable.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_information_other_variable.sh new file mode 100644 index 0000000..cd39a39 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_information_other_variable.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: string1 + ┗━━ 📓 var2: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_multi_optional.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_multi_optional.sh new file mode 100644 index 0000000..ee7a14e --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_multi_optional.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 my_variable: string1 (val1) + ┗━━ 📓 my_calculated_variable : +  ┣━━ string1 (string1) +  ┣━━ string2 +  ┗━━ string3 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_multi_optional2.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_multi_optional2.sh new file mode 100644 index 0000000..ee7a14e --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_multi_optional2.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 my_variable: string1 (val1) + ┗━━ 📓 my_calculated_variable : +  ┣━━ string1 (string1) +  ┣━━ string2 +  ┗━━ string3 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_optional.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_optional.sh new file mode 100644 index 0000000..bf79cbe --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_optional.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 my_calculated_variable : +  ┣━━ string1 +  ┣━━ string2 +  ┗━━ string3 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_optional_exists.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_optional_exists.sh new file mode 100644 index 0000000..9c70d2e --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_optional_exists.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 my_variable : + ┃ ┣━━ string1 (val1) + ┃ ┣━━ string2 (val2) + ┃ ┗━━ string3 + ┗━━ 📓 my_calculated_variable : +  ┣━━ string1 (string1) +  ┣━━ string2 (string2) +  ┗━━ string3 (string3) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_param_optional.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_param_optional.sh new file mode 100644 index 0000000..9bb2168 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_param_optional.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: string1 (string1) + ┗━━ 📓 var2: string1 (no) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_information_other_variable.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_information_other_variable.sh new file mode 100644 index 0000000..cd39a39 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_information_other_variable.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: string1 + ┗━━ 📓 var2: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_integer.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_integer.sh new file mode 100644 index 0000000..5175be0 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_integer.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: 0 (9) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9extra.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_9extra.sh new file mode 100644 index 0000000..b945323 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_9extra.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📂 rougail +┃ ┗━━ 📓 variable: string1 (rougail) +┗━━ 📂 extra + ┗━━ 📓 variable: string1 (no) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9extra_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_9extra_calculation.sh new file mode 100644 index 0000000..9f43988 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_9extra_calculation.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📂 rougail +┃ ┗━━ 📓 variable: string1 (value) +┗━━ 📂 extra + ┣━━ 📓 variable1: string1 (string1) + ┣━━ 📓 variable2: string1 (string1) + ┗━━ 📓 variable3: string1 (string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_6boolean_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets/01_6boolean_multi.sh new file mode 100644 index 0000000..03774bd --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/01_6boolean_multi.sh @@ -0,0 +1,23 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┗━━ true (true) + ┣━━ 📓 var2 : + ┃ ┗━━ true (true) + ┣━━ 📓 var3 : + ┃ ┗━━ true (true) + ┣━━ 📓 var4 : + ┃ ┗━━ true (false) + ┣━━ 📓 var5 : + ┃ ┗━━ true (false) + ┣━━ 📓 var6 : + ┃ ┗━━ true (false) + ┣━━ 📓 var7 : + ┃ ┗━━ true (true) + ┗━━ 📓 var8 : +  ┗━━ true (true) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_6custom_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets/01_6custom_multi.sh new file mode 100644 index 0000000..827f647 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/01_6custom_multi.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 custom1 : + ┃ ┣━━ string1 + ┃ ┣━━ string2 + ┃ ┗━━ string3 + ┗━━ 📓 custom2 : +  ┣━━ string1 (value) +  ┣━━ string2 +  ┗━━ string3 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_6float_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets/01_6float_multi.sh new file mode 100644 index 0000000..a4c7b53 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/01_6float_multi.sh @@ -0,0 +1,39 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ 1.1 (0.0) + ┃ ┣━━ 2.2 + ┃ ┗━━ 3.3 + ┣━━ 📓 var2 : + ┃ ┣━━ 1.1 (0.0) + ┃ ┣━━ 2.2 + ┃ ┗━━ 3.3 + ┣━━ 📓 var3 : + ┃ ┣━━ 1.1 (0.0) + ┃ ┣━━ 2.2 + ┃ ┗━━ 3.3 + ┣━━ 📓 var4 : + ┃ ┣━━ 1.1 (10.1) + ┃ ┣━━ 2.2 + ┃ ┗━━ 3.3 + ┣━━ 📓 var5 : + ┃ ┣━━ 1.1 (10.1) + ┃ ┣━━ 2.2 + ┃ ┗━━ 3.3 + ┣━━ 📓 var6 : + ┃ ┣━━ 1.1 (10.1) + ┃ ┣━━ 2.2 + ┃ ┗━━ 3.3 + ┣━━ 📓 var7 : + ┃ ┣━━ 1.1 (0.0) + ┃ ┣━━ 2.2 + ┃ ┗━━ 3.3 + ┗━━ 📓 var8 : +  ┣━━ 1.1 (0.0) +  ┣━━ 2.2 +  ┗━━ 3.3 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_6number_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets/01_6number_multi.sh new file mode 100644 index 0000000..01c12c3 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/01_6number_multi.sh @@ -0,0 +1,39 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ 1 (0) + ┃ ┣━━ 2 + ┃ ┗━━ 3 + ┣━━ 📓 var2 : + ┃ ┣━━ 1 (0) + ┃ ┣━━ 2 + ┃ ┗━━ 3 + ┣━━ 📓 var3 : + ┃ ┣━━ 1 (0) + ┃ ┣━━ 2 + ┃ ┗━━ 3 + ┣━━ 📓 var4 : + ┃ ┣━━ 1 (10) + ┃ ┣━━ 2 + ┃ ┗━━ 3 + ┣━━ 📓 var5 : + ┃ ┣━━ 1 (10) + ┃ ┣━━ 2 + ┃ ┗━━ 3 + ┣━━ 📓 var6 : + ┃ ┣━━ 1 (10) + ┃ ┣━━ 2 + ┃ ┗━━ 3 + ┣━━ 📓 var7 : + ┃ ┣━━ 1 (0) + ┃ ┣━━ 2 + ┃ ┗━━ 3 + ┗━━ 📓 var8 : +  ┣━━ 1 (0) +  ┣━━ 2 +  ┗━━ 3 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_6string_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/01_6string_empty.sh new file mode 100644 index 0000000..a0c207b --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/01_6string_empty.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var1 : +  ┣━━ string1 (value) +  ┣━━ string2 +  ┗━━ string3 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_6string_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets/01_6string_multi.sh new file mode 100644 index 0000000..1485037 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/01_6string_multi.sh @@ -0,0 +1,36 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ string1 + ┃ ┣━━ string2 + ┃ ┗━━ string3 + ┣━━ 📓 var2 : + ┃ ┣━━ string1 + ┃ ┣━━ string2 + ┃ ┗━━ string3 + ┣━━ 📓 var3: string1 + ┣━━ 📓 var4 : + ┃ ┣━━ string1 (value) + ┃ ┣━━ string2 + ┃ ┗━━ string3 + ┣━━ 📓 var5 : + ┃ ┣━━ string1 (value) + ┃ ┣━━ string2 + ┃ ┗━━ string3 + ┣━━ 📓 var6 : + ┃ ┣━━ string1 (value) + ┃ ┣━━ string2 + ┃ ┗━━ string3 + ┣━━ 📓 var7 : + ┃ ┣━━ string1 (value) + ┃ ┣━━ string2 + ┃ ┗━━ string3 + ┗━━ 📓 var8 : +  ┣━━ string1 (value) +  ┣━━ string2 +  ┗━━ string3 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_doublequote.sh b/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_doublequote.sh new file mode 100644 index 0000000..4004fc4 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_doublequote.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable : +  ┣━━ string1 (quote") +  ┣━━ string2 +  ┗━━ string3 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_doublequote2.sh b/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_doublequote2.sh new file mode 100644 index 0000000..a9b4170 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_doublequote2.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable : +  ┣━━ string1 (quote'") +  ┣━━ string2 +  ┗━━ string3 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_quote.sh b/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_quote.sh new file mode 100644 index 0000000..d61f809 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_quote.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable : +  ┣━━ string1 (quote') +  ┣━━ string2 +  ┗━━ string3 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_8calculation_information_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets/01_8calculation_information_multi.sh new file mode 100644 index 0000000..7da8271 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/01_8calculation_information_multi.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable : +  ┣━━ string1 +  ┣━━ string2 +  ┗━━ string3 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_9choice_variable_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets/01_9choice_variable_multi.sh new file mode 100644 index 0000000..ddebbe3 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/01_9choice_variable_multi.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 variable1 : + ┃ ┣━━ string1 (a) + ┃ ┣━━ string2 (b) + ┃ ┗━━ string3 (c) + ┗━━ 📓 variable2: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_0type_param.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_0type_param.sh new file mode 100644 index 0000000..45f5118 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_0type_param.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 int: 1 (10) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save.sh new file mode 100644 index 0000000..967acec --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: no diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save_and_calculated.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save_and_calculated.sh new file mode 100644 index 0000000..d7ff04a --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save_and_calculated.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: string1 (no) + ┗━━ 📓 var2: no diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save_and_calculated_hidden.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save_and_calculated_hidden.sh new file mode 100644 index 0000000..0c70a80 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save_and_calculated_hidden.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: string1 (no) + ┗━━ 📓 var2: yes diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save_and_hidden.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save_and_hidden.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save_and_hidden.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden.sh new file mode 100644 index 0000000..f1691f3 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: string1 (value) + ┣━━ 📓 var2: string1 + ┗━━ 📓 var3: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_2.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_2.sh new file mode 100644 index 0000000..f1691f3 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_2.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: string1 (value) + ┣━━ 📓 var2: string1 + ┗━━ 📓 var3: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation.sh new file mode 100644 index 0000000..87041be --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: string1 (no) + ┣━━ 📓 variable1: string1 + ┗━━ 📓 variable2: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_default.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_default.sh new file mode 100644 index 0000000..5801232 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_default.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: string1 (no) + ┣━━ 📓 var1: string1 (string1) + ┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_optional.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_optional.sh new file mode 100644 index 0000000..ac535cb --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_optional.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: string1 (no) + ┗━━ 📓 var2: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable.sh new file mode 100644 index 0000000..68721df --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 condition: true (false) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable2.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable2.sh new file mode 100644 index 0000000..67ff727 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable2.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 condition: true (true) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable3.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable3.sh new file mode 100644 index 0000000..65551aa --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable3.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: string1 (yes) + ┗━━ 📓 variable: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable4.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable4.sh new file mode 100644 index 0000000..adca7e2 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable4.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 condition: string1 (yes) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation.sh new file mode 100644 index 0000000..86ab6df --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: string1 (no) + ┣━━ 📓 var1: string1 (no) + ┗━━ 📓 var2: string1 (no) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation2.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation2.sh new file mode 100644 index 0000000..da9dec3 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation2.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 condition: string1 (no) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation_default_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation_default_calculation.sh new file mode 100644 index 0000000..5801232 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation_default_calculation.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: string1 (no) + ┣━━ 📓 var1: string1 (string1) + ┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators.sh new file mode 100644 index 0000000..eeda9ff --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 int: 1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_differ.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_differ.sh new file mode 100644 index 0000000..19f4dfb --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_differ.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: another_value (oui) + ┗━━ 📓 var2: string1 (no) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_multi.sh new file mode 100644 index 0000000..528ab9f --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_multi.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var1 : +  ┣━━ string1 (no) +  ┣━━ string2 (yes) +  ┗━━ string3 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_multi2.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_multi2.sh new file mode 100644 index 0000000..6f17412 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_multi2.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var1 : +  ┣━━ val1 (no) +  ┗━━ val2 (yes) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/05_0multi_not_uniq.sh b/tests/results/test_namespace_read_write_mandatory_secrets/05_0multi_not_uniq.sh new file mode 100644 index 0000000..9207a4e --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/05_0multi_not_uniq.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var1 : +  ┣━━ string1 (non) +  ┣━━ string2 +  ┗━━ string3 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/05_0multi_uniq.sh b/tests/results/test_namespace_read_write_mandatory_secrets/05_0multi_uniq.sh new file mode 100644 index 0000000..3cbd9a4 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/05_0multi_uniq.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable : +  ┣━━ string1 (non) +  ┣━━ string2 +  ┗━━ string3 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/12_1auto_save_expert.sh b/tests/results/test_namespace_read_write_mandatory_secrets/12_1auto_save_expert.sh new file mode 100644 index 0000000..d73522e --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/12_1auto_save_expert.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: no diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_0redefine_description.sh b/tests/results/test_namespace_read_write_mandatory_secrets/16_0redefine_description.sh new file mode 100644 index 0000000..8e2fb69 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/16_0redefine_description.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_2family_redefine_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets/16_2family_redefine_calculation.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/16_2family_redefine_calculation.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_2family_redefine_disabled.sh b/tests/results/test_namespace_read_write_mandatory_secrets/16_2family_redefine_disabled.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/16_2family_redefine_disabled.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5exists_nonexists.sh b/tests/results/test_namespace_read_write_mandatory_secrets/16_5exists_nonexists.sh new file mode 100644 index 0000000..f0d3537 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/16_5exists_nonexists.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: string1 (no) + ┗━━ 📓 var2: string1 (yes) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5exists_redefine.sh b/tests/results/test_namespace_read_write_mandatory_secrets/16_5exists_redefine.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/16_5exists_redefine.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_calculation.sh new file mode 100644 index 0000000..baf9afa --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_calculation.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: string1 (yes) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_choice.sh b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_choice.sh new file mode 100644 index 0000000..2daa0aa --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_choice.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: a diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_default.sh b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_default.sh new file mode 100644 index 0000000..baf9afa --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_default.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: string1 (yes) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_default_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_default_calculation.sh new file mode 100644 index 0000000..e332755 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_default_calculation.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_family.sh b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_family.sh new file mode 100644 index 0000000..31540c9 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_family.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 family +  ┗━━ 📓 variable: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_help.sh b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_help.sh new file mode 100644 index 0000000..31540c9 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_help.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 family +  ┗━━ 📓 variable: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_hidden.sh b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_hidden.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_hidden.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_multi.sh new file mode 100644 index 0000000..3cbd9a4 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_multi.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable : +  ┣━━ string1 (non) +  ┣━━ string2 +  ┗━━ string3 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_remove_disable_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_remove_disable_calculation.sh new file mode 100644 index 0000000..e6b2632 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_remove_disable_calculation.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: string1 (no) + ┗━━ 📓 variable: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5test_redefine.sh b/tests/results/test_namespace_read_write_mandatory_secrets/16_5test_redefine.sh new file mode 100644 index 0000000..f50625a --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/16_5test_redefine.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: test1 (no) + ┣━━ 📓 var2: test1 (non) + ┗━━ 📓 var3: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_6choice_redefine.sh b/tests/results/test_namespace_read_write_mandatory_secrets/16_6choice_redefine.sh new file mode 100644 index 0000000..0400482 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/16_6choice_redefine.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: a (c) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_6exists_redefine_family.sh b/tests/results/test_namespace_read_write_mandatory_secrets/16_6exists_redefine_family.sh new file mode 100644 index 0000000..4405712 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/16_6exists_redefine_family.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📂 family1 + ┃ ┗━━ 📓 variable1: string1 + ┗━━ 📂 family2 +  ┗━━ 📓 variable2: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16exists_exists.sh b/tests/results/test_namespace_read_write_mandatory_secrets/16exists_exists.sh new file mode 100644 index 0000000..8e2fb69 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/16exists_exists.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/17_5redefine_leadership.sh b/tests/results/test_namespace_read_write_mandatory_secrets/17_5redefine_leadership.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/17_5redefine_leadership.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_0empty_family.sh b/tests/results/test_namespace_read_write_mandatory_secrets/20_0empty_family.sh new file mode 100644 index 0000000..2fc78e0 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/20_0empty_family.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_0family_append.sh b/tests/results/test_namespace_read_write_mandatory_secrets/20_0family_append.sh new file mode 100644 index 0000000..d728ffd --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/20_0family_append.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 family +  ┣━━ 📓 var1: string1 +  ┗━━ 📓 var2: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_0family_underscore.sh b/tests/results/test_namespace_read_write_mandatory_secrets/20_0family_underscore.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/20_0family_underscore.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family.sh b/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family.sh new file mode 100644 index 0000000..814c4ff --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 family +  ┗━━ 📂 subfamily +   ┗━━ 📓 variable: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_basic.sh b/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_basic.sh new file mode 100644 index 0000000..814c4ff --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_basic.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 family +  ┗━━ 📂 subfamily +   ┗━━ 📓 variable: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_expert.sh b/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_expert.sh new file mode 100644 index 0000000..1ffef3f --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_expert.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 family +  ┗━━ 📂 subfamily +   ┗━━ 📓 variable: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_order.sh b/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_order.sh new file mode 100644 index 0000000..601030c --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_order.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 variable: string1 + ┗━━ 📂 family +  ┣━━ 📓 variable1: string1 +  ┣━━ 📂 subfamily +  ┃ ┗━━ 📓 variable: string1 +  ┗━━ 📓 variable2: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_0validators_differ_redefine.sh b/tests/results/test_namespace_read_write_mandatory_secrets/20_0validators_differ_redefine.sh new file mode 100644 index 0000000..5ea3f34 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/20_0validators_differ_redefine.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: string1 (no) + ┣━━ 📓 var2: string1 (no) + ┗━━ 📓 var3: yes (yes) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_1empty_subfamily.sh b/tests/results/test_namespace_read_write_mandatory_secrets/20_1empty_subfamily.sh new file mode 100644 index 0000000..2fc78e0 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/20_1empty_subfamily.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_9default_information_parent.sh b/tests/results/test_namespace_read_write_mandatory_secrets/20_9default_information_parent.sh new file mode 100644 index 0000000..d728ffd --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/20_9default_information_parent.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 family +  ┣━━ 📓 var1: string1 +  ┗━━ 📓 var2: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition.sh b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition.sh new file mode 100644 index 0000000..812d6c6 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: string1 (no) + ┗━━ 📂 family +  ┗━━ 📓 var1: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_boolean.sh b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_boolean.sh new file mode 100644 index 0000000..cfa5253 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_boolean.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: true (false) + ┗━━ 📂 family +  ┗━━ 📓 variable: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_sub_family.sh b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_sub_family.sh new file mode 100644 index 0000000..182b67a --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_sub_family.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: string1 (no) + ┗━━ 📂 family +  ┗━━ 📂 subfamily +   ┗━━ 📓 var1: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.sh b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.sh new file mode 100644 index 0000000..67ff727 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 condition: true (true) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_with_variable.sh b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_with_variable.sh new file mode 100644 index 0000000..c349113 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_with_variable.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition1: true (false) + ┣━━ 📓 condition2: true (false) + ┗━━ 📂 family diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_param_condition_sub_family.sh b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_param_condition_sub_family.sh new file mode 100644 index 0000000..5756145 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_param_condition_sub_family.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: string1 (no) + ┗━━ 📂 family +  ┗━━ 📂 sub_family +   ┗━━ 📓 var1: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_mandatory_condition.sh b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_mandatory_condition.sh new file mode 100644 index 0000000..d8ef242 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_mandatory_condition.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: string1 (no) + ┗━━ 📓 var: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_mandatory_condition_variable.sh b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_mandatory_condition_variable.sh new file mode 100644 index 0000000..abee35b --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_mandatory_condition_variable.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: true (true) + ┗━━ 📓 var: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_7validators_variable_optional.sh b/tests/results/test_namespace_read_write_mandatory_secrets/24_7validators_variable_optional.sh new file mode 100644 index 0000000..40c6dea --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/24_7validators_variable_optional.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 general +  ┣━━ 📓 int: 5 +  ┗━━ 📓 int2: 1 (1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_family_disabled_var_hidden.sh b/tests/results/test_namespace_read_write_mandatory_secrets/24_family_disabled_var_hidden.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/24_family_disabled_var_hidden.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership.sh new file mode 100644 index 0000000..09a463e --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership.sh @@ -0,0 +1,20 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 +  ┃ ┣━━ 📓 follower1: string1 +  ┃ ┗━━ 📓 follower2: string1 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┣━━ 📓 follower1: string2 +  ┃ ┗━━ 📓 follower2: string2 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┣━━ 📓 follower1: string3 +   ┗━━ 📓 follower2: string3 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_diff_name.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_diff_name.sh new file mode 100644 index 0000000..0bf094e --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_diff_name.sh @@ -0,0 +1,20 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leadership +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 +  ┃ ┣━━ 📓 follower1: string1 +  ┃ ┗━━ 📓 follower2: string1 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┣━━ 📓 follower1: string2 +  ┃ ┗━━ 📓 follower2: string2 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┣━━ 📓 follower1: string3 +   ┗━━ 📓 follower2: string3 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_empty.sh new file mode 100644 index 0000000..2fc78e0 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_empty.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_calculation.sh new file mode 100644 index 0000000..8e417db --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_calculation.sh @@ -0,0 +1,20 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 +  ┃ ┣━━ 📓 follower1: string1 (value) +  ┃ ┗━━ 📓 follower2: string1 (string1) +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┣━━ 📓 follower1: string2 (value) +  ┃ ┗━━ 📓 follower2: string2 (string2) +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┣━━ 📓 follower1: string3 (value) +   ┗━━ 📓 follower2: string3 (string3) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_submulti.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_submulti.sh new file mode 100644 index 0000000..5e02760 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_submulti.sh @@ -0,0 +1,38 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 (leader) +  ┃ ┣━━ 📓 follower1 : +  ┃ ┃ ┣━━ string1 (value) +  ┃ ┃ ┣━━ string2 +  ┃ ┃ ┗━━ string3 +  ┃ ┗━━ 📓 follower2 : +  ┃  ┣━━ string1 (value1) +  ┃  ┣━━ string2 (value2) +  ┃  ┗━━ string3 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┣━━ 📓 follower1 : +  ┃ ┃ ┣━━ string1 (value) +  ┃ ┃ ┣━━ string2 +  ┃ ┃ ┗━━ string3 +  ┃ ┗━━ 📓 follower2 : +  ┃  ┣━━ string1 (value1) +  ┃  ┣━━ string2 (value2) +  ┃  ┗━━ string3 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┣━━ 📓 follower1 : +   ┃ ┣━━ string1 (value) +   ┃ ┣━━ string2 +   ┃ ┗━━ string3 +   ┗━━ 📓 follower2 : +    ┣━━ string1 (value1) +    ┣━━ string2 (value2) +    ┗━━ string3 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_submulti_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_submulti_calculation.sh new file mode 100644 index 0000000..8b9c7b3 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_submulti_calculation.sh @@ -0,0 +1,38 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 (leader) +  ┃ ┣━━ 📓 follower1 : +  ┃ ┃ ┣━━ string1 (value) +  ┃ ┃ ┣━━ string2 +  ┃ ┃ ┗━━ string3 +  ┃ ┗━━ 📓 follower2 : +  ┃  ┣━━ string1 (string1) +  ┃  ┣━━ string2 (string2) +  ┃  ┗━━ string3 (string3) +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┣━━ 📓 follower1 : +  ┃ ┃ ┣━━ string1 (value) +  ┃ ┃ ┣━━ string2 +  ┃ ┃ ┗━━ string3 +  ┃ ┗━━ 📓 follower2 : +  ┃  ┣━━ string1 (string1) +  ┃  ┣━━ string2 (string2) +  ┃  ┗━━ string3 (string3) +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┣━━ 📓 follower1 : +   ┃ ┣━━ string1 (value) +   ┃ ┣━━ string2 +   ┃ ┗━━ string3 +   ┗━━ 📓 follower2 : +    ┣━━ string1 (string1) +    ┣━━ string2 (string2) +    ┗━━ string3 (string3) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_value.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_value.sh new file mode 100644 index 0000000..f383f41 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_value.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 +  ┃ ┗━━ 📓 follower1: string1 (value) +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┗━━ 📓 follower1: string2 (value) +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┗━━ 📓 follower1: string3 (value) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_leader_not_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_leader_not_multi.sh new file mode 100644 index 0000000..a3f7d96 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_leader_not_multi.sh @@ -0,0 +1,23 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📂 general + ┃ ┗━━ 📓 mode_conteneur_actif: string1 (non) + ┗━━ 📂 general1 +  ┗━━ 📂 leader +   ┣━━ 📂 leader +   ┃ ┣━━ 📓 leader: string1 +   ┃ ┣━━ 📓 follower1: string1 +   ┃ ┗━━ 📓 follower2: string1 +   ┣━━ 📂 leader +   ┃ ┣━━ 📓 leader: string2 +   ┃ ┣━━ 📓 follower1: string2 +   ┃ ┗━━ 📓 follower2: string2 +   ┗━━ 📂 leader +    ┣━━ 📓 leader: string3 +    ┣━━ 📓 follower1: string3 +    ┗━━ 📓 follower2: string3 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_1leadership_append_follower.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_1leadership_append_follower.sh new file mode 100644 index 0000000..23177aa --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_1leadership_append_follower.sh @@ -0,0 +1,23 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 +  ┃ ┣━━ 📓 follower1: string1 +  ┃ ┣━━ 📓 follower2: string1 +  ┃ ┗━━ 📓 follower3: string1 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┣━━ 📓 follower1: string2 +  ┃ ┣━━ 📓 follower2: string2 +  ┃ ┗━━ 📓 follower3: string2 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┣━━ 📓 follower1: string3 +   ┣━━ 📓 follower2: string3 +   ┗━━ 📓 follower3: string3 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_calculation_index.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_calculation_index.sh new file mode 100644 index 0000000..c0419cd --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_calculation_index.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 (a) +  ┃ ┗━━ 📓 follower1: 1 (0) +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 (b) +  ┃ ┗━━ 📓 follower1: 2 (1) +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 (c) +   ┗━━ 📓 follower1: 3 (2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_calculation_param_index.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_calculation_param_index.sh new file mode 100644 index 0000000..c0419cd --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_calculation_param_index.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 (a) +  ┃ ┗━━ 📓 follower1: 1 (0) +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 (b) +  ┃ ┗━━ 📓 follower1: 2 (1) +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 (c) +   ┗━━ 📓 follower1: 3 (2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_leader_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_leader_calculation.sh new file mode 100644 index 0000000..8be2eeb --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_leader_calculation.sh @@ -0,0 +1,20 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 (val1) +  ┃ ┣━━ 📓 follower1: string1 +  ┃ ┗━━ 📓 follower2: string1 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 (val2) +  ┃ ┣━━ 📓 follower1: string2 +  ┃ ┗━━ 📓 follower2: string2 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┣━━ 📓 follower1: string3 +   ┗━━ 📓 follower2: string3 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_6leadership_follower_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_6leadership_follower_multi.sh new file mode 100644 index 0000000..cd427ca --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_6leadership_follower_multi.sh @@ -0,0 +1,38 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leadership +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 +  ┃ ┣━━ 📓 follower1 : +  ┃ ┃ ┣━━ string1 +  ┃ ┃ ┣━━ string2 +  ┃ ┃ ┗━━ string3 +  ┃ ┗━━ 📓 follower2 : +  ┃  ┣━━ string1 (value) +  ┃  ┣━━ string2 +  ┃  ┗━━ string3 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┣━━ 📓 follower1 : +  ┃ ┃ ┣━━ string1 +  ┃ ┃ ┣━━ string2 +  ┃ ┃ ┗━━ string3 +  ┃ ┗━━ 📓 follower2 : +  ┃  ┣━━ string1 (value) +  ┃  ┣━━ string2 +  ┃  ┗━━ string3 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┣━━ 📓 follower1 : +   ┃ ┣━━ string1 +   ┃ ┣━━ string2 +   ┃ ┗━━ string3 +   ┗━━ 📓 follower2 : +    ┣━━ string1 (value) +    ┣━━ string2 +    ┗━━ string3 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_boolean.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_boolean.sh new file mode 100644 index 0000000..8f3c5d9 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_boolean.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 bool: true (false) + ┣━━ 📓 multi1 : + ┃ ┣━━ true (true) + ┃ ┗━━ false + ┗━━ 📓 multi2 : +  ┗━━ true (false) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_boolean_return_none.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_boolean_return_none.sh new file mode 100644 index 0000000..22b8a52 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_boolean_return_none.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: string1 (yes) + ┗━━ 📓 var2: true diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_integer.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_integer.sh new file mode 100644 index 0000000..bcbf1c8 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_integer.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 bool: true (false) + ┣━━ 📓 int1: 1 (1) + ┗━━ 📓 int2: 1 (4) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable.sh new file mode 100644 index 0000000..3bd6eb0 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ string1 (string1) + ┃ ┣━━ string2 (string1) + ┃ ┗━━ string3 + ┣━━ 📓 var2: string1 (no) + ┗━━ 📓 var3: string1 (yes) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable_parent.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable_parent.sh new file mode 100644 index 0000000..9268950 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable_parent.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var: string1 (no) + ┗━━ 📂 fam1 +  ┗━━ 📓 var: string1 (string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable_parent2.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable_parent2.sh new file mode 100644 index 0000000..83dcb64 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable_parent2.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📂 fam1 + ┃ ┗━━ 📓 var: string1 (no) + ┗━━ 📂 fam2 +  ┗━━ 📓 var: string1 (string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/41_0choice_leader.sh b/tests/results/test_namespace_read_write_mandatory_secrets/41_0choice_leader.sh new file mode 100644 index 0000000..47f9bf2 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/41_0choice_leader.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 +  ┃ ┗━━ 📓 follower1: a +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┗━━ 📓 follower1: b +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┗━━ 📓 follower1: c diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/44_0leadership_hidden.sh b/tests/results/test_namespace_read_write_mandatory_secrets/44_0leadership_hidden.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/44_0leadership_hidden.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/44_0leadership_leader_hidden.sh b/tests/results/test_namespace_read_write_mandatory_secrets/44_0leadership_leader_hidden.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/44_0leadership_leader_hidden.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/44_1leadership_append_hidden_follower.sh b/tests/results/test_namespace_read_write_mandatory_secrets/44_1leadership_append_hidden_follower.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/44_1leadership_append_hidden_follower.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/44_4disabled_calcultion_follower.sh b/tests/results/test_namespace_read_write_mandatory_secrets/44_4disabled_calcultion_follower.sh new file mode 100644 index 0000000..9b19e8c --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/44_4disabled_calcultion_follower.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: true (true) + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 (a) +  ┃ ┗━━ 📓 follower: string1 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┗━━ 📓 follower: string2 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┗━━ 📓 follower: string3 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/44_4leadership_mandatory.sh b/tests/results/test_namespace_read_write_mandatory_secrets/44_4leadership_mandatory.sh new file mode 100644 index 0000000..68e67f9 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/44_4leadership_mandatory.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 +  ┃ ┗━━ 📓 follower1: string1 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┗━━ 📓 follower1: string2 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┗━━ 📓 follower1: string3 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/44_4leadership_mandatory_follower.sh b/tests/results/test_namespace_read_write_mandatory_secrets/44_4leadership_mandatory_follower.sh new file mode 100644 index 0000000..ee9ef8c --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/44_4leadership_mandatory_follower.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 +  ┃ ┗━━ 📓 follower: string1 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┗━━ 📓 follower: string2 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┗━━ 📓 follower: string3 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/44_5leadership_leader_hidden_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets/44_5leadership_leader_hidden_calculation.sh new file mode 100644 index 0000000..754ff9c --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/44_5leadership_leader_hidden_calculation.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: string1 (no) + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 +  ┃ ┗━━ 📓 follower: string1 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┗━━ 📓 follower: string2 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┗━━ 📓 follower: string3 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/44_6leadership_follower_disabled_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets/44_6leadership_follower_disabled_calculation.sh new file mode 100644 index 0000000..5aa6892 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/44_6leadership_follower_disabled_calculation.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: string1 (yes) + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 +  ┃ ┗━━ 📓 follower: string1 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┗━━ 📓 follower: string2 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┗━━ 📓 follower: string3 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/44_9calculated_default_leadership_leader.sh b/tests/results/test_namespace_read_write_mandatory_secrets/44_9calculated_default_leadership_leader.sh new file mode 100644 index 0000000..d877aa4 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/44_9calculated_default_leadership_leader.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 (a) +  ┃ ┗━━ 📓 follower: string1 (string1) +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 (b) +  ┃ ┗━━ 📓 follower: string2 (string2) +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┗━━ 📓 follower: string3 (string3) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic.sh new file mode 100644 index 0000000..611695e --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0.sh new file mode 100644 index 0000000..8b45cde --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 vardyn: string1 + ┗━━ 📂 dynval2 +  ┗━━ 📓 vardyn: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_empty.sh new file mode 100644 index 0000000..01dba53 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_empty.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 vardyn: string1 + ┗━━ 📂 dynval2 +  ┗━━ 📓 vardyn: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_type.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_type.sh new file mode 100644 index 0000000..8b45cde --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_type.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 vardyn: string1 + ┗━━ 📂 dynval2 +  ┗━━ 📓 vardyn: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_type_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_type_empty.sh new file mode 100644 index 0000000..01dba53 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_type_empty.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 vardyn: string1 + ┗━━ 📂 dynval2 +  ┗━━ 📓 vardyn: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_1.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_1.sh new file mode 100644 index 0000000..8b45cde --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_1.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 vardyn: string1 + ┗━━ 📂 dynval2 +  ┗━━ 📓 vardyn: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_1_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_1_empty.sh new file mode 100644 index 0000000..01dba53 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_1_empty.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 vardyn: string1 + ┗━━ 📂 dynval2 +  ┗━━ 📓 vardyn: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_empty.sh new file mode 100644 index 0000000..5604c2c --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_empty.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ string1 + ┃ ┣━━ string2 + ┃ ┗━━ string3 + ┣━━ 📂 dynstring1 + ┃ ┗━━ 📓 var: string1 + ┣━━ 📂 dynstring2 + ┃ ┗━━ 📓 var: string1 + ┗━━ 📂 dynstring3 +  ┗━━ 📓 var: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_jinja_number.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_jinja_number.sh new file mode 100644 index 0000000..c542c93 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_jinja_number.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ 1 (1) + ┃ ┗━━ 2 (2) + ┣━━ 📂 dyn1 + ┃ ┗━━ 📓 var: string1 (val) + ┣━━ 📂 dyn2 + ┃ ┗━━ 📓 var: string1 (val) + ┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_jinja_number_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_jinja_number_empty.sh new file mode 100644 index 0000000..ecb496b --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_jinja_number_empty.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ 1 + ┃ ┗━━ 2 + ┣━━ 📂 dyn1 + ┃ ┗━━ 📓 var: string1 (val) + ┣━━ 📂 dyn2 + ┃ ┗━━ 📓 var: string1 (val) + ┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_no_description.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_no_description.sh new file mode 100644 index 0000000..611695e --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_no_description.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_no_description_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_no_description_empty.sh new file mode 100644 index 0000000..8f127e2 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_no_description_empty.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_static.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_static.sh new file mode 100644 index 0000000..de05559 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_static.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_test.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_test.sh new file mode 100644 index 0000000..8f127e2 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_test.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_empty.sh new file mode 100644 index 0000000..b6b2f45 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_empty.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ string1 + ┃ ┣━━ string2 + ┃ ┗━━ string3 + ┣━━ 📂 dynstring1 + ┃ ┗━━ 📓 var: string1 (val) + ┣━━ 📂 dynstring2 + ┃ ┗━━ 📓 var: string1 (val) + ┗━━ 📂 dynstring3 +  ┗━━ 📓 var: string1 (val) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix.sh new file mode 100644 index 0000000..a6e0282 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 (a value) + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: string1 (a value) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.sh new file mode 100644 index 0000000..c822628 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 (a value) + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: string1 (a value) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_empty.sh new file mode 100644 index 0000000..2fc78e0 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_empty.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_hidden.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_hidden.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_hidden.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_mode.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_mode.sh new file mode 100644 index 0000000..dee16c7 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_mode.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 family +  ┗━━ 📓 var: string1 (non) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_1family_dynamic_jinja.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_1family_dynamic_jinja.sh new file mode 100644 index 0000000..b2d05ad --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_1family_dynamic_jinja.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ string1 (val1) + ┃ ┣━━ string2 (val2) + ┃ ┗━━ string3 + ┣━━ 📂 dyn1 + ┃ ┗━━ 📓 var: string1 (val) + ┣━━ 📂 dyn2 + ┃ ┗━━ 📓 var: string1 (val) + ┗━━ 📂 dyn3 +  ┗━━ 📓 var: string1 (val) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.sh new file mode 100644 index 0000000..6b49fa1 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📂 family + ┃  ┗━━ 📓 var: string1 + ┣━━ 📂 dynval2 + ┃ ┗━━ 📂 family + ┃  ┗━━ 📓 var: string1 + ┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.sh new file mode 100644 index 0000000..b561893 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📂 family + ┃  ┗━━ 📓 var: string1 (val1) + ┣━━ 📂 dynval2 + ┃ ┗━━ 📂 family + ┃  ┗━━ 📓 var: string1 (val2) + ┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh new file mode 100644 index 0000000..cf3cd69 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📂 family + ┃  ┗━━ 📓 var: string1 (val1) + ┣━━ 📂 dynval2 + ┃ ┗━━ 📂 family + ┃  ┗━━ 📓 var: string1 (val2) + ┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.sh new file mode 100644 index 0000000..6855ea4 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📂 family + ┃  ┗━━ 📓 var: string1 + ┣━━ 📂 dynval2 + ┃ ┗━━ 📂 family + ┃  ┗━━ 📓 var: string1 + ┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_outside_calc.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_outside_calc.sh new file mode 100644 index 0000000..6d8f605 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_outside_calc.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 (val) + ┣━━ 📂 dynval2 + ┃ ┗━━ 📓 var: string1 (val) + ┗━━ 📓 newvar: string1 (string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_outside_calc_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_outside_calc_empty.sh new file mode 100644 index 0000000..8de8768 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_outside_calc_empty.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 (val) + ┣━━ 📂 dynval2 + ┃ ┗━━ 📓 var: string1 (val) + ┗━━ 📓 newvar: string1 (string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc2.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc2.sh new file mode 100644 index 0000000..2360d9f --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc2.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📓 var2: string1 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 vardyn: string1 (val) + ┗━━ 📂 dynval2 +  ┗━━ 📓 vardyn: string1 (val) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc2_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc2_empty.sh new file mode 100644 index 0000000..29e2877 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc2_empty.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📓 var2: string1 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 vardyn: string1 (val) + ┗━━ 📂 dynval2 +  ┗━━ 📓 vardyn: string1 (val) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix.sh new file mode 100644 index 0000000..8c9778b --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 + ┣━━ 📂 dynval2 + ┃ ┗━━ 📓 var: string1 + ┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2.sh new file mode 100644 index 0000000..23a928e --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 (val1) + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: string1 (val2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.sh new file mode 100644 index 0000000..6fd9a81 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 (val1) + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: string1 (val2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.sh new file mode 100644 index 0000000..aa722f3 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📂 dynval1 + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_empty.sh new file mode 100644 index 0000000..9488f69 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_empty.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 + ┣━━ 📂 dynval2 + ┃ ┗━━ 📓 var: string1 + ┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param.sh new file mode 100644 index 0000000..23a928e --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 (val1) + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: string1 (val2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.sh new file mode 100644 index 0000000..6fd9a81 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 (val1) + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: string1 (val2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable.sh new file mode 100644 index 0000000..8c9778b --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 + ┣━━ 📂 dynval2 + ┃ ┗━━ 📓 var: string1 + ┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_empty.sh new file mode 100644 index 0000000..9488f69 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_empty.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 + ┣━━ 📂 dynval2 + ┃ ┗━━ 📓 var: string1 + ┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_hidden_suffix.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_hidden_suffix.sh new file mode 100644 index 0000000..ced137c --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_hidden_suffix.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 dynval1 +  ┣━━ 📓 var: string1 +  ┗━━ 📂 family +   ┗━━ 📓 var: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_unknown_suffix.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_unknown_suffix.sh new file mode 100644 index 0000000..b079603 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_unknown_suffix.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 val1_dyn + ┃ ┣━━ 📓 var1: string1 (val1) + ┃ ┣━━ 📓 var2: string1 (string1) + ┃ ┗━━ 📓 var3: string1 (string1) + ┗━━ 📂 val2_dyn +  ┣━━ 📓 var1: string1 (val2) +  ┣━━ 📓 var2: string1 (string1) +  ┗━━ 📓 var3: string1 (string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_unknown_suffix_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_unknown_suffix_empty.sh new file mode 100644 index 0000000..6a0199d --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_unknown_suffix_empty.sh @@ -0,0 +1,32 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┣━━ val2 + ┃ ┣━━ val3 + ┃ ┗━━ val4 + ┣━━ 📂 val1_dyn + ┃ ┣━━ 📓 var1: string1 (val1) + ┃ ┣━━ 📓 var2: string1 (string1) + ┃ ┣━━ 📓 var3: string1 (string1) + ┃ ┗━━ 📓 var4: string1 (string1) + ┣━━ 📂 val2_dyn + ┃ ┣━━ 📓 var1: string1 (val2) + ┃ ┣━━ 📓 var2: string1 (string1) + ┃ ┣━━ 📓 var3: string1 (string1) + ┃ ┗━━ 📓 var4: string1 (string1) + ┣━━ 📂 val3_dyn + ┃ ┣━━ 📓 var1: string1 (val3) + ┃ ┣━━ 📓 var2: string1 (string1) + ┃ ┣━━ 📓 var3: string1 (string1) + ┃ ┗━━ 📓 var4: string1 (string1) + ┗━━ 📂 val4_dyn +  ┣━━ 📓 var1: string1 (val4) +  ┣━━ 📓 var2: string1 (string1) +  ┣━━ 📓 var3: string1 (string1) +  ┗━━ 📓 var4: string1 (string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside.sh new file mode 100644 index 0000000..54f0a69 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 my_dyn_family_val1 + ┃ ┗━━ 📓 var: string1 (val1) + ┣━━ 📂 my_dyn_family_val2 + ┃ ┗━━ 📓 var: string1 (val2) + ┗━━ 📓 var2 : +  ┣━━ string1 (string1) +  ┣━━ string2 (string1) +  ┗━━ string3 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside2.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside2.sh new file mode 100644 index 0000000..661be01 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside2.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var2 : + ┃ ┣━━ string1 (string1) + ┃ ┣━━ string2 (string1) + ┃ ┗━━ string3 + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 my_dyn_family_val1 + ┃ ┗━━ 📓 var: string1 (val1) + ┗━━ 📂 my_dyn_family_val2 +  ┗━━ 📓 var: string1 (val2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside2_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside2_empty.sh new file mode 100644 index 0000000..15c4406 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside2_empty.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var2 : + ┃ ┣━━ string1 (string1) + ┃ ┣━━ string2 (string1) + ┃ ┗━━ string3 + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 my_dyn_family_val1 + ┃ ┗━━ 📓 var: string1 (val1) + ┗━━ 📂 my_dyn_family_val2 +  ┗━━ 📓 var: string1 (val2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_empty.sh new file mode 100644 index 0000000..2228c4c --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_empty.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 my_dyn_family_val1 + ┃ ┗━━ 📓 var: string1 (val1) + ┣━━ 📂 my_dyn_family_val2 + ┃ ┗━━ 📓 var: string1 (val2) + ┗━━ 📓 var2 : +  ┣━━ string1 (string1) +  ┣━━ string2 (string1) +  ┗━━ string3 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_jinja.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_jinja.sh new file mode 100644 index 0000000..54f0a69 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_jinja.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 my_dyn_family_val1 + ┃ ┗━━ 📓 var: string1 (val1) + ┣━━ 📂 my_dyn_family_val2 + ┃ ┗━━ 📓 var: string1 (val2) + ┗━━ 📓 var2 : +  ┣━━ string1 (string1) +  ┣━━ string2 (string1) +  ┗━━ string3 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_jinja_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_jinja_empty.sh new file mode 100644 index 0000000..2228c4c --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_jinja_empty.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 my_dyn_family_val1 + ┃ ┗━━ 📓 var: string1 (val1) + ┣━━ 📂 my_dyn_family_val2 + ┃ ┗━━ 📓 var: string1 (val2) + ┗━━ 📓 var2 : +  ┣━━ string1 (string1) +  ┣━━ string2 (string1) +  ┗━━ string3 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix.sh new file mode 100644 index 0000000..5764b4d --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix.sh @@ -0,0 +1,24 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 my_dyn_family_val1 + ┃ ┣━━ 📂 subdyn_val1 + ┃ ┃ ┗━━ 📓 var: string1 (val1) + ┃ ┗━━ 📂 subdyn_val2 + ┃  ┗━━ 📓 var: string1 (val2) + ┣━━ 📂 my_dyn_family_val2 + ┃ ┣━━ 📂 subdyn_val1 + ┃ ┃ ┗━━ 📓 var: string1 (val1) + ┃ ┗━━ 📂 subdyn_val2 + ┃  ┗━━ 📓 var: string1 (val2) + ┗━━ 📓 var2 : +  ┣━━ string1 (string1) +  ┣━━ string2 (string1) +  ┗━━ string3 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix_empty.sh new file mode 100644 index 0000000..b79ba4e --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix_empty.sh @@ -0,0 +1,24 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 my_dyn_family_val1 + ┃ ┣━━ 📂 subdyn_val1 + ┃ ┃ ┗━━ 📓 var: string1 (val1) + ┃ ┗━━ 📂 subdyn_val2 + ┃  ┗━━ 📓 var: string1 (val2) + ┣━━ 📂 my_dyn_family_val2 + ┃ ┣━━ 📂 subdyn_val1 + ┃ ┃ ┗━━ 📓 var: string1 (val1) + ┃ ┗━━ 📂 subdyn_val2 + ┃  ┗━━ 📓 var: string1 (val2) + ┗━━ 📓 var2 : +  ┣━━ string1 (string1) +  ┣━━ string2 (string1) +  ┗━━ string3 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.sh new file mode 100644 index 0000000..d972f0e --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dyn_val1 + ┃ ┗━━ 📓 var: string1 (val1) + ┣━━ 📂 dyn_val2 + ┃ ┗━━ 📓 var: string1 (val2) + ┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.sh new file mode 100644 index 0000000..cd672b2 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dyn_val1 + ┃ ┗━━ 📓 var: string1 (val1) + ┣━━ 📂 dyn_val2 + ┃ ┗━━ 📓 var: string1 (val2) + ┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_inside.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_inside.sh new file mode 100644 index 0000000..9b93dae --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_inside.sh @@ -0,0 +1,20 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 val1_dyn + ┃ ┣━━ 📓 var1: string1 (val1) + ┃ ┣━━ 📓 var2: string1 (string1) + ┃ ┣━━ 📓 var3: string1 (string1) + ┃ ┗━━ 📓 var4: string1 (string1) + ┗━━ 📂 val2_dyn +  ┣━━ 📓 var1: string1 (val2) +  ┣━━ 📓 var2: string1 (string1) +  ┣━━ 📓 var3: string1 (string1) +  ┗━━ 📓 var4: string1 (string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_inside_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_inside_empty.sh new file mode 100644 index 0000000..e9fe946 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_inside_empty.sh @@ -0,0 +1,20 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 val1_dyn + ┃ ┣━━ 📓 var1: string1 (val1) + ┃ ┣━━ 📓 var2: string1 (string1) + ┃ ┣━━ 📓 var3: string1 (string1) + ┃ ┗━━ 📓 var4: string1 (string1) + ┗━━ 📂 val2_dyn +  ┣━━ 📓 var1: string1 (val2) +  ┣━━ 📓 var2: string1 (string1) +  ┣━━ 📓 var3: string1 (string1) +  ┗━━ 📓 var4: string1 (string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_leadership.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_leadership.sh new file mode 100644 index 0000000..f5ee877 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_leadership.sh @@ -0,0 +1,38 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📂 leadership + ┃  ┣━━ 📂 leader + ┃  ┃ ┣━━ 📓 leader: string1 + ┃  ┃ ┣━━ 📓 follower1: string1 + ┃  ┃ ┗━━ 📓 follower2: string1 + ┃  ┣━━ 📂 leader + ┃  ┃ ┣━━ 📓 leader: string2 + ┃  ┃ ┣━━ 📓 follower1: string2 + ┃  ┃ ┗━━ 📓 follower2: string2 + ┃  ┗━━ 📂 leader + ┃   ┣━━ 📓 leader: string3 + ┃   ┣━━ 📓 follower1: string3 + ┃   ┗━━ 📓 follower2: string3 + ┗━━ 📂 dynval2 +  ┗━━ 📂 leadership +   ┣━━ 📂 leader +   ┃ ┣━━ 📓 leader: string1 +   ┃ ┣━━ 📓 follower1: string1 +   ┃ ┗━━ 📓 follower2: string1 +   ┣━━ 📂 leader +   ┃ ┣━━ 📓 leader: string2 +   ┃ ┣━━ 📓 follower1: string2 +   ┃ ┗━━ 📓 follower2: string2 +   ┗━━ 📂 leader +    ┣━━ 📓 leader: string3 +    ┣━━ 📓 follower1: string3 +    ┗━━ 📓 follower2: string3 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_leadership_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_leadership_empty.sh new file mode 100644 index 0000000..71515c2 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_leadership_empty.sh @@ -0,0 +1,38 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📂 leadership + ┃  ┣━━ 📂 leader + ┃  ┃ ┣━━ 📓 leader: string1 + ┃  ┃ ┣━━ 📓 follower1: string1 + ┃  ┃ ┗━━ 📓 follower2: string1 + ┃  ┣━━ 📂 leader + ┃  ┃ ┣━━ 📓 leader: string2 + ┃  ┃ ┣━━ 📓 follower1: string2 + ┃  ┃ ┗━━ 📓 follower2: string2 + ┃  ┗━━ 📂 leader + ┃   ┣━━ 📓 leader: string3 + ┃   ┣━━ 📓 follower1: string3 + ┃   ┗━━ 📓 follower2: string3 + ┗━━ 📂 dynval2 +  ┗━━ 📂 leadership +   ┣━━ 📂 leader +   ┃ ┣━━ 📓 leader: string1 +   ┃ ┣━━ 📓 follower1: string1 +   ┃ ┗━━ 📓 follower2: string1 +   ┣━━ 📂 leader +   ┃ ┣━━ 📓 leader: string2 +   ┃ ┣━━ 📓 follower1: string2 +   ┃ ┗━━ 📓 follower2: string2 +   ┗━━ 📂 leader +    ┣━━ 📓 leader: string3 +    ┣━━ 📓 follower1: string3 +    ┗━━ 📓 follower2: string3 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic.sh new file mode 100644 index 0000000..d453cc4 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic.sh @@ -0,0 +1,34 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┣━━ 📓 var : + ┃ ┃ ┣━━ tval1 (tval1) + ┃ ┃ ┗━━ tval2 (tval2) + ┃ ┣━━ 📂 dyn_tval1 + ┃ ┃ ┣━━ 📓 var: string1 (tval1) + ┃ ┃ ┣━━ 📓 var_identifier: string1 (val1) + ┃ ┃ ┗━━ 📓 var_identifiers: string1 (val1-tval1) + ┃ ┗━━ 📂 dyn_tval2 + ┃  ┣━━ 📓 var: string1 (tval2) + ┃  ┣━━ 📓 var_identifier: string1 (val1) + ┃  ┗━━ 📓 var_identifiers: string1 (val1-tval2) + ┗━━ 📂 dynval2 +  ┣━━ 📓 var : +  ┃ ┣━━ tval1 (tval1) +  ┃ ┗━━ tval2 (tval2) +  ┣━━ 📂 dyn_tval1 +  ┃ ┣━━ 📓 var: string1 (tval1) +  ┃ ┣━━ 📓 var_identifier: string1 (val2) +  ┃ ┗━━ 📓 var_identifiers: string1 (val2-tval1) +  ┗━━ 📂 dyn_tval2 +   ┣━━ 📓 var: string1 (tval2) +   ┣━━ 📓 var_identifier: string1 (val2) +   ┗━━ 📓 var_identifiers: string1 (val2-tval2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0.sh new file mode 100644 index 0000000..d453cc4 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0.sh @@ -0,0 +1,34 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┣━━ 📓 var : + ┃ ┃ ┣━━ tval1 (tval1) + ┃ ┃ ┗━━ tval2 (tval2) + ┃ ┣━━ 📂 dyn_tval1 + ┃ ┃ ┣━━ 📓 var: string1 (tval1) + ┃ ┃ ┣━━ 📓 var_identifier: string1 (val1) + ┃ ┃ ┗━━ 📓 var_identifiers: string1 (val1-tval1) + ┃ ┗━━ 📂 dyn_tval2 + ┃  ┣━━ 📓 var: string1 (tval2) + ┃  ┣━━ 📓 var_identifier: string1 (val1) + ┃  ┗━━ 📓 var_identifiers: string1 (val1-tval2) + ┗━━ 📂 dynval2 +  ┣━━ 📓 var : +  ┃ ┣━━ tval1 (tval1) +  ┃ ┗━━ tval2 (tval2) +  ┣━━ 📂 dyn_tval1 +  ┃ ┣━━ 📓 var: string1 (tval1) +  ┃ ┣━━ 📓 var_identifier: string1 (val2) +  ┃ ┗━━ 📓 var_identifiers: string1 (val2-tval1) +  ┗━━ 📂 dyn_tval2 +   ┣━━ 📓 var: string1 (tval2) +   ┣━━ 📓 var_identifier: string1 (val2) +   ┗━━ 📓 var_identifiers: string1 (val2-tval2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty.sh new file mode 100644 index 0000000..27c0364 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty.sh @@ -0,0 +1,34 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┣━━ 📓 var : + ┃ ┃ ┣━━ tval1 (tval1) + ┃ ┃ ┗━━ tval2 (tval2) + ┃ ┣━━ 📂 dyn_tval1 + ┃ ┃ ┣━━ 📓 var: string1 (tval1) + ┃ ┃ ┣━━ 📓 var_identifier: string1 (val1) + ┃ ┃ ┗━━ 📓 var_identifiers: string1 (val1-tval1) + ┃ ┗━━ 📂 dyn_tval2 + ┃  ┣━━ 📓 var: string1 (tval2) + ┃  ┣━━ 📓 var_identifier: string1 (val1) + ┃  ┗━━ 📓 var_identifiers: string1 (val1-tval2) + ┗━━ 📂 dynval2 +  ┣━━ 📓 var : +  ┃ ┣━━ tval1 (tval1) +  ┃ ┗━━ tval2 (tval2) +  ┣━━ 📂 dyn_tval1 +  ┃ ┣━━ 📓 var: string1 (tval1) +  ┃ ┣━━ 📓 var_identifier: string1 (val2) +  ┃ ┗━━ 📓 var_identifiers: string1 (val2-tval1) +  ┗━━ 📂 dyn_tval2 +   ┣━━ 📓 var: string1 (tval2) +   ┣━━ 📓 var_identifier: string1 (val2) +   ┗━━ 📓 var_identifiers: string1 (val2-tval2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_9extra_dynamic.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_9extra_dynamic.sh new file mode 100644 index 0000000..312ef00 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_9extra_dynamic.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📂 rougail +┃ ┗━━ 📓 var : +┃  ┗━━ a (a) +┗━━ 📂 extra + ┗━━ 📂 dyn_a +  ┗━━ 📓 var: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_9extra_dynamic_extra.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_9extra_dynamic_extra.sh new file mode 100644 index 0000000..2494a66 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_9extra_dynamic_extra.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📂 rougail +┃ ┗━━ 📂 general +┃  ┗━━ 📓 varname : +┃   ┣━━ string1 (a) +┃   ┣━━ string2 +┃   ┗━━ string3 +┗━━ 📂 extra + ┣━━ 📓 var : + ┃ ┗━━ a (a) + ┗━━ 📂 dyn_a +  ┗━━ 📓 var: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_9family_dynamic_calc_both.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_9family_dynamic_calc_both.sh new file mode 100644 index 0000000..fd2ed5b --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_9family_dynamic_calc_both.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var: string1 (val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 vardyn: string1 + ┗━━ 📂 dynstring1 +  ┗━━ 📓 vardyn: string1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/68_0family_leadership_mode.sh b/tests/results/test_namespace_read_write_mandatory_secrets/68_0family_leadership_mode.sh new file mode 100644 index 0000000..09a463e --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets/68_0family_leadership_mode.sh @@ -0,0 +1,20 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 +  ┃ ┣━━ 📓 follower1: string1 +  ┃ ┗━━ 📓 follower2: string1 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┣━━ 📓 follower1: string2 +  ┃ ┗━━ 📓 follower2: string2 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┣━━ 📓 follower1: string3 +   ┗━━ 📓 follower2: string3 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_0empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_0empty.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_0empty.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_0version_underscore.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_0version_underscore.sh new file mode 100644 index 0000000..fad5916 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_0version_underscore.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.version (a variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_1empty_variable.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_1empty_variable.sh new file mode 100644 index 0000000..240cd0e --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_1empty_variable.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.empty diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_2default_calculated.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_2default_calculated.sh new file mode 100644 index 0000000..bf2e2ec --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_2default_calculated.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: no + ┗━━ 📓 var2 : +  ┗━━ no diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_2default_calculated_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_2default_calculated_multi.sh new file mode 100644 index 0000000..88e08bc --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_2default_calculated_multi.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ no + ┃ ┣━━ yes + ┃ ┗━━ maybe + ┗━━ 📓 var2 : +  ┣━━ no +  ┣━━ yes +  ┗━━ maybe diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_2default_calculated_variable_transitive.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_2default_calculated_variable_transitive.sh new file mode 100644 index 0000000..bbb8431 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_2default_calculated_variable_transitive.sh @@ -0,0 +1,4 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┣━━  - rougail.var1 (a first variable) +┗━━  - rougail.var2 (a second variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_4load_subfolder.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_4load_subfolder.sh new file mode 100644 index 0000000..fbe102d --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_4load_subfolder.sh @@ -0,0 +1,4 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┣━━  - rougail.var1 (a variable) +┗━━  - rougail.var2 (a variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_5load_notype.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_5load_notype.sh new file mode 100644 index 0000000..c9f6465 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_5load_notype.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 without_type: non diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6boolean.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6boolean.sh new file mode 100644 index 0000000..40ba29f --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6boolean.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: true + ┣━━ 📓 var2: true + ┣━━ 📓 var3: true + ┣━━ 📓 var4: false + ┣━━ 📓 var5: false + ┗━━ 📓 var6: false diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6boolean_no_mandatory.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6boolean_no_mandatory.sh new file mode 100644 index 0000000..d51c8d7 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6boolean_no_mandatory.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: true diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6choice.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6choice.sh new file mode 100644 index 0000000..1b372b4 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6choice.sh @@ -0,0 +1,4 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┣━━  - rougail.var1 (the first variable) +┗━━  - rougail.var2 (the second variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6choice_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6choice_calculation.sh new file mode 100644 index 0000000..e24e624 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6choice_calculation.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: 9 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6choice_variable.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6choice_variable.sh new file mode 100644 index 0000000..12f3af2 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6choice_variable.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ a + ┃ ┣━━ b + ┃ ┗━━ c + ┗━━ 📓 var2: a diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6custom.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6custom.sh new file mode 100644 index 0000000..0e74b30 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6custom.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.custom1 (the first variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6domainname.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6domainname.sh new file mode 100644 index 0000000..11a330a --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6domainname.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: my.domain.name diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6domainname_params.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6domainname_params.sh new file mode 100644 index 0000000..11a330a --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6domainname_params.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: my.domain.name diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6float.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6float.sh new file mode 100644 index 0000000..86d1540 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6float.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: 0.0 + ┣━━ 📓 var2: 0.0 + ┣━━ 📓 var3: 0.0 + ┣━━ 📓 var4: 10.1 + ┣━━ 📓 var5: 10.1 + ┗━━ 📓 var6: 10.1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6number.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6number.sh new file mode 100644 index 0000000..891bf6c --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6number.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: 0 + ┣━━ 📓 var2: 0 + ┣━━ 📓 var3: 0 + ┣━━ 📓 var4: 10 + ┣━━ 📓 var5: 10 + ┗━━ 📓 var6: 10 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6port.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6port.sh new file mode 100644 index 0000000..9fb76d8 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6port.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.variable1 (a port variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6regexp.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6regexp.sh new file mode 100644 index 0000000..d4400ef --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6regexp.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: #a1a1a1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6string.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6string.sh new file mode 100644 index 0000000..6db35d3 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6string.sh @@ -0,0 +1,5 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┣━━  - rougail.var1 (the first variable) +┣━━  - rougail.var2 (the second variable) +┗━━  - rougail.var3 (the third variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_7choice_quote.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_7choice_quote.sh new file mode 100644 index 0000000..401cadd --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_7choice_quote.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: quote' diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_7help_quote.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_7help_quote.sh new file mode 100644 index 0000000..1b372b4 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_7help_quote.sh @@ -0,0 +1,4 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┣━━  - rougail.var1 (the first variable) +┗━━  - rougail.var2 (the second variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_7value_doublequote.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_7value_doublequote.sh new file mode 100644 index 0000000..ff6fe2e --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_7value_doublequote.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: quote" diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_7value_doublequote2.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_7value_doublequote2.sh new file mode 100644 index 0000000..9986d63 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_7value_doublequote2.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: quote'" diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_7value_doublequote3.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_7value_doublequote3.sh new file mode 100644 index 0000000..23f8b45 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_7value_doublequote3.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: quote\"\' diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_7value_quote.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_7value_quote.sh new file mode 100644 index 0000000..827fb9a --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_7value_quote.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: quote' diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_8calculation_information.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_8calculation_information.sh new file mode 100644 index 0000000..feffabb --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_8calculation_information.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.variable (a variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_8test.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_8test.sh new file mode 100644 index 0000000..91997d0 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_8test.sh @@ -0,0 +1,5 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┣━━  - rougail.var1 (the first variable) +┣━━  - rougail.var3 (the third variable) +┗━━  - rougail.var6 (the sixth variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9choice_variable_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9choice_variable_multi.sh new file mode 100644 index 0000000..6c38858 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9choice_variable_multi.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.variable1 (a first variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9choice_variables.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9choice_variables.sh new file mode 100644 index 0000000..7a97c06 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9choice_variables.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 source_variable_1: val1 + ┣━━ 📓 source_variable_2: val2 + ┗━━ 📓 my_variable: val1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_calculation.sh new file mode 100644 index 0000000..b9369a6 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_calculation.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: string_1_True_None diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_calculation_information.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_calculation_information.sh new file mode 100644 index 0000000..bbc69d4 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_calculation_information.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.var (a variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_calculation_information_other_variable.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_calculation_information_other_variable.sh new file mode 100644 index 0000000..bbb8431 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_calculation_information_other_variable.sh @@ -0,0 +1,4 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┣━━  - rougail.var1 (a first variable) +┗━━  - rougail.var2 (a second variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_calculation_multi_optional.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_calculation_multi_optional.sh new file mode 100644 index 0000000..623c440 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_calculation_multi_optional.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 my_variable: val1 + ┗━━ 📓 my_calculated_variable : +  ┗━━ val1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_calculation_multi_optional2.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_calculation_multi_optional2.sh new file mode 100644 index 0000000..623c440 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_calculation_multi_optional2.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 my_variable: val1 + ┗━━ 📓 my_calculated_variable : +  ┗━━ val1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_calculation_optional.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_calculation_optional.sh new file mode 100644 index 0000000..31ede1c --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_calculation_optional.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.my_calculated_variable diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_calculation_optional_exists.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_calculation_optional_exists.sh new file mode 100644 index 0000000..4aadfbe --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_calculation_optional_exists.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 my_variable : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┗━━ 📓 my_calculated_variable : +  ┣━━ val1 +  ┗━━ val2 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_calculation_param_optional.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_calculation_param_optional.sh new file mode 100644 index 0000000..709f7b9 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_calculation_param_optional.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: no + ┗━━ 📓 var2: no diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_information_other_variable.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_information_other_variable.sh new file mode 100644 index 0000000..bbb8431 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_information_other_variable.sh @@ -0,0 +1,4 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┣━━  - rougail.var1 (a first variable) +┗━━  - rougail.var2 (a second variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_integer.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_integer.sh new file mode 100644 index 0000000..e24e624 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_integer.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: 9 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9extra.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9extra.sh new file mode 100644 index 0000000..9df494b --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9extra.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📂 rougail +┃ ┗━━ 📓 variable: rougail +┗━━ 📂 extra + ┗━━ 📓 variable: no diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9extra_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9extra_calculation.sh new file mode 100644 index 0000000..01606d3 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9extra_calculation.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📂 rougail +┃ ┗━━ 📓 variable: value +┗━━ 📂 extra + ┣━━ 📓 variable1: value + ┣━━ 📓 variable2: value + ┗━━ 📓 variable3: value diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_6boolean_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_6boolean_multi.sh new file mode 100644 index 0000000..95ef385 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_6boolean_multi.sh @@ -0,0 +1,23 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┗━━ true + ┣━━ 📓 var2 : + ┃ ┗━━ true + ┣━━ 📓 var3 : + ┃ ┗━━ true + ┣━━ 📓 var4 : + ┃ ┗━━ false + ┣━━ 📓 var5 : + ┃ ┗━━ false + ┣━━ 📓 var6 : + ┃ ┗━━ false + ┣━━ 📓 var7 : + ┃ ┗━━ true + ┗━━ 📓 var8 : +  ┗━━ true diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_6custom_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_6custom_multi.sh new file mode 100644 index 0000000..64e4af6 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_6custom_multi.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.custom1 (a first custom variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_6float_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_6float_multi.sh new file mode 100644 index 0000000..8c27f21 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_6float_multi.sh @@ -0,0 +1,23 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┗━━ 0.0 + ┣━━ 📓 var2 : + ┃ ┗━━ 0.0 + ┣━━ 📓 var3 : + ┃ ┗━━ 0.0 + ┣━━ 📓 var4 : + ┃ ┗━━ 10.1 + ┣━━ 📓 var5 : + ┃ ┗━━ 10.1 + ┣━━ 📓 var6 : + ┃ ┗━━ 10.1 + ┣━━ 📓 var7 : + ┃ ┗━━ 0.0 + ┗━━ 📓 var8 : +  ┗━━ 0.0 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_6number_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_6number_multi.sh new file mode 100644 index 0000000..726c5a5 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_6number_multi.sh @@ -0,0 +1,23 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┗━━ 0 + ┣━━ 📓 var2 : + ┃ ┗━━ 0 + ┣━━ 📓 var3 : + ┃ ┗━━ 0 + ┣━━ 📓 var4 : + ┃ ┗━━ 10 + ┣━━ 📓 var5 : + ┃ ┗━━ 10 + ┣━━ 📓 var6 : + ┃ ┗━━ 10 + ┣━━ 📓 var7 : + ┃ ┗━━ 0 + ┗━━ 📓 var8 : +  ┗━━ 0 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_6string_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_6string_empty.sh new file mode 100644 index 0000000..32c29ae --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_6string_empty.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.var1 (the second variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_6string_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_6string_multi.sh new file mode 100644 index 0000000..6db35d3 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_6string_multi.sh @@ -0,0 +1,5 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┣━━  - rougail.var1 (the first variable) +┣━━  - rougail.var2 (the second variable) +┗━━  - rougail.var3 (the third variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_7value_multi_doublequote.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_7value_multi_doublequote.sh new file mode 100644 index 0000000..f713749 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_7value_multi_doublequote.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable : +  ┗━━ quote" diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_7value_multi_doublequote2.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_7value_multi_doublequote2.sh new file mode 100644 index 0000000..46f4fe4 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_7value_multi_doublequote2.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable : +  ┗━━ quote'" diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_7value_multi_quote.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_7value_multi_quote.sh new file mode 100644 index 0000000..1e26815 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_7value_multi_quote.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable : +  ┗━━ quote' diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_8calculation_information_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_8calculation_information_multi.sh new file mode 100644 index 0000000..feffabb --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_8calculation_information_multi.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.variable (a variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_9choice_variable_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_9choice_variable_multi.sh new file mode 100644 index 0000000..0051d1d --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_9choice_variable_multi.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.variable2 (a second variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_0type_param.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_0type_param.sh new file mode 100644 index 0000000..33ba0e7 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_0type_param.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 int: 10 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_1auto_save.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_1auto_save.sh new file mode 100644 index 0000000..967acec --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_1auto_save.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: no diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_1auto_save_and_calculated.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_1auto_save_and_calculated.sh new file mode 100644 index 0000000..9c721e6 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_1auto_save_and_calculated.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: no + ┗━━ 📓 var2: no diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_1auto_save_and_calculated_hidden.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_1auto_save_and_calculated_hidden.sh new file mode 100644 index 0000000..a7d95d6 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_1auto_save_and_calculated_hidden.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: no + ┗━━ 📓 var2: yes diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_1auto_save_and_hidden.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_1auto_save_and_hidden.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_1auto_save_and_hidden.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_1default_calculation_hidden.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_1default_calculation_hidden.sh new file mode 100644 index 0000000..2a9e364 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_1default_calculation_hidden.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: value + ┗━━ 📓 var3: value diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_1default_calculation_hidden_2.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_1default_calculation_hidden_2.sh new file mode 100644 index 0000000..2a9e364 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_1default_calculation_hidden_2.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: value + ┗━━ 📓 var3: value diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation.sh new file mode 100644 index 0000000..afb092f --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation.sh @@ -0,0 +1,4 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┣━━  - rougail.variable1 (a first variable) +┗━━  - rougail.variable2 (a second variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation_default.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation_default.sh new file mode 100644 index 0000000..2d2eb7a --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation_default.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: no + ┣━━ 📓 var1: no + ┗━━ 📓 var2: no diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation_optional.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation_optional.sh new file mode 100644 index 0000000..21be0ca --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation_optional.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 condition: no diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable.sh new file mode 100644 index 0000000..feffabb --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.variable (a variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable2.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable2.sh new file mode 100644 index 0000000..de131ef --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable2.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 condition: true diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable3.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable3.sh new file mode 100644 index 0000000..ed2ce4a --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable3.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 condition: yes diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable4.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable4.sh new file mode 100644 index 0000000..feffabb --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable4.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.variable (a variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5hidden_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5hidden_calculation.sh new file mode 100644 index 0000000..2d2eb7a --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5hidden_calculation.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: no + ┣━━ 📓 var1: no + ┗━━ 📓 var2: no diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5hidden_calculation2.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5hidden_calculation2.sh new file mode 100644 index 0000000..21be0ca --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5hidden_calculation2.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 condition: no diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5hidden_calculation_default_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5hidden_calculation_default_calculation.sh new file mode 100644 index 0000000..2d2eb7a --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5hidden_calculation_default_calculation.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: no + ┣━━ 📓 var1: no + ┗━━ 📓 var2: no diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5validators.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5validators.sh new file mode 100644 index 0000000..796932d --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5validators.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.int (A number) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5validators_differ.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5validators_differ.sh new file mode 100644 index 0000000..414983f --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5validators_differ.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: oui + ┗━━ 📓 var2: no diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5validators_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5validators_multi.sh new file mode 100644 index 0000000..e462f59 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5validators_multi.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var1 : +  ┣━━ no +  ┗━━ yes diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5validators_multi2.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5validators_multi2.sh new file mode 100644 index 0000000..e462f59 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5validators_multi2.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var1 : +  ┣━━ no +  ┗━━ yes diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/05_0multi_not_uniq.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/05_0multi_not_uniq.sh new file mode 100644 index 0000000..2b32f5e --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/05_0multi_not_uniq.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var1 : +  ┗━━ non diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/05_0multi_uniq.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/05_0multi_uniq.sh new file mode 100644 index 0000000..0183a17 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/05_0multi_uniq.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable : +  ┗━━ non diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/12_1auto_save_expert.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/12_1auto_save_expert.sh new file mode 100644 index 0000000..d73522e --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/12_1auto_save_expert.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: no diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_0redefine_description.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_0redefine_description.sh new file mode 100644 index 0000000..d9e548b --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_0redefine_description.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.var (Redefined) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_2family_redefine_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_2family_redefine_calculation.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_2family_redefine_calculation.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_2family_redefine_disabled.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_2family_redefine_disabled.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_2family_redefine_disabled.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5exists_nonexists.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5exists_nonexists.sh new file mode 100644 index 0000000..c4b3f93 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5exists_nonexists.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: no + ┗━━ 📓 var2: yes diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5exists_redefine.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5exists_redefine.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5exists_redefine.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_calculation.sh new file mode 100644 index 0000000..9836bef --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_calculation.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: yes diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_choice.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_choice.sh new file mode 100644 index 0000000..feffabb --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_choice.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.variable (a variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_default.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_default.sh new file mode 100644 index 0000000..9836bef --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_default.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: yes diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_default_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_default_calculation.sh new file mode 100644 index 0000000..feffabb --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_default_calculation.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.variable (a variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_family.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_family.sh new file mode 100644 index 0000000..2c3c326 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_family.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.family.variable (a variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_help.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_help.sh new file mode 100644 index 0000000..ebf99f8 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_help.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.family.variable (redefine help) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_hidden.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_hidden.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_hidden.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_multi.sh new file mode 100644 index 0000000..0183a17 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_multi.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable : +  ┗━━ non diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_remove_disable_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_remove_disable_calculation.sh new file mode 100644 index 0000000..feffabb --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_remove_disable_calculation.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.variable (a variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5test_redefine.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5test_redefine.sh new file mode 100644 index 0000000..2a38662 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5test_redefine.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.var3 (a third variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_6choice_redefine.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_6choice_redefine.sh new file mode 100644 index 0000000..2e35dfd --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_6choice_redefine.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: c diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_6exists_redefine_family.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_6exists_redefine_family.sh new file mode 100644 index 0000000..e385546 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_6exists_redefine_family.sh @@ -0,0 +1,4 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┣━━  - rougail.family1.variable1 (a variable) +┗━━  - rougail.family2.variable2 (a second variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/16exists_exists.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16exists_exists.sh new file mode 100644 index 0000000..5c77e64 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16exists_exists.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.var (Description) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/17_5redefine_leadership.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/17_5redefine_leadership.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/17_5redefine_leadership.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_0empty_family.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_0empty_family.sh new file mode 100644 index 0000000..2fc78e0 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_0empty_family.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_0family_append.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_0family_append.sh new file mode 100644 index 0000000..b5f6f4a --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_0family_append.sh @@ -0,0 +1,4 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┣━━  - rougail.family.var1 (The first variable) +┗━━  - rougail.family.var2 (The second variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_0family_underscore.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_0family_underscore.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_0family_underscore.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_0multi_family.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_0multi_family.sh new file mode 100644 index 0000000..5bc2162 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_0multi_family.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 family +  ┗━━ 📂 subfamily +   ┗━━ 📓 variable: null diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_0multi_family_basic.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_0multi_family_basic.sh new file mode 100644 index 0000000..2aa2c1c --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_0multi_family_basic.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.family.subfamily.variable (a variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_0multi_family_expert.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_0multi_family_expert.sh new file mode 100644 index 0000000..f2c0510 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_0multi_family_expert.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 family +  ┗━━ 📂 subfamily +   ┗━━ 📓 variable: null diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_0multi_family_order.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_0multi_family_order.sh new file mode 100644 index 0000000..702e9d4 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_0multi_family_order.sh @@ -0,0 +1,6 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┣━━  - rougail.variable (a variable) +┣━━  - rougail.family.variable1 (a first variable) +┣━━  - rougail.family.subfamily.variable (a variable) +┗━━  - rougail.family.variable2 (a second variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_0validators_differ_redefine.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_0validators_differ_redefine.sh new file mode 100644 index 0000000..cd704b6 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_0validators_differ_redefine.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: no + ┣━━ 📓 var2: no + ┗━━ 📓 var3: yes diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_1empty_subfamily.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_1empty_subfamily.sh new file mode 100644 index 0000000..2fc78e0 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_1empty_subfamily.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_9default_information_parent.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_9default_information_parent.sh new file mode 100644 index 0000000..fb808cd --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_9default_information_parent.sh @@ -0,0 +1,4 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┣━━  - rougail.family.var1 (a first variable) +┗━━  - rougail.family.var2 (a second variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_0family_hidden_condition.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_0family_hidden_condition.sh new file mode 100644 index 0000000..a466206 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_0family_hidden_condition.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.family.var1 (a variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_0family_hidden_condition_boolean.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_0family_hidden_condition_boolean.sh new file mode 100644 index 0000000..957fe08 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_0family_hidden_condition_boolean.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 condition: false diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_0family_hidden_condition_sub_family.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_0family_hidden_condition_sub_family.sh new file mode 100644 index 0000000..947c62a --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_0family_hidden_condition_sub_family.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.family.subfamily.var1 (a variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_0family_hidden_condition_variable_sub_family.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_0family_hidden_condition_variable_sub_family.sh new file mode 100644 index 0000000..de131ef --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_0family_hidden_condition_variable_sub_family.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 condition: true diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_0family_hidden_condition_with_variable.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_0family_hidden_condition_with_variable.sh new file mode 100644 index 0000000..3c11484 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_0family_hidden_condition_with_variable.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition1: false + ┗━━ 📓 condition2: false diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_0family_hidden_param_condition_sub_family.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_0family_hidden_param_condition_sub_family.sh new file mode 100644 index 0000000..b96424d --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_0family_hidden_param_condition_sub_family.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.family.sub_family.var1 (a variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_0family_mandatory_condition.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_0family_mandatory_condition.sh new file mode 100644 index 0000000..dc9b127 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_0family_mandatory_condition.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: no + ┗━━ 📓 var: null diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_0family_mandatory_condition_variable.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_0family_mandatory_condition_variable.sh new file mode 100644 index 0000000..bbc69d4 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_0family_mandatory_condition_variable.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.var (a variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_7validators_variable_optional.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_7validators_variable_optional.sh new file mode 100644 index 0000000..52307b0 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_7validators_variable_optional.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.general.int (a first number) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_family_disabled_var_hidden.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_family_disabled_var_hidden.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_family_disabled_var_hidden.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_0leadership.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_0leadership.sh new file mode 100644 index 0000000..6587afd --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_0leadership.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.leader.leader (a leader) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_0leadership_diff_name.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_0leadership_diff_name.sh new file mode 100644 index 0000000..8c97e33 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_0leadership_diff_name.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.leadership.leader (a leader) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_0leadership_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_0leadership_empty.sh new file mode 100644 index 0000000..2fc78e0 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_0leadership_empty.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_0leadership_follower_default_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_0leadership_follower_default_calculation.sh new file mode 100644 index 0000000..6587afd --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_0leadership_follower_default_calculation.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.leader.leader (a leader) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_0leadership_follower_default_submulti.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_0leadership_follower_default_submulti.sh new file mode 100644 index 0000000..5440046 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_0leadership_follower_default_submulti.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┗━━ 📂 leader +   ┣━━ 📓 leader: leader +   ┣━━ 📓 follower1 : +   ┃ ┗━━ value +   ┗━━ 📓 follower2 : +    ┣━━ value1 +    ┗━━ value2 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_0leadership_follower_default_submulti_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_0leadership_follower_default_submulti_calculation.sh new file mode 100644 index 0000000..8edbb98 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_0leadership_follower_default_submulti_calculation.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┗━━ 📂 leader +   ┣━━ 📓 leader: leader +   ┣━━ 📓 follower1 : +   ┃ ┗━━ value +   ┗━━ 📓 follower2 : +    ┗━━ value diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_0leadership_follower_default_value.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_0leadership_follower_default_value.sh new file mode 100644 index 0000000..409a85b --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_0leadership_follower_default_value.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_0leadership_leader_not_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_0leadership_leader_not_multi.sh new file mode 100644 index 0000000..3e79b36 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_0leadership_leader_not_multi.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.general1.leader.leader diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_1leadership_append_follower.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_1leadership_append_follower.sh new file mode 100644 index 0000000..32f2a6c --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_1leadership_append_follower.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.leader.leader (the leader) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_2leadership_calculation_index.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_2leadership_calculation_index.sh new file mode 100644 index 0000000..079783d --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_2leadership_calculation_index.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: a +  ┃ ┗━━ 📓 follower1: 0 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: b +  ┃ ┗━━ 📓 follower1: 1 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: c +   ┗━━ 📓 follower1: 2 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_2leadership_calculation_param_index.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_2leadership_calculation_param_index.sh new file mode 100644 index 0000000..079783d --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_2leadership_calculation_param_index.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: a +  ┃ ┗━━ 📓 follower1: 0 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: b +  ┃ ┗━━ 📓 follower1: 1 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: c +   ┗━━ 📓 follower1: 2 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_2leadership_leader_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_2leadership_leader_calculation.sh new file mode 100644 index 0000000..466740d --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_2leadership_leader_calculation.sh @@ -0,0 +1,6 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┣━━  - rougail.leader.follower1 (a first follower) +┣━━  - rougail.leader.follower2 (a second follower) +┣━━  - rougail.leader.follower1 (a first follower) +┗━━  - rougail.leader.follower2 (a second follower) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_6leadership_follower_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_6leadership_follower_multi.sh new file mode 100644 index 0000000..cbf0236 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_6leadership_follower_multi.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.leadership.leader (The leader) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_8calculation_boolean.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_8calculation_boolean.sh new file mode 100644 index 0000000..13c3107 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_8calculation_boolean.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 bool: false + ┣━━ 📓 multi1 : + ┃ ┗━━ false + ┗━━ 📓 multi2 : +  ┣━━ true +  ┗━━ false diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_8calculation_boolean_return_none.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_8calculation_boolean_return_none.sh new file mode 100644 index 0000000..2fabc4a --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_8calculation_boolean_return_none.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.var2 (a second variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_8calculation_integer.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_8calculation_integer.sh new file mode 100644 index 0000000..22ae871 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_8calculation_integer.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 bool: false + ┣━━ 📓 int1: 2 + ┗━━ 📓 int2: 3 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_8calculation_multi_variable.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_8calculation_multi_variable.sh new file mode 100644 index 0000000..7652f1c --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_8calculation_multi_variable.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ no + ┃ ┗━━ yes + ┣━━ 📓 var2: no + ┗━━ 📓 var3: yes diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_8calculation_multi_variable_parent.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_8calculation_multi_variable_parent.sh new file mode 100644 index 0000000..edd2ec7 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_8calculation_multi_variable_parent.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var: no + ┗━━ 📂 fam1 +  ┗━━ 📓 var: no diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_8calculation_multi_variable_parent2.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_8calculation_multi_variable_parent2.sh new file mode 100644 index 0000000..48268a5 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_8calculation_multi_variable_parent2.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📂 fam1 + ┃ ┗━━ 📓 var: no + ┗━━ 📂 fam2 +  ┗━━ 📓 var: no diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/41_0choice_leader.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/41_0choice_leader.sh new file mode 100644 index 0000000..409a85b --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/41_0choice_leader.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/44_0leadership_hidden.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/44_0leadership_hidden.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/44_0leadership_hidden.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/44_0leadership_leader_hidden.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/44_0leadership_leader_hidden.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/44_0leadership_leader_hidden.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/44_1leadership_append_hidden_follower.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/44_1leadership_append_hidden_follower.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/44_1leadership_append_hidden_follower.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/44_4disabled_calcultion_follower.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/44_4disabled_calcultion_follower.sh new file mode 100644 index 0000000..11e8200 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/44_4disabled_calcultion_follower.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.leader.follower (a follower) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/44_4leadership_mandatory.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/44_4leadership_mandatory.sh new file mode 100644 index 0000000..6587afd --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/44_4leadership_mandatory.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.leader.leader (a leader) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/44_4leadership_mandatory_follower.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/44_4leadership_mandatory_follower.sh new file mode 100644 index 0000000..409a85b --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/44_4leadership_mandatory_follower.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/44_5leadership_leader_hidden_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/44_5leadership_leader_hidden_calculation.sh new file mode 100644 index 0000000..21be0ca --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/44_5leadership_leader_hidden_calculation.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 condition: no diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/44_6leadership_follower_disabled_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/44_6leadership_follower_disabled_calculation.sh new file mode 100644 index 0000000..6587afd --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/44_6leadership_follower_disabled_calculation.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.leader.leader (a leader) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/44_9calculated_default_leadership_leader.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/44_9calculated_default_leadership_leader.sh new file mode 100644 index 0000000..060aee8 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/44_9calculated_default_leadership_leader.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┗━━ 📓 leader: a +  ┗━━ 📂 leader +   ┣━━ 📓 leader: b +   ┗━━ 📓 follower: b diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic.sh new file mode 100644 index 0000000..28281e6 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic.sh @@ -0,0 +1,4 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┣━━  - rougail.dynval1.var (A dynamic variable) +┗━━  - rougail.dynval2.var (A dynamic variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_1_0.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_1_0.sh new file mode 100644 index 0000000..18f5e96 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_1_0.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 vardyn: null + ┗━━ 📂 dynval2 +  ┗━━ 📓 vardyn: null diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_1_0_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_1_0_empty.sh new file mode 100644 index 0000000..2c6efb5 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_1_0_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var : diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_1_0_type.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_1_0_type.sh new file mode 100644 index 0000000..b8ba397 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_1_0_type.sh @@ -0,0 +1,4 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┣━━  - rougail.dynval1.vardyn (A dyn variable) +┗━━  - rougail.dynval2.vardyn (A dyn variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_1_0_type_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_1_0_type_empty.sh new file mode 100644 index 0000000..2c6efb5 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_1_0_type_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var : diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_1_1.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_1_1.sh new file mode 100644 index 0000000..c051aed --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_1_1.sh @@ -0,0 +1,4 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┣━━  - rougail.dynval1.vardyn (A dynamic variable) +┗━━  - rougail.dynval2.vardyn (A dynamic variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_1_1_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_1_1_empty.sh new file mode 100644 index 0000000..2c6efb5 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_1_1_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var : diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_empty.sh new file mode 100644 index 0000000..2c6efb5 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var : diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_jinja_number.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_jinja_number.sh new file mode 100644 index 0000000..8209d5d --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_jinja_number.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ 1 + ┃ ┗━━ 2 + ┣━━ 📂 dyn1 + ┃ ┗━━ 📓 var: val + ┣━━ 📂 dyn2 + ┃ ┗━━ 📓 var: val + ┗━━ 📓 var2: val diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_jinja_number_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_jinja_number_empty.sh new file mode 100644 index 0000000..1ecb032 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_jinja_number_empty.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.var2 (a variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_no_description.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_no_description.sh new file mode 100644 index 0000000..7df7e4f --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_no_description.sh @@ -0,0 +1,4 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┣━━  - rougail.dynval1.var +┗━━  - rougail.dynval2.var diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_no_description_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_no_description_empty.sh new file mode 100644 index 0000000..2c6efb5 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_no_description_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var : diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_static.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_static.sh new file mode 100644 index 0000000..426e760 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_static.sh @@ -0,0 +1,4 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┣━━  - rougail.dynval1.var (a variable inside a dynamic family) +┗━━  - rougail.dynval2.var (a variable inside a dynamic family) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_test.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_test.sh new file mode 100644 index 0000000..df2145f --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_test.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.var (A suffix variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_variable_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_variable_empty.sh new file mode 100644 index 0000000..10b373d --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_variable_empty.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.var (a suffix variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_variable_suffix.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_variable_suffix.sh new file mode 100644 index 0000000..045b271 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_variable_suffix.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: a value + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: a value diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_variable_suffix_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_variable_suffix_empty.sh new file mode 100644 index 0000000..df2145f --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_variable_suffix_empty.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.var (A suffix variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_empty.sh new file mode 100644 index 0000000..2fc78e0 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_empty.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_hidden.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_hidden.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_hidden.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_mode.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_mode.sh new file mode 100644 index 0000000..ee913c7 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_mode.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 family +  ┗━━ 📓 var: non diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_1family_dynamic_jinja.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_1family_dynamic_jinja.sh new file mode 100644 index 0000000..7c79f11 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_1family_dynamic_jinja.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dyn1 + ┃ ┗━━ 📓 var: val + ┗━━ 📂 dyn2 +  ┗━━ 📓 var: val diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group.sh new file mode 100644 index 0000000..4e1fb1b --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group.sh @@ -0,0 +1,5 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┣━━  - rougail.dynval1.family.var (with a variable) +┣━━  - rougail.dynval2.family.var (with a variable) +┗━━  - rougail.var2 (a second variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_2.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_2.sh new file mode 100644 index 0000000..e3e359c --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_2.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📂 family + ┃  ┗━━ 📓 var: val1 + ┣━━ 📂 dynval2 + ┃ ┗━━ 📂 family + ┃  ┗━━ 📓 var: val2 + ┗━━ 📓 var2: val1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh new file mode 100644 index 0000000..ffcaf11 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┗━━ 📓 var2: null diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_empty.sh new file mode 100644 index 0000000..725e9ea --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_empty.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┗━━ 📓 var2: null diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_2family_dynamic_outside_calc.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_2family_dynamic_outside_calc.sh new file mode 100644 index 0000000..59d56c8 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_2family_dynamic_outside_calc.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: val + ┣━━ 📂 dynval2 + ┃ ┗━━ 📓 var: val + ┗━━ 📓 newvar: val diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_2family_dynamic_outside_calc_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_2family_dynamic_outside_calc_empty.sh new file mode 100644 index 0000000..88b28cd --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_2family_dynamic_outside_calc_empty.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┗━━ 📓 newvar: null diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc2.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc2.sh new file mode 100644 index 0000000..2fabc4a --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc2.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.var2 (a second variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc2_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc2_empty.sh new file mode 100644 index 0000000..2fabc4a --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc2_empty.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.var2 (a second variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix.sh new file mode 100644 index 0000000..7174629 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix.sh @@ -0,0 +1,5 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┣━━  - rougail.dynval1.var (A dynamic variable) +┣━━  - rougail.dynval2.var (A dynamic variable) +┗━━  - rougail.var2 (A variable calculated) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix2.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix2.sh new file mode 100644 index 0000000..5f1bdb4 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix2.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: val1 + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: val2 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix2_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix2_empty.sh new file mode 100644 index 0000000..2c6efb5 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix2_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var : diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix_disabled.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix_disabled.sh new file mode 100644 index 0000000..9eb2b43 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix_disabled.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.dynval2.var (A dynamic variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix_empty.sh new file mode 100644 index 0000000..63678b1 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix_empty.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.var2 (A variable calculated) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix_param.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix_param.sh new file mode 100644 index 0000000..5f1bdb4 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix_param.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: val1 + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: val2 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix_param_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix_param_empty.sh new file mode 100644 index 0000000..2c6efb5 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix_param_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var : diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_variable.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_variable.sh new file mode 100644 index 0000000..7174629 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_variable.sh @@ -0,0 +1,5 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┣━━  - rougail.dynval1.var (A dynamic variable) +┣━━  - rougail.dynval2.var (A dynamic variable) +┗━━  - rougail.var2 (A variable calculated) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_variable_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_variable_empty.sh new file mode 100644 index 0000000..63678b1 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_variable_empty.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.var2 (A variable calculated) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_hidden_suffix.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_hidden_suffix.sh new file mode 100644 index 0000000..3c9e0cf --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_hidden_suffix.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 dynval1 +  ┣━━ 📓 var: null +  ┗━━ 📂 family +   ┗━━ 📓 var: null diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_unknown_suffix.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_unknown_suffix.sh new file mode 100644 index 0000000..471fc4b --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_unknown_suffix.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 val1_dyn + ┃ ┣━━ 📓 var1: val1 + ┃ ┣━━ 📓 var2: val1 + ┃ ┗━━ 📓 var3: val1 + ┗━━ 📂 val2_dyn +  ┣━━ 📓 var1: val2 +  ┣━━ 📓 var2: val2 +  ┗━━ 📓 var3: val2 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_unknown_suffix_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_unknown_suffix_empty.sh new file mode 100644 index 0000000..2c6efb5 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_unknown_suffix_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var : diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside.sh new file mode 100644 index 0000000..af6cec2 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 my_dyn_family_val1 + ┃ ┗━━ 📓 var: val1 + ┣━━ 📂 my_dyn_family_val2 + ┃ ┗━━ 📓 var: val2 + ┗━━ 📓 var2 : +  ┣━━ val1 +  ┗━━ val2 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside2.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside2.sh new file mode 100644 index 0000000..4d72d86 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside2.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var2 : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 my_dyn_family_val1 + ┃ ┗━━ 📓 var: val1 + ┗━━ 📂 my_dyn_family_val2 +  ┗━━ 📓 var: val2 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside2_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside2_empty.sh new file mode 100644 index 0000000..1ecb032 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside2_empty.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.var2 (a variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside_empty.sh new file mode 100644 index 0000000..1ecb032 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside_empty.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.var2 (a variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside_jinja.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside_jinja.sh new file mode 100644 index 0000000..af6cec2 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside_jinja.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 my_dyn_family_val1 + ┃ ┗━━ 📓 var: val1 + ┣━━ 📂 my_dyn_family_val2 + ┃ ┗━━ 📓 var: val2 + ┗━━ 📓 var2 : +  ┣━━ val1 +  ┗━━ val2 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside_jinja_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside_jinja_empty.sh new file mode 100644 index 0000000..1ecb032 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside_jinja_empty.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - rougail.var2 (a variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside_sub_suffix.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside_sub_suffix.sh new file mode 100644 index 0000000..bf2a9b6 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside_sub_suffix.sh @@ -0,0 +1,23 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 my_dyn_family_val1 + ┃ ┣━━ 📂 subdyn_val1 + ┃ ┃ ┗━━ 📓 var: val1 + ┃ ┗━━ 📂 subdyn_val2 + ┃  ┗━━ 📓 var: val2 + ┣━━ 📂 my_dyn_family_val2 + ┃ ┣━━ 📂 subdyn_val1 + ┃ ┃ ┗━━ 📓 var: val1 + ┃ ┗━━ 📂 subdyn_val2 + ┃  ┗━━ 📓 var: val2 + ┗━━ 📓 var2 : +  ┣━━ val1 +  ┗━━ val2 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside_sub_suffix_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside_sub_suffix_empty.sh new file mode 100644 index 0000000..b1ddd66 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside_sub_suffix_empty.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┗━━ 📓 var2 : diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside_suffix.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside_suffix.sh new file mode 100644 index 0000000..c5970b6 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside_suffix.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dyn_val1 + ┃ ┗━━ 📓 var: val1 + ┣━━ 📂 dyn_val2 + ┃ ┗━━ 📓 var: val2 + ┗━━ 📓 var2: val1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside_suffix_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside_suffix_empty.sh new file mode 100644 index 0000000..ffcaf11 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside_suffix_empty.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┗━━ 📓 var2: null diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_6family_dynamic_inside.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_6family_dynamic_inside.sh new file mode 100644 index 0000000..4e8ca65 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_6family_dynamic_inside.sh @@ -0,0 +1,20 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 val1_dyn + ┃ ┣━━ 📓 var1: val1 + ┃ ┣━━ 📓 var2: val1 + ┃ ┣━━ 📓 var3: val1 + ┃ ┗━━ 📓 var4: val1 + ┗━━ 📂 val2_dyn +  ┣━━ 📓 var1: val2 +  ┣━━ 📓 var2: val2 +  ┣━━ 📓 var3: val2 +  ┗━━ 📓 var4: val1 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_6family_dynamic_inside_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_6family_dynamic_inside_empty.sh new file mode 100644 index 0000000..2c6efb5 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_6family_dynamic_inside_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var : diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_6family_dynamic_leadership.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_6family_dynamic_leadership.sh new file mode 100644 index 0000000..6383297 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_6family_dynamic_leadership.sh @@ -0,0 +1,4 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┣━━  - rougail.dynval1.leadership.leader (a leader) +┗━━  - rougail.dynval2.leadership.leader (a leader) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_6family_dynamic_leadership_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_6family_dynamic_leadership_empty.sh new file mode 100644 index 0000000..2c6efb5 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_6family_dynamic_leadership_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var : diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_6family_dynamic_sub_dynamic.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_6family_dynamic_sub_dynamic.sh new file mode 100644 index 0000000..ed294db --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_6family_dynamic_sub_dynamic.sh @@ -0,0 +1,34 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┣━━ 📓 var : + ┃ ┃ ┣━━ tval1 + ┃ ┃ ┗━━ tval2 + ┃ ┣━━ 📂 dyn_tval1 + ┃ ┃ ┣━━ 📓 var: tval1 + ┃ ┃ ┣━━ 📓 var_identifier: val1 + ┃ ┃ ┗━━ 📓 var_identifiers: val1-tval1 + ┃ ┗━━ 📂 dyn_tval2 + ┃  ┣━━ 📓 var: tval2 + ┃  ┣━━ 📓 var_identifier: val1 + ┃  ┗━━ 📓 var_identifiers: val1-tval2 + ┗━━ 📂 dynval2 +  ┣━━ 📓 var : +  ┃ ┣━━ tval1 +  ┃ ┗━━ tval2 +  ┣━━ 📂 dyn_tval1 +  ┃ ┣━━ 📓 var: tval1 +  ┃ ┣━━ 📓 var_identifier: val2 +  ┃ ┗━━ 📓 var_identifiers: val2-tval1 +  ┗━━ 📂 dyn_tval2 +   ┣━━ 📓 var: tval2 +   ┣━━ 📓 var_identifier: val2 +   ┗━━ 📓 var_identifiers: val2-tval2 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_6family_dynamic_sub_dynamic_1_0.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_6family_dynamic_sub_dynamic_1_0.sh new file mode 100644 index 0000000..ed294db --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_6family_dynamic_sub_dynamic_1_0.sh @@ -0,0 +1,34 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┣━━ 📓 var : + ┃ ┃ ┣━━ tval1 + ┃ ┃ ┗━━ tval2 + ┃ ┣━━ 📂 dyn_tval1 + ┃ ┃ ┣━━ 📓 var: tval1 + ┃ ┃ ┣━━ 📓 var_identifier: val1 + ┃ ┃ ┗━━ 📓 var_identifiers: val1-tval1 + ┃ ┗━━ 📂 dyn_tval2 + ┃  ┣━━ 📓 var: tval2 + ┃  ┣━━ 📓 var_identifier: val1 + ┃  ┗━━ 📓 var_identifiers: val1-tval2 + ┗━━ 📂 dynval2 +  ┣━━ 📓 var : +  ┃ ┣━━ tval1 +  ┃ ┗━━ tval2 +  ┣━━ 📂 dyn_tval1 +  ┃ ┣━━ 📓 var: tval1 +  ┃ ┣━━ 📓 var_identifier: val2 +  ┃ ┗━━ 📓 var_identifiers: val2-tval1 +  ┗━━ 📂 dyn_tval2 +   ┣━━ 📓 var: tval2 +   ┣━━ 📓 var_identifier: val2 +   ┗━━ 📓 var_identifiers: val2-tval2 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_6family_dynamic_sub_dynamic_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_6family_dynamic_sub_dynamic_empty.sh new file mode 100644 index 0000000..2c6efb5 --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_6family_dynamic_sub_dynamic_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var : diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_9extra_dynamic.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_9extra_dynamic.sh new file mode 100644 index 0000000..ea45d2a --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_9extra_dynamic.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - extra.dyn_a.var diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_9extra_dynamic_extra.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_9extra_dynamic_extra.sh new file mode 100644 index 0000000..ea45d2a --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_9extra_dynamic_extra.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - extra.dyn_a.var diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_9family_dynamic_calc_both.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_9family_dynamic_calc_both.sh new file mode 100644 index 0000000..30c73ce --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_9family_dynamic_calc_both.sh @@ -0,0 +1,4 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┣━━  - rougail.dynval1.vardyn (a dynamic variable) +┗━━  - rougail.dynval2.vardyn (a dynamic variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/68_0family_leadership_mode.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/68_0family_leadership_mode.sh new file mode 100644 index 0000000..409a85b --- /dev/null +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/68_0family_leadership_mode.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader diff --git a/tests/results/test_namespace_read_write_secrets/00_0empty.sh b/tests/results/test_namespace_read_write_secrets/00_0empty.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/00_0empty.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_namespace_read_write_secrets/00_0version_underscore.sh b/tests/results/test_namespace_read_write_secrets/00_0version_underscore.sh new file mode 100644 index 0000000..6a842db --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/00_0version_underscore.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 version: null diff --git a/tests/results/test_namespace_read_write_secrets/00_1empty_variable.sh b/tests/results/test_namespace_read_write_secrets/00_1empty_variable.sh new file mode 100644 index 0000000..7259d85 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/00_1empty_variable.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 empty: null diff --git a/tests/results/test_namespace_read_write_secrets/00_2default_calculated.sh b/tests/results/test_namespace_read_write_secrets/00_2default_calculated.sh new file mode 100644 index 0000000..bf2e2ec --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/00_2default_calculated.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: no + ┗━━ 📓 var2 : +  ┗━━ no diff --git a/tests/results/test_namespace_read_write_secrets/00_2default_calculated_multi.sh b/tests/results/test_namespace_read_write_secrets/00_2default_calculated_multi.sh new file mode 100644 index 0000000..88e08bc --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/00_2default_calculated_multi.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ no + ┃ ┣━━ yes + ┃ ┗━━ maybe + ┗━━ 📓 var2 : +  ┣━━ no +  ┣━━ yes +  ┗━━ maybe diff --git a/tests/results/test_namespace_read_write_secrets/00_2default_calculated_variable_transitive.sh b/tests/results/test_namespace_read_write_secrets/00_2default_calculated_variable_transitive.sh new file mode 100644 index 0000000..cc4594d --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/00_2default_calculated_variable_transitive.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┗━━ 📓 var2 : diff --git a/tests/results/test_namespace_read_write_secrets/00_4load_subfolder.sh b/tests/results/test_namespace_read_write_secrets/00_4load_subfolder.sh new file mode 100644 index 0000000..cfb4b92 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/00_4load_subfolder.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: null + ┗━━ 📓 var2: null diff --git a/tests/results/test_namespace_read_write_secrets/00_5load_notype.sh b/tests/results/test_namespace_read_write_secrets/00_5load_notype.sh new file mode 100644 index 0000000..c9f6465 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/00_5load_notype.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 without_type: non diff --git a/tests/results/test_namespace_read_write_secrets/00_6boolean.sh b/tests/results/test_namespace_read_write_secrets/00_6boolean.sh new file mode 100644 index 0000000..40ba29f --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/00_6boolean.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: true + ┣━━ 📓 var2: true + ┣━━ 📓 var3: true + ┣━━ 📓 var4: false + ┣━━ 📓 var5: false + ┗━━ 📓 var6: false diff --git a/tests/results/test_namespace_read_write_secrets/00_6boolean_no_mandatory.sh b/tests/results/test_namespace_read_write_secrets/00_6boolean_no_mandatory.sh new file mode 100644 index 0000000..d51c8d7 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/00_6boolean_no_mandatory.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: true diff --git a/tests/results/test_namespace_read_write_secrets/00_6choice.sh b/tests/results/test_namespace_read_write_secrets/00_6choice.sh new file mode 100644 index 0000000..c4d4e43 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/00_6choice.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: null + ┣━━ 📓 var2: null + ┣━━ 📓 var3: null + ┣━━ 📓 var4: null + ┣━━ 📓 var5: a + ┗━━ 📓 var6: 1 diff --git a/tests/results/test_namespace_read_write_secrets/00_6choice_calculation.sh b/tests/results/test_namespace_read_write_secrets/00_6choice_calculation.sh new file mode 100644 index 0000000..e24e624 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/00_6choice_calculation.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: 9 diff --git a/tests/results/test_namespace_read_write_secrets/00_6choice_variable.sh b/tests/results/test_namespace_read_write_secrets/00_6choice_variable.sh new file mode 100644 index 0000000..12f3af2 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/00_6choice_variable.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ a + ┃ ┣━━ b + ┃ ┗━━ c + ┗━━ 📓 var2: a diff --git a/tests/results/test_namespace_read_write_secrets/00_6custom.sh b/tests/results/test_namespace_read_write_secrets/00_6custom.sh new file mode 100644 index 0000000..de7463e --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/00_6custom.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 custom1: null + ┗━━ 📓 custom2: value diff --git a/tests/results/test_namespace_read_write_secrets/00_6domainname.sh b/tests/results/test_namespace_read_write_secrets/00_6domainname.sh new file mode 100644 index 0000000..11a330a --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/00_6domainname.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: my.domain.name diff --git a/tests/results/test_namespace_read_write_secrets/00_6domainname_params.sh b/tests/results/test_namespace_read_write_secrets/00_6domainname_params.sh new file mode 100644 index 0000000..11a330a --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/00_6domainname_params.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: my.domain.name diff --git a/tests/results/test_namespace_read_write_secrets/00_6float.sh b/tests/results/test_namespace_read_write_secrets/00_6float.sh new file mode 100644 index 0000000..86d1540 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/00_6float.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: 0.0 + ┣━━ 📓 var2: 0.0 + ┣━━ 📓 var3: 0.0 + ┣━━ 📓 var4: 10.1 + ┣━━ 📓 var5: 10.1 + ┗━━ 📓 var6: 10.1 diff --git a/tests/results/test_namespace_read_write_secrets/00_6number.sh b/tests/results/test_namespace_read_write_secrets/00_6number.sh new file mode 100644 index 0000000..891bf6c --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/00_6number.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: 0 + ┣━━ 📓 var2: 0 + ┣━━ 📓 var3: 0 + ┣━━ 📓 var4: 10 + ┣━━ 📓 var5: 10 + ┗━━ 📓 var6: 10 diff --git a/tests/results/test_namespace_read_write_secrets/00_6port.sh b/tests/results/test_namespace_read_write_secrets/00_6port.sh new file mode 100644 index 0000000..ac498a7 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/00_6port.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 variable1: null + ┣━━ 📓 variable2: 8080 + ┗━━ 📓 variable3: 8080 diff --git a/tests/results/test_namespace_read_write_secrets/00_6regexp.sh b/tests/results/test_namespace_read_write_secrets/00_6regexp.sh new file mode 100644 index 0000000..d4400ef --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/00_6regexp.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: #a1a1a1 diff --git a/tests/results/test_namespace_read_write_secrets/00_6string.sh b/tests/results/test_namespace_read_write_secrets/00_6string.sh new file mode 100644 index 0000000..acf6a45 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/00_6string.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: null + ┣━━ 📓 var2: null + ┣━━ 📓 var3: null + ┣━━ 📓 var4: value + ┣━━ 📓 var5: value + ┗━━ 📓 var6: value diff --git a/tests/results/test_namespace_read_write_secrets/00_7choice_quote.sh b/tests/results/test_namespace_read_write_secrets/00_7choice_quote.sh new file mode 100644 index 0000000..401cadd --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/00_7choice_quote.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: quote' diff --git a/tests/results/test_namespace_read_write_secrets/00_7help_quote.sh b/tests/results/test_namespace_read_write_secrets/00_7help_quote.sh new file mode 100644 index 0000000..cfb4b92 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/00_7help_quote.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: null + ┗━━ 📓 var2: null diff --git a/tests/results/test_namespace_read_write_secrets/00_7value_doublequote.sh b/tests/results/test_namespace_read_write_secrets/00_7value_doublequote.sh new file mode 100644 index 0000000..ff6fe2e --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/00_7value_doublequote.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: quote" diff --git a/tests/results/test_namespace_read_write_secrets/00_7value_doublequote2.sh b/tests/results/test_namespace_read_write_secrets/00_7value_doublequote2.sh new file mode 100644 index 0000000..9986d63 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/00_7value_doublequote2.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: quote'" diff --git a/tests/results/test_namespace_read_write_secrets/00_7value_doublequote3.sh b/tests/results/test_namespace_read_write_secrets/00_7value_doublequote3.sh new file mode 100644 index 0000000..23f8b45 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/00_7value_doublequote3.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: quote\"\' diff --git a/tests/results/test_namespace_read_write_secrets/00_7value_quote.sh b/tests/results/test_namespace_read_write_secrets/00_7value_quote.sh new file mode 100644 index 0000000..827fb9a --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/00_7value_quote.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: quote' diff --git a/tests/results/test_namespace_read_write_secrets/00_8calculation_information.sh b/tests/results/test_namespace_read_write_secrets/00_8calculation_information.sh new file mode 100644 index 0000000..f2de40a --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/00_8calculation_information.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: null diff --git a/tests/results/test_namespace_read_write_secrets/00_8test.sh b/tests/results/test_namespace_read_write_secrets/00_8test.sh new file mode 100644 index 0000000..7f40e74 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/00_8test.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: null + ┣━━ 📓 var2: value + ┣━━ 📓 var3: null + ┣━━ 📓 var4: null + ┣━━ 📓 var5: true + ┗━━ 📓 var6 : diff --git a/tests/results/test_namespace_read_write_secrets/00_9choice_variable_multi.sh b/tests/results/test_namespace_read_write_secrets/00_9choice_variable_multi.sh new file mode 100644 index 0000000..38d6008 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/00_9choice_variable_multi.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 variable1 : + ┗━━ 📓 variable2 : diff --git a/tests/results/test_namespace_read_write_secrets/00_9choice_variables.sh b/tests/results/test_namespace_read_write_secrets/00_9choice_variables.sh new file mode 100644 index 0000000..7a97c06 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/00_9choice_variables.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 source_variable_1: val1 + ┣━━ 📓 source_variable_2: val2 + ┗━━ 📓 my_variable: val1 diff --git a/tests/results/test_namespace_read_write_secrets/00_9default_calculation.sh b/tests/results/test_namespace_read_write_secrets/00_9default_calculation.sh new file mode 100644 index 0000000..b9369a6 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/00_9default_calculation.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: string_1_True_None diff --git a/tests/results/test_namespace_read_write_secrets/00_9default_calculation_information.sh b/tests/results/test_namespace_read_write_secrets/00_9default_calculation_information.sh new file mode 100644 index 0000000..c581e31 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/00_9default_calculation_information.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: null diff --git a/tests/results/test_namespace_read_write_secrets/00_9default_calculation_information_other_variable.sh b/tests/results/test_namespace_read_write_secrets/00_9default_calculation_information_other_variable.sh new file mode 100644 index 0000000..cfb4b92 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/00_9default_calculation_information_other_variable.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: null + ┗━━ 📓 var2: null diff --git a/tests/results/test_namespace_read_write_secrets/00_9default_calculation_multi_optional.sh b/tests/results/test_namespace_read_write_secrets/00_9default_calculation_multi_optional.sh new file mode 100644 index 0000000..623c440 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/00_9default_calculation_multi_optional.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 my_variable: val1 + ┗━━ 📓 my_calculated_variable : +  ┗━━ val1 diff --git a/tests/results/test_namespace_read_write_secrets/00_9default_calculation_multi_optional2.sh b/tests/results/test_namespace_read_write_secrets/00_9default_calculation_multi_optional2.sh new file mode 100644 index 0000000..623c440 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/00_9default_calculation_multi_optional2.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 my_variable: val1 + ┗━━ 📓 my_calculated_variable : +  ┗━━ val1 diff --git a/tests/results/test_namespace_read_write_secrets/00_9default_calculation_optional.sh b/tests/results/test_namespace_read_write_secrets/00_9default_calculation_optional.sh new file mode 100644 index 0000000..a3ba859 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/00_9default_calculation_optional.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 my_calculated_variable : diff --git a/tests/results/test_namespace_read_write_secrets/00_9default_calculation_optional_exists.sh b/tests/results/test_namespace_read_write_secrets/00_9default_calculation_optional_exists.sh new file mode 100644 index 0000000..4aadfbe --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/00_9default_calculation_optional_exists.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 my_variable : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┗━━ 📓 my_calculated_variable : +  ┣━━ val1 +  ┗━━ val2 diff --git a/tests/results/test_namespace_read_write_secrets/00_9default_calculation_param_optional.sh b/tests/results/test_namespace_read_write_secrets/00_9default_calculation_param_optional.sh new file mode 100644 index 0000000..709f7b9 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/00_9default_calculation_param_optional.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: no + ┗━━ 📓 var2: no diff --git a/tests/results/test_namespace_read_write_secrets/00_9default_information_other_variable.sh b/tests/results/test_namespace_read_write_secrets/00_9default_information_other_variable.sh new file mode 100644 index 0000000..cfb4b92 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/00_9default_information_other_variable.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: null + ┗━━ 📓 var2: null diff --git a/tests/results/test_namespace_read_write_secrets/00_9default_integer.sh b/tests/results/test_namespace_read_write_secrets/00_9default_integer.sh new file mode 100644 index 0000000..e24e624 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/00_9default_integer.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: 9 diff --git a/tests/results/test_namespace_read_write_secrets/00_9extra.sh b/tests/results/test_namespace_read_write_secrets/00_9extra.sh new file mode 100644 index 0000000..9df494b --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/00_9extra.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📂 rougail +┃ ┗━━ 📓 variable: rougail +┗━━ 📂 extra + ┗━━ 📓 variable: no diff --git a/tests/results/test_namespace_read_write_secrets/00_9extra_calculation.sh b/tests/results/test_namespace_read_write_secrets/00_9extra_calculation.sh new file mode 100644 index 0000000..01606d3 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/00_9extra_calculation.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📂 rougail +┃ ┗━━ 📓 variable: value +┗━━ 📂 extra + ┣━━ 📓 variable1: value + ┣━━ 📓 variable2: value + ┗━━ 📓 variable3: value diff --git a/tests/results/test_namespace_read_write_secrets/01_6boolean_multi.sh b/tests/results/test_namespace_read_write_secrets/01_6boolean_multi.sh new file mode 100644 index 0000000..95ef385 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/01_6boolean_multi.sh @@ -0,0 +1,23 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┗━━ true + ┣━━ 📓 var2 : + ┃ ┗━━ true + ┣━━ 📓 var3 : + ┃ ┗━━ true + ┣━━ 📓 var4 : + ┃ ┗━━ false + ┣━━ 📓 var5 : + ┃ ┗━━ false + ┣━━ 📓 var6 : + ┃ ┗━━ false + ┣━━ 📓 var7 : + ┃ ┗━━ true + ┗━━ 📓 var8 : +  ┗━━ true diff --git a/tests/results/test_namespace_read_write_secrets/01_6custom_multi.sh b/tests/results/test_namespace_read_write_secrets/01_6custom_multi.sh new file mode 100644 index 0000000..3021066 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/01_6custom_multi.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 custom1 : + ┗━━ 📓 custom2 : +  ┗━━ value diff --git a/tests/results/test_namespace_read_write_secrets/01_6float_multi.sh b/tests/results/test_namespace_read_write_secrets/01_6float_multi.sh new file mode 100644 index 0000000..8c27f21 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/01_6float_multi.sh @@ -0,0 +1,23 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┗━━ 0.0 + ┣━━ 📓 var2 : + ┃ ┗━━ 0.0 + ┣━━ 📓 var3 : + ┃ ┗━━ 0.0 + ┣━━ 📓 var4 : + ┃ ┗━━ 10.1 + ┣━━ 📓 var5 : + ┃ ┗━━ 10.1 + ┣━━ 📓 var6 : + ┃ ┗━━ 10.1 + ┣━━ 📓 var7 : + ┃ ┗━━ 0.0 + ┗━━ 📓 var8 : +  ┗━━ 0.0 diff --git a/tests/results/test_namespace_read_write_secrets/01_6number_multi.sh b/tests/results/test_namespace_read_write_secrets/01_6number_multi.sh new file mode 100644 index 0000000..726c5a5 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/01_6number_multi.sh @@ -0,0 +1,23 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┗━━ 0 + ┣━━ 📓 var2 : + ┃ ┗━━ 0 + ┣━━ 📓 var3 : + ┃ ┗━━ 0 + ┣━━ 📓 var4 : + ┃ ┗━━ 10 + ┣━━ 📓 var5 : + ┃ ┗━━ 10 + ┣━━ 📓 var6 : + ┃ ┗━━ 10 + ┣━━ 📓 var7 : + ┃ ┗━━ 0 + ┗━━ 📓 var8 : +  ┗━━ 0 diff --git a/tests/results/test_namespace_read_write_secrets/01_6string_empty.sh b/tests/results/test_namespace_read_write_secrets/01_6string_empty.sh new file mode 100644 index 0000000..4eb4a04 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/01_6string_empty.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var1 : +  ┣━━ value +  ┗━━ null diff --git a/tests/results/test_namespace_read_write_secrets/01_6string_multi.sh b/tests/results/test_namespace_read_write_secrets/01_6string_multi.sh new file mode 100644 index 0000000..38ea1f5 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/01_6string_multi.sh @@ -0,0 +1,20 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┣━━ 📓 var2 : + ┣━━ 📓 var3: null + ┣━━ 📓 var4 : + ┃ ┗━━ value + ┣━━ 📓 var5 : + ┃ ┗━━ value + ┣━━ 📓 var6 : + ┃ ┗━━ value + ┣━━ 📓 var7 : + ┃ ┗━━ value + ┗━━ 📓 var8 : +  ┗━━ value diff --git a/tests/results/test_namespace_read_write_secrets/01_7value_multi_doublequote.sh b/tests/results/test_namespace_read_write_secrets/01_7value_multi_doublequote.sh new file mode 100644 index 0000000..f713749 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/01_7value_multi_doublequote.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable : +  ┗━━ quote" diff --git a/tests/results/test_namespace_read_write_secrets/01_7value_multi_doublequote2.sh b/tests/results/test_namespace_read_write_secrets/01_7value_multi_doublequote2.sh new file mode 100644 index 0000000..46f4fe4 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/01_7value_multi_doublequote2.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable : +  ┗━━ quote'" diff --git a/tests/results/test_namespace_read_write_secrets/01_7value_multi_quote.sh b/tests/results/test_namespace_read_write_secrets/01_7value_multi_quote.sh new file mode 100644 index 0000000..1e26815 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/01_7value_multi_quote.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable : +  ┗━━ quote' diff --git a/tests/results/test_namespace_read_write_secrets/01_8calculation_information_multi.sh b/tests/results/test_namespace_read_write_secrets/01_8calculation_information_multi.sh new file mode 100644 index 0000000..b4a06ad --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/01_8calculation_information_multi.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable : diff --git a/tests/results/test_namespace_read_write_secrets/01_9choice_variable_multi.sh b/tests/results/test_namespace_read_write_secrets/01_9choice_variable_multi.sh new file mode 100644 index 0000000..9915048 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/01_9choice_variable_multi.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 variable1 : + ┃ ┣━━ a + ┃ ┣━━ b + ┃ ┗━━ c + ┗━━ 📓 variable2: null diff --git a/tests/results/test_namespace_read_write_secrets/04_0type_param.sh b/tests/results/test_namespace_read_write_secrets/04_0type_param.sh new file mode 100644 index 0000000..33ba0e7 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/04_0type_param.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 int: 10 diff --git a/tests/results/test_namespace_read_write_secrets/04_1auto_save.sh b/tests/results/test_namespace_read_write_secrets/04_1auto_save.sh new file mode 100644 index 0000000..967acec --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/04_1auto_save.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: no diff --git a/tests/results/test_namespace_read_write_secrets/04_1auto_save_and_calculated.sh b/tests/results/test_namespace_read_write_secrets/04_1auto_save_and_calculated.sh new file mode 100644 index 0000000..9c721e6 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/04_1auto_save_and_calculated.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: no + ┗━━ 📓 var2: no diff --git a/tests/results/test_namespace_read_write_secrets/04_1auto_save_and_calculated_hidden.sh b/tests/results/test_namespace_read_write_secrets/04_1auto_save_and_calculated_hidden.sh new file mode 100644 index 0000000..a7d95d6 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/04_1auto_save_and_calculated_hidden.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: no + ┗━━ 📓 var2: yes diff --git a/tests/results/test_namespace_read_write_secrets/04_1auto_save_and_hidden.sh b/tests/results/test_namespace_read_write_secrets/04_1auto_save_and_hidden.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/04_1auto_save_and_hidden.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_secrets/04_1default_calculation_hidden.sh b/tests/results/test_namespace_read_write_secrets/04_1default_calculation_hidden.sh new file mode 100644 index 0000000..2a9e364 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/04_1default_calculation_hidden.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: value + ┗━━ 📓 var3: value diff --git a/tests/results/test_namespace_read_write_secrets/04_1default_calculation_hidden_2.sh b/tests/results/test_namespace_read_write_secrets/04_1default_calculation_hidden_2.sh new file mode 100644 index 0000000..2a9e364 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/04_1default_calculation_hidden_2.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: value + ┗━━ 📓 var3: value diff --git a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation.sh b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation.sh new file mode 100644 index 0000000..00f217d --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: no + ┣━━ 📓 variable1: null + ┗━━ 📓 variable2: null diff --git a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_default.sh b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_default.sh new file mode 100644 index 0000000..2d2eb7a --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_default.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: no + ┣━━ 📓 var1: no + ┗━━ 📓 var2: no diff --git a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_optional.sh b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_optional.sh new file mode 100644 index 0000000..21be0ca --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_optional.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 condition: no diff --git a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable.sh b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable.sh new file mode 100644 index 0000000..8f6a95d --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: false + ┗━━ 📓 variable: null diff --git a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable2.sh b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable2.sh new file mode 100644 index 0000000..de131ef --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable2.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 condition: true diff --git a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable3.sh b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable3.sh new file mode 100644 index 0000000..ed2ce4a --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable3.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 condition: yes diff --git a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable4.sh b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable4.sh new file mode 100644 index 0000000..915d397 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable4.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: yes + ┗━━ 📓 variable: null diff --git a/tests/results/test_namespace_read_write_secrets/04_5hidden_calculation.sh b/tests/results/test_namespace_read_write_secrets/04_5hidden_calculation.sh new file mode 100644 index 0000000..2d2eb7a --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/04_5hidden_calculation.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: no + ┣━━ 📓 var1: no + ┗━━ 📓 var2: no diff --git a/tests/results/test_namespace_read_write_secrets/04_5hidden_calculation2.sh b/tests/results/test_namespace_read_write_secrets/04_5hidden_calculation2.sh new file mode 100644 index 0000000..21be0ca --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/04_5hidden_calculation2.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 condition: no diff --git a/tests/results/test_namespace_read_write_secrets/04_5hidden_calculation_default_calculation.sh b/tests/results/test_namespace_read_write_secrets/04_5hidden_calculation_default_calculation.sh new file mode 100644 index 0000000..2d2eb7a --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/04_5hidden_calculation_default_calculation.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: no + ┣━━ 📓 var1: no + ┗━━ 📓 var2: no diff --git a/tests/results/test_namespace_read_write_secrets/04_5validators.sh b/tests/results/test_namespace_read_write_secrets/04_5validators.sh new file mode 100644 index 0000000..031f568 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/04_5validators.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 int: null diff --git a/tests/results/test_namespace_read_write_secrets/04_5validators_differ.sh b/tests/results/test_namespace_read_write_secrets/04_5validators_differ.sh new file mode 100644 index 0000000..414983f --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/04_5validators_differ.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: oui + ┗━━ 📓 var2: no diff --git a/tests/results/test_namespace_read_write_secrets/04_5validators_multi.sh b/tests/results/test_namespace_read_write_secrets/04_5validators_multi.sh new file mode 100644 index 0000000..e462f59 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/04_5validators_multi.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var1 : +  ┣━━ no +  ┗━━ yes diff --git a/tests/results/test_namespace_read_write_secrets/04_5validators_multi2.sh b/tests/results/test_namespace_read_write_secrets/04_5validators_multi2.sh new file mode 100644 index 0000000..e462f59 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/04_5validators_multi2.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var1 : +  ┣━━ no +  ┗━━ yes diff --git a/tests/results/test_namespace_read_write_secrets/05_0multi_not_uniq.sh b/tests/results/test_namespace_read_write_secrets/05_0multi_not_uniq.sh new file mode 100644 index 0000000..2b32f5e --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/05_0multi_not_uniq.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var1 : +  ┗━━ non diff --git a/tests/results/test_namespace_read_write_secrets/05_0multi_uniq.sh b/tests/results/test_namespace_read_write_secrets/05_0multi_uniq.sh new file mode 100644 index 0000000..0183a17 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/05_0multi_uniq.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable : +  ┗━━ non diff --git a/tests/results/test_namespace_read_write_secrets/12_1auto_save_expert.sh b/tests/results/test_namespace_read_write_secrets/12_1auto_save_expert.sh new file mode 100644 index 0000000..d73522e --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/12_1auto_save_expert.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: no diff --git a/tests/results/test_namespace_read_write_secrets/16_0redefine_description.sh b/tests/results/test_namespace_read_write_secrets/16_0redefine_description.sh new file mode 100644 index 0000000..c581e31 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/16_0redefine_description.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: null diff --git a/tests/results/test_namespace_read_write_secrets/16_2family_redefine_calculation.sh b/tests/results/test_namespace_read_write_secrets/16_2family_redefine_calculation.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/16_2family_redefine_calculation.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_secrets/16_2family_redefine_disabled.sh b/tests/results/test_namespace_read_write_secrets/16_2family_redefine_disabled.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/16_2family_redefine_disabled.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_secrets/16_5exists_nonexists.sh b/tests/results/test_namespace_read_write_secrets/16_5exists_nonexists.sh new file mode 100644 index 0000000..c4b3f93 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/16_5exists_nonexists.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: no + ┗━━ 📓 var2: yes diff --git a/tests/results/test_namespace_read_write_secrets/16_5exists_redefine.sh b/tests/results/test_namespace_read_write_secrets/16_5exists_redefine.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/16_5exists_redefine.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_secrets/16_5redefine_calculation.sh b/tests/results/test_namespace_read_write_secrets/16_5redefine_calculation.sh new file mode 100644 index 0000000..9836bef --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/16_5redefine_calculation.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: yes diff --git a/tests/results/test_namespace_read_write_secrets/16_5redefine_choice.sh b/tests/results/test_namespace_read_write_secrets/16_5redefine_choice.sh new file mode 100644 index 0000000..f2de40a --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/16_5redefine_choice.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: null diff --git a/tests/results/test_namespace_read_write_secrets/16_5redefine_default.sh b/tests/results/test_namespace_read_write_secrets/16_5redefine_default.sh new file mode 100644 index 0000000..9836bef --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/16_5redefine_default.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: yes diff --git a/tests/results/test_namespace_read_write_secrets/16_5redefine_default_calculation.sh b/tests/results/test_namespace_read_write_secrets/16_5redefine_default_calculation.sh new file mode 100644 index 0000000..f2de40a --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/16_5redefine_default_calculation.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: null diff --git a/tests/results/test_namespace_read_write_secrets/16_5redefine_family.sh b/tests/results/test_namespace_read_write_secrets/16_5redefine_family.sh new file mode 100644 index 0000000..38d480a --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/16_5redefine_family.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 family +  ┗━━ 📓 variable: null diff --git a/tests/results/test_namespace_read_write_secrets/16_5redefine_help.sh b/tests/results/test_namespace_read_write_secrets/16_5redefine_help.sh new file mode 100644 index 0000000..38d480a --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/16_5redefine_help.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 family +  ┗━━ 📓 variable: null diff --git a/tests/results/test_namespace_read_write_secrets/16_5redefine_hidden.sh b/tests/results/test_namespace_read_write_secrets/16_5redefine_hidden.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/16_5redefine_hidden.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_secrets/16_5redefine_multi.sh b/tests/results/test_namespace_read_write_secrets/16_5redefine_multi.sh new file mode 100644 index 0000000..0183a17 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/16_5redefine_multi.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable : +  ┗━━ non diff --git a/tests/results/test_namespace_read_write_secrets/16_5redefine_remove_disable_calculation.sh b/tests/results/test_namespace_read_write_secrets/16_5redefine_remove_disable_calculation.sh new file mode 100644 index 0000000..a669f54 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/16_5redefine_remove_disable_calculation.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: no + ┗━━ 📓 variable: null diff --git a/tests/results/test_namespace_read_write_secrets/16_5test_redefine.sh b/tests/results/test_namespace_read_write_secrets/16_5test_redefine.sh new file mode 100644 index 0000000..da28b26 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/16_5test_redefine.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: no + ┣━━ 📓 var2: non + ┗━━ 📓 var3: null diff --git a/tests/results/test_namespace_read_write_secrets/16_6choice_redefine.sh b/tests/results/test_namespace_read_write_secrets/16_6choice_redefine.sh new file mode 100644 index 0000000..2e35dfd --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/16_6choice_redefine.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: c diff --git a/tests/results/test_namespace_read_write_secrets/16_6exists_redefine_family.sh b/tests/results/test_namespace_read_write_secrets/16_6exists_redefine_family.sh new file mode 100644 index 0000000..fe728b6 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/16_6exists_redefine_family.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📂 family1 + ┃ ┗━━ 📓 variable1: null + ┗━━ 📂 family2 +  ┗━━ 📓 variable2: null diff --git a/tests/results/test_namespace_read_write_secrets/16exists_exists.sh b/tests/results/test_namespace_read_write_secrets/16exists_exists.sh new file mode 100644 index 0000000..c581e31 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/16exists_exists.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: null diff --git a/tests/results/test_namespace_read_write_secrets/17_5redefine_leadership.sh b/tests/results/test_namespace_read_write_secrets/17_5redefine_leadership.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/17_5redefine_leadership.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_secrets/20_0empty_family.sh b/tests/results/test_namespace_read_write_secrets/20_0empty_family.sh new file mode 100644 index 0000000..2fc78e0 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/20_0empty_family.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_secrets/20_0family_append.sh b/tests/results/test_namespace_read_write_secrets/20_0family_append.sh new file mode 100644 index 0000000..47f03de --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/20_0family_append.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 family +  ┣━━ 📓 var1: null +  ┗━━ 📓 var2: null diff --git a/tests/results/test_namespace_read_write_secrets/20_0family_underscore.sh b/tests/results/test_namespace_read_write_secrets/20_0family_underscore.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/20_0family_underscore.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_secrets/20_0multi_family.sh b/tests/results/test_namespace_read_write_secrets/20_0multi_family.sh new file mode 100644 index 0000000..5bc2162 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/20_0multi_family.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 family +  ┗━━ 📂 subfamily +   ┗━━ 📓 variable: null diff --git a/tests/results/test_namespace_read_write_secrets/20_0multi_family_basic.sh b/tests/results/test_namespace_read_write_secrets/20_0multi_family_basic.sh new file mode 100644 index 0000000..5bc2162 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/20_0multi_family_basic.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 family +  ┗━━ 📂 subfamily +   ┗━━ 📓 variable: null diff --git a/tests/results/test_namespace_read_write_secrets/20_0multi_family_expert.sh b/tests/results/test_namespace_read_write_secrets/20_0multi_family_expert.sh new file mode 100644 index 0000000..f2c0510 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/20_0multi_family_expert.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 family +  ┗━━ 📂 subfamily +   ┗━━ 📓 variable: null diff --git a/tests/results/test_namespace_read_write_secrets/20_0multi_family_order.sh b/tests/results/test_namespace_read_write_secrets/20_0multi_family_order.sh new file mode 100644 index 0000000..8a3705d --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/20_0multi_family_order.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 variable: null + ┗━━ 📂 family +  ┣━━ 📓 variable1: null +  ┣━━ 📂 subfamily +  ┃ ┗━━ 📓 variable: null +  ┗━━ 📓 variable2: null diff --git a/tests/results/test_namespace_read_write_secrets/20_0validators_differ_redefine.sh b/tests/results/test_namespace_read_write_secrets/20_0validators_differ_redefine.sh new file mode 100644 index 0000000..cd704b6 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/20_0validators_differ_redefine.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: no + ┣━━ 📓 var2: no + ┗━━ 📓 var3: yes diff --git a/tests/results/test_namespace_read_write_secrets/20_1empty_subfamily.sh b/tests/results/test_namespace_read_write_secrets/20_1empty_subfamily.sh new file mode 100644 index 0000000..2fc78e0 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/20_1empty_subfamily.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_secrets/20_9default_information_parent.sh b/tests/results/test_namespace_read_write_secrets/20_9default_information_parent.sh new file mode 100644 index 0000000..47f03de --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/20_9default_information_parent.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 family +  ┣━━ 📓 var1: null +  ┗━━ 📓 var2: null diff --git a/tests/results/test_namespace_read_write_secrets/24_0family_hidden_condition.sh b/tests/results/test_namespace_read_write_secrets/24_0family_hidden_condition.sh new file mode 100644 index 0000000..3d44471 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/24_0family_hidden_condition.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: no + ┗━━ 📂 family +  ┗━━ 📓 var1: null diff --git a/tests/results/test_namespace_read_write_secrets/24_0family_hidden_condition_boolean.sh b/tests/results/test_namespace_read_write_secrets/24_0family_hidden_condition_boolean.sh new file mode 100644 index 0000000..957fe08 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/24_0family_hidden_condition_boolean.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 condition: false diff --git a/tests/results/test_namespace_read_write_secrets/24_0family_hidden_condition_sub_family.sh b/tests/results/test_namespace_read_write_secrets/24_0family_hidden_condition_sub_family.sh new file mode 100644 index 0000000..9c57ff6 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/24_0family_hidden_condition_sub_family.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: no + ┗━━ 📂 family +  ┗━━ 📂 subfamily +   ┗━━ 📓 var1: null diff --git a/tests/results/test_namespace_read_write_secrets/24_0family_hidden_condition_variable_sub_family.sh b/tests/results/test_namespace_read_write_secrets/24_0family_hidden_condition_variable_sub_family.sh new file mode 100644 index 0000000..de131ef --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/24_0family_hidden_condition_variable_sub_family.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 condition: true diff --git a/tests/results/test_namespace_read_write_secrets/24_0family_hidden_condition_with_variable.sh b/tests/results/test_namespace_read_write_secrets/24_0family_hidden_condition_with_variable.sh new file mode 100644 index 0000000..3c11484 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/24_0family_hidden_condition_with_variable.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition1: false + ┗━━ 📓 condition2: false diff --git a/tests/results/test_namespace_read_write_secrets/24_0family_hidden_param_condition_sub_family.sh b/tests/results/test_namespace_read_write_secrets/24_0family_hidden_param_condition_sub_family.sh new file mode 100644 index 0000000..65ede1e --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/24_0family_hidden_param_condition_sub_family.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: no + ┗━━ 📂 family +  ┗━━ 📂 sub_family +   ┗━━ 📓 var1: null diff --git a/tests/results/test_namespace_read_write_secrets/24_0family_mandatory_condition.sh b/tests/results/test_namespace_read_write_secrets/24_0family_mandatory_condition.sh new file mode 100644 index 0000000..dc9b127 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/24_0family_mandatory_condition.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: no + ┗━━ 📓 var: null diff --git a/tests/results/test_namespace_read_write_secrets/24_0family_mandatory_condition_variable.sh b/tests/results/test_namespace_read_write_secrets/24_0family_mandatory_condition_variable.sh new file mode 100644 index 0000000..a4b6974 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/24_0family_mandatory_condition_variable.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: true + ┗━━ 📓 var: null diff --git a/tests/results/test_namespace_read_write_secrets/24_7validators_variable_optional.sh b/tests/results/test_namespace_read_write_secrets/24_7validators_variable_optional.sh new file mode 100644 index 0000000..bcbfcb2 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/24_7validators_variable_optional.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 general +  ┣━━ 📓 int: null +  ┗━━ 📓 int2: 1 diff --git a/tests/results/test_namespace_read_write_secrets/24_family_disabled_var_hidden.sh b/tests/results/test_namespace_read_write_secrets/24_family_disabled_var_hidden.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/24_family_disabled_var_hidden.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_secrets/40_0leadership.sh b/tests/results/test_namespace_read_write_secrets/40_0leadership.sh new file mode 100644 index 0000000..409a85b --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/40_0leadership.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader diff --git a/tests/results/test_namespace_read_write_secrets/40_0leadership_diff_name.sh b/tests/results/test_namespace_read_write_secrets/40_0leadership_diff_name.sh new file mode 100644 index 0000000..01d73ba --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/40_0leadership_diff_name.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leadership diff --git a/tests/results/test_namespace_read_write_secrets/40_0leadership_empty.sh b/tests/results/test_namespace_read_write_secrets/40_0leadership_empty.sh new file mode 100644 index 0000000..2fc78e0 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/40_0leadership_empty.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_secrets/40_0leadership_follower_default_calculation.sh b/tests/results/test_namespace_read_write_secrets/40_0leadership_follower_default_calculation.sh new file mode 100644 index 0000000..409a85b --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/40_0leadership_follower_default_calculation.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader diff --git a/tests/results/test_namespace_read_write_secrets/40_0leadership_follower_default_submulti.sh b/tests/results/test_namespace_read_write_secrets/40_0leadership_follower_default_submulti.sh new file mode 100644 index 0000000..5440046 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/40_0leadership_follower_default_submulti.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┗━━ 📂 leader +   ┣━━ 📓 leader: leader +   ┣━━ 📓 follower1 : +   ┃ ┗━━ value +   ┗━━ 📓 follower2 : +    ┣━━ value1 +    ┗━━ value2 diff --git a/tests/results/test_namespace_read_write_secrets/40_0leadership_follower_default_submulti_calculation.sh b/tests/results/test_namespace_read_write_secrets/40_0leadership_follower_default_submulti_calculation.sh new file mode 100644 index 0000000..8edbb98 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/40_0leadership_follower_default_submulti_calculation.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┗━━ 📂 leader +   ┣━━ 📓 leader: leader +   ┣━━ 📓 follower1 : +   ┃ ┗━━ value +   ┗━━ 📓 follower2 : +    ┗━━ value diff --git a/tests/results/test_namespace_read_write_secrets/40_0leadership_follower_default_value.sh b/tests/results/test_namespace_read_write_secrets/40_0leadership_follower_default_value.sh new file mode 100644 index 0000000..409a85b --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/40_0leadership_follower_default_value.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader diff --git a/tests/results/test_namespace_read_write_secrets/40_0leadership_leader_not_multi.sh b/tests/results/test_namespace_read_write_secrets/40_0leadership_leader_not_multi.sh new file mode 100644 index 0000000..99d5d40 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/40_0leadership_leader_not_multi.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📂 general + ┃ ┗━━ 📓 mode_conteneur_actif: non + ┗━━ 📂 general1 +  ┗━━ 📂 leader diff --git a/tests/results/test_namespace_read_write_secrets/40_1leadership_append_follower.sh b/tests/results/test_namespace_read_write_secrets/40_1leadership_append_follower.sh new file mode 100644 index 0000000..409a85b --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/40_1leadership_append_follower.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader diff --git a/tests/results/test_namespace_read_write_secrets/40_2leadership_calculation_index.sh b/tests/results/test_namespace_read_write_secrets/40_2leadership_calculation_index.sh new file mode 100644 index 0000000..079783d --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/40_2leadership_calculation_index.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: a +  ┃ ┗━━ 📓 follower1: 0 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: b +  ┃ ┗━━ 📓 follower1: 1 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: c +   ┗━━ 📓 follower1: 2 diff --git a/tests/results/test_namespace_read_write_secrets/40_2leadership_calculation_param_index.sh b/tests/results/test_namespace_read_write_secrets/40_2leadership_calculation_param_index.sh new file mode 100644 index 0000000..079783d --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/40_2leadership_calculation_param_index.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: a +  ┃ ┗━━ 📓 follower1: 0 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: b +  ┃ ┗━━ 📓 follower1: 1 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: c +   ┗━━ 📓 follower1: 2 diff --git a/tests/results/test_namespace_read_write_secrets/40_2leadership_leader_calculation.sh b/tests/results/test_namespace_read_write_secrets/40_2leadership_leader_calculation.sh new file mode 100644 index 0000000..58e0bed --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/40_2leadership_leader_calculation.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: val1 +  ┃ ┣━━ 📓 follower1: null +  ┃ ┗━━ 📓 follower2: null +  ┗━━ 📂 leader +   ┣━━ 📓 leader: val2 +   ┣━━ 📓 follower1: null +   ┗━━ 📓 follower2: null diff --git a/tests/results/test_namespace_read_write_secrets/40_6leadership_follower_multi.sh b/tests/results/test_namespace_read_write_secrets/40_6leadership_follower_multi.sh new file mode 100644 index 0000000..01d73ba --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/40_6leadership_follower_multi.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leadership diff --git a/tests/results/test_namespace_read_write_secrets/40_8calculation_boolean.sh b/tests/results/test_namespace_read_write_secrets/40_8calculation_boolean.sh new file mode 100644 index 0000000..13c3107 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/40_8calculation_boolean.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 bool: false + ┣━━ 📓 multi1 : + ┃ ┗━━ false + ┗━━ 📓 multi2 : +  ┣━━ true +  ┗━━ false diff --git a/tests/results/test_namespace_read_write_secrets/40_8calculation_boolean_return_none.sh b/tests/results/test_namespace_read_write_secrets/40_8calculation_boolean_return_none.sh new file mode 100644 index 0000000..0c707f9 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/40_8calculation_boolean_return_none.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: yes + ┗━━ 📓 var2: null diff --git a/tests/results/test_namespace_read_write_secrets/40_8calculation_integer.sh b/tests/results/test_namespace_read_write_secrets/40_8calculation_integer.sh new file mode 100644 index 0000000..22ae871 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/40_8calculation_integer.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 bool: false + ┣━━ 📓 int1: 2 + ┗━━ 📓 int2: 3 diff --git a/tests/results/test_namespace_read_write_secrets/40_8calculation_multi_variable.sh b/tests/results/test_namespace_read_write_secrets/40_8calculation_multi_variable.sh new file mode 100644 index 0000000..7652f1c --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/40_8calculation_multi_variable.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ no + ┃ ┗━━ yes + ┣━━ 📓 var2: no + ┗━━ 📓 var3: yes diff --git a/tests/results/test_namespace_read_write_secrets/40_8calculation_multi_variable_parent.sh b/tests/results/test_namespace_read_write_secrets/40_8calculation_multi_variable_parent.sh new file mode 100644 index 0000000..edd2ec7 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/40_8calculation_multi_variable_parent.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var: no + ┗━━ 📂 fam1 +  ┗━━ 📓 var: no diff --git a/tests/results/test_namespace_read_write_secrets/40_8calculation_multi_variable_parent2.sh b/tests/results/test_namespace_read_write_secrets/40_8calculation_multi_variable_parent2.sh new file mode 100644 index 0000000..48268a5 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/40_8calculation_multi_variable_parent2.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📂 fam1 + ┃ ┗━━ 📓 var: no + ┗━━ 📂 fam2 +  ┗━━ 📓 var: no diff --git a/tests/results/test_namespace_read_write_secrets/41_0choice_leader.sh b/tests/results/test_namespace_read_write_secrets/41_0choice_leader.sh new file mode 100644 index 0000000..409a85b --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/41_0choice_leader.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader diff --git a/tests/results/test_namespace_read_write_secrets/44_0leadership_hidden.sh b/tests/results/test_namespace_read_write_secrets/44_0leadership_hidden.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/44_0leadership_hidden.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_secrets/44_0leadership_leader_hidden.sh b/tests/results/test_namespace_read_write_secrets/44_0leadership_leader_hidden.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/44_0leadership_leader_hidden.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_secrets/44_1leadership_append_hidden_follower.sh b/tests/results/test_namespace_read_write_secrets/44_1leadership_append_hidden_follower.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/44_1leadership_append_hidden_follower.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_secrets/44_4disabled_calcultion_follower.sh b/tests/results/test_namespace_read_write_secrets/44_4disabled_calcultion_follower.sh new file mode 100644 index 0000000..db63cf6 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/44_4disabled_calcultion_follower.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: true + ┗━━ 📂 leader +  ┗━━ 📂 leader +   ┣━━ 📓 leader: a +   ┗━━ 📓 follower: null diff --git a/tests/results/test_namespace_read_write_secrets/44_4leadership_mandatory.sh b/tests/results/test_namespace_read_write_secrets/44_4leadership_mandatory.sh new file mode 100644 index 0000000..409a85b --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/44_4leadership_mandatory.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader diff --git a/tests/results/test_namespace_read_write_secrets/44_4leadership_mandatory_follower.sh b/tests/results/test_namespace_read_write_secrets/44_4leadership_mandatory_follower.sh new file mode 100644 index 0000000..409a85b --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/44_4leadership_mandatory_follower.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader diff --git a/tests/results/test_namespace_read_write_secrets/44_5leadership_leader_hidden_calculation.sh b/tests/results/test_namespace_read_write_secrets/44_5leadership_leader_hidden_calculation.sh new file mode 100644 index 0000000..21be0ca --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/44_5leadership_leader_hidden_calculation.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 condition: no diff --git a/tests/results/test_namespace_read_write_secrets/44_6leadership_follower_disabled_calculation.sh b/tests/results/test_namespace_read_write_secrets/44_6leadership_follower_disabled_calculation.sh new file mode 100644 index 0000000..d4c5b4a --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/44_6leadership_follower_disabled_calculation.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: yes + ┗━━ 📂 leader diff --git a/tests/results/test_namespace_read_write_secrets/44_9calculated_default_leadership_leader.sh b/tests/results/test_namespace_read_write_secrets/44_9calculated_default_leadership_leader.sh new file mode 100644 index 0000000..060aee8 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/44_9calculated_default_leadership_leader.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┗━━ 📓 leader: a +  ┗━━ 📂 leader +   ┣━━ 📓 leader: b +   ┗━━ 📓 follower: b diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic.sh b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic.sh new file mode 100644 index 0000000..068c933 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: null + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: null diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_0.sh b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_0.sh new file mode 100644 index 0000000..18f5e96 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_0.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 vardyn: null + ┗━━ 📂 dynval2 +  ┗━━ 📓 vardyn: null diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_0_empty.sh b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_0_empty.sh new file mode 100644 index 0000000..2c6efb5 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_0_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var : diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_0_type.sh b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_0_type.sh new file mode 100644 index 0000000..18f5e96 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_0_type.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 vardyn: null + ┗━━ 📂 dynval2 +  ┗━━ 📓 vardyn: null diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_0_type_empty.sh b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_0_type_empty.sh new file mode 100644 index 0000000..2c6efb5 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_0_type_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var : diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_1.sh b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_1.sh new file mode 100644 index 0000000..18f5e96 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_1.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 vardyn: null + ┗━━ 📂 dynval2 +  ┗━━ 📓 vardyn: null diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_1_empty.sh b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_1_empty.sh new file mode 100644 index 0000000..2c6efb5 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_1_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var : diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_empty.sh b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_empty.sh new file mode 100644 index 0000000..2c6efb5 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var : diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_jinja_number.sh b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_jinja_number.sh new file mode 100644 index 0000000..8209d5d --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_jinja_number.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ 1 + ┃ ┗━━ 2 + ┣━━ 📂 dyn1 + ┃ ┗━━ 📓 var: val + ┣━━ 📂 dyn2 + ┃ ┗━━ 📓 var: val + ┗━━ 📓 var2: val diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_jinja_number_empty.sh b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_jinja_number_empty.sh new file mode 100644 index 0000000..ffcaf11 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_jinja_number_empty.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┗━━ 📓 var2: null diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_no_description.sh b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_no_description.sh new file mode 100644 index 0000000..068c933 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_no_description.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: null + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: null diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_no_description_empty.sh b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_no_description_empty.sh new file mode 100644 index 0000000..2c6efb5 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_no_description_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var : diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_static.sh b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_static.sh new file mode 100644 index 0000000..a909e05 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_static.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: null + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: null diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_test.sh b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_test.sh new file mode 100644 index 0000000..2c6efb5 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_test.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var : diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_variable_empty.sh b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_variable_empty.sh new file mode 100644 index 0000000..2c6efb5 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_variable_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var : diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_variable_suffix.sh b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_variable_suffix.sh new file mode 100644 index 0000000..045b271 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_variable_suffix.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: a value + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: a value diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_variable_suffix_empty.sh b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_variable_suffix_empty.sh new file mode 100644 index 0000000..2c6efb5 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_variable_suffix_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var : diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_empty.sh b/tests/results/test_namespace_read_write_secrets/60_0family_empty.sh new file mode 100644 index 0000000..2fc78e0 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_0family_empty.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_hidden.sh b/tests/results/test_namespace_read_write_secrets/60_0family_hidden.sh new file mode 100644 index 0000000..767078c --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_0family_hidden.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_mode.sh b/tests/results/test_namespace_read_write_secrets/60_0family_mode.sh new file mode 100644 index 0000000..ee913c7 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_0family_mode.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 family +  ┗━━ 📓 var: non diff --git a/tests/results/test_namespace_read_write_secrets/60_1family_dynamic_jinja.sh b/tests/results/test_namespace_read_write_secrets/60_1family_dynamic_jinja.sh new file mode 100644 index 0000000..7c79f11 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_1family_dynamic_jinja.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dyn1 + ┃ ┗━━ 📓 var: val + ┗━━ 📂 dyn2 +  ┗━━ 📓 var: val diff --git a/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group.sh b/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group.sh new file mode 100644 index 0000000..4918f39 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📂 family + ┃  ┗━━ 📓 var: null + ┣━━ 📂 dynval2 + ┃ ┗━━ 📂 family + ┃  ┗━━ 📓 var: null + ┗━━ 📓 var2: null diff --git a/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_2.sh b/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_2.sh new file mode 100644 index 0000000..e3e359c --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_2.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📂 family + ┃  ┗━━ 📓 var: val1 + ┣━━ 📂 dynval2 + ┃ ┗━━ 📂 family + ┃  ┗━━ 📓 var: val2 + ┗━━ 📓 var2: val1 diff --git a/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh b/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh new file mode 100644 index 0000000..ffcaf11 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┗━━ 📓 var2: null diff --git a/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.sh b/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.sh new file mode 100644 index 0000000..725e9ea --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┗━━ 📓 var2: null diff --git a/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_outside_calc.sh b/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_outside_calc.sh new file mode 100644 index 0000000..59d56c8 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_outside_calc.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: val + ┣━━ 📂 dynval2 + ┃ ┗━━ 📓 var: val + ┗━━ 📓 newvar: val diff --git a/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_outside_calc_empty.sh b/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_outside_calc_empty.sh new file mode 100644 index 0000000..88b28cd --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_outside_calc_empty.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┗━━ 📓 newvar: null diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc2.sh b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc2.sh new file mode 100644 index 0000000..0d32c80 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc2.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📓 var2: null + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 vardyn: val + ┗━━ 📂 dynval2 +  ┗━━ 📓 vardyn: val diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc2_empty.sh b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc2_empty.sh new file mode 100644 index 0000000..ffcaf11 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc2_empty.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┗━━ 📓 var2: null diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix.sh b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix.sh new file mode 100644 index 0000000..dd73cbf --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: null + ┣━━ 📂 dynval2 + ┃ ┗━━ 📓 var: null + ┗━━ 📓 var2: null diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix2.sh b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix2.sh new file mode 100644 index 0000000..5f1bdb4 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix2.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: val1 + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: val2 diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix2_empty.sh b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix2_empty.sh new file mode 100644 index 0000000..2c6efb5 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix2_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var : diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_disabled.sh b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_disabled.sh new file mode 100644 index 0000000..45f0c57 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_disabled.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📂 dynval1 + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: null diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_empty.sh b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_empty.sh new file mode 100644 index 0000000..725e9ea --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_empty.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┗━━ 📓 var2: null diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_param.sh b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_param.sh new file mode 100644 index 0000000..5f1bdb4 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_param.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: val1 + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: val2 diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_param_empty.sh b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_param_empty.sh new file mode 100644 index 0000000..2c6efb5 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_param_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var : diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_variable.sh b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_variable.sh new file mode 100644 index 0000000..dd73cbf --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_variable.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: null + ┣━━ 📂 dynval2 + ┃ ┗━━ 📓 var: null + ┗━━ 📓 var2: null diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_variable_empty.sh b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_variable_empty.sh new file mode 100644 index 0000000..725e9ea --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_variable_empty.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┗━━ 📓 var2: null diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_hidden_suffix.sh b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_hidden_suffix.sh new file mode 100644 index 0000000..3c9e0cf --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_hidden_suffix.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 dynval1 +  ┣━━ 📓 var: null +  ┗━━ 📂 family +   ┗━━ 📓 var: null diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_unknown_suffix.sh b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_unknown_suffix.sh new file mode 100644 index 0000000..471fc4b --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_unknown_suffix.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 val1_dyn + ┃ ┣━━ 📓 var1: val1 + ┃ ┣━━ 📓 var2: val1 + ┃ ┗━━ 📓 var3: val1 + ┗━━ 📂 val2_dyn +  ┣━━ 📓 var1: val2 +  ┣━━ 📓 var2: val2 +  ┗━━ 📓 var3: val2 diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_unknown_suffix_empty.sh b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_unknown_suffix_empty.sh new file mode 100644 index 0000000..2c6efb5 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_unknown_suffix_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var : diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside.sh b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside.sh new file mode 100644 index 0000000..af6cec2 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 my_dyn_family_val1 + ┃ ┗━━ 📓 var: val1 + ┣━━ 📂 my_dyn_family_val2 + ┃ ┗━━ 📓 var: val2 + ┗━━ 📓 var2 : +  ┣━━ val1 +  ┗━━ val2 diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside2.sh b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside2.sh new file mode 100644 index 0000000..4d72d86 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside2.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var2 : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 my_dyn_family_val1 + ┃ ┗━━ 📓 var: val1 + ┗━━ 📂 my_dyn_family_val2 +  ┗━━ 📓 var: val2 diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside2_empty.sh b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside2_empty.sh new file mode 100644 index 0000000..d3a18ae --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside2_empty.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var2 : + ┗━━ 📓 var : diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_empty.sh b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_empty.sh new file mode 100644 index 0000000..b1ddd66 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_empty.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┗━━ 📓 var2 : diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_jinja.sh b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_jinja.sh new file mode 100644 index 0000000..af6cec2 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_jinja.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 my_dyn_family_val1 + ┃ ┗━━ 📓 var: val1 + ┣━━ 📂 my_dyn_family_val2 + ┃ ┗━━ 📓 var: val2 + ┗━━ 📓 var2 : +  ┣━━ val1 +  ┗━━ val2 diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_jinja_empty.sh b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_jinja_empty.sh new file mode 100644 index 0000000..b1ddd66 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_jinja_empty.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┗━━ 📓 var2 : diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_sub_suffix.sh b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_sub_suffix.sh new file mode 100644 index 0000000..bf2a9b6 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_sub_suffix.sh @@ -0,0 +1,23 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 my_dyn_family_val1 + ┃ ┣━━ 📂 subdyn_val1 + ┃ ┃ ┗━━ 📓 var: val1 + ┃ ┗━━ 📂 subdyn_val2 + ┃  ┗━━ 📓 var: val2 + ┣━━ 📂 my_dyn_family_val2 + ┃ ┣━━ 📂 subdyn_val1 + ┃ ┃ ┗━━ 📓 var: val1 + ┃ ┗━━ 📂 subdyn_val2 + ┃  ┗━━ 📓 var: val2 + ┗━━ 📓 var2 : +  ┣━━ val1 +  ┗━━ val2 diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_sub_suffix_empty.sh b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_sub_suffix_empty.sh new file mode 100644 index 0000000..b1ddd66 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_sub_suffix_empty.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┗━━ 📓 var2 : diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_suffix.sh b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_suffix.sh new file mode 100644 index 0000000..c5970b6 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_suffix.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dyn_val1 + ┃ ┗━━ 📓 var: val1 + ┣━━ 📂 dyn_val2 + ┃ ┗━━ 📓 var: val2 + ┗━━ 📓 var2: val1 diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_suffix_empty.sh b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_suffix_empty.sh new file mode 100644 index 0000000..ffcaf11 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_suffix_empty.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┗━━ 📓 var2: null diff --git a/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_inside.sh b/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_inside.sh new file mode 100644 index 0000000..4e8ca65 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_inside.sh @@ -0,0 +1,20 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 val1_dyn + ┃ ┣━━ 📓 var1: val1 + ┃ ┣━━ 📓 var2: val1 + ┃ ┣━━ 📓 var3: val1 + ┃ ┗━━ 📓 var4: val1 + ┗━━ 📂 val2_dyn +  ┣━━ 📓 var1: val2 +  ┣━━ 📓 var2: val2 +  ┣━━ 📓 var3: val2 +  ┗━━ 📓 var4: val1 diff --git a/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_inside_empty.sh b/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_inside_empty.sh new file mode 100644 index 0000000..2c6efb5 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_inside_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var : diff --git a/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_leadership.sh b/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_leadership.sh new file mode 100644 index 0000000..456cf1c --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_leadership.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📂 leadership + ┗━━ 📂 dynval2 +  ┗━━ 📂 leadership diff --git a/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_leadership_empty.sh b/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_leadership_empty.sh new file mode 100644 index 0000000..2c6efb5 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_leadership_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var : diff --git a/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_sub_dynamic.sh b/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_sub_dynamic.sh new file mode 100644 index 0000000..ed294db --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_sub_dynamic.sh @@ -0,0 +1,34 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┣━━ 📓 var : + ┃ ┃ ┣━━ tval1 + ┃ ┃ ┗━━ tval2 + ┃ ┣━━ 📂 dyn_tval1 + ┃ ┃ ┣━━ 📓 var: tval1 + ┃ ┃ ┣━━ 📓 var_identifier: val1 + ┃ ┃ ┗━━ 📓 var_identifiers: val1-tval1 + ┃ ┗━━ 📂 dyn_tval2 + ┃  ┣━━ 📓 var: tval2 + ┃  ┣━━ 📓 var_identifier: val1 + ┃  ┗━━ 📓 var_identifiers: val1-tval2 + ┗━━ 📂 dynval2 +  ┣━━ 📓 var : +  ┃ ┣━━ tval1 +  ┃ ┗━━ tval2 +  ┣━━ 📂 dyn_tval1 +  ┃ ┣━━ 📓 var: tval1 +  ┃ ┣━━ 📓 var_identifier: val2 +  ┃ ┗━━ 📓 var_identifiers: val2-tval1 +  ┗━━ 📂 dyn_tval2 +   ┣━━ 📓 var: tval2 +   ┣━━ 📓 var_identifier: val2 +   ┗━━ 📓 var_identifiers: val2-tval2 diff --git a/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_sub_dynamic_1_0.sh b/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_sub_dynamic_1_0.sh new file mode 100644 index 0000000..ed294db --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_sub_dynamic_1_0.sh @@ -0,0 +1,34 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┣━━ 📓 var : + ┃ ┃ ┣━━ tval1 + ┃ ┃ ┗━━ tval2 + ┃ ┣━━ 📂 dyn_tval1 + ┃ ┃ ┣━━ 📓 var: tval1 + ┃ ┃ ┣━━ 📓 var_identifier: val1 + ┃ ┃ ┗━━ 📓 var_identifiers: val1-tval1 + ┃ ┗━━ 📂 dyn_tval2 + ┃  ┣━━ 📓 var: tval2 + ┃  ┣━━ 📓 var_identifier: val1 + ┃  ┗━━ 📓 var_identifiers: val1-tval2 + ┗━━ 📂 dynval2 +  ┣━━ 📓 var : +  ┃ ┣━━ tval1 +  ┃ ┗━━ tval2 +  ┣━━ 📂 dyn_tval1 +  ┃ ┣━━ 📓 var: tval1 +  ┃ ┣━━ 📓 var_identifier: val2 +  ┃ ┗━━ 📓 var_identifiers: val2-tval1 +  ┗━━ 📂 dyn_tval2 +   ┣━━ 📓 var: tval2 +   ┣━━ 📓 var_identifier: val2 +   ┗━━ 📓 var_identifiers: val2-tval2 diff --git a/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_sub_dynamic_empty.sh b/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_sub_dynamic_empty.sh new file mode 100644 index 0000000..2c6efb5 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_sub_dynamic_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var : diff --git a/tests/results/test_namespace_read_write_secrets/60_9extra_dynamic.sh b/tests/results/test_namespace_read_write_secrets/60_9extra_dynamic.sh new file mode 100644 index 0000000..0465140 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_9extra_dynamic.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📂 rougail +┃ ┗━━ 📓 var : +┃  ┗━━ a +┗━━ 📂 extra + ┗━━ 📂 dyn_a +  ┗━━ 📓 var: null diff --git a/tests/results/test_namespace_read_write_secrets/60_9extra_dynamic_extra.sh b/tests/results/test_namespace_read_write_secrets/60_9extra_dynamic_extra.sh new file mode 100644 index 0000000..f005b9f --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_9extra_dynamic_extra.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📂 rougail +┃ ┗━━ 📂 general +┃  ┗━━ 📓 varname : +┃   ┗━━ a +┗━━ 📂 extra + ┣━━ 📓 var : + ┃ ┗━━ a + ┗━━ 📂 dyn_a +  ┗━━ 📓 var: null diff --git a/tests/results/test_namespace_read_write_secrets/60_9family_dynamic_calc_both.sh b/tests/results/test_namespace_read_write_secrets/60_9family_dynamic_calc_both.sh new file mode 100644 index 0000000..57ead28 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_9family_dynamic_calc_both.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var: val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 vardyn: null + ┗━━ 📂 dynval2 +  ┗━━ 📓 vardyn: null diff --git a/tests/results/test_namespace_read_write_secrets/68_0family_leadership_mode.sh b/tests/results/test_namespace_read_write_secrets/68_0family_leadership_mode.sh new file mode 100644 index 0000000..409a85b --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/68_0family_leadership_mode.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader diff --git a/tests/results/test_namespace_secrets/00_0empty.sh b/tests/results/test_namespace_secrets/00_0empty.sh new file mode 100644 index 0000000..d2701ec --- /dev/null +++ b/tests/results/test_namespace_secrets/00_0empty.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_namespace_secrets/00_0version_underscore.sh b/tests/results/test_namespace_secrets/00_0version_underscore.sh new file mode 100644 index 0000000..27c2258 --- /dev/null +++ b/tests/results/test_namespace_secrets/00_0version_underscore.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 version: string1 diff --git a/tests/results/test_namespace_secrets/00_1empty_variable.sh b/tests/results/test_namespace_secrets/00_1empty_variable.sh new file mode 100644 index 0000000..9413de7 --- /dev/null +++ b/tests/results/test_namespace_secrets/00_1empty_variable.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 empty: string1 diff --git a/tests/results/test_namespace_secrets/00_2default_calculated.sh b/tests/results/test_namespace_secrets/00_2default_calculated.sh new file mode 100644 index 0000000..a835e23 --- /dev/null +++ b/tests/results/test_namespace_secrets/00_2default_calculated.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: string1 (no) + ┗━━ 📓 var2 : +  ┣━━ string1 (string1) +  ┣━━ string2 +  ┗━━ string3 diff --git a/tests/results/test_namespace_secrets/00_2default_calculated_multi.sh b/tests/results/test_namespace_secrets/00_2default_calculated_multi.sh new file mode 100644 index 0000000..9411e95 --- /dev/null +++ b/tests/results/test_namespace_secrets/00_2default_calculated_multi.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ string1 (no) + ┃ ┣━━ string2 (yes) + ┃ ┗━━ string3 (maybe) + ┗━━ 📓 var2 : +  ┣━━ string1 (string1) +  ┣━━ string2 (string2) +  ┗━━ string3 (string3) diff --git a/tests/results/test_namespace_secrets/00_2default_calculated_variable_transitive.sh b/tests/results/test_namespace_secrets/00_2default_calculated_variable_transitive.sh new file mode 100644 index 0000000..2be0a76 --- /dev/null +++ b/tests/results/test_namespace_secrets/00_2default_calculated_variable_transitive.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ domain1.lan + ┃ ┗━━ domain2.lan + ┗━━ 📓 var2 : +  ┣━━ domain1.lan (domain1.lan) +  ┗━━ domain2.lan (domain2.lan) diff --git a/tests/results/test_namespace_secrets/00_4load_subfolder.sh b/tests/results/test_namespace_secrets/00_4load_subfolder.sh new file mode 100644 index 0000000..874cc7e --- /dev/null +++ b/tests/results/test_namespace_secrets/00_4load_subfolder.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: string1 + ┗━━ 📓 var2: string1 diff --git a/tests/results/test_namespace_secrets/00_5load_notype.sh b/tests/results/test_namespace_secrets/00_5load_notype.sh new file mode 100644 index 0000000..03776cc --- /dev/null +++ b/tests/results/test_namespace_secrets/00_5load_notype.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 without_type: string1 (non) diff --git a/tests/results/test_namespace_secrets/00_6boolean.sh b/tests/results/test_namespace_secrets/00_6boolean.sh new file mode 100644 index 0000000..7bc694e --- /dev/null +++ b/tests/results/test_namespace_secrets/00_6boolean.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: true (true) + ┣━━ 📓 var2: true (true) + ┣━━ 📓 var3: true (true) + ┣━━ 📓 var4: true (false) + ┣━━ 📓 var5: true (false) + ┗━━ 📓 var6: true (false) diff --git a/tests/results/test_namespace_secrets/00_6boolean_no_mandatory.sh b/tests/results/test_namespace_secrets/00_6boolean_no_mandatory.sh new file mode 100644 index 0000000..311b7c7 --- /dev/null +++ b/tests/results/test_namespace_secrets/00_6boolean_no_mandatory.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: true (true) diff --git a/tests/results/test_namespace_secrets/00_6choice.sh b/tests/results/test_namespace_secrets/00_6choice.sh new file mode 100644 index 0000000..e96af4d --- /dev/null +++ b/tests/results/test_namespace_secrets/00_6choice.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: a + ┣━━ 📓 var2: a + ┣━━ 📓 var3: a + ┣━━ 📓 var4: null + ┣━━ 📓 var5: a (a) + ┗━━ 📓 var6: 1 (1) diff --git a/tests/results/test_namespace_secrets/00_6choice_calculation.sh b/tests/results/test_namespace_secrets/00_6choice_calculation.sh new file mode 100644 index 0000000..438fae7 --- /dev/null +++ b/tests/results/test_namespace_secrets/00_6choice_calculation.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: 0 (9) diff --git a/tests/results/test_namespace_secrets/00_6choice_variable.sh b/tests/results/test_namespace_secrets/00_6choice_variable.sh new file mode 100644 index 0000000..95f675c --- /dev/null +++ b/tests/results/test_namespace_secrets/00_6choice_variable.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ string1 (a) + ┃ ┣━━ string2 (b) + ┃ ┗━━ string3 (c) + ┗━━ 📓 var2: string1 (a) diff --git a/tests/results/test_namespace_secrets/00_6custom.sh b/tests/results/test_namespace_secrets/00_6custom.sh new file mode 100644 index 0000000..6bd301f --- /dev/null +++ b/tests/results/test_namespace_secrets/00_6custom.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 custom1: string1 + ┗━━ 📓 custom2: string1 (value) diff --git a/tests/results/test_namespace_secrets/00_6domainname.sh b/tests/results/test_namespace_secrets/00_6domainname.sh new file mode 100644 index 0000000..c39818d --- /dev/null +++ b/tests/results/test_namespace_secrets/00_6domainname.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: domain1.lan (my.domain.name) diff --git a/tests/results/test_namespace_secrets/00_6domainname_params.sh b/tests/results/test_namespace_secrets/00_6domainname_params.sh new file mode 100644 index 0000000..c39818d --- /dev/null +++ b/tests/results/test_namespace_secrets/00_6domainname_params.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: domain1.lan (my.domain.name) diff --git a/tests/results/test_namespace_secrets/00_6float.sh b/tests/results/test_namespace_secrets/00_6float.sh new file mode 100644 index 0000000..2a6b33c --- /dev/null +++ b/tests/results/test_namespace_secrets/00_6float.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: 1.1 (0.0) + ┣━━ 📓 var2: 1.1 (0.0) + ┣━━ 📓 var3: 1.1 (0.0) + ┣━━ 📓 var4: 1.1 (10.1) + ┣━━ 📓 var5: 1.1 (10.1) + ┗━━ 📓 var6: 1.1 (10.1) diff --git a/tests/results/test_namespace_secrets/00_6number.sh b/tests/results/test_namespace_secrets/00_6number.sh new file mode 100644 index 0000000..775f0a2 --- /dev/null +++ b/tests/results/test_namespace_secrets/00_6number.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: 1 (0) + ┣━━ 📓 var2: 1 (0) + ┣━━ 📓 var3: 1 (0) + ┣━━ 📓 var4: 1 (10) + ┣━━ 📓 var5: 1 (10) + ┗━━ 📓 var6: 1 (10) diff --git a/tests/results/test_namespace_secrets/00_6port.sh b/tests/results/test_namespace_secrets/00_6port.sh new file mode 100644 index 0000000..2db48f1 --- /dev/null +++ b/tests/results/test_namespace_secrets/00_6port.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 variable1: 80 + ┣━━ 📓 variable2: 80 (8080) + ┗━━ 📓 variable3: 80 (8080) diff --git a/tests/results/test_namespace_secrets/00_6regexp.sh b/tests/results/test_namespace_secrets/00_6regexp.sh new file mode 100644 index 0000000..825fb2e --- /dev/null +++ b/tests/results/test_namespace_secrets/00_6regexp.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: #b1b1b1 (#a1a1a1) diff --git a/tests/results/test_namespace_secrets/00_6string.sh b/tests/results/test_namespace_secrets/00_6string.sh new file mode 100644 index 0000000..9ee9b1f --- /dev/null +++ b/tests/results/test_namespace_secrets/00_6string.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: string1 + ┣━━ 📓 var2: string1 + ┣━━ 📓 var3: string1 + ┣━━ 📓 var4: string1 (value) + ┣━━ 📓 var5: string1 (value) + ┗━━ 📓 var6: string1 (value) diff --git a/tests/results/test_namespace_secrets/00_7choice_quote.sh b/tests/results/test_namespace_secrets/00_7choice_quote.sh new file mode 100644 index 0000000..9622afb --- /dev/null +++ b/tests/results/test_namespace_secrets/00_7choice_quote.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: quote' (quote') diff --git a/tests/results/test_namespace_secrets/00_7help_quote.sh b/tests/results/test_namespace_secrets/00_7help_quote.sh new file mode 100644 index 0000000..874cc7e --- /dev/null +++ b/tests/results/test_namespace_secrets/00_7help_quote.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: string1 + ┗━━ 📓 var2: string1 diff --git a/tests/results/test_namespace_secrets/00_7value_doublequote.sh b/tests/results/test_namespace_secrets/00_7value_doublequote.sh new file mode 100644 index 0000000..e8ec0b1 --- /dev/null +++ b/tests/results/test_namespace_secrets/00_7value_doublequote.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: string1 (quote") diff --git a/tests/results/test_namespace_secrets/00_7value_doublequote2.sh b/tests/results/test_namespace_secrets/00_7value_doublequote2.sh new file mode 100644 index 0000000..51ba23a --- /dev/null +++ b/tests/results/test_namespace_secrets/00_7value_doublequote2.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: string1 (quote'") diff --git a/tests/results/test_namespace_secrets/00_7value_doublequote3.sh b/tests/results/test_namespace_secrets/00_7value_doublequote3.sh new file mode 100644 index 0000000..666a92a --- /dev/null +++ b/tests/results/test_namespace_secrets/00_7value_doublequote3.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: string1 (quote\"\') diff --git a/tests/results/test_namespace_secrets/00_7value_quote.sh b/tests/results/test_namespace_secrets/00_7value_quote.sh new file mode 100644 index 0000000..cda367b --- /dev/null +++ b/tests/results/test_namespace_secrets/00_7value_quote.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: string1 (quote') diff --git a/tests/results/test_namespace_secrets/00_8calculation_information.sh b/tests/results/test_namespace_secrets/00_8calculation_information.sh new file mode 100644 index 0000000..c0e9411 --- /dev/null +++ b/tests/results/test_namespace_secrets/00_8calculation_information.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: string1 diff --git a/tests/results/test_namespace_secrets/00_8test.sh b/tests/results/test_namespace_secrets/00_8test.sh new file mode 100644 index 0000000..0b2e0e4 --- /dev/null +++ b/tests/results/test_namespace_secrets/00_8test.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: test + ┣━━ 📓 var2: test (value) + ┣━━ 📓 var3: test1 + ┣━━ 📓 var4: null + ┣━━ 📓 var5: false (true) + ┗━━ 📓 var6 : +  ┣━━ test1 +  ┗━━ test2 diff --git a/tests/results/test_namespace_secrets/00_9choice_variable_multi.sh b/tests/results/test_namespace_secrets/00_9choice_variable_multi.sh new file mode 100644 index 0000000..1aeea67 --- /dev/null +++ b/tests/results/test_namespace_secrets/00_9choice_variable_multi.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 variable1 : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┗━━ 📓 variable2 : +  ┣━━ val1 +  ┗━━ val2 diff --git a/tests/results/test_namespace_secrets/00_9choice_variables.sh b/tests/results/test_namespace_secrets/00_9choice_variables.sh new file mode 100644 index 0000000..c0dec63 --- /dev/null +++ b/tests/results/test_namespace_secrets/00_9choice_variables.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 source_variable_1: string1 (val1) + ┣━━ 📓 source_variable_2: string1 (val2) + ┗━━ 📓 my_variable: string1 (val1) diff --git a/tests/results/test_namespace_secrets/00_9default_calculation.sh b/tests/results/test_namespace_secrets/00_9default_calculation.sh new file mode 100644 index 0000000..973d755 --- /dev/null +++ b/tests/results/test_namespace_secrets/00_9default_calculation.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: string1 (string_1_True_None) diff --git a/tests/results/test_namespace_secrets/00_9default_calculation_information.sh b/tests/results/test_namespace_secrets/00_9default_calculation_information.sh new file mode 100644 index 0000000..4518adc --- /dev/null +++ b/tests/results/test_namespace_secrets/00_9default_calculation_information.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: string1 diff --git a/tests/results/test_namespace_secrets/00_9default_calculation_information_other_variable.sh b/tests/results/test_namespace_secrets/00_9default_calculation_information_other_variable.sh new file mode 100644 index 0000000..874cc7e --- /dev/null +++ b/tests/results/test_namespace_secrets/00_9default_calculation_information_other_variable.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: string1 + ┗━━ 📓 var2: string1 diff --git a/tests/results/test_namespace_secrets/00_9default_calculation_multi_optional.sh b/tests/results/test_namespace_secrets/00_9default_calculation_multi_optional.sh new file mode 100644 index 0000000..7056ce5 --- /dev/null +++ b/tests/results/test_namespace_secrets/00_9default_calculation_multi_optional.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 my_variable: string1 (val1) + ┗━━ 📓 my_calculated_variable : +  ┣━━ string1 (string1) +  ┣━━ string2 +  ┗━━ string3 diff --git a/tests/results/test_namespace_secrets/00_9default_calculation_multi_optional2.sh b/tests/results/test_namespace_secrets/00_9default_calculation_multi_optional2.sh new file mode 100644 index 0000000..7056ce5 --- /dev/null +++ b/tests/results/test_namespace_secrets/00_9default_calculation_multi_optional2.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 my_variable: string1 (val1) + ┗━━ 📓 my_calculated_variable : +  ┣━━ string1 (string1) +  ┣━━ string2 +  ┗━━ string3 diff --git a/tests/results/test_namespace_secrets/00_9default_calculation_optional.sh b/tests/results/test_namespace_secrets/00_9default_calculation_optional.sh new file mode 100644 index 0000000..98cdfd1 --- /dev/null +++ b/tests/results/test_namespace_secrets/00_9default_calculation_optional.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 my_calculated_variable : +  ┣━━ string1 +  ┣━━ string2 +  ┗━━ string3 diff --git a/tests/results/test_namespace_secrets/00_9default_calculation_optional_exists.sh b/tests/results/test_namespace_secrets/00_9default_calculation_optional_exists.sh new file mode 100644 index 0000000..194c5b0 --- /dev/null +++ b/tests/results/test_namespace_secrets/00_9default_calculation_optional_exists.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 my_variable : + ┃ ┣━━ string1 (val1) + ┃ ┣━━ string2 (val2) + ┃ ┗━━ string3 + ┗━━ 📓 my_calculated_variable : +  ┣━━ string1 (string1) +  ┣━━ string2 (string2) +  ┗━━ string3 (string3) diff --git a/tests/results/test_namespace_secrets/00_9default_calculation_param_optional.sh b/tests/results/test_namespace_secrets/00_9default_calculation_param_optional.sh new file mode 100644 index 0000000..7f477e8 --- /dev/null +++ b/tests/results/test_namespace_secrets/00_9default_calculation_param_optional.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: string1 (string1) + ┗━━ 📓 var2: string1 (no) diff --git a/tests/results/test_namespace_secrets/00_9default_information_other_variable.sh b/tests/results/test_namespace_secrets/00_9default_information_other_variable.sh new file mode 100644 index 0000000..874cc7e --- /dev/null +++ b/tests/results/test_namespace_secrets/00_9default_information_other_variable.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: string1 + ┗━━ 📓 var2: string1 diff --git a/tests/results/test_namespace_secrets/00_9default_integer.sh b/tests/results/test_namespace_secrets/00_9default_integer.sh new file mode 100644 index 0000000..438fae7 --- /dev/null +++ b/tests/results/test_namespace_secrets/00_9default_integer.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: 0 (9) diff --git a/tests/results/test_namespace_secrets/00_9extra.sh b/tests/results/test_namespace_secrets/00_9extra.sh new file mode 100644 index 0000000..8844492 --- /dev/null +++ b/tests/results/test_namespace_secrets/00_9extra.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📂 rougail +┃ ┗━━ 📓 variable: string1 (rougail) +┗━━ 📂 extra + ┗━━ 📓 variable: string1 (no) diff --git a/tests/results/test_namespace_secrets/00_9extra_calculation.sh b/tests/results/test_namespace_secrets/00_9extra_calculation.sh new file mode 100644 index 0000000..da8b9d7 --- /dev/null +++ b/tests/results/test_namespace_secrets/00_9extra_calculation.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📂 rougail +┃ ┗━━ 📓 variable: string1 (value) +┗━━ 📂 extra + ┣━━ 📓 variable1: string1 (string1) + ┣━━ 📓 variable2: string1 (string1) + ┗━━ 📓 variable3: string1 (string1) diff --git a/tests/results/test_namespace_secrets/01_6boolean_multi.sh b/tests/results/test_namespace_secrets/01_6boolean_multi.sh new file mode 100644 index 0000000..2f5ec95 --- /dev/null +++ b/tests/results/test_namespace_secrets/01_6boolean_multi.sh @@ -0,0 +1,24 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┗━━ true (true) + ┣━━ 📓 var2 : + ┃ ┗━━ true (true) + ┣━━ 📓 var3 : + ┃ ┗━━ true (true) + ┣━━ 📓 var4 : + ┃ ┗━━ true (false) + ┣━━ 📓 var5 : + ┃ ┗━━ true (false) + ┣━━ 📓 var6 : + ┃ ┗━━ true (false) + ┣━━ 📓 var7 : + ┃ ┗━━ true (true) + ┗━━ 📓 var8 : +  ┗━━ true (true) diff --git a/tests/results/test_namespace_secrets/01_6custom_multi.sh b/tests/results/test_namespace_secrets/01_6custom_multi.sh new file mode 100644 index 0000000..46e7304 --- /dev/null +++ b/tests/results/test_namespace_secrets/01_6custom_multi.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 custom1 : + ┃ ┣━━ string1 + ┃ ┣━━ string2 + ┃ ┗━━ string3 + ┗━━ 📓 custom2 : +  ┣━━ string1 (value) +  ┣━━ string2 +  ┗━━ string3 diff --git a/tests/results/test_namespace_secrets/01_6float_multi.sh b/tests/results/test_namespace_secrets/01_6float_multi.sh new file mode 100644 index 0000000..688b474 --- /dev/null +++ b/tests/results/test_namespace_secrets/01_6float_multi.sh @@ -0,0 +1,40 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ 1.1 (0.0) + ┃ ┣━━ 2.2 + ┃ ┗━━ 3.3 + ┣━━ 📓 var2 : + ┃ ┣━━ 1.1 (0.0) + ┃ ┣━━ 2.2 + ┃ ┗━━ 3.3 + ┣━━ 📓 var3 : + ┃ ┣━━ 1.1 (0.0) + ┃ ┣━━ 2.2 + ┃ ┗━━ 3.3 + ┣━━ 📓 var4 : + ┃ ┣━━ 1.1 (10.1) + ┃ ┣━━ 2.2 + ┃ ┗━━ 3.3 + ┣━━ 📓 var5 : + ┃ ┣━━ 1.1 (10.1) + ┃ ┣━━ 2.2 + ┃ ┗━━ 3.3 + ┣━━ 📓 var6 : + ┃ ┣━━ 1.1 (10.1) + ┃ ┣━━ 2.2 + ┃ ┗━━ 3.3 + ┣━━ 📓 var7 : + ┃ ┣━━ 1.1 (0.0) + ┃ ┣━━ 2.2 + ┃ ┗━━ 3.3 + ┗━━ 📓 var8 : +  ┣━━ 1.1 (0.0) +  ┣━━ 2.2 +  ┗━━ 3.3 diff --git a/tests/results/test_namespace_secrets/01_6number_multi.sh b/tests/results/test_namespace_secrets/01_6number_multi.sh new file mode 100644 index 0000000..2b421cd --- /dev/null +++ b/tests/results/test_namespace_secrets/01_6number_multi.sh @@ -0,0 +1,40 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ 1 (0) + ┃ ┣━━ 2 + ┃ ┗━━ 3 + ┣━━ 📓 var2 : + ┃ ┣━━ 1 (0) + ┃ ┣━━ 2 + ┃ ┗━━ 3 + ┣━━ 📓 var3 : + ┃ ┣━━ 1 (0) + ┃ ┣━━ 2 + ┃ ┗━━ 3 + ┣━━ 📓 var4 : + ┃ ┣━━ 1 (10) + ┃ ┣━━ 2 + ┃ ┗━━ 3 + ┣━━ 📓 var5 : + ┃ ┣━━ 1 (10) + ┃ ┣━━ 2 + ┃ ┗━━ 3 + ┣━━ 📓 var6 : + ┃ ┣━━ 1 (10) + ┃ ┣━━ 2 + ┃ ┗━━ 3 + ┣━━ 📓 var7 : + ┃ ┣━━ 1 (0) + ┃ ┣━━ 2 + ┃ ┗━━ 3 + ┗━━ 📓 var8 : +  ┣━━ 1 (0) +  ┣━━ 2 +  ┗━━ 3 diff --git a/tests/results/test_namespace_secrets/01_6string_empty.sh b/tests/results/test_namespace_secrets/01_6string_empty.sh new file mode 100644 index 0000000..48f1f2a --- /dev/null +++ b/tests/results/test_namespace_secrets/01_6string_empty.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var1 : +  ┣━━ string1 (value) +  ┣━━ string2 +  ┗━━ string3 diff --git a/tests/results/test_namespace_secrets/01_6string_multi.sh b/tests/results/test_namespace_secrets/01_6string_multi.sh new file mode 100644 index 0000000..064cdbe --- /dev/null +++ b/tests/results/test_namespace_secrets/01_6string_multi.sh @@ -0,0 +1,37 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ string1 + ┃ ┣━━ string2 + ┃ ┗━━ string3 + ┣━━ 📓 var2 : + ┃ ┣━━ string1 + ┃ ┣━━ string2 + ┃ ┗━━ string3 + ┣━━ 📓 var3: string1 + ┣━━ 📓 var4 : + ┃ ┣━━ string1 (value) + ┃ ┣━━ string2 + ┃ ┗━━ string3 + ┣━━ 📓 var5 : + ┃ ┣━━ string1 (value) + ┃ ┣━━ string2 + ┃ ┗━━ string3 + ┣━━ 📓 var6 : + ┃ ┣━━ string1 (value) + ┃ ┣━━ string2 + ┃ ┗━━ string3 + ┣━━ 📓 var7 : + ┃ ┣━━ string1 (value) + ┃ ┣━━ string2 + ┃ ┗━━ string3 + ┗━━ 📓 var8 : +  ┣━━ string1 (value) +  ┣━━ string2 +  ┗━━ string3 diff --git a/tests/results/test_namespace_secrets/01_7value_multi_doublequote.sh b/tests/results/test_namespace_secrets/01_7value_multi_doublequote.sh new file mode 100644 index 0000000..8c79959 --- /dev/null +++ b/tests/results/test_namespace_secrets/01_7value_multi_doublequote.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable : +  ┣━━ string1 (quote") +  ┣━━ string2 +  ┗━━ string3 diff --git a/tests/results/test_namespace_secrets/01_7value_multi_doublequote2.sh b/tests/results/test_namespace_secrets/01_7value_multi_doublequote2.sh new file mode 100644 index 0000000..25389f2 --- /dev/null +++ b/tests/results/test_namespace_secrets/01_7value_multi_doublequote2.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable : +  ┣━━ string1 (quote'") +  ┣━━ string2 +  ┗━━ string3 diff --git a/tests/results/test_namespace_secrets/01_7value_multi_quote.sh b/tests/results/test_namespace_secrets/01_7value_multi_quote.sh new file mode 100644 index 0000000..b98585c --- /dev/null +++ b/tests/results/test_namespace_secrets/01_7value_multi_quote.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable : +  ┣━━ string1 (quote') +  ┣━━ string2 +  ┗━━ string3 diff --git a/tests/results/test_namespace_secrets/01_8calculation_information_multi.sh b/tests/results/test_namespace_secrets/01_8calculation_information_multi.sh new file mode 100644 index 0000000..211be5b --- /dev/null +++ b/tests/results/test_namespace_secrets/01_8calculation_information_multi.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable : +  ┣━━ string1 +  ┣━━ string2 +  ┗━━ string3 diff --git a/tests/results/test_namespace_secrets/01_9choice_variable_multi.sh b/tests/results/test_namespace_secrets/01_9choice_variable_multi.sh new file mode 100644 index 0000000..db4ad7f --- /dev/null +++ b/tests/results/test_namespace_secrets/01_9choice_variable_multi.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 variable1 : + ┃ ┣━━ string1 (a) + ┃ ┣━━ string2 (b) + ┃ ┗━━ string3 (c) + ┗━━ 📓 variable2: string1 diff --git a/tests/results/test_namespace_secrets/04_0type_param.sh b/tests/results/test_namespace_secrets/04_0type_param.sh new file mode 100644 index 0000000..db96d2f --- /dev/null +++ b/tests/results/test_namespace_secrets/04_0type_param.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 int: 1 (10) diff --git a/tests/results/test_namespace_secrets/04_1auto_save.sh b/tests/results/test_namespace_secrets/04_1auto_save.sh new file mode 100644 index 0000000..ebc4b68 --- /dev/null +++ b/tests/results/test_namespace_secrets/04_1auto_save.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: no diff --git a/tests/results/test_namespace_secrets/04_1auto_save_and_calculated.sh b/tests/results/test_namespace_secrets/04_1auto_save_and_calculated.sh new file mode 100644 index 0000000..38212dd --- /dev/null +++ b/tests/results/test_namespace_secrets/04_1auto_save_and_calculated.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: string1 (no) + ┗━━ 📓 var2: no diff --git a/tests/results/test_namespace_secrets/04_1auto_save_and_calculated_hidden.sh b/tests/results/test_namespace_secrets/04_1auto_save_and_calculated_hidden.sh new file mode 100644 index 0000000..3b45977 --- /dev/null +++ b/tests/results/test_namespace_secrets/04_1auto_save_and_calculated_hidden.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: string1 (no) + ┗━━ 📓 var2: yes diff --git a/tests/results/test_namespace_secrets/04_1auto_save_and_hidden.sh b/tests/results/test_namespace_secrets/04_1auto_save_and_hidden.sh new file mode 100644 index 0000000..bb536aa --- /dev/null +++ b/tests/results/test_namespace_secrets/04_1auto_save_and_hidden.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: yes diff --git a/tests/results/test_namespace_secrets/04_1default_calculation_hidden.sh b/tests/results/test_namespace_secrets/04_1default_calculation_hidden.sh new file mode 100644 index 0000000..e11e18c --- /dev/null +++ b/tests/results/test_namespace_secrets/04_1default_calculation_hidden.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: string1 (value) + ┣━━ 📓 var2: string1 + ┗━━ 📓 var3: string1 diff --git a/tests/results/test_namespace_secrets/04_1default_calculation_hidden_2.sh b/tests/results/test_namespace_secrets/04_1default_calculation_hidden_2.sh new file mode 100644 index 0000000..e11e18c --- /dev/null +++ b/tests/results/test_namespace_secrets/04_1default_calculation_hidden_2.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: string1 (value) + ┣━━ 📓 var2: string1 + ┗━━ 📓 var3: string1 diff --git a/tests/results/test_namespace_secrets/04_5disabled_calculation.sh b/tests/results/test_namespace_secrets/04_5disabled_calculation.sh new file mode 100644 index 0000000..f5504fd --- /dev/null +++ b/tests/results/test_namespace_secrets/04_5disabled_calculation.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: string1 (no) + ┣━━ 📓 variable1: string1 + ┗━━ 📓 variable2: string1 diff --git a/tests/results/test_namespace_secrets/04_5disabled_calculation_default.sh b/tests/results/test_namespace_secrets/04_5disabled_calculation_default.sh new file mode 100644 index 0000000..5d33ea8 --- /dev/null +++ b/tests/results/test_namespace_secrets/04_5disabled_calculation_default.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: string1 (no) + ┣━━ 📓 var1: string1 (string1) + ┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_namespace_secrets/04_5disabled_calculation_optional.sh b/tests/results/test_namespace_secrets/04_5disabled_calculation_optional.sh new file mode 100644 index 0000000..b1b78d0 --- /dev/null +++ b/tests/results/test_namespace_secrets/04_5disabled_calculation_optional.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: string1 (no) + ┣━━ 📓 var1: null + ┗━━ 📓 var2: string1 diff --git a/tests/results/test_namespace_secrets/04_5disabled_calculation_variable.sh b/tests/results/test_namespace_secrets/04_5disabled_calculation_variable.sh new file mode 100644 index 0000000..a174541 --- /dev/null +++ b/tests/results/test_namespace_secrets/04_5disabled_calculation_variable.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 condition: true (false) diff --git a/tests/results/test_namespace_secrets/04_5disabled_calculation_variable2.sh b/tests/results/test_namespace_secrets/04_5disabled_calculation_variable2.sh new file mode 100644 index 0000000..f06ac73 --- /dev/null +++ b/tests/results/test_namespace_secrets/04_5disabled_calculation_variable2.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 condition: true (true) diff --git a/tests/results/test_namespace_secrets/04_5disabled_calculation_variable3.sh b/tests/results/test_namespace_secrets/04_5disabled_calculation_variable3.sh new file mode 100644 index 0000000..38eb686 --- /dev/null +++ b/tests/results/test_namespace_secrets/04_5disabled_calculation_variable3.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: string1 (yes) + ┗━━ 📓 variable: string1 diff --git a/tests/results/test_namespace_secrets/04_5disabled_calculation_variable4.sh b/tests/results/test_namespace_secrets/04_5disabled_calculation_variable4.sh new file mode 100644 index 0000000..5a9387b --- /dev/null +++ b/tests/results/test_namespace_secrets/04_5disabled_calculation_variable4.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 condition: string1 (yes) diff --git a/tests/results/test_namespace_secrets/04_5hidden_calculation.sh b/tests/results/test_namespace_secrets/04_5hidden_calculation.sh new file mode 100644 index 0000000..7953e0d --- /dev/null +++ b/tests/results/test_namespace_secrets/04_5hidden_calculation.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: string1 (no) + ┣━━ 📓 var1: string1 (no) + ┗━━ 📓 var2: string1 (no) diff --git a/tests/results/test_namespace_secrets/04_5hidden_calculation2.sh b/tests/results/test_namespace_secrets/04_5hidden_calculation2.sh new file mode 100644 index 0000000..3ef1c0a --- /dev/null +++ b/tests/results/test_namespace_secrets/04_5hidden_calculation2.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: string1 (no) + ┣━━ 📓 var1: string1 + ┗━━ 📓 var2: string1 diff --git a/tests/results/test_namespace_secrets/04_5hidden_calculation_default_calculation.sh b/tests/results/test_namespace_secrets/04_5hidden_calculation_default_calculation.sh new file mode 100644 index 0000000..5d33ea8 --- /dev/null +++ b/tests/results/test_namespace_secrets/04_5hidden_calculation_default_calculation.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: string1 (no) + ┣━━ 📓 var1: string1 (string1) + ┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_namespace_secrets/04_5validators.sh b/tests/results/test_namespace_secrets/04_5validators.sh new file mode 100644 index 0000000..86af547 --- /dev/null +++ b/tests/results/test_namespace_secrets/04_5validators.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 int: 1 diff --git a/tests/results/test_namespace_secrets/04_5validators_differ.sh b/tests/results/test_namespace_secrets/04_5validators_differ.sh new file mode 100644 index 0000000..44a37de --- /dev/null +++ b/tests/results/test_namespace_secrets/04_5validators_differ.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: another_value (oui) + ┗━━ 📓 var2: string1 (no) diff --git a/tests/results/test_namespace_secrets/04_5validators_multi.sh b/tests/results/test_namespace_secrets/04_5validators_multi.sh new file mode 100644 index 0000000..a809ef2 --- /dev/null +++ b/tests/results/test_namespace_secrets/04_5validators_multi.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var1 : +  ┣━━ string1 (no) +  ┣━━ string2 (yes) +  ┗━━ string3 diff --git a/tests/results/test_namespace_secrets/04_5validators_multi2.sh b/tests/results/test_namespace_secrets/04_5validators_multi2.sh new file mode 100644 index 0000000..3f473dd --- /dev/null +++ b/tests/results/test_namespace_secrets/04_5validators_multi2.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var1 : +  ┣━━ val1 (no) +  ┗━━ val2 (yes) diff --git a/tests/results/test_namespace_secrets/05_0multi_not_uniq.sh b/tests/results/test_namespace_secrets/05_0multi_not_uniq.sh new file mode 100644 index 0000000..af091c9 --- /dev/null +++ b/tests/results/test_namespace_secrets/05_0multi_not_uniq.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var1 : +  ┣━━ string1 (non) +  ┣━━ string2 +  ┗━━ string3 diff --git a/tests/results/test_namespace_secrets/05_0multi_uniq.sh b/tests/results/test_namespace_secrets/05_0multi_uniq.sh new file mode 100644 index 0000000..4260e1b --- /dev/null +++ b/tests/results/test_namespace_secrets/05_0multi_uniq.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable : +  ┣━━ string1 (non) +  ┣━━ string2 +  ┗━━ string3 diff --git a/tests/results/test_namespace_secrets/12_1auto_save_expert.sh b/tests/results/test_namespace_secrets/12_1auto_save_expert.sh new file mode 100644 index 0000000..73211d0 --- /dev/null +++ b/tests/results/test_namespace_secrets/12_1auto_save_expert.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: no diff --git a/tests/results/test_namespace_secrets/16_0redefine_description.sh b/tests/results/test_namespace_secrets/16_0redefine_description.sh new file mode 100644 index 0000000..4518adc --- /dev/null +++ b/tests/results/test_namespace_secrets/16_0redefine_description.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: string1 diff --git a/tests/results/test_namespace_secrets/16_2family_redefine_calculation.sh b/tests/results/test_namespace_secrets/16_2family_redefine_calculation.sh new file mode 100644 index 0000000..5ade45e --- /dev/null +++ b/tests/results/test_namespace_secrets/16_2family_redefine_calculation.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_secrets/16_2family_redefine_disabled.sh b/tests/results/test_namespace_secrets/16_2family_redefine_disabled.sh new file mode 100644 index 0000000..5ade45e --- /dev/null +++ b/tests/results/test_namespace_secrets/16_2family_redefine_disabled.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_secrets/16_5exists_nonexists.sh b/tests/results/test_namespace_secrets/16_5exists_nonexists.sh new file mode 100644 index 0000000..5f4d450 --- /dev/null +++ b/tests/results/test_namespace_secrets/16_5exists_nonexists.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: string1 (no) + ┗━━ 📓 var2: string1 (yes) diff --git a/tests/results/test_namespace_secrets/16_5exists_redefine.sh b/tests/results/test_namespace_secrets/16_5exists_redefine.sh new file mode 100644 index 0000000..9bf39eb --- /dev/null +++ b/tests/results/test_namespace_secrets/16_5exists_redefine.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var1: yes diff --git a/tests/results/test_namespace_secrets/16_5redefine_calculation.sh b/tests/results/test_namespace_secrets/16_5redefine_calculation.sh new file mode 100644 index 0000000..c447ce5 --- /dev/null +++ b/tests/results/test_namespace_secrets/16_5redefine_calculation.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: string1 (yes) diff --git a/tests/results/test_namespace_secrets/16_5redefine_choice.sh b/tests/results/test_namespace_secrets/16_5redefine_choice.sh new file mode 100644 index 0000000..18c73bf --- /dev/null +++ b/tests/results/test_namespace_secrets/16_5redefine_choice.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: a diff --git a/tests/results/test_namespace_secrets/16_5redefine_default.sh b/tests/results/test_namespace_secrets/16_5redefine_default.sh new file mode 100644 index 0000000..c447ce5 --- /dev/null +++ b/tests/results/test_namespace_secrets/16_5redefine_default.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: string1 (yes) diff --git a/tests/results/test_namespace_secrets/16_5redefine_default_calculation.sh b/tests/results/test_namespace_secrets/16_5redefine_default_calculation.sh new file mode 100644 index 0000000..c0e9411 --- /dev/null +++ b/tests/results/test_namespace_secrets/16_5redefine_default_calculation.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: string1 diff --git a/tests/results/test_namespace_secrets/16_5redefine_family.sh b/tests/results/test_namespace_secrets/16_5redefine_family.sh new file mode 100644 index 0000000..b51f3c9 --- /dev/null +++ b/tests/results/test_namespace_secrets/16_5redefine_family.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 family +  ┗━━ 📓 variable: string1 diff --git a/tests/results/test_namespace_secrets/16_5redefine_help.sh b/tests/results/test_namespace_secrets/16_5redefine_help.sh new file mode 100644 index 0000000..b51f3c9 --- /dev/null +++ b/tests/results/test_namespace_secrets/16_5redefine_help.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 family +  ┗━━ 📓 variable: string1 diff --git a/tests/results/test_namespace_secrets/16_5redefine_hidden.sh b/tests/results/test_namespace_secrets/16_5redefine_hidden.sh new file mode 100644 index 0000000..621ccbd --- /dev/null +++ b/tests/results/test_namespace_secrets/16_5redefine_hidden.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable: no diff --git a/tests/results/test_namespace_secrets/16_5redefine_multi.sh b/tests/results/test_namespace_secrets/16_5redefine_multi.sh new file mode 100644 index 0000000..4260e1b --- /dev/null +++ b/tests/results/test_namespace_secrets/16_5redefine_multi.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 variable : +  ┣━━ string1 (non) +  ┣━━ string2 +  ┗━━ string3 diff --git a/tests/results/test_namespace_secrets/16_5redefine_remove_disable_calculation.sh b/tests/results/test_namespace_secrets/16_5redefine_remove_disable_calculation.sh new file mode 100644 index 0000000..4e760cd --- /dev/null +++ b/tests/results/test_namespace_secrets/16_5redefine_remove_disable_calculation.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: string1 (no) + ┗━━ 📓 variable: string1 diff --git a/tests/results/test_namespace_secrets/16_5test_redefine.sh b/tests/results/test_namespace_secrets/16_5test_redefine.sh new file mode 100644 index 0000000..fd45290 --- /dev/null +++ b/tests/results/test_namespace_secrets/16_5test_redefine.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: test1 (no) + ┣━━ 📓 var2: test1 (non) + ┗━━ 📓 var3: string1 diff --git a/tests/results/test_namespace_secrets/16_6choice_redefine.sh b/tests/results/test_namespace_secrets/16_6choice_redefine.sh new file mode 100644 index 0000000..c34542a --- /dev/null +++ b/tests/results/test_namespace_secrets/16_6choice_redefine.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: a (c) diff --git a/tests/results/test_namespace_secrets/16_6exists_redefine_family.sh b/tests/results/test_namespace_secrets/16_6exists_redefine_family.sh new file mode 100644 index 0000000..2c69982 --- /dev/null +++ b/tests/results/test_namespace_secrets/16_6exists_redefine_family.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📂 family1 + ┃ ┗━━ 📓 variable1: string1 + ┗━━ 📂 family2 +  ┗━━ 📓 variable2: string1 diff --git a/tests/results/test_namespace_secrets/16exists_exists.sh b/tests/results/test_namespace_secrets/16exists_exists.sh new file mode 100644 index 0000000..4518adc --- /dev/null +++ b/tests/results/test_namespace_secrets/16exists_exists.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📓 var: string1 diff --git a/tests/results/test_namespace_secrets/17_5redefine_leadership.sh b/tests/results/test_namespace_secrets/17_5redefine_leadership.sh new file mode 100644 index 0000000..60c6aae --- /dev/null +++ b/tests/results/test_namespace_secrets/17_5redefine_leadership.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader diff --git a/tests/results/test_namespace_secrets/20_0empty_family.sh b/tests/results/test_namespace_secrets/20_0empty_family.sh new file mode 100644 index 0000000..5efe8ae --- /dev/null +++ b/tests/results/test_namespace_secrets/20_0empty_family.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_secrets/20_0family_append.sh b/tests/results/test_namespace_secrets/20_0family_append.sh new file mode 100644 index 0000000..d192a58 --- /dev/null +++ b/tests/results/test_namespace_secrets/20_0family_append.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 family +  ┣━━ 📓 var1: string1 +  ┗━━ 📓 var2: string1 diff --git a/tests/results/test_namespace_secrets/20_0family_underscore.sh b/tests/results/test_namespace_secrets/20_0family_underscore.sh new file mode 100644 index 0000000..5ade45e --- /dev/null +++ b/tests/results/test_namespace_secrets/20_0family_underscore.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_secrets/20_0multi_family.sh b/tests/results/test_namespace_secrets/20_0multi_family.sh new file mode 100644 index 0000000..bee0bd0 --- /dev/null +++ b/tests/results/test_namespace_secrets/20_0multi_family.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 family +  ┗━━ 📂 subfamily +   ┗━━ 📓 variable: string1 diff --git a/tests/results/test_namespace_secrets/20_0multi_family_basic.sh b/tests/results/test_namespace_secrets/20_0multi_family_basic.sh new file mode 100644 index 0000000..bee0bd0 --- /dev/null +++ b/tests/results/test_namespace_secrets/20_0multi_family_basic.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 family +  ┗━━ 📂 subfamily +   ┗━━ 📓 variable: string1 diff --git a/tests/results/test_namespace_secrets/20_0multi_family_expert.sh b/tests/results/test_namespace_secrets/20_0multi_family_expert.sh new file mode 100644 index 0000000..8f170d1 --- /dev/null +++ b/tests/results/test_namespace_secrets/20_0multi_family_expert.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 family +  ┗━━ 📂 subfamily +   ┗━━ 📓 variable: string1 diff --git a/tests/results/test_namespace_secrets/20_0multi_family_order.sh b/tests/results/test_namespace_secrets/20_0multi_family_order.sh new file mode 100644 index 0000000..e03de20 --- /dev/null +++ b/tests/results/test_namespace_secrets/20_0multi_family_order.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 variable: string1 + ┗━━ 📂 family +  ┣━━ 📓 variable1: string1 +  ┣━━ 📂 subfamily +  ┃ ┗━━ 📓 variable: string1 +  ┗━━ 📓 variable2: string1 diff --git a/tests/results/test_namespace_secrets/20_0validators_differ_redefine.sh b/tests/results/test_namespace_secrets/20_0validators_differ_redefine.sh new file mode 100644 index 0000000..fc903ac --- /dev/null +++ b/tests/results/test_namespace_secrets/20_0validators_differ_redefine.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: string1 (no) + ┣━━ 📓 var2: string1 (no) + ┗━━ 📓 var3: yes (yes) diff --git a/tests/results/test_namespace_secrets/20_1empty_subfamily.sh b/tests/results/test_namespace_secrets/20_1empty_subfamily.sh new file mode 100644 index 0000000..5efe8ae --- /dev/null +++ b/tests/results/test_namespace_secrets/20_1empty_subfamily.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_secrets/20_9default_information_parent.sh b/tests/results/test_namespace_secrets/20_9default_information_parent.sh new file mode 100644 index 0000000..d192a58 --- /dev/null +++ b/tests/results/test_namespace_secrets/20_9default_information_parent.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 family +  ┣━━ 📓 var1: string1 +  ┗━━ 📓 var2: string1 diff --git a/tests/results/test_namespace_secrets/24_0family_hidden_condition.sh b/tests/results/test_namespace_secrets/24_0family_hidden_condition.sh new file mode 100644 index 0000000..e41a065 --- /dev/null +++ b/tests/results/test_namespace_secrets/24_0family_hidden_condition.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: string1 (no) + ┗━━ 📂 family +  ┗━━ 📓 var1: string1 diff --git a/tests/results/test_namespace_secrets/24_0family_hidden_condition_boolean.sh b/tests/results/test_namespace_secrets/24_0family_hidden_condition_boolean.sh new file mode 100644 index 0000000..8a8e780 --- /dev/null +++ b/tests/results/test_namespace_secrets/24_0family_hidden_condition_boolean.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: true (false) + ┗━━ 📂 family +  ┗━━ 📓 variable: string1 diff --git a/tests/results/test_namespace_secrets/24_0family_hidden_condition_sub_family.sh b/tests/results/test_namespace_secrets/24_0family_hidden_condition_sub_family.sh new file mode 100644 index 0000000..7da310d --- /dev/null +++ b/tests/results/test_namespace_secrets/24_0family_hidden_condition_sub_family.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: string1 (no) + ┗━━ 📂 family +  ┗━━ 📂 subfamily +   ┗━━ 📓 var1: string1 diff --git a/tests/results/test_namespace_secrets/24_0family_hidden_condition_variable_sub_family.sh b/tests/results/test_namespace_secrets/24_0family_hidden_condition_variable_sub_family.sh new file mode 100644 index 0000000..8d74df3 --- /dev/null +++ b/tests/results/test_namespace_secrets/24_0family_hidden_condition_variable_sub_family.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: true (true) + ┗━━ 📂 family +  ┗━━ 📂 subfamily +   ┗━━ 📓 var1: null diff --git a/tests/results/test_namespace_secrets/24_0family_hidden_condition_with_variable.sh b/tests/results/test_namespace_secrets/24_0family_hidden_condition_with_variable.sh new file mode 100644 index 0000000..da585a8 --- /dev/null +++ b/tests/results/test_namespace_secrets/24_0family_hidden_condition_with_variable.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition1: true (false) + ┣━━ 📓 condition2: true (false) + ┗━━ 📂 family +  ┗━━ 📓 variable: null diff --git a/tests/results/test_namespace_secrets/24_0family_hidden_param_condition_sub_family.sh b/tests/results/test_namespace_secrets/24_0family_hidden_param_condition_sub_family.sh new file mode 100644 index 0000000..0211d2b --- /dev/null +++ b/tests/results/test_namespace_secrets/24_0family_hidden_param_condition_sub_family.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: string1 (no) + ┗━━ 📂 family +  ┗━━ 📂 sub_family +   ┗━━ 📓 var1: string1 diff --git a/tests/results/test_namespace_secrets/24_0family_mandatory_condition.sh b/tests/results/test_namespace_secrets/24_0family_mandatory_condition.sh new file mode 100644 index 0000000..7cac874 --- /dev/null +++ b/tests/results/test_namespace_secrets/24_0family_mandatory_condition.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: string1 (no) + ┗━━ 📓 var: string1 diff --git a/tests/results/test_namespace_secrets/24_0family_mandatory_condition_variable.sh b/tests/results/test_namespace_secrets/24_0family_mandatory_condition_variable.sh new file mode 100644 index 0000000..f7e0623 --- /dev/null +++ b/tests/results/test_namespace_secrets/24_0family_mandatory_condition_variable.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: true (true) + ┗━━ 📓 var: string1 diff --git a/tests/results/test_namespace_secrets/24_7validators_variable_optional.sh b/tests/results/test_namespace_secrets/24_7validators_variable_optional.sh new file mode 100644 index 0000000..e746c00 --- /dev/null +++ b/tests/results/test_namespace_secrets/24_7validators_variable_optional.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 general +  ┣━━ 📓 int: 5 +  ┗━━ 📓 int2: 1 (1) diff --git a/tests/results/test_namespace_secrets/24_family_disabled_var_hidden.sh b/tests/results/test_namespace_secrets/24_family_disabled_var_hidden.sh new file mode 100644 index 0000000..5ade45e --- /dev/null +++ b/tests/results/test_namespace_secrets/24_family_disabled_var_hidden.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_secrets/40_0leadership.sh b/tests/results/test_namespace_secrets/40_0leadership.sh new file mode 100644 index 0000000..5938837 --- /dev/null +++ b/tests/results/test_namespace_secrets/40_0leadership.sh @@ -0,0 +1,21 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 +  ┃ ┣━━ 📓 follower1: string1 +  ┃ ┗━━ 📓 follower2: string1 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┣━━ 📓 follower1: string2 +  ┃ ┗━━ 📓 follower2: string2 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┣━━ 📓 follower1: string3 +   ┗━━ 📓 follower2: string3 diff --git a/tests/results/test_namespace_secrets/40_0leadership_diff_name.sh b/tests/results/test_namespace_secrets/40_0leadership_diff_name.sh new file mode 100644 index 0000000..165e971 --- /dev/null +++ b/tests/results/test_namespace_secrets/40_0leadership_diff_name.sh @@ -0,0 +1,21 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leadership +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 +  ┃ ┣━━ 📓 follower1: string1 +  ┃ ┗━━ 📓 follower2: string1 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┣━━ 📓 follower1: string2 +  ┃ ┗━━ 📓 follower2: string2 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┣━━ 📓 follower1: string3 +   ┗━━ 📓 follower2: string3 diff --git a/tests/results/test_namespace_secrets/40_0leadership_empty.sh b/tests/results/test_namespace_secrets/40_0leadership_empty.sh new file mode 100644 index 0000000..5efe8ae --- /dev/null +++ b/tests/results/test_namespace_secrets/40_0leadership_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_secrets/40_0leadership_follower_default_calculation.sh b/tests/results/test_namespace_secrets/40_0leadership_follower_default_calculation.sh new file mode 100644 index 0000000..7bda3a7 --- /dev/null +++ b/tests/results/test_namespace_secrets/40_0leadership_follower_default_calculation.sh @@ -0,0 +1,21 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 +  ┃ ┣━━ 📓 follower1: string1 (value) +  ┃ ┗━━ 📓 follower2: string1 (string1) +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┣━━ 📓 follower1: string2 (value) +  ┃ ┗━━ 📓 follower2: string2 (string2) +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┣━━ 📓 follower1: string3 (value) +   ┗━━ 📓 follower2: string3 (string3) diff --git a/tests/results/test_namespace_secrets/40_0leadership_follower_default_submulti.sh b/tests/results/test_namespace_secrets/40_0leadership_follower_default_submulti.sh new file mode 100644 index 0000000..e1b3f32 --- /dev/null +++ b/tests/results/test_namespace_secrets/40_0leadership_follower_default_submulti.sh @@ -0,0 +1,39 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 (leader) +  ┃ ┣━━ 📓 follower1 : +  ┃ ┃ ┣━━ string1 (value) +  ┃ ┃ ┣━━ string2 +  ┃ ┃ ┗━━ string3 +  ┃ ┗━━ 📓 follower2 : +  ┃  ┣━━ string1 (value1) +  ┃  ┣━━ string2 (value2) +  ┃  ┗━━ string3 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┣━━ 📓 follower1 : +  ┃ ┃ ┣━━ string1 (value) +  ┃ ┃ ┣━━ string2 +  ┃ ┃ ┗━━ string3 +  ┃ ┗━━ 📓 follower2 : +  ┃  ┣━━ string1 (value1) +  ┃  ┣━━ string2 (value2) +  ┃  ┗━━ string3 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┣━━ 📓 follower1 : +   ┃ ┣━━ string1 (value) +   ┃ ┣━━ string2 +   ┃ ┗━━ string3 +   ┗━━ 📓 follower2 : +    ┣━━ string1 (value1) +    ┣━━ string2 (value2) +    ┗━━ string3 diff --git a/tests/results/test_namespace_secrets/40_0leadership_follower_default_submulti_calculation.sh b/tests/results/test_namespace_secrets/40_0leadership_follower_default_submulti_calculation.sh new file mode 100644 index 0000000..ec71278 --- /dev/null +++ b/tests/results/test_namespace_secrets/40_0leadership_follower_default_submulti_calculation.sh @@ -0,0 +1,39 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 (leader) +  ┃ ┣━━ 📓 follower1 : +  ┃ ┃ ┣━━ string1 (value) +  ┃ ┃ ┣━━ string2 +  ┃ ┃ ┗━━ string3 +  ┃ ┗━━ 📓 follower2 : +  ┃  ┣━━ string1 (string1) +  ┃  ┣━━ string2 (string2) +  ┃  ┗━━ string3 (string3) +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┣━━ 📓 follower1 : +  ┃ ┃ ┣━━ string1 (value) +  ┃ ┃ ┣━━ string2 +  ┃ ┃ ┗━━ string3 +  ┃ ┗━━ 📓 follower2 : +  ┃  ┣━━ string1 (string1) +  ┃  ┣━━ string2 (string2) +  ┃  ┗━━ string3 (string3) +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┣━━ 📓 follower1 : +   ┃ ┣━━ string1 (value) +   ┃ ┣━━ string2 +   ┃ ┗━━ string3 +   ┗━━ 📓 follower2 : +    ┣━━ string1 (string1) +    ┣━━ string2 (string2) +    ┗━━ string3 (string3) diff --git a/tests/results/test_namespace_secrets/40_0leadership_follower_default_value.sh b/tests/results/test_namespace_secrets/40_0leadership_follower_default_value.sh new file mode 100644 index 0000000..a492069 --- /dev/null +++ b/tests/results/test_namespace_secrets/40_0leadership_follower_default_value.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 +  ┃ ┗━━ 📓 follower1: string1 (value) +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┗━━ 📓 follower1: string2 (value) +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┗━━ 📓 follower1: string3 (value) diff --git a/tests/results/test_namespace_secrets/40_0leadership_leader_not_multi.sh b/tests/results/test_namespace_secrets/40_0leadership_leader_not_multi.sh new file mode 100644 index 0000000..0a071c3 --- /dev/null +++ b/tests/results/test_namespace_secrets/40_0leadership_leader_not_multi.sh @@ -0,0 +1,24 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📂 general + ┃ ┗━━ 📓 mode_conteneur_actif: string1 (non) + ┗━━ 📂 general1 +  ┗━━ 📂 leader +   ┣━━ 📂 leader +   ┃ ┣━━ 📓 leader: string1 +   ┃ ┣━━ 📓 follower1: string1 +   ┃ ┗━━ 📓 follower2: string1 +   ┣━━ 📂 leader +   ┃ ┣━━ 📓 leader: string2 +   ┃ ┣━━ 📓 follower1: string2 +   ┃ ┗━━ 📓 follower2: string2 +   ┗━━ 📂 leader +    ┣━━ 📓 leader: string3 +    ┣━━ 📓 follower1: string3 +    ┗━━ 📓 follower2: string3 diff --git a/tests/results/test_namespace_secrets/40_1leadership_append_follower.sh b/tests/results/test_namespace_secrets/40_1leadership_append_follower.sh new file mode 100644 index 0000000..ecf1747 --- /dev/null +++ b/tests/results/test_namespace_secrets/40_1leadership_append_follower.sh @@ -0,0 +1,24 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 +  ┃ ┣━━ 📓 follower1: string1 +  ┃ ┣━━ 📓 follower2: string1 +  ┃ ┗━━ 📓 follower3: string1 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┣━━ 📓 follower1: string2 +  ┃ ┣━━ 📓 follower2: string2 +  ┃ ┗━━ 📓 follower3: string2 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┣━━ 📓 follower1: string3 +   ┣━━ 📓 follower2: string3 +   ┗━━ 📓 follower3: string3 diff --git a/tests/results/test_namespace_secrets/40_2leadership_calculation_index.sh b/tests/results/test_namespace_secrets/40_2leadership_calculation_index.sh new file mode 100644 index 0000000..a89bc69 --- /dev/null +++ b/tests/results/test_namespace_secrets/40_2leadership_calculation_index.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 (a) +  ┃ ┗━━ 📓 follower1: 1 (0) +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 (b) +  ┃ ┗━━ 📓 follower1: 2 (1) +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 (c) +   ┗━━ 📓 follower1: 3 (2) diff --git a/tests/results/test_namespace_secrets/40_2leadership_calculation_param_index.sh b/tests/results/test_namespace_secrets/40_2leadership_calculation_param_index.sh new file mode 100644 index 0000000..a89bc69 --- /dev/null +++ b/tests/results/test_namespace_secrets/40_2leadership_calculation_param_index.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 (a) +  ┃ ┗━━ 📓 follower1: 1 (0) +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 (b) +  ┃ ┗━━ 📓 follower1: 2 (1) +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 (c) +   ┗━━ 📓 follower1: 3 (2) diff --git a/tests/results/test_namespace_secrets/40_2leadership_leader_calculation.sh b/tests/results/test_namespace_secrets/40_2leadership_leader_calculation.sh new file mode 100644 index 0000000..bf56e3b --- /dev/null +++ b/tests/results/test_namespace_secrets/40_2leadership_leader_calculation.sh @@ -0,0 +1,21 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 (val1) +  ┃ ┣━━ 📓 follower1: string1 +  ┃ ┗━━ 📓 follower2: string1 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 (val2) +  ┃ ┣━━ 📓 follower1: string2 +  ┃ ┗━━ 📓 follower2: string2 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┣━━ 📓 follower1: string3 +   ┗━━ 📓 follower2: string3 diff --git a/tests/results/test_namespace_secrets/40_6leadership_follower_multi.sh b/tests/results/test_namespace_secrets/40_6leadership_follower_multi.sh new file mode 100644 index 0000000..f3cd2f2 --- /dev/null +++ b/tests/results/test_namespace_secrets/40_6leadership_follower_multi.sh @@ -0,0 +1,39 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leadership +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 +  ┃ ┣━━ 📓 follower1 : +  ┃ ┃ ┣━━ string1 +  ┃ ┃ ┣━━ string2 +  ┃ ┃ ┗━━ string3 +  ┃ ┗━━ 📓 follower2 : +  ┃  ┣━━ string1 (value) +  ┃  ┣━━ string2 +  ┃  ┗━━ string3 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┣━━ 📓 follower1 : +  ┃ ┃ ┣━━ string1 +  ┃ ┃ ┣━━ string2 +  ┃ ┃ ┗━━ string3 +  ┃ ┗━━ 📓 follower2 : +  ┃  ┣━━ string1 (value) +  ┃  ┣━━ string2 +  ┃  ┗━━ string3 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┣━━ 📓 follower1 : +   ┃ ┣━━ string1 +   ┃ ┣━━ string2 +   ┃ ┗━━ string3 +   ┗━━ 📓 follower2 : +    ┣━━ string1 (value) +    ┣━━ string2 +    ┗━━ string3 diff --git a/tests/results/test_namespace_secrets/40_8calculation_boolean.sh b/tests/results/test_namespace_secrets/40_8calculation_boolean.sh new file mode 100644 index 0000000..bc0d2e5 --- /dev/null +++ b/tests/results/test_namespace_secrets/40_8calculation_boolean.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 bool: true (false) + ┣━━ 📓 multi1 : + ┃ ┣━━ true (true) + ┃ ┗━━ false + ┗━━ 📓 multi2 : +  ┗━━ true (false) diff --git a/tests/results/test_namespace_secrets/40_8calculation_boolean_return_none.sh b/tests/results/test_namespace_secrets/40_8calculation_boolean_return_none.sh new file mode 100644 index 0000000..f5b6f17 --- /dev/null +++ b/tests/results/test_namespace_secrets/40_8calculation_boolean_return_none.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1: string1 (yes) + ┗━━ 📓 var2: true diff --git a/tests/results/test_namespace_secrets/40_8calculation_integer.sh b/tests/results/test_namespace_secrets/40_8calculation_integer.sh new file mode 100644 index 0000000..4167981 --- /dev/null +++ b/tests/results/test_namespace_secrets/40_8calculation_integer.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 bool: true (false) + ┣━━ 📓 int1: 1 (1) + ┗━━ 📓 int2: 1 (4) diff --git a/tests/results/test_namespace_secrets/40_8calculation_multi_variable.sh b/tests/results/test_namespace_secrets/40_8calculation_multi_variable.sh new file mode 100644 index 0000000..c1570e8 --- /dev/null +++ b/tests/results/test_namespace_secrets/40_8calculation_multi_variable.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ string1 (string1) + ┃ ┣━━ string2 (string1) + ┃ ┗━━ string3 + ┣━━ 📓 var2: string1 (no) + ┗━━ 📓 var3: string1 (yes) diff --git a/tests/results/test_namespace_secrets/40_8calculation_multi_variable_parent.sh b/tests/results/test_namespace_secrets/40_8calculation_multi_variable_parent.sh new file mode 100644 index 0000000..0e84895 --- /dev/null +++ b/tests/results/test_namespace_secrets/40_8calculation_multi_variable_parent.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var: string1 (no) + ┗━━ 📂 fam1 +  ┗━━ 📓 var: string1 (string1) diff --git a/tests/results/test_namespace_secrets/40_8calculation_multi_variable_parent2.sh b/tests/results/test_namespace_secrets/40_8calculation_multi_variable_parent2.sh new file mode 100644 index 0000000..b665414 --- /dev/null +++ b/tests/results/test_namespace_secrets/40_8calculation_multi_variable_parent2.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📂 fam1 + ┃ ┗━━ 📓 var: string1 (no) + ┗━━ 📂 fam2 +  ┗━━ 📓 var: string1 (string1) diff --git a/tests/results/test_namespace_secrets/41_0choice_leader.sh b/tests/results/test_namespace_secrets/41_0choice_leader.sh new file mode 100644 index 0000000..3bbb879 --- /dev/null +++ b/tests/results/test_namespace_secrets/41_0choice_leader.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 +  ┃ ┗━━ 📓 follower1: a +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┗━━ 📓 follower1: b +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┗━━ 📓 follower1: c diff --git a/tests/results/test_namespace_secrets/44_0leadership_hidden.sh b/tests/results/test_namespace_secrets/44_0leadership_hidden.sh new file mode 100644 index 0000000..60c6aae --- /dev/null +++ b/tests/results/test_namespace_secrets/44_0leadership_hidden.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader diff --git a/tests/results/test_namespace_secrets/44_0leadership_leader_hidden.sh b/tests/results/test_namespace_secrets/44_0leadership_leader_hidden.sh new file mode 100644 index 0000000..60c6aae --- /dev/null +++ b/tests/results/test_namespace_secrets/44_0leadership_leader_hidden.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader diff --git a/tests/results/test_namespace_secrets/44_1leadership_append_hidden_follower.sh b/tests/results/test_namespace_secrets/44_1leadership_append_hidden_follower.sh new file mode 100644 index 0000000..60c6aae --- /dev/null +++ b/tests/results/test_namespace_secrets/44_1leadership_append_hidden_follower.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader diff --git a/tests/results/test_namespace_secrets/44_4disabled_calcultion_follower.sh b/tests/results/test_namespace_secrets/44_4disabled_calcultion_follower.sh new file mode 100644 index 0000000..0d2cff3 --- /dev/null +++ b/tests/results/test_namespace_secrets/44_4disabled_calcultion_follower.sh @@ -0,0 +1,19 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: true (true) + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 (a) +  ┃ ┗━━ 📓 follower: string1 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┗━━ 📓 follower: string2 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┗━━ 📓 follower: string3 diff --git a/tests/results/test_namespace_secrets/44_4leadership_mandatory.sh b/tests/results/test_namespace_secrets/44_4leadership_mandatory.sh new file mode 100644 index 0000000..bb1fc5b --- /dev/null +++ b/tests/results/test_namespace_secrets/44_4leadership_mandatory.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 +  ┃ ┗━━ 📓 follower1: string1 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┗━━ 📓 follower1: string2 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┗━━ 📓 follower1: string3 diff --git a/tests/results/test_namespace_secrets/44_4leadership_mandatory_follower.sh b/tests/results/test_namespace_secrets/44_4leadership_mandatory_follower.sh new file mode 100644 index 0000000..71bea47 --- /dev/null +++ b/tests/results/test_namespace_secrets/44_4leadership_mandatory_follower.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 +  ┃ ┗━━ 📓 follower: string1 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┗━━ 📓 follower: string2 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┗━━ 📓 follower: string3 diff --git a/tests/results/test_namespace_secrets/44_5leadership_leader_hidden_calculation.sh b/tests/results/test_namespace_secrets/44_5leadership_leader_hidden_calculation.sh new file mode 100644 index 0000000..96e34f3 --- /dev/null +++ b/tests/results/test_namespace_secrets/44_5leadership_leader_hidden_calculation.sh @@ -0,0 +1,19 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: string1 (no) + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 +  ┃ ┗━━ 📓 follower: string1 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┗━━ 📓 follower: string2 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┗━━ 📓 follower: string3 diff --git a/tests/results/test_namespace_secrets/44_6leadership_follower_disabled_calculation.sh b/tests/results/test_namespace_secrets/44_6leadership_follower_disabled_calculation.sh new file mode 100644 index 0000000..117765c --- /dev/null +++ b/tests/results/test_namespace_secrets/44_6leadership_follower_disabled_calculation.sh @@ -0,0 +1,19 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 condition: string1 (yes) + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 +  ┃ ┗━━ 📓 follower: string1 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┗━━ 📓 follower: string2 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┗━━ 📓 follower: string3 diff --git a/tests/results/test_namespace_secrets/44_9calculated_default_leadership_leader.sh b/tests/results/test_namespace_secrets/44_9calculated_default_leadership_leader.sh new file mode 100644 index 0000000..c34ff15 --- /dev/null +++ b/tests/results/test_namespace_secrets/44_9calculated_default_leadership_leader.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 (a) +  ┃ ┗━━ 📓 follower: string1 (string1) +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 (b) +  ┃ ┗━━ 📓 follower: string2 (string2) +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┗━━ 📓 follower: string3 (string3) diff --git a/tests/results/test_namespace_secrets/60_0family_dynamic.sh b/tests/results/test_namespace_secrets/60_0family_dynamic.sh new file mode 100644 index 0000000..3004f45 --- /dev/null +++ b/tests/results/test_namespace_secrets/60_0family_dynamic.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: string1 diff --git a/tests/results/test_namespace_secrets/60_0family_dynamic_1_0.sh b/tests/results/test_namespace_secrets/60_0family_dynamic_1_0.sh new file mode 100644 index 0000000..abcf691 --- /dev/null +++ b/tests/results/test_namespace_secrets/60_0family_dynamic_1_0.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 vardyn: string1 + ┗━━ 📂 dynval2 +  ┗━━ 📓 vardyn: string1 diff --git a/tests/results/test_namespace_secrets/60_0family_dynamic_1_0_empty.sh b/tests/results/test_namespace_secrets/60_0family_dynamic_1_0_empty.sh new file mode 100644 index 0000000..9db0591 --- /dev/null +++ b/tests/results/test_namespace_secrets/60_0family_dynamic_1_0_empty.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 vardyn: string1 + ┗━━ 📂 dynval2 +  ┗━━ 📓 vardyn: string1 diff --git a/tests/results/test_namespace_secrets/60_0family_dynamic_1_0_type.sh b/tests/results/test_namespace_secrets/60_0family_dynamic_1_0_type.sh new file mode 100644 index 0000000..abcf691 --- /dev/null +++ b/tests/results/test_namespace_secrets/60_0family_dynamic_1_0_type.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 vardyn: string1 + ┗━━ 📂 dynval2 +  ┗━━ 📓 vardyn: string1 diff --git a/tests/results/test_namespace_secrets/60_0family_dynamic_1_0_type_empty.sh b/tests/results/test_namespace_secrets/60_0family_dynamic_1_0_type_empty.sh new file mode 100644 index 0000000..9db0591 --- /dev/null +++ b/tests/results/test_namespace_secrets/60_0family_dynamic_1_0_type_empty.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 vardyn: string1 + ┗━━ 📂 dynval2 +  ┗━━ 📓 vardyn: string1 diff --git a/tests/results/test_namespace_secrets/60_0family_dynamic_1_1.sh b/tests/results/test_namespace_secrets/60_0family_dynamic_1_1.sh new file mode 100644 index 0000000..abcf691 --- /dev/null +++ b/tests/results/test_namespace_secrets/60_0family_dynamic_1_1.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 vardyn: string1 + ┗━━ 📂 dynval2 +  ┗━━ 📓 vardyn: string1 diff --git a/tests/results/test_namespace_secrets/60_0family_dynamic_1_1_empty.sh b/tests/results/test_namespace_secrets/60_0family_dynamic_1_1_empty.sh new file mode 100644 index 0000000..9db0591 --- /dev/null +++ b/tests/results/test_namespace_secrets/60_0family_dynamic_1_1_empty.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 vardyn: string1 + ┗━━ 📂 dynval2 +  ┗━━ 📓 vardyn: string1 diff --git a/tests/results/test_namespace_secrets/60_0family_dynamic_empty.sh b/tests/results/test_namespace_secrets/60_0family_dynamic_empty.sh new file mode 100644 index 0000000..afdbf37 --- /dev/null +++ b/tests/results/test_namespace_secrets/60_0family_dynamic_empty.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ string1 + ┃ ┣━━ string2 + ┃ ┗━━ string3 + ┣━━ 📂 dynstring1 + ┃ ┗━━ 📓 var: string1 + ┣━━ 📂 dynstring2 + ┃ ┗━━ 📓 var: string1 + ┗━━ 📂 dynstring3 +  ┗━━ 📓 var: string1 diff --git a/tests/results/test_namespace_secrets/60_0family_dynamic_jinja_number.sh b/tests/results/test_namespace_secrets/60_0family_dynamic_jinja_number.sh new file mode 100644 index 0000000..6a2b055 --- /dev/null +++ b/tests/results/test_namespace_secrets/60_0family_dynamic_jinja_number.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ 1 (1) + ┃ ┗━━ 2 (2) + ┣━━ 📂 dyn1 + ┃ ┗━━ 📓 var: string1 (val) + ┣━━ 📂 dyn2 + ┃ ┗━━ 📓 var: string1 (val) + ┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_namespace_secrets/60_0family_dynamic_jinja_number_empty.sh b/tests/results/test_namespace_secrets/60_0family_dynamic_jinja_number_empty.sh new file mode 100644 index 0000000..17627a9 --- /dev/null +++ b/tests/results/test_namespace_secrets/60_0family_dynamic_jinja_number_empty.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ 1 + ┃ ┗━━ 2 + ┣━━ 📂 dyn1 + ┃ ┗━━ 📓 var: string1 (val) + ┣━━ 📂 dyn2 + ┃ ┗━━ 📓 var: string1 (val) + ┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_namespace_secrets/60_0family_dynamic_no_description.sh b/tests/results/test_namespace_secrets/60_0family_dynamic_no_description.sh new file mode 100644 index 0000000..3004f45 --- /dev/null +++ b/tests/results/test_namespace_secrets/60_0family_dynamic_no_description.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: string1 diff --git a/tests/results/test_namespace_secrets/60_0family_dynamic_no_description_empty.sh b/tests/results/test_namespace_secrets/60_0family_dynamic_no_description_empty.sh new file mode 100644 index 0000000..0501207 --- /dev/null +++ b/tests/results/test_namespace_secrets/60_0family_dynamic_no_description_empty.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: string1 diff --git a/tests/results/test_namespace_secrets/60_0family_dynamic_static.sh b/tests/results/test_namespace_secrets/60_0family_dynamic_static.sh new file mode 100644 index 0000000..71fb99f --- /dev/null +++ b/tests/results/test_namespace_secrets/60_0family_dynamic_static.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: string1 diff --git a/tests/results/test_namespace_secrets/60_0family_dynamic_test.sh b/tests/results/test_namespace_secrets/60_0family_dynamic_test.sh new file mode 100644 index 0000000..0501207 --- /dev/null +++ b/tests/results/test_namespace_secrets/60_0family_dynamic_test.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: string1 diff --git a/tests/results/test_namespace_secrets/60_0family_dynamic_variable_empty.sh b/tests/results/test_namespace_secrets/60_0family_dynamic_variable_empty.sh new file mode 100644 index 0000000..cfea96b --- /dev/null +++ b/tests/results/test_namespace_secrets/60_0family_dynamic_variable_empty.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ string1 + ┃ ┣━━ string2 + ┃ ┗━━ string3 + ┣━━ 📂 dynstring1 + ┃ ┗━━ 📓 var: string1 (val) + ┣━━ 📂 dynstring2 + ┃ ┗━━ 📓 var: string1 (val) + ┗━━ 📂 dynstring3 +  ┗━━ 📓 var: string1 (val) diff --git a/tests/results/test_namespace_secrets/60_0family_dynamic_variable_suffix.sh b/tests/results/test_namespace_secrets/60_0family_dynamic_variable_suffix.sh new file mode 100644 index 0000000..5d335ee --- /dev/null +++ b/tests/results/test_namespace_secrets/60_0family_dynamic_variable_suffix.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 (a value) + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: string1 (a value) diff --git a/tests/results/test_namespace_secrets/60_0family_dynamic_variable_suffix_empty.sh b/tests/results/test_namespace_secrets/60_0family_dynamic_variable_suffix_empty.sh new file mode 100644 index 0000000..b00c0ad --- /dev/null +++ b/tests/results/test_namespace_secrets/60_0family_dynamic_variable_suffix_empty.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 (a value) + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: string1 (a value) diff --git a/tests/results/test_namespace_secrets/60_0family_empty.sh b/tests/results/test_namespace_secrets/60_0family_empty.sh new file mode 100644 index 0000000..5efe8ae --- /dev/null +++ b/tests/results/test_namespace_secrets/60_0family_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail diff --git a/tests/results/test_namespace_secrets/60_0family_hidden.sh b/tests/results/test_namespace_secrets/60_0family_hidden.sh new file mode 100644 index 0000000..97bb713 --- /dev/null +++ b/tests/results/test_namespace_secrets/60_0family_hidden.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 family +  ┗━━ 📓 var: null diff --git a/tests/results/test_namespace_secrets/60_0family_mode.sh b/tests/results/test_namespace_secrets/60_0family_mode.sh new file mode 100644 index 0000000..d6cf87c --- /dev/null +++ b/tests/results/test_namespace_secrets/60_0family_mode.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 family +  ┗━━ 📓 var: string1 (non) diff --git a/tests/results/test_namespace_secrets/60_1family_dynamic_jinja.sh b/tests/results/test_namespace_secrets/60_1family_dynamic_jinja.sh new file mode 100644 index 0000000..f5515d6 --- /dev/null +++ b/tests/results/test_namespace_secrets/60_1family_dynamic_jinja.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ string1 (val1) + ┃ ┣━━ string2 (val2) + ┃ ┗━━ string3 + ┣━━ 📂 dyn1 + ┃ ┗━━ 📓 var: string1 (val) + ┣━━ 📂 dyn2 + ┃ ┗━━ 📓 var: string1 (val) + ┗━━ 📂 dyn3 +  ┗━━ 📓 var: string1 (val) diff --git a/tests/results/test_namespace_secrets/60_2family_dynamic_jinja_fill_sub_group.sh b/tests/results/test_namespace_secrets/60_2family_dynamic_jinja_fill_sub_group.sh new file mode 100644 index 0000000..54c0a7e --- /dev/null +++ b/tests/results/test_namespace_secrets/60_2family_dynamic_jinja_fill_sub_group.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📂 family + ┃  ┗━━ 📓 var: string1 + ┣━━ 📂 dynval2 + ┃ ┗━━ 📂 family + ┃  ┗━━ 📓 var: string1 + ┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_namespace_secrets/60_2family_dynamic_jinja_fill_sub_group_2.sh b/tests/results/test_namespace_secrets/60_2family_dynamic_jinja_fill_sub_group_2.sh new file mode 100644 index 0000000..99c0aa4 --- /dev/null +++ b/tests/results/test_namespace_secrets/60_2family_dynamic_jinja_fill_sub_group_2.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📂 family + ┃  ┗━━ 📓 var: string1 (val1) + ┣━━ 📂 dynval2 + ┃ ┗━━ 📂 family + ┃  ┗━━ 📓 var: string1 (val2) + ┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_namespace_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh b/tests/results/test_namespace_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh new file mode 100644 index 0000000..2625e89 --- /dev/null +++ b/tests/results/test_namespace_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📂 family + ┃  ┗━━ 📓 var: string1 (val1) + ┣━━ 📂 dynval2 + ┃ ┗━━ 📂 family + ┃  ┗━━ 📓 var: string1 (val2) + ┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_namespace_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.sh b/tests/results/test_namespace_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.sh new file mode 100644 index 0000000..2c45496 --- /dev/null +++ b/tests/results/test_namespace_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📂 family + ┃  ┗━━ 📓 var: string1 + ┣━━ 📂 dynval2 + ┃ ┗━━ 📂 family + ┃  ┗━━ 📓 var: string1 + ┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_namespace_secrets/60_2family_dynamic_outside_calc.sh b/tests/results/test_namespace_secrets/60_2family_dynamic_outside_calc.sh new file mode 100644 index 0000000..3a50720 --- /dev/null +++ b/tests/results/test_namespace_secrets/60_2family_dynamic_outside_calc.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 (val) + ┣━━ 📂 dynval2 + ┃ ┗━━ 📓 var: string1 (val) + ┗━━ 📓 newvar: string1 (string1) diff --git a/tests/results/test_namespace_secrets/60_2family_dynamic_outside_calc_empty.sh b/tests/results/test_namespace_secrets/60_2family_dynamic_outside_calc_empty.sh new file mode 100644 index 0000000..29858f6 --- /dev/null +++ b/tests/results/test_namespace_secrets/60_2family_dynamic_outside_calc_empty.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 (val) + ┣━━ 📂 dynval2 + ┃ ┗━━ 📓 var: string1 (val) + ┗━━ 📓 newvar: string1 (string1) diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_calc2.sh b/tests/results/test_namespace_secrets/60_5family_dynamic_calc2.sh new file mode 100644 index 0000000..211d74c --- /dev/null +++ b/tests/results/test_namespace_secrets/60_5family_dynamic_calc2.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📓 var2: string1 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 vardyn: string1 (val) + ┗━━ 📂 dynval2 +  ┗━━ 📓 vardyn: string1 (val) diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_calc2_empty.sh b/tests/results/test_namespace_secrets/60_5family_dynamic_calc2_empty.sh new file mode 100644 index 0000000..f1e39b3 --- /dev/null +++ b/tests/results/test_namespace_secrets/60_5family_dynamic_calc2_empty.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📓 var2: string1 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 vardyn: string1 (val) + ┗━━ 📂 dynval2 +  ┗━━ 📓 vardyn: string1 (val) diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix.sh b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix.sh new file mode 100644 index 0000000..f7d90eb --- /dev/null +++ b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 + ┣━━ 📂 dynval2 + ┃ ┗━━ 📓 var: string1 + ┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix2.sh b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix2.sh new file mode 100644 index 0000000..270983d --- /dev/null +++ b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix2.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 (val1) + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: string1 (val2) diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix2_empty.sh b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix2_empty.sh new file mode 100644 index 0000000..ed92a05 --- /dev/null +++ b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix2_empty.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 (val1) + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: string1 (val2) diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_disabled.sh b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_disabled.sh new file mode 100644 index 0000000..e11f85a --- /dev/null +++ b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_disabled.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📂 dynval1 + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: string1 diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_empty.sh b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_empty.sh new file mode 100644 index 0000000..1a7c5cf --- /dev/null +++ b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_empty.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 + ┣━━ 📂 dynval2 + ┃ ┗━━ 📓 var: string1 + ┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_param.sh b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_param.sh new file mode 100644 index 0000000..270983d --- /dev/null +++ b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_param.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 (val1) + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: string1 (val2) diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_param_empty.sh b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_param_empty.sh new file mode 100644 index 0000000..ed92a05 --- /dev/null +++ b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_param_empty.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 (val1) + ┗━━ 📂 dynval2 +  ┗━━ 📓 var: string1 (val2) diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_variable.sh b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_variable.sh new file mode 100644 index 0000000..f7d90eb --- /dev/null +++ b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_variable.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 + ┣━━ 📂 dynval2 + ┃ ┗━━ 📓 var: string1 + ┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_variable_empty.sh b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_variable_empty.sh new file mode 100644 index 0000000..1a7c5cf --- /dev/null +++ b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_variable_empty.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var1 : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 var: string1 + ┣━━ 📂 dynval2 + ┃ ┗━━ 📓 var: string1 + ┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_hidden_suffix.sh b/tests/results/test_namespace_secrets/60_5family_dynamic_hidden_suffix.sh new file mode 100644 index 0000000..28ff5a9 --- /dev/null +++ b/tests/results/test_namespace_secrets/60_5family_dynamic_hidden_suffix.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📂 dynval1 + ┃ ┣━━ 📓 var: string1 + ┃ ┗━━ 📂 family + ┃  ┗━━ 📓 var: string1 + ┗━━ 📂 dynval2 +  ┣━━ 📓 var: null +  ┗━━ 📂 family +   ┗━━ 📓 var: null diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_unknown_suffix.sh b/tests/results/test_namespace_secrets/60_5family_dynamic_unknown_suffix.sh new file mode 100644 index 0000000..4a7fca5 --- /dev/null +++ b/tests/results/test_namespace_secrets/60_5family_dynamic_unknown_suffix.sh @@ -0,0 +1,19 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 val1_dyn + ┃ ┣━━ 📓 var1: string1 (val1) + ┃ ┣━━ 📓 var2: string1 (string1) + ┃ ┗━━ 📓 var3: string1 (string1) + ┗━━ 📂 val2_dyn +  ┣━━ 📓 var1: string1 (val2) +  ┣━━ 📓 var2: string1 (string1) +  ┗━━ 📓 var3: string1 (string1) diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_unknown_suffix_empty.sh b/tests/results/test_namespace_secrets/60_5family_dynamic_unknown_suffix_empty.sh new file mode 100644 index 0000000..6393a4b --- /dev/null +++ b/tests/results/test_namespace_secrets/60_5family_dynamic_unknown_suffix_empty.sh @@ -0,0 +1,33 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┣━━ val2 + ┃ ┣━━ val3 + ┃ ┗━━ val4 + ┣━━ 📂 val1_dyn + ┃ ┣━━ 📓 var1: string1 (val1) + ┃ ┣━━ 📓 var2: string1 (string1) + ┃ ┣━━ 📓 var3: string1 (string1) + ┃ ┗━━ 📓 var4: string1 (string1) + ┣━━ 📂 val2_dyn + ┃ ┣━━ 📓 var1: string1 (val2) + ┃ ┣━━ 📓 var2: string1 (string1) + ┃ ┣━━ 📓 var3: string1 (string1) + ┃ ┗━━ 📓 var4: string1 (string1) + ┣━━ 📂 val3_dyn + ┃ ┣━━ 📓 var1: string1 (val3) + ┃ ┣━━ 📓 var2: string1 (string1) + ┃ ┣━━ 📓 var3: string1 (string1) + ┃ ┗━━ 📓 var4: string1 (string1) + ┗━━ 📂 val4_dyn +  ┣━━ 📓 var1: string1 (val4) +  ┣━━ 📓 var2: string1 (string1) +  ┣━━ 📓 var3: string1 (string1) +  ┗━━ 📓 var4: string1 (string1) diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside.sh b/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside.sh new file mode 100644 index 0000000..6390d1f --- /dev/null +++ b/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside.sh @@ -0,0 +1,19 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 my_dyn_family_val1 + ┃ ┗━━ 📓 var: string1 (val1) + ┣━━ 📂 my_dyn_family_val2 + ┃ ┗━━ 📓 var: string1 (val2) + ┗━━ 📓 var2 : +  ┣━━ string1 (string1) +  ┣━━ string2 (string1) +  ┗━━ string3 diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside2.sh b/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside2.sh new file mode 100644 index 0000000..33ba297 --- /dev/null +++ b/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside2.sh @@ -0,0 +1,19 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var2 : + ┃ ┣━━ string1 (string1) + ┃ ┣━━ string2 (string1) + ┃ ┗━━ string3 + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 my_dyn_family_val1 + ┃ ┗━━ 📓 var: string1 (val1) + ┗━━ 📂 my_dyn_family_val2 +  ┗━━ 📓 var: string1 (val2) diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside2_empty.sh b/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside2_empty.sh new file mode 100644 index 0000000..706bfd3 --- /dev/null +++ b/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside2_empty.sh @@ -0,0 +1,19 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var2 : + ┃ ┣━━ string1 (string1) + ┃ ┣━━ string2 (string1) + ┃ ┗━━ string3 + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 my_dyn_family_val1 + ┃ ┗━━ 📓 var: string1 (val1) + ┗━━ 📂 my_dyn_family_val2 +  ┗━━ 📓 var: string1 (val2) diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_empty.sh b/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_empty.sh new file mode 100644 index 0000000..79a53ed --- /dev/null +++ b/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_empty.sh @@ -0,0 +1,19 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 my_dyn_family_val1 + ┃ ┗━━ 📓 var: string1 (val1) + ┣━━ 📂 my_dyn_family_val2 + ┃ ┗━━ 📓 var: string1 (val2) + ┗━━ 📓 var2 : +  ┣━━ string1 (string1) +  ┣━━ string2 (string1) +  ┗━━ string3 diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_jinja.sh b/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_jinja.sh new file mode 100644 index 0000000..6390d1f --- /dev/null +++ b/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_jinja.sh @@ -0,0 +1,19 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 my_dyn_family_val1 + ┃ ┗━━ 📓 var: string1 (val1) + ┣━━ 📂 my_dyn_family_val2 + ┃ ┗━━ 📓 var: string1 (val2) + ┗━━ 📓 var2 : +  ┣━━ string1 (string1) +  ┣━━ string2 (string1) +  ┗━━ string3 diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_jinja_empty.sh b/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_jinja_empty.sh new file mode 100644 index 0000000..79a53ed --- /dev/null +++ b/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_jinja_empty.sh @@ -0,0 +1,19 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 my_dyn_family_val1 + ┃ ┗━━ 📓 var: string1 (val1) + ┣━━ 📂 my_dyn_family_val2 + ┃ ┗━━ 📓 var: string1 (val2) + ┗━━ 📓 var2 : +  ┣━━ string1 (string1) +  ┣━━ string2 (string1) +  ┗━━ string3 diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_sub_suffix.sh b/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_sub_suffix.sh new file mode 100644 index 0000000..7ff8683 --- /dev/null +++ b/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_sub_suffix.sh @@ -0,0 +1,25 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 my_dyn_family_val1 + ┃ ┣━━ 📂 subdyn_val1 + ┃ ┃ ┗━━ 📓 var: string1 (val1) + ┃ ┗━━ 📂 subdyn_val2 + ┃  ┗━━ 📓 var: string1 (val2) + ┣━━ 📂 my_dyn_family_val2 + ┃ ┣━━ 📂 subdyn_val1 + ┃ ┃ ┗━━ 📓 var: string1 (val1) + ┃ ┗━━ 📂 subdyn_val2 + ┃  ┗━━ 📓 var: string1 (val2) + ┗━━ 📓 var2 : +  ┣━━ string1 (string1) +  ┣━━ string2 (string1) +  ┗━━ string3 diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_sub_suffix_empty.sh b/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_sub_suffix_empty.sh new file mode 100644 index 0000000..2be4b4c --- /dev/null +++ b/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_sub_suffix_empty.sh @@ -0,0 +1,25 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 my_dyn_family_val1 + ┃ ┣━━ 📂 subdyn_val1 + ┃ ┃ ┗━━ 📓 var: string1 (val1) + ┃ ┗━━ 📂 subdyn_val2 + ┃  ┗━━ 📓 var: string1 (val2) + ┣━━ 📂 my_dyn_family_val2 + ┃ ┣━━ 📂 subdyn_val1 + ┃ ┃ ┗━━ 📓 var: string1 (val1) + ┃ ┗━━ 📂 subdyn_val2 + ┃  ┗━━ 📓 var: string1 (val2) + ┗━━ 📓 var2 : +  ┣━━ string1 (string1) +  ┣━━ string2 (string1) +  ┗━━ string3 diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_suffix.sh b/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_suffix.sh new file mode 100644 index 0000000..f2eb50c --- /dev/null +++ b/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_suffix.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dyn_val1 + ┃ ┗━━ 📓 var: string1 (val1) + ┣━━ 📂 dyn_val2 + ┃ ┗━━ 📓 var: string1 (val2) + ┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_suffix_empty.sh b/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_suffix_empty.sh new file mode 100644 index 0000000..a0ab071 --- /dev/null +++ b/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_suffix_empty.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dyn_val1 + ┃ ┗━━ 📓 var: string1 (val1) + ┣━━ 📂 dyn_val2 + ┃ ┗━━ 📓 var: string1 (val2) + ┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_namespace_secrets/60_6family_dynamic_inside.sh b/tests/results/test_namespace_secrets/60_6family_dynamic_inside.sh new file mode 100644 index 0000000..32207f0 --- /dev/null +++ b/tests/results/test_namespace_secrets/60_6family_dynamic_inside.sh @@ -0,0 +1,21 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 val1_dyn + ┃ ┣━━ 📓 var1: string1 (val1) + ┃ ┣━━ 📓 var2: string1 (string1) + ┃ ┣━━ 📓 var3: string1 (string1) + ┃ ┗━━ 📓 var4: string1 (string1) + ┗━━ 📂 val2_dyn +  ┣━━ 📓 var1: string1 (val2) +  ┣━━ 📓 var2: string1 (string1) +  ┣━━ 📓 var3: string1 (string1) +  ┗━━ 📓 var4: string1 (string1) diff --git a/tests/results/test_namespace_secrets/60_6family_dynamic_inside_empty.sh b/tests/results/test_namespace_secrets/60_6family_dynamic_inside_empty.sh new file mode 100644 index 0000000..e8ccafe --- /dev/null +++ b/tests/results/test_namespace_secrets/60_6family_dynamic_inside_empty.sh @@ -0,0 +1,21 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 val1_dyn + ┃ ┣━━ 📓 var1: string1 (val1) + ┃ ┣━━ 📓 var2: string1 (string1) + ┃ ┣━━ 📓 var3: string1 (string1) + ┃ ┗━━ 📓 var4: string1 (string1) + ┗━━ 📂 val2_dyn +  ┣━━ 📓 var1: string1 (val2) +  ┣━━ 📓 var2: string1 (string1) +  ┣━━ 📓 var3: string1 (string1) +  ┗━━ 📓 var4: string1 (string1) diff --git a/tests/results/test_namespace_secrets/60_6family_dynamic_leadership.sh b/tests/results/test_namespace_secrets/60_6family_dynamic_leadership.sh new file mode 100644 index 0000000..f028040 --- /dev/null +++ b/tests/results/test_namespace_secrets/60_6family_dynamic_leadership.sh @@ -0,0 +1,39 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📂 leadership + ┃  ┣━━ 📂 leader + ┃  ┃ ┣━━ 📓 leader: string1 + ┃  ┃ ┣━━ 📓 follower1: string1 + ┃  ┃ ┗━━ 📓 follower2: string1 + ┃  ┣━━ 📂 leader + ┃  ┃ ┣━━ 📓 leader: string2 + ┃  ┃ ┣━━ 📓 follower1: string2 + ┃  ┃ ┗━━ 📓 follower2: string2 + ┃  ┗━━ 📂 leader + ┃   ┣━━ 📓 leader: string3 + ┃   ┣━━ 📓 follower1: string3 + ┃   ┗━━ 📓 follower2: string3 + ┗━━ 📂 dynval2 +  ┗━━ 📂 leadership +   ┣━━ 📂 leader +   ┃ ┣━━ 📓 leader: string1 +   ┃ ┣━━ 📓 follower1: string1 +   ┃ ┗━━ 📓 follower2: string1 +   ┣━━ 📂 leader +   ┃ ┣━━ 📓 leader: string2 +   ┃ ┣━━ 📓 follower1: string2 +   ┃ ┗━━ 📓 follower2: string2 +   ┗━━ 📂 leader +    ┣━━ 📓 leader: string3 +    ┣━━ 📓 follower1: string3 +    ┗━━ 📓 follower2: string3 diff --git a/tests/results/test_namespace_secrets/60_6family_dynamic_leadership_empty.sh b/tests/results/test_namespace_secrets/60_6family_dynamic_leadership_empty.sh new file mode 100644 index 0000000..b2acb4b --- /dev/null +++ b/tests/results/test_namespace_secrets/60_6family_dynamic_leadership_empty.sh @@ -0,0 +1,39 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📂 leadership + ┃  ┣━━ 📂 leader + ┃  ┃ ┣━━ 📓 leader: string1 + ┃  ┃ ┣━━ 📓 follower1: string1 + ┃  ┃ ┗━━ 📓 follower2: string1 + ┃  ┣━━ 📂 leader + ┃  ┃ ┣━━ 📓 leader: string2 + ┃  ┃ ┣━━ 📓 follower1: string2 + ┃  ┃ ┗━━ 📓 follower2: string2 + ┃  ┗━━ 📂 leader + ┃   ┣━━ 📓 leader: string3 + ┃   ┣━━ 📓 follower1: string3 + ┃   ┗━━ 📓 follower2: string3 + ┗━━ 📂 dynval2 +  ┗━━ 📂 leadership +   ┣━━ 📂 leader +   ┃ ┣━━ 📓 leader: string1 +   ┃ ┣━━ 📓 follower1: string1 +   ┃ ┗━━ 📓 follower2: string1 +   ┣━━ 📂 leader +   ┃ ┣━━ 📓 leader: string2 +   ┃ ┣━━ 📓 follower1: string2 +   ┃ ┗━━ 📓 follower2: string2 +   ┗━━ 📂 leader +    ┣━━ 📓 leader: string3 +    ┣━━ 📓 follower1: string3 +    ┗━━ 📓 follower2: string3 diff --git a/tests/results/test_namespace_secrets/60_6family_dynamic_sub_dynamic.sh b/tests/results/test_namespace_secrets/60_6family_dynamic_sub_dynamic.sh new file mode 100644 index 0000000..ccc6b3a --- /dev/null +++ b/tests/results/test_namespace_secrets/60_6family_dynamic_sub_dynamic.sh @@ -0,0 +1,35 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┣━━ 📓 var : + ┃ ┃ ┣━━ tval1 (tval1) + ┃ ┃ ┗━━ tval2 (tval2) + ┃ ┣━━ 📂 dyn_tval1 + ┃ ┃ ┣━━ 📓 var: string1 (tval1) + ┃ ┃ ┣━━ 📓 var_identifier: string1 (val1) + ┃ ┃ ┗━━ 📓 var_identifiers: string1 (val1-tval1) + ┃ ┗━━ 📂 dyn_tval2 + ┃  ┣━━ 📓 var: string1 (tval2) + ┃  ┣━━ 📓 var_identifier: string1 (val1) + ┃  ┗━━ 📓 var_identifiers: string1 (val1-tval2) + ┗━━ 📂 dynval2 +  ┣━━ 📓 var : +  ┃ ┣━━ tval1 (tval1) +  ┃ ┗━━ tval2 (tval2) +  ┣━━ 📂 dyn_tval1 +  ┃ ┣━━ 📓 var: string1 (tval1) +  ┃ ┣━━ 📓 var_identifier: string1 (val2) +  ┃ ┗━━ 📓 var_identifiers: string1 (val2-tval1) +  ┗━━ 📂 dyn_tval2 +   ┣━━ 📓 var: string1 (tval2) +   ┣━━ 📓 var_identifier: string1 (val2) +   ┗━━ 📓 var_identifiers: string1 (val2-tval2) diff --git a/tests/results/test_namespace_secrets/60_6family_dynamic_sub_dynamic_1_0.sh b/tests/results/test_namespace_secrets/60_6family_dynamic_sub_dynamic_1_0.sh new file mode 100644 index 0000000..ccc6b3a --- /dev/null +++ b/tests/results/test_namespace_secrets/60_6family_dynamic_sub_dynamic_1_0.sh @@ -0,0 +1,35 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 (val1) + ┃ ┗━━ val2 (val2) + ┣━━ 📂 dynval1 + ┃ ┣━━ 📓 var : + ┃ ┃ ┣━━ tval1 (tval1) + ┃ ┃ ┗━━ tval2 (tval2) + ┃ ┣━━ 📂 dyn_tval1 + ┃ ┃ ┣━━ 📓 var: string1 (tval1) + ┃ ┃ ┣━━ 📓 var_identifier: string1 (val1) + ┃ ┃ ┗━━ 📓 var_identifiers: string1 (val1-tval1) + ┃ ┗━━ 📂 dyn_tval2 + ┃  ┣━━ 📓 var: string1 (tval2) + ┃  ┣━━ 📓 var_identifier: string1 (val1) + ┃  ┗━━ 📓 var_identifiers: string1 (val1-tval2) + ┗━━ 📂 dynval2 +  ┣━━ 📓 var : +  ┃ ┣━━ tval1 (tval1) +  ┃ ┗━━ tval2 (tval2) +  ┣━━ 📂 dyn_tval1 +  ┃ ┣━━ 📓 var: string1 (tval1) +  ┃ ┣━━ 📓 var_identifier: string1 (val2) +  ┃ ┗━━ 📓 var_identifiers: string1 (val2-tval1) +  ┗━━ 📂 dyn_tval2 +   ┣━━ 📓 var: string1 (tval2) +   ┣━━ 📓 var_identifier: string1 (val2) +   ┗━━ 📓 var_identifiers: string1 (val2-tval2) diff --git a/tests/results/test_namespace_secrets/60_6family_dynamic_sub_dynamic_empty.sh b/tests/results/test_namespace_secrets/60_6family_dynamic_sub_dynamic_empty.sh new file mode 100644 index 0000000..f3dd5cf --- /dev/null +++ b/tests/results/test_namespace_secrets/60_6family_dynamic_sub_dynamic_empty.sh @@ -0,0 +1,35 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var : + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┣━━ 📓 var : + ┃ ┃ ┣━━ tval1 (tval1) + ┃ ┃ ┗━━ tval2 (tval2) + ┃ ┣━━ 📂 dyn_tval1 + ┃ ┃ ┣━━ 📓 var: string1 (tval1) + ┃ ┃ ┣━━ 📓 var_identifier: string1 (val1) + ┃ ┃ ┗━━ 📓 var_identifiers: string1 (val1-tval1) + ┃ ┗━━ 📂 dyn_tval2 + ┃  ┣━━ 📓 var: string1 (tval2) + ┃  ┣━━ 📓 var_identifier: string1 (val1) + ┃  ┗━━ 📓 var_identifiers: string1 (val1-tval2) + ┗━━ 📂 dynval2 +  ┣━━ 📓 var : +  ┃ ┣━━ tval1 (tval1) +  ┃ ┗━━ tval2 (tval2) +  ┣━━ 📂 dyn_tval1 +  ┃ ┣━━ 📓 var: string1 (tval1) +  ┃ ┣━━ 📓 var_identifier: string1 (val2) +  ┃ ┗━━ 📓 var_identifiers: string1 (val2-tval1) +  ┗━━ 📂 dyn_tval2 +   ┣━━ 📓 var: string1 (tval2) +   ┣━━ 📓 var_identifier: string1 (val2) +   ┗━━ 📓 var_identifiers: string1 (val2-tval2) diff --git a/tests/results/test_namespace_secrets/60_9extra_dynamic.sh b/tests/results/test_namespace_secrets/60_9extra_dynamic.sh new file mode 100644 index 0000000..4559fbe --- /dev/null +++ b/tests/results/test_namespace_secrets/60_9extra_dynamic.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📂 rougail +┃ ┗━━ 📓 var : +┃  ┗━━ a (a) +┗━━ 📂 extra + ┗━━ 📂 dyn_a +  ┗━━ 📓 var: string1 diff --git a/tests/results/test_namespace_secrets/60_9extra_dynamic_extra.sh b/tests/results/test_namespace_secrets/60_9extra_dynamic_extra.sh new file mode 100644 index 0000000..ead5b03 --- /dev/null +++ b/tests/results/test_namespace_secrets/60_9extra_dynamic_extra.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📂 rougail +┃ ┗━━ 📂 general +┃  ┗━━ 📓 varname : +┃   ┣━━ string1 (a) +┃   ┣━━ string2 +┃   ┗━━ string3 +┗━━ 📂 extra + ┣━━ 📓 var : + ┃ ┗━━ a (a) + ┗━━ 📂 dyn_a +  ┗━━ 📓 var: string1 diff --git a/tests/results/test_namespace_secrets/60_9family_dynamic_calc_both.sh b/tests/results/test_namespace_secrets/60_9family_dynamic_calc_both.sh new file mode 100644 index 0000000..f593879 --- /dev/null +++ b/tests/results/test_namespace_secrets/60_9family_dynamic_calc_both.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┣━━ 📓 var: string1 (val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 vardyn: string1 + ┗━━ 📂 dynstring1 +  ┗━━ 📓 vardyn: string1 diff --git a/tests/results/test_namespace_secrets/68_0family_leadership_mode.sh b/tests/results/test_namespace_secrets/68_0family_leadership_mode.sh new file mode 100644 index 0000000..5938837 --- /dev/null +++ b/tests/results/test_namespace_secrets/68_0family_leadership_mode.sh @@ -0,0 +1,21 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 rougail + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 +  ┃ ┣━━ 📓 follower1: string1 +  ┃ ┗━━ 📓 follower2: string1 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┣━━ 📓 follower1: string2 +  ┃ ┗━━ 📓 follower2: string2 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┣━━ 📓 follower1: string3 +   ┗━━ 📓 follower2: string3 diff --git a/tests/results/test_read_write/00_0empty.sh b/tests/results/test_read_write/00_0empty.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write/00_0empty.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write/00_0version_underscore.sh b/tests/results/test_read_write/00_0version_underscore.sh new file mode 100644 index 0000000..52cdafe --- /dev/null +++ b/tests/results/test_read_write/00_0version_underscore.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 version: null diff --git a/tests/results/test_read_write/00_1empty_variable.sh b/tests/results/test_read_write/00_1empty_variable.sh new file mode 100644 index 0000000..299bf27 --- /dev/null +++ b/tests/results/test_read_write/00_1empty_variable.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 empty: null diff --git a/tests/results/test_read_write/00_2default_calculated.sh b/tests/results/test_read_write/00_2default_calculated.sh new file mode 100644 index 0000000..ea81b84 --- /dev/null +++ b/tests/results/test_read_write/00_2default_calculated.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: no +┗━━ 📓 var2 : + ┗━━ no diff --git a/tests/results/test_read_write/00_2default_calculated_multi.sh b/tests/results/test_read_write/00_2default_calculated_multi.sh new file mode 100644 index 0000000..79f67bc --- /dev/null +++ b/tests/results/test_read_write/00_2default_calculated_multi.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ no +┃ ┣━━ yes +┃ ┗━━ maybe +┗━━ 📓 var2 : + ┣━━ no + ┣━━ yes + ┗━━ maybe diff --git a/tests/results/test_read_write/00_2default_calculated_variable_transitive.sh b/tests/results/test_read_write/00_2default_calculated_variable_transitive.sh new file mode 100644 index 0000000..8248204 --- /dev/null +++ b/tests/results/test_read_write/00_2default_calculated_variable_transitive.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┗━━ 📓 var2 : diff --git a/tests/results/test_read_write/00_4load_subfolder.sh b/tests/results/test_read_write/00_4load_subfolder.sh new file mode 100644 index 0000000..0ee4247 --- /dev/null +++ b/tests/results/test_read_write/00_4load_subfolder.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: null +┗━━ 📓 var2: null diff --git a/tests/results/test_read_write/00_5load_notype.sh b/tests/results/test_read_write/00_5load_notype.sh new file mode 100644 index 0000000..35da888 --- /dev/null +++ b/tests/results/test_read_write/00_5load_notype.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 without_type: non diff --git a/tests/results/test_read_write/00_6boolean.sh b/tests/results/test_read_write/00_6boolean.sh new file mode 100644 index 0000000..6805146 --- /dev/null +++ b/tests/results/test_read_write/00_6boolean.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: true +┣━━ 📓 var2: true +┣━━ 📓 var3: true +┣━━ 📓 var4: false +┣━━ 📓 var5: false +┗━━ 📓 var6: false diff --git a/tests/results/test_read_write/00_6boolean_no_mandatory.sh b/tests/results/test_read_write/00_6boolean_no_mandatory.sh new file mode 100644 index 0000000..66d2b7d --- /dev/null +++ b/tests/results/test_read_write/00_6boolean_no_mandatory.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: true diff --git a/tests/results/test_read_write/00_6choice.sh b/tests/results/test_read_write/00_6choice.sh new file mode 100644 index 0000000..bb6ec9a --- /dev/null +++ b/tests/results/test_read_write/00_6choice.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: null +┣━━ 📓 var2: null +┣━━ 📓 var3: null +┣━━ 📓 var4: null +┣━━ 📓 var5: a +┗━━ 📓 var6: 1 diff --git a/tests/results/test_read_write/00_6choice_calculation.sh b/tests/results/test_read_write/00_6choice_calculation.sh new file mode 100644 index 0000000..03c04da --- /dev/null +++ b/tests/results/test_read_write/00_6choice_calculation.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: 9 diff --git a/tests/results/test_read_write/00_6choice_variable.sh b/tests/results/test_read_write/00_6choice_variable.sh new file mode 100644 index 0000000..235edb0 --- /dev/null +++ b/tests/results/test_read_write/00_6choice_variable.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ a +┃ ┣━━ b +┃ ┗━━ c +┗━━ 📓 var2: a diff --git a/tests/results/test_read_write/00_6custom.sh b/tests/results/test_read_write/00_6custom.sh new file mode 100644 index 0000000..acf7c86 --- /dev/null +++ b/tests/results/test_read_write/00_6custom.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 custom1: null +┗━━ 📓 custom2: value diff --git a/tests/results/test_read_write/00_6domainname.sh b/tests/results/test_read_write/00_6domainname.sh new file mode 100644 index 0000000..b67665a --- /dev/null +++ b/tests/results/test_read_write/00_6domainname.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: my.domain.name diff --git a/tests/results/test_read_write/00_6domainname_params.sh b/tests/results/test_read_write/00_6domainname_params.sh new file mode 100644 index 0000000..b67665a --- /dev/null +++ b/tests/results/test_read_write/00_6domainname_params.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: my.domain.name diff --git a/tests/results/test_read_write/00_6float.sh b/tests/results/test_read_write/00_6float.sh new file mode 100644 index 0000000..5199bcc --- /dev/null +++ b/tests/results/test_read_write/00_6float.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: 0.0 +┣━━ 📓 var2: 0.0 +┣━━ 📓 var3: 0.0 +┣━━ 📓 var4: 10.1 +┣━━ 📓 var5: 10.1 +┗━━ 📓 var6: 10.1 diff --git a/tests/results/test_read_write/00_6number.sh b/tests/results/test_read_write/00_6number.sh new file mode 100644 index 0000000..c7c986a --- /dev/null +++ b/tests/results/test_read_write/00_6number.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: 0 +┣━━ 📓 var2: 0 +┣━━ 📓 var3: 0 +┣━━ 📓 var4: 10 +┣━━ 📓 var5: 10 +┗━━ 📓 var6: 10 diff --git a/tests/results/test_read_write/00_6port.sh b/tests/results/test_read_write/00_6port.sh new file mode 100644 index 0000000..796d724 --- /dev/null +++ b/tests/results/test_read_write/00_6port.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 variable1: null +┣━━ 📓 variable2: 8080 +┗━━ 📓 variable3: 8080 diff --git a/tests/results/test_read_write/00_6regexp.sh b/tests/results/test_read_write/00_6regexp.sh new file mode 100644 index 0000000..cdbcab1 --- /dev/null +++ b/tests/results/test_read_write/00_6regexp.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: #a1a1a1 diff --git a/tests/results/test_read_write/00_6string.sh b/tests/results/test_read_write/00_6string.sh new file mode 100644 index 0000000..298fccc --- /dev/null +++ b/tests/results/test_read_write/00_6string.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: null +┣━━ 📓 var2: null +┣━━ 📓 var3: null +┣━━ 📓 var4: value +┣━━ 📓 var5: value +┗━━ 📓 var6: value diff --git a/tests/results/test_read_write/00_7choice_quote.sh b/tests/results/test_read_write/00_7choice_quote.sh new file mode 100644 index 0000000..c8c584b --- /dev/null +++ b/tests/results/test_read_write/00_7choice_quote.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: quote' diff --git a/tests/results/test_read_write/00_7help_quote.sh b/tests/results/test_read_write/00_7help_quote.sh new file mode 100644 index 0000000..0ee4247 --- /dev/null +++ b/tests/results/test_read_write/00_7help_quote.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: null +┗━━ 📓 var2: null diff --git a/tests/results/test_read_write/00_7value_doublequote.sh b/tests/results/test_read_write/00_7value_doublequote.sh new file mode 100644 index 0000000..aaf6caa --- /dev/null +++ b/tests/results/test_read_write/00_7value_doublequote.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: quote" diff --git a/tests/results/test_read_write/00_7value_doublequote2.sh b/tests/results/test_read_write/00_7value_doublequote2.sh new file mode 100644 index 0000000..0e8e8d3 --- /dev/null +++ b/tests/results/test_read_write/00_7value_doublequote2.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: quote'" diff --git a/tests/results/test_read_write/00_7value_doublequote3.sh b/tests/results/test_read_write/00_7value_doublequote3.sh new file mode 100644 index 0000000..4ea0921 --- /dev/null +++ b/tests/results/test_read_write/00_7value_doublequote3.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: quote\"\' diff --git a/tests/results/test_read_write/00_7value_quote.sh b/tests/results/test_read_write/00_7value_quote.sh new file mode 100644 index 0000000..acdb9f0 --- /dev/null +++ b/tests/results/test_read_write/00_7value_quote.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: quote' diff --git a/tests/results/test_read_write/00_8calculation_information.sh b/tests/results/test_read_write/00_8calculation_information.sh new file mode 100644 index 0000000..caae029 --- /dev/null +++ b/tests/results/test_read_write/00_8calculation_information.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: null diff --git a/tests/results/test_read_write/00_8test.sh b/tests/results/test_read_write/00_8test.sh new file mode 100644 index 0000000..49e438a --- /dev/null +++ b/tests/results/test_read_write/00_8test.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: null +┣━━ 📓 var2: value +┣━━ 📓 var3: null +┣━━ 📓 var4: null +┣━━ 📓 var5: true +┗━━ 📓 var6 : diff --git a/tests/results/test_read_write/00_9choice_variable_multi.sh b/tests/results/test_read_write/00_9choice_variable_multi.sh new file mode 100644 index 0000000..abf5529 --- /dev/null +++ b/tests/results/test_read_write/00_9choice_variable_multi.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 variable1 : +┗━━ 📓 variable2 : diff --git a/tests/results/test_read_write/00_9choice_variables.sh b/tests/results/test_read_write/00_9choice_variables.sh new file mode 100644 index 0000000..6e39835 --- /dev/null +++ b/tests/results/test_read_write/00_9choice_variables.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 source_variable_1: val1 +┣━━ 📓 source_variable_2: val2 +┗━━ 📓 my_variable: val1 diff --git a/tests/results/test_read_write/00_9default_calculation.sh b/tests/results/test_read_write/00_9default_calculation.sh new file mode 100644 index 0000000..1c17dd6 --- /dev/null +++ b/tests/results/test_read_write/00_9default_calculation.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: string_1_True_None diff --git a/tests/results/test_read_write/00_9default_calculation_information.sh b/tests/results/test_read_write/00_9default_calculation_information.sh new file mode 100644 index 0000000..e46acca --- /dev/null +++ b/tests/results/test_read_write/00_9default_calculation_information.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: null diff --git a/tests/results/test_read_write/00_9default_calculation_information_other_variable.sh b/tests/results/test_read_write/00_9default_calculation_information_other_variable.sh new file mode 100644 index 0000000..0ee4247 --- /dev/null +++ b/tests/results/test_read_write/00_9default_calculation_information_other_variable.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: null +┗━━ 📓 var2: null diff --git a/tests/results/test_read_write/00_9default_calculation_multi_optional.sh b/tests/results/test_read_write/00_9default_calculation_multi_optional.sh new file mode 100644 index 0000000..eac7e25 --- /dev/null +++ b/tests/results/test_read_write/00_9default_calculation_multi_optional.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 my_variable: val1 +┗━━ 📓 my_calculated_variable : + ┗━━ val1 diff --git a/tests/results/test_read_write/00_9default_calculation_multi_optional2.sh b/tests/results/test_read_write/00_9default_calculation_multi_optional2.sh new file mode 100644 index 0000000..eac7e25 --- /dev/null +++ b/tests/results/test_read_write/00_9default_calculation_multi_optional2.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 my_variable: val1 +┗━━ 📓 my_calculated_variable : + ┗━━ val1 diff --git a/tests/results/test_read_write/00_9default_calculation_optional.sh b/tests/results/test_read_write/00_9default_calculation_optional.sh new file mode 100644 index 0000000..416e8d0 --- /dev/null +++ b/tests/results/test_read_write/00_9default_calculation_optional.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 my_calculated_variable : diff --git a/tests/results/test_read_write/00_9default_calculation_optional_exists.sh b/tests/results/test_read_write/00_9default_calculation_optional_exists.sh new file mode 100644 index 0000000..7536369 --- /dev/null +++ b/tests/results/test_read_write/00_9default_calculation_optional_exists.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 my_variable : +┃ ┣━━ val1 +┃ ┗━━ val2 +┗━━ 📓 my_calculated_variable : + ┣━━ val1 + ┗━━ val2 diff --git a/tests/results/test_read_write/00_9default_calculation_param_optional.sh b/tests/results/test_read_write/00_9default_calculation_param_optional.sh new file mode 100644 index 0000000..95b4d3c --- /dev/null +++ b/tests/results/test_read_write/00_9default_calculation_param_optional.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: no +┗━━ 📓 var2: no diff --git a/tests/results/test_read_write/00_9default_information_other_variable.sh b/tests/results/test_read_write/00_9default_information_other_variable.sh new file mode 100644 index 0000000..0ee4247 --- /dev/null +++ b/tests/results/test_read_write/00_9default_information_other_variable.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: null +┗━━ 📓 var2: null diff --git a/tests/results/test_read_write/00_9default_integer.sh b/tests/results/test_read_write/00_9default_integer.sh new file mode 100644 index 0000000..03c04da --- /dev/null +++ b/tests/results/test_read_write/00_9default_integer.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: 9 diff --git a/tests/results/test_read_write/01_6boolean_multi.sh b/tests/results/test_read_write/01_6boolean_multi.sh new file mode 100644 index 0000000..2efa842 --- /dev/null +++ b/tests/results/test_read_write/01_6boolean_multi.sh @@ -0,0 +1,22 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┗━━ true +┣━━ 📓 var2 : +┃ ┗━━ true +┣━━ 📓 var3 : +┃ ┗━━ true +┣━━ 📓 var4 : +┃ ┗━━ false +┣━━ 📓 var5 : +┃ ┗━━ false +┣━━ 📓 var6 : +┃ ┗━━ false +┣━━ 📓 var7 : +┃ ┗━━ true +┗━━ 📓 var8 : + ┗━━ true diff --git a/tests/results/test_read_write/01_6custom_multi.sh b/tests/results/test_read_write/01_6custom_multi.sh new file mode 100644 index 0000000..65d524e --- /dev/null +++ b/tests/results/test_read_write/01_6custom_multi.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 custom1 : +┗━━ 📓 custom2 : + ┗━━ value diff --git a/tests/results/test_read_write/01_6float_multi.sh b/tests/results/test_read_write/01_6float_multi.sh new file mode 100644 index 0000000..4e5008a --- /dev/null +++ b/tests/results/test_read_write/01_6float_multi.sh @@ -0,0 +1,22 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┗━━ 0.0 +┣━━ 📓 var2 : +┃ ┗━━ 0.0 +┣━━ 📓 var3 : +┃ ┗━━ 0.0 +┣━━ 📓 var4 : +┃ ┗━━ 10.1 +┣━━ 📓 var5 : +┃ ┗━━ 10.1 +┣━━ 📓 var6 : +┃ ┗━━ 10.1 +┣━━ 📓 var7 : +┃ ┗━━ 0.0 +┗━━ 📓 var8 : + ┗━━ 0.0 diff --git a/tests/results/test_read_write/01_6number_multi.sh b/tests/results/test_read_write/01_6number_multi.sh new file mode 100644 index 0000000..7dee2a9 --- /dev/null +++ b/tests/results/test_read_write/01_6number_multi.sh @@ -0,0 +1,22 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┗━━ 0 +┣━━ 📓 var2 : +┃ ┗━━ 0 +┣━━ 📓 var3 : +┃ ┗━━ 0 +┣━━ 📓 var4 : +┃ ┗━━ 10 +┣━━ 📓 var5 : +┃ ┗━━ 10 +┣━━ 📓 var6 : +┃ ┗━━ 10 +┣━━ 📓 var7 : +┃ ┗━━ 0 +┗━━ 📓 var8 : + ┗━━ 0 diff --git a/tests/results/test_read_write/01_6string_empty.sh b/tests/results/test_read_write/01_6string_empty.sh new file mode 100644 index 0000000..e1cc3d9 --- /dev/null +++ b/tests/results/test_read_write/01_6string_empty.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var1 : + ┣━━ value + ┗━━ null diff --git a/tests/results/test_read_write/01_6string_multi.sh b/tests/results/test_read_write/01_6string_multi.sh new file mode 100644 index 0000000..b318db8 --- /dev/null +++ b/tests/results/test_read_write/01_6string_multi.sh @@ -0,0 +1,19 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┣━━ 📓 var2 : +┣━━ 📓 var3: null +┣━━ 📓 var4 : +┃ ┗━━ value +┣━━ 📓 var5 : +┃ ┗━━ value +┣━━ 📓 var6 : +┃ ┗━━ value +┣━━ 📓 var7 : +┃ ┗━━ value +┗━━ 📓 var8 : + ┗━━ value diff --git a/tests/results/test_read_write/01_7value_multi_doublequote.sh b/tests/results/test_read_write/01_7value_multi_doublequote.sh new file mode 100644 index 0000000..809894f --- /dev/null +++ b/tests/results/test_read_write/01_7value_multi_doublequote.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable : + ┗━━ quote" diff --git a/tests/results/test_read_write/01_7value_multi_doublequote2.sh b/tests/results/test_read_write/01_7value_multi_doublequote2.sh new file mode 100644 index 0000000..30de023 --- /dev/null +++ b/tests/results/test_read_write/01_7value_multi_doublequote2.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable : + ┗━━ quote'" diff --git a/tests/results/test_read_write/01_7value_multi_quote.sh b/tests/results/test_read_write/01_7value_multi_quote.sh new file mode 100644 index 0000000..50f342f --- /dev/null +++ b/tests/results/test_read_write/01_7value_multi_quote.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable : + ┗━━ quote' diff --git a/tests/results/test_read_write/01_8calculation_information_multi.sh b/tests/results/test_read_write/01_8calculation_information_multi.sh new file mode 100644 index 0000000..de4bc3b --- /dev/null +++ b/tests/results/test_read_write/01_8calculation_information_multi.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable : diff --git a/tests/results/test_read_write/01_9choice_variable_multi.sh b/tests/results/test_read_write/01_9choice_variable_multi.sh new file mode 100644 index 0000000..7d1c77f --- /dev/null +++ b/tests/results/test_read_write/01_9choice_variable_multi.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 variable1 : +┃ ┣━━ a +┃ ┣━━ b +┃ ┗━━ c +┗━━ 📓 variable2: null diff --git a/tests/results/test_read_write/04_0type_param.sh b/tests/results/test_read_write/04_0type_param.sh new file mode 100644 index 0000000..05d7c5a --- /dev/null +++ b/tests/results/test_read_write/04_0type_param.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 int: 10 diff --git a/tests/results/test_read_write/04_1auto_save.sh b/tests/results/test_read_write/04_1auto_save.sh new file mode 100644 index 0000000..4790bac --- /dev/null +++ b/tests/results/test_read_write/04_1auto_save.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: no diff --git a/tests/results/test_read_write/04_1auto_save_and_calculated.sh b/tests/results/test_read_write/04_1auto_save_and_calculated.sh new file mode 100644 index 0000000..bc7be55 --- /dev/null +++ b/tests/results/test_read_write/04_1auto_save_and_calculated.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: no +┗━━ 📓 var2: no diff --git a/tests/results/test_read_write/04_1auto_save_and_calculated_hidden.sh b/tests/results/test_read_write/04_1auto_save_and_calculated_hidden.sh new file mode 100644 index 0000000..ac49fef --- /dev/null +++ b/tests/results/test_read_write/04_1auto_save_and_calculated_hidden.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: no +┗━━ 📓 var2: yes diff --git a/tests/results/test_read_write/04_1auto_save_and_hidden.sh b/tests/results/test_read_write/04_1auto_save_and_hidden.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write/04_1auto_save_and_hidden.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write/04_1default_calculation_hidden.sh b/tests/results/test_read_write/04_1default_calculation_hidden.sh new file mode 100644 index 0000000..b5dc101 --- /dev/null +++ b/tests/results/test_read_write/04_1default_calculation_hidden.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: value +┗━━ 📓 var3: value diff --git a/tests/results/test_read_write/04_1default_calculation_hidden_2.sh b/tests/results/test_read_write/04_1default_calculation_hidden_2.sh new file mode 100644 index 0000000..b5dc101 --- /dev/null +++ b/tests/results/test_read_write/04_1default_calculation_hidden_2.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: value +┗━━ 📓 var3: value diff --git a/tests/results/test_read_write/04_5disabled_calculation_optional.sh b/tests/results/test_read_write/04_5disabled_calculation_optional.sh new file mode 100644 index 0000000..29461f3 --- /dev/null +++ b/tests/results/test_read_write/04_5disabled_calculation_optional.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 condition: no diff --git a/tests/results/test_read_write/04_5disabled_calculation_variable.sh b/tests/results/test_read_write/04_5disabled_calculation_variable.sh new file mode 100644 index 0000000..cc821db --- /dev/null +++ b/tests/results/test_read_write/04_5disabled_calculation_variable.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 condition: false +┗━━ 📓 variable: null diff --git a/tests/results/test_read_write/04_5disabled_calculation_variable2.sh b/tests/results/test_read_write/04_5disabled_calculation_variable2.sh new file mode 100644 index 0000000..2a451c3 --- /dev/null +++ b/tests/results/test_read_write/04_5disabled_calculation_variable2.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 condition: true diff --git a/tests/results/test_read_write/04_5disabled_calculation_variable3.sh b/tests/results/test_read_write/04_5disabled_calculation_variable3.sh new file mode 100644 index 0000000..b78ef57 --- /dev/null +++ b/tests/results/test_read_write/04_5disabled_calculation_variable3.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 condition: yes diff --git a/tests/results/test_read_write/04_5disabled_calculation_variable4.sh b/tests/results/test_read_write/04_5disabled_calculation_variable4.sh new file mode 100644 index 0000000..0434808 --- /dev/null +++ b/tests/results/test_read_write/04_5disabled_calculation_variable4.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 condition: yes +┗━━ 📓 variable: null diff --git a/tests/results/test_read_write/04_5validators.sh b/tests/results/test_read_write/04_5validators.sh new file mode 100644 index 0000000..27abddf --- /dev/null +++ b/tests/results/test_read_write/04_5validators.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 int: null diff --git a/tests/results/test_read_write/04_5validators_differ.sh b/tests/results/test_read_write/04_5validators_differ.sh new file mode 100644 index 0000000..ab2871f --- /dev/null +++ b/tests/results/test_read_write/04_5validators_differ.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: oui +┗━━ 📓 var2: no diff --git a/tests/results/test_read_write/04_5validators_multi.sh b/tests/results/test_read_write/04_5validators_multi.sh new file mode 100644 index 0000000..6974930 --- /dev/null +++ b/tests/results/test_read_write/04_5validators_multi.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var1 : + ┣━━ no + ┗━━ yes diff --git a/tests/results/test_read_write/04_5validators_multi2.sh b/tests/results/test_read_write/04_5validators_multi2.sh new file mode 100644 index 0000000..6974930 --- /dev/null +++ b/tests/results/test_read_write/04_5validators_multi2.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var1 : + ┣━━ no + ┗━━ yes diff --git a/tests/results/test_read_write/05_0multi_not_uniq.sh b/tests/results/test_read_write/05_0multi_not_uniq.sh new file mode 100644 index 0000000..02a01a7 --- /dev/null +++ b/tests/results/test_read_write/05_0multi_not_uniq.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var1 : + ┗━━ non diff --git a/tests/results/test_read_write/05_0multi_uniq.sh b/tests/results/test_read_write/05_0multi_uniq.sh new file mode 100644 index 0000000..3ba1b77 --- /dev/null +++ b/tests/results/test_read_write/05_0multi_uniq.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable : + ┗━━ non diff --git a/tests/results/test_read_write/12_1auto_save_expert.sh b/tests/results/test_read_write/12_1auto_save_expert.sh new file mode 100644 index 0000000..66cfc84 --- /dev/null +++ b/tests/results/test_read_write/12_1auto_save_expert.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: no diff --git a/tests/results/test_read_write/16_0redefine_description.sh b/tests/results/test_read_write/16_0redefine_description.sh new file mode 100644 index 0000000..e46acca --- /dev/null +++ b/tests/results/test_read_write/16_0redefine_description.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: null diff --git a/tests/results/test_read_write/16_2family_redefine_calculation.sh b/tests/results/test_read_write/16_2family_redefine_calculation.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write/16_2family_redefine_calculation.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write/16_2family_redefine_disabled.sh b/tests/results/test_read_write/16_2family_redefine_disabled.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write/16_2family_redefine_disabled.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write/16_5exists_nonexists.sh b/tests/results/test_read_write/16_5exists_nonexists.sh new file mode 100644 index 0000000..426d276 --- /dev/null +++ b/tests/results/test_read_write/16_5exists_nonexists.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: no +┗━━ 📓 var2: yes diff --git a/tests/results/test_read_write/16_5exists_redefine.sh b/tests/results/test_read_write/16_5exists_redefine.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write/16_5exists_redefine.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write/16_5redefine_calculation.sh b/tests/results/test_read_write/16_5redefine_calculation.sh new file mode 100644 index 0000000..06e4220 --- /dev/null +++ b/tests/results/test_read_write/16_5redefine_calculation.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: yes diff --git a/tests/results/test_read_write/16_5redefine_choice.sh b/tests/results/test_read_write/16_5redefine_choice.sh new file mode 100644 index 0000000..caae029 --- /dev/null +++ b/tests/results/test_read_write/16_5redefine_choice.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: null diff --git a/tests/results/test_read_write/16_5redefine_default.sh b/tests/results/test_read_write/16_5redefine_default.sh new file mode 100644 index 0000000..06e4220 --- /dev/null +++ b/tests/results/test_read_write/16_5redefine_default.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: yes diff --git a/tests/results/test_read_write/16_5redefine_default_calculation.sh b/tests/results/test_read_write/16_5redefine_default_calculation.sh new file mode 100644 index 0000000..caae029 --- /dev/null +++ b/tests/results/test_read_write/16_5redefine_default_calculation.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: null diff --git a/tests/results/test_read_write/16_5redefine_family.sh b/tests/results/test_read_write/16_5redefine_family.sh new file mode 100644 index 0000000..4f92ae6 --- /dev/null +++ b/tests/results/test_read_write/16_5redefine_family.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 family + ┗━━ 📓 variable: null diff --git a/tests/results/test_read_write/16_5redefine_help.sh b/tests/results/test_read_write/16_5redefine_help.sh new file mode 100644 index 0000000..4f92ae6 --- /dev/null +++ b/tests/results/test_read_write/16_5redefine_help.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 family + ┗━━ 📓 variable: null diff --git a/tests/results/test_read_write/16_5redefine_hidden.sh b/tests/results/test_read_write/16_5redefine_hidden.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write/16_5redefine_hidden.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write/16_5redefine_multi.sh b/tests/results/test_read_write/16_5redefine_multi.sh new file mode 100644 index 0000000..3ba1b77 --- /dev/null +++ b/tests/results/test_read_write/16_5redefine_multi.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable : + ┗━━ non diff --git a/tests/results/test_read_write/16_5redefine_remove_disable_calculation.sh b/tests/results/test_read_write/16_5redefine_remove_disable_calculation.sh new file mode 100644 index 0000000..c9ca114 --- /dev/null +++ b/tests/results/test_read_write/16_5redefine_remove_disable_calculation.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 condition: no +┗━━ 📓 variable: null diff --git a/tests/results/test_read_write/16_5test_redefine.sh b/tests/results/test_read_write/16_5test_redefine.sh new file mode 100644 index 0000000..e1ebfd4 --- /dev/null +++ b/tests/results/test_read_write/16_5test_redefine.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: no +┣━━ 📓 var2: non +┗━━ 📓 var3: null diff --git a/tests/results/test_read_write/16_6choice_redefine.sh b/tests/results/test_read_write/16_6choice_redefine.sh new file mode 100644 index 0000000..f4ac3c9 --- /dev/null +++ b/tests/results/test_read_write/16_6choice_redefine.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: c diff --git a/tests/results/test_read_write/16_6exists_redefine_family.sh b/tests/results/test_read_write/16_6exists_redefine_family.sh new file mode 100644 index 0000000..f10a9e0 --- /dev/null +++ b/tests/results/test_read_write/16_6exists_redefine_family.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📂 family1 +┃ ┗━━ 📓 variable1: null +┗━━ 📂 family2 + ┗━━ 📓 variable2: null diff --git a/tests/results/test_read_write/16exists_exists.sh b/tests/results/test_read_write/16exists_exists.sh new file mode 100644 index 0000000..e46acca --- /dev/null +++ b/tests/results/test_read_write/16exists_exists.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: null diff --git a/tests/results/test_read_write/17_5redefine_leadership.sh b/tests/results/test_read_write/17_5redefine_leadership.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write/17_5redefine_leadership.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write/20_0empty_family.sh b/tests/results/test_read_write/20_0empty_family.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write/20_0empty_family.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write/20_0family_append.sh b/tests/results/test_read_write/20_0family_append.sh new file mode 100644 index 0000000..c604327 --- /dev/null +++ b/tests/results/test_read_write/20_0family_append.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 family + ┣━━ 📓 var1: null + ┗━━ 📓 var2: null diff --git a/tests/results/test_read_write/20_0family_underscore.sh b/tests/results/test_read_write/20_0family_underscore.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write/20_0family_underscore.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write/20_0multi_family.sh b/tests/results/test_read_write/20_0multi_family.sh new file mode 100644 index 0000000..f1a2fba --- /dev/null +++ b/tests/results/test_read_write/20_0multi_family.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 family + ┗━━ 📂 subfamily +  ┗━━ 📓 variable: null diff --git a/tests/results/test_read_write/20_0multi_family_basic.sh b/tests/results/test_read_write/20_0multi_family_basic.sh new file mode 100644 index 0000000..f1a2fba --- /dev/null +++ b/tests/results/test_read_write/20_0multi_family_basic.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 family + ┗━━ 📂 subfamily +  ┗━━ 📓 variable: null diff --git a/tests/results/test_read_write/20_0multi_family_expert.sh b/tests/results/test_read_write/20_0multi_family_expert.sh new file mode 100644 index 0000000..969cf95 --- /dev/null +++ b/tests/results/test_read_write/20_0multi_family_expert.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 family + ┗━━ 📂 subfamily +  ┗━━ 📓 variable: null diff --git a/tests/results/test_read_write/20_0multi_family_order.sh b/tests/results/test_read_write/20_0multi_family_order.sh new file mode 100644 index 0000000..80e09fb --- /dev/null +++ b/tests/results/test_read_write/20_0multi_family_order.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 variable: null +┗━━ 📂 family + ┣━━ 📓 variable1: null + ┣━━ 📂 subfamily + ┃ ┗━━ 📓 variable: null + ┗━━ 📓 variable2: null diff --git a/tests/results/test_read_write/20_0validators_differ_redefine.sh b/tests/results/test_read_write/20_0validators_differ_redefine.sh new file mode 100644 index 0000000..bd7ecf0 --- /dev/null +++ b/tests/results/test_read_write/20_0validators_differ_redefine.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: no +┣━━ 📓 var2: no +┗━━ 📓 var3: yes diff --git a/tests/results/test_read_write/20_1empty_subfamily.sh b/tests/results/test_read_write/20_1empty_subfamily.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write/20_1empty_subfamily.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write/20_9default_information_parent.sh b/tests/results/test_read_write/20_9default_information_parent.sh new file mode 100644 index 0000000..c604327 --- /dev/null +++ b/tests/results/test_read_write/20_9default_information_parent.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 family + ┣━━ 📓 var1: null + ┗━━ 📓 var2: null diff --git a/tests/results/test_read_write/24_0family_hidden_condition_sub_family.sh b/tests/results/test_read_write/24_0family_hidden_condition_sub_family.sh new file mode 100644 index 0000000..523c07d --- /dev/null +++ b/tests/results/test_read_write/24_0family_hidden_condition_sub_family.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 condition: no +┗━━ 📂 family + ┗━━ 📂 subfamily +  ┗━━ 📓 var1: null diff --git a/tests/results/test_read_write/24_0family_hidden_condition_variable_sub_family.sh b/tests/results/test_read_write/24_0family_hidden_condition_variable_sub_family.sh new file mode 100644 index 0000000..2a451c3 --- /dev/null +++ b/tests/results/test_read_write/24_0family_hidden_condition_variable_sub_family.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 condition: true diff --git a/tests/results/test_read_write/24_0family_hidden_param_condition_sub_family.sh b/tests/results/test_read_write/24_0family_hidden_param_condition_sub_family.sh new file mode 100644 index 0000000..0185d8a --- /dev/null +++ b/tests/results/test_read_write/24_0family_hidden_param_condition_sub_family.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 condition: no +┗━━ 📂 family + ┗━━ 📂 sub_family +  ┗━━ 📓 var1: null diff --git a/tests/results/test_read_write/24_0family_mandatory_condition.sh b/tests/results/test_read_write/24_0family_mandatory_condition.sh new file mode 100644 index 0000000..a34c17a --- /dev/null +++ b/tests/results/test_read_write/24_0family_mandatory_condition.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 condition: no +┗━━ 📓 var: null diff --git a/tests/results/test_read_write/24_0family_mandatory_condition_variable.sh b/tests/results/test_read_write/24_0family_mandatory_condition_variable.sh new file mode 100644 index 0000000..1f3055b --- /dev/null +++ b/tests/results/test_read_write/24_0family_mandatory_condition_variable.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 condition: true +┗━━ 📓 var: null diff --git a/tests/results/test_read_write/24_7validators_variable_optional.sh b/tests/results/test_read_write/24_7validators_variable_optional.sh new file mode 100644 index 0000000..ba6b947 --- /dev/null +++ b/tests/results/test_read_write/24_7validators_variable_optional.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 general + ┣━━ 📓 int: null + ┗━━ 📓 int2: 1 diff --git a/tests/results/test_read_write/24_family_disabled_var_hidden.sh b/tests/results/test_read_write/24_family_disabled_var_hidden.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write/24_family_disabled_var_hidden.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write/40_0leadership.sh b/tests/results/test_read_write/40_0leadership.sh new file mode 100644 index 0000000..3dea677 --- /dev/null +++ b/tests/results/test_read_write/40_0leadership.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader diff --git a/tests/results/test_read_write/40_0leadership_diff_name.sh b/tests/results/test_read_write/40_0leadership_diff_name.sh new file mode 100644 index 0000000..f0c5faa --- /dev/null +++ b/tests/results/test_read_write/40_0leadership_diff_name.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leadership diff --git a/tests/results/test_read_write/40_0leadership_empty.sh b/tests/results/test_read_write/40_0leadership_empty.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write/40_0leadership_empty.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write/40_0leadership_follower_default_calculation.sh b/tests/results/test_read_write/40_0leadership_follower_default_calculation.sh new file mode 100644 index 0000000..3dea677 --- /dev/null +++ b/tests/results/test_read_write/40_0leadership_follower_default_calculation.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader diff --git a/tests/results/test_read_write/40_0leadership_follower_default_value.sh b/tests/results/test_read_write/40_0leadership_follower_default_value.sh new file mode 100644 index 0000000..3dea677 --- /dev/null +++ b/tests/results/test_read_write/40_0leadership_follower_default_value.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader diff --git a/tests/results/test_read_write/40_0leadership_leader_not_multi.sh b/tests/results/test_read_write/40_0leadership_leader_not_multi.sh new file mode 100644 index 0000000..bbd6942 --- /dev/null +++ b/tests/results/test_read_write/40_0leadership_leader_not_multi.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📂 general +┃ ┗━━ 📓 mode_conteneur_actif: non +┗━━ 📂 general1 + ┗━━ 📂 leader diff --git a/tests/results/test_read_write/40_1leadership_append_follower.sh b/tests/results/test_read_write/40_1leadership_append_follower.sh new file mode 100644 index 0000000..3dea677 --- /dev/null +++ b/tests/results/test_read_write/40_1leadership_append_follower.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader diff --git a/tests/results/test_read_write/40_6leadership_follower_multi.sh b/tests/results/test_read_write/40_6leadership_follower_multi.sh new file mode 100644 index 0000000..f0c5faa --- /dev/null +++ b/tests/results/test_read_write/40_6leadership_follower_multi.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leadership diff --git a/tests/results/test_read_write/40_8calculation_boolean.sh b/tests/results/test_read_write/40_8calculation_boolean.sh new file mode 100644 index 0000000..2c419a1 --- /dev/null +++ b/tests/results/test_read_write/40_8calculation_boolean.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 bool: false +┣━━ 📓 multi1 : +┃ ┗━━ false +┗━━ 📓 multi2 : + ┣━━ true + ┗━━ false diff --git a/tests/results/test_read_write/40_8calculation_multi_variable.sh b/tests/results/test_read_write/40_8calculation_multi_variable.sh new file mode 100644 index 0000000..8d7ff25 --- /dev/null +++ b/tests/results/test_read_write/40_8calculation_multi_variable.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ no +┃ ┗━━ yes +┣━━ 📓 var2: no +┗━━ 📓 var3: yes diff --git a/tests/results/test_read_write/40_8calculation_multi_variable_parent.sh b/tests/results/test_read_write/40_8calculation_multi_variable_parent.sh new file mode 100644 index 0000000..457599c --- /dev/null +++ b/tests/results/test_read_write/40_8calculation_multi_variable_parent.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var: no +┗━━ 📂 fam1 + ┗━━ 📓 var: no diff --git a/tests/results/test_read_write/40_8calculation_multi_variable_parent2.sh b/tests/results/test_read_write/40_8calculation_multi_variable_parent2.sh new file mode 100644 index 0000000..7fd8094 --- /dev/null +++ b/tests/results/test_read_write/40_8calculation_multi_variable_parent2.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📂 fam1 +┃ ┗━━ 📓 var: no +┗━━ 📂 fam2 + ┗━━ 📓 var: no diff --git a/tests/results/test_read_write/41_0choice_leader.sh b/tests/results/test_read_write/41_0choice_leader.sh new file mode 100644 index 0000000..3dea677 --- /dev/null +++ b/tests/results/test_read_write/41_0choice_leader.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader diff --git a/tests/results/test_read_write/44_0leadership_hidden.sh b/tests/results/test_read_write/44_0leadership_hidden.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write/44_0leadership_hidden.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write/44_0leadership_leader_hidden.sh b/tests/results/test_read_write/44_0leadership_leader_hidden.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write/44_0leadership_leader_hidden.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write/44_1leadership_append_hidden_follower.sh b/tests/results/test_read_write/44_1leadership_append_hidden_follower.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write/44_1leadership_append_hidden_follower.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write/44_4leadership_mandatory.sh b/tests/results/test_read_write/44_4leadership_mandatory.sh new file mode 100644 index 0000000..3dea677 --- /dev/null +++ b/tests/results/test_read_write/44_4leadership_mandatory.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader diff --git a/tests/results/test_read_write/44_4leadership_mandatory_follower.sh b/tests/results/test_read_write/44_4leadership_mandatory_follower.sh new file mode 100644 index 0000000..3dea677 --- /dev/null +++ b/tests/results/test_read_write/44_4leadership_mandatory_follower.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader diff --git a/tests/results/test_read_write/44_5leadership_leader_hidden_calculation.sh b/tests/results/test_read_write/44_5leadership_leader_hidden_calculation.sh new file mode 100644 index 0000000..29461f3 --- /dev/null +++ b/tests/results/test_read_write/44_5leadership_leader_hidden_calculation.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 condition: no diff --git a/tests/results/test_read_write/44_6leadership_follower_disabled_calculation.sh b/tests/results/test_read_write/44_6leadership_follower_disabled_calculation.sh new file mode 100644 index 0000000..2e8b7f6 --- /dev/null +++ b/tests/results/test_read_write/44_6leadership_follower_disabled_calculation.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 condition: yes +┗━━ 📂 leader diff --git a/tests/results/test_read_write/60_0family_dynamic.sh b/tests/results/test_read_write/60_0family_dynamic.sh new file mode 100644 index 0000000..dfa45e7 --- /dev/null +++ b/tests/results/test_read_write/60_0family_dynamic.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: null +┗━━ 📂 dynval2 + ┗━━ 📓 var: null diff --git a/tests/results/test_read_write/60_0family_dynamic_1_1.sh b/tests/results/test_read_write/60_0family_dynamic_1_1.sh new file mode 100644 index 0000000..de2eea8 --- /dev/null +++ b/tests/results/test_read_write/60_0family_dynamic_1_1.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 vardyn: null +┗━━ 📂 dynval2 + ┗━━ 📓 vardyn: null diff --git a/tests/results/test_read_write/60_0family_dynamic_1_1_empty.sh b/tests/results/test_read_write/60_0family_dynamic_1_1_empty.sh new file mode 100644 index 0000000..1e0f43c --- /dev/null +++ b/tests/results/test_read_write/60_0family_dynamic_1_1_empty.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var : diff --git a/tests/results/test_read_write/60_0family_dynamic_empty.sh b/tests/results/test_read_write/60_0family_dynamic_empty.sh new file mode 100644 index 0000000..1e0f43c --- /dev/null +++ b/tests/results/test_read_write/60_0family_dynamic_empty.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var : diff --git a/tests/results/test_read_write/60_0family_dynamic_no_description.sh b/tests/results/test_read_write/60_0family_dynamic_no_description.sh new file mode 100644 index 0000000..dfa45e7 --- /dev/null +++ b/tests/results/test_read_write/60_0family_dynamic_no_description.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: null +┗━━ 📂 dynval2 + ┗━━ 📓 var: null diff --git a/tests/results/test_read_write/60_0family_dynamic_no_description_empty.sh b/tests/results/test_read_write/60_0family_dynamic_no_description_empty.sh new file mode 100644 index 0000000..1e0f43c --- /dev/null +++ b/tests/results/test_read_write/60_0family_dynamic_no_description_empty.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var : diff --git a/tests/results/test_read_write/60_0family_dynamic_static.sh b/tests/results/test_read_write/60_0family_dynamic_static.sh new file mode 100644 index 0000000..a7d3f13 --- /dev/null +++ b/tests/results/test_read_write/60_0family_dynamic_static.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: null +┗━━ 📂 dynval2 + ┗━━ 📓 var: null diff --git a/tests/results/test_read_write/60_0family_dynamic_test.sh b/tests/results/test_read_write/60_0family_dynamic_test.sh new file mode 100644 index 0000000..1e0f43c --- /dev/null +++ b/tests/results/test_read_write/60_0family_dynamic_test.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var : diff --git a/tests/results/test_read_write/60_0family_dynamic_variable_empty.sh b/tests/results/test_read_write/60_0family_dynamic_variable_empty.sh new file mode 100644 index 0000000..1e0f43c --- /dev/null +++ b/tests/results/test_read_write/60_0family_dynamic_variable_empty.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var : diff --git a/tests/results/test_read_write/60_0family_dynamic_variable_suffix.sh b/tests/results/test_read_write/60_0family_dynamic_variable_suffix.sh new file mode 100644 index 0000000..50b6af7 --- /dev/null +++ b/tests/results/test_read_write/60_0family_dynamic_variable_suffix.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: a value +┗━━ 📂 dynval2 + ┗━━ 📓 var: a value diff --git a/tests/results/test_read_write/60_0family_dynamic_variable_suffix_empty.sh b/tests/results/test_read_write/60_0family_dynamic_variable_suffix_empty.sh new file mode 100644 index 0000000..1e0f43c --- /dev/null +++ b/tests/results/test_read_write/60_0family_dynamic_variable_suffix_empty.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var : diff --git a/tests/results/test_read_write/60_0family_empty.sh b/tests/results/test_read_write/60_0family_empty.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write/60_0family_empty.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write/60_0family_hidden.sh b/tests/results/test_read_write/60_0family_hidden.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write/60_0family_hidden.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write/60_0family_mode.sh b/tests/results/test_read_write/60_0family_mode.sh new file mode 100644 index 0000000..b185000 --- /dev/null +++ b/tests/results/test_read_write/60_0family_mode.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 family + ┗━━ 📓 var: non diff --git a/tests/results/test_read_write/60_1family_dynamic_jinja.sh b/tests/results/test_read_write/60_1family_dynamic_jinja.sh new file mode 100644 index 0000000..89255b7 --- /dev/null +++ b/tests/results/test_read_write/60_1family_dynamic_jinja.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dyn1 +┃ ┗━━ 📓 var: val +┗━━ 📂 dyn2 + ┗━━ 📓 var: val diff --git a/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group.sh b/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group.sh new file mode 100644 index 0000000..5851bf1 --- /dev/null +++ b/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📂 family +┃  ┗━━ 📓 var: null +┣━━ 📂 dynval2 +┃ ┗━━ 📂 family +┃  ┗━━ 📓 var: null +┗━━ 📓 var2: null diff --git a/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group_2.sh b/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group_2.sh new file mode 100644 index 0000000..542bbf0 --- /dev/null +++ b/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group_2.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📂 family +┃  ┗━━ 📓 var: val1 +┣━━ 📂 dynval2 +┃ ┗━━ 📂 family +┃  ┗━━ 📓 var: val2 +┗━━ 📓 var2: val1 diff --git a/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh b/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh new file mode 100644 index 0000000..1f9cfb6 --- /dev/null +++ b/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┗━━ 📓 var2: null diff --git a/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group_empty.sh b/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group_empty.sh new file mode 100644 index 0000000..c4f11bb --- /dev/null +++ b/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┗━━ 📓 var2: null diff --git a/tests/results/test_read_write/60_2family_dynamic_outside_calc.sh b/tests/results/test_read_write/60_2family_dynamic_outside_calc.sh new file mode 100644 index 0000000..71918dc --- /dev/null +++ b/tests/results/test_read_write/60_2family_dynamic_outside_calc.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: val +┣━━ 📂 dynval2 +┃ ┗━━ 📓 var: val +┗━━ 📓 newvar: val diff --git a/tests/results/test_read_write/60_2family_dynamic_outside_calc_empty.sh b/tests/results/test_read_write/60_2family_dynamic_outside_calc_empty.sh new file mode 100644 index 0000000..339e3f5 --- /dev/null +++ b/tests/results/test_read_write/60_2family_dynamic_outside_calc_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┗━━ 📓 newvar: null diff --git a/tests/results/test_read_write/60_5family_dynamic_calc_suffix2.sh b/tests/results/test_read_write/60_5family_dynamic_calc_suffix2.sh new file mode 100644 index 0000000..a8f9d1e --- /dev/null +++ b/tests/results/test_read_write/60_5family_dynamic_calc_suffix2.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: val1 +┗━━ 📂 dynval2 + ┗━━ 📓 var: val2 diff --git a/tests/results/test_read_write/60_5family_dynamic_calc_suffix2_empty.sh b/tests/results/test_read_write/60_5family_dynamic_calc_suffix2_empty.sh new file mode 100644 index 0000000..1e0f43c --- /dev/null +++ b/tests/results/test_read_write/60_5family_dynamic_calc_suffix2_empty.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var : diff --git a/tests/results/test_read_write/60_5family_dynamic_calc_suffix_param.sh b/tests/results/test_read_write/60_5family_dynamic_calc_suffix_param.sh new file mode 100644 index 0000000..a8f9d1e --- /dev/null +++ b/tests/results/test_read_write/60_5family_dynamic_calc_suffix_param.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: val1 +┗━━ 📂 dynval2 + ┗━━ 📓 var: val2 diff --git a/tests/results/test_read_write/60_5family_dynamic_calc_suffix_param_empty.sh b/tests/results/test_read_write/60_5family_dynamic_calc_suffix_param_empty.sh new file mode 100644 index 0000000..1e0f43c --- /dev/null +++ b/tests/results/test_read_write/60_5family_dynamic_calc_suffix_param_empty.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var : diff --git a/tests/results/test_read_write/60_5family_dynamic_calc_variable.sh b/tests/results/test_read_write/60_5family_dynamic_calc_variable.sh new file mode 100644 index 0000000..94eceb8 --- /dev/null +++ b/tests/results/test_read_write/60_5family_dynamic_calc_variable.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: null +┣━━ 📂 dynval2 +┃ ┗━━ 📓 var: null +┗━━ 📓 var2: null diff --git a/tests/results/test_read_write/60_5family_dynamic_calc_variable_empty.sh b/tests/results/test_read_write/60_5family_dynamic_calc_variable_empty.sh new file mode 100644 index 0000000..c4f11bb --- /dev/null +++ b/tests/results/test_read_write/60_5family_dynamic_calc_variable_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┗━━ 📓 var2: null diff --git a/tests/results/test_read_write/60_5family_dynamic_hidden_suffix.sh b/tests/results/test_read_write/60_5family_dynamic_hidden_suffix.sh new file mode 100644 index 0000000..94239c1 --- /dev/null +++ b/tests/results/test_read_write/60_5family_dynamic_hidden_suffix.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 dynval1 + ┣━━ 📓 var: null + ┗━━ 📂 family +  ┗━━ 📓 var: null diff --git a/tests/results/test_read_write/60_5family_dynamic_variable_outside_suffix.sh b/tests/results/test_read_write/60_5family_dynamic_variable_outside_suffix.sh new file mode 100644 index 0000000..db50fc0 --- /dev/null +++ b/tests/results/test_read_write/60_5family_dynamic_variable_outside_suffix.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dyn_val1 +┃ ┗━━ 📓 var: val1 +┣━━ 📂 dyn_val2 +┃ ┗━━ 📓 var: val2 +┗━━ 📓 var2: val1 diff --git a/tests/results/test_read_write/60_5family_dynamic_variable_outside_suffix_empty.sh b/tests/results/test_read_write/60_5family_dynamic_variable_outside_suffix_empty.sh new file mode 100644 index 0000000..1f9cfb6 --- /dev/null +++ b/tests/results/test_read_write/60_5family_dynamic_variable_outside_suffix_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┗━━ 📓 var2: null diff --git a/tests/results/test_read_write/60_6family_dynamic_leadership.sh b/tests/results/test_read_write/60_6family_dynamic_leadership.sh new file mode 100644 index 0000000..922f729 --- /dev/null +++ b/tests/results/test_read_write/60_6family_dynamic_leadership.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📂 leadership +┗━━ 📂 dynval2 + ┗━━ 📂 leadership diff --git a/tests/results/test_read_write/60_6family_dynamic_leadership_empty.sh b/tests/results/test_read_write/60_6family_dynamic_leadership_empty.sh new file mode 100644 index 0000000..1e0f43c --- /dev/null +++ b/tests/results/test_read_write/60_6family_dynamic_leadership_empty.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var : diff --git a/tests/results/test_read_write/60_9family_dynamic_calc_both.sh b/tests/results/test_read_write/60_9family_dynamic_calc_both.sh new file mode 100644 index 0000000..001fc9d --- /dev/null +++ b/tests/results/test_read_write/60_9family_dynamic_calc_both.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var: val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 vardyn: null +┗━━ 📂 dynval2 + ┗━━ 📓 vardyn: null diff --git a/tests/results/test_read_write/68_0family_leadership_mode.sh b/tests/results/test_read_write/68_0family_leadership_mode.sh new file mode 100644 index 0000000..3dea677 --- /dev/null +++ b/tests/results/test_read_write/68_0family_leadership_mode.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader diff --git a/tests/results/test_read_write_mandatory_secrets/00_0empty.sh b/tests/results/test_read_write_mandatory_secrets/00_0empty.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/00_0empty.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_mandatory_secrets/00_0version_underscore.sh b/tests/results/test_read_write_mandatory_secrets/00_0version_underscore.sh new file mode 100644 index 0000000..11540d9 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/00_0version_underscore.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 version: string1 diff --git a/tests/results/test_read_write_mandatory_secrets/00_1empty_variable.sh b/tests/results/test_read_write_mandatory_secrets/00_1empty_variable.sh new file mode 100644 index 0000000..bc623ab --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/00_1empty_variable.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 empty: string1 diff --git a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated.sh b/tests/results/test_read_write_mandatory_secrets/00_2default_calculated.sh new file mode 100644 index 0000000..886f7a5 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/00_2default_calculated.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: string1 (no) +┗━━ 📓 var2 : + ┣━━ string1 (string1) + ┣━━ string2 + ┗━━ string3 diff --git a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_multi.sh b/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_multi.sh new file mode 100644 index 0000000..ad48176 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_multi.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ string1 (no) +┃ ┣━━ string2 (yes) +┃ ┗━━ string3 (maybe) +┗━━ 📓 var2 : + ┣━━ string1 (string1) + ┣━━ string2 (string2) + ┗━━ string3 (string3) diff --git a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable_transitive.sh b/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable_transitive.sh new file mode 100644 index 0000000..2cdcdd7 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable_transitive.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ domain1.lan +┃ ┗━━ domain2.lan +┗━━ 📓 var2 : + ┣━━ domain1.lan (domain1.lan) + ┗━━ domain2.lan (domain2.lan) diff --git a/tests/results/test_read_write_mandatory_secrets/00_4load_subfolder.sh b/tests/results/test_read_write_mandatory_secrets/00_4load_subfolder.sh new file mode 100644 index 0000000..a8425a6 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/00_4load_subfolder.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: string1 +┗━━ 📓 var2: string1 diff --git a/tests/results/test_read_write_mandatory_secrets/00_5load_notype.sh b/tests/results/test_read_write_mandatory_secrets/00_5load_notype.sh new file mode 100644 index 0000000..5a0eca6 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/00_5load_notype.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 without_type: string1 (non) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6boolean.sh b/tests/results/test_read_write_mandatory_secrets/00_6boolean.sh new file mode 100644 index 0000000..d5fb015 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/00_6boolean.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: true (true) +┣━━ 📓 var2: true (true) +┣━━ 📓 var3: true (true) +┣━━ 📓 var4: true (false) +┣━━ 📓 var5: true (false) +┗━━ 📓 var6: true (false) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6boolean_no_mandatory.sh b/tests/results/test_read_write_mandatory_secrets/00_6boolean_no_mandatory.sh new file mode 100644 index 0000000..d0ab91e --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/00_6boolean_no_mandatory.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: true (true) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6choice.sh b/tests/results/test_read_write_mandatory_secrets/00_6choice.sh new file mode 100644 index 0000000..b216615 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/00_6choice.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: a +┣━━ 📓 var2: a +┣━━ 📓 var3: a +┣━━ 📓 var4: null +┣━━ 📓 var5: a (a) +┗━━ 📓 var6: 1 (1) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6choice_calculation.sh b/tests/results/test_read_write_mandatory_secrets/00_6choice_calculation.sh new file mode 100644 index 0000000..25ce56e --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/00_6choice_calculation.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: 0 (9) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6choice_variable.sh b/tests/results/test_read_write_mandatory_secrets/00_6choice_variable.sh new file mode 100644 index 0000000..738a108 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/00_6choice_variable.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ string1 (a) +┃ ┣━━ string2 (b) +┃ ┗━━ string3 (c) +┗━━ 📓 var2: string1 (a) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6custom.sh b/tests/results/test_read_write_mandatory_secrets/00_6custom.sh new file mode 100644 index 0000000..9a61cbe --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/00_6custom.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 custom1: string1 +┗━━ 📓 custom2: string1 (value) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6domainname.sh b/tests/results/test_read_write_mandatory_secrets/00_6domainname.sh new file mode 100644 index 0000000..d993f24 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/00_6domainname.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: domain1.lan (my.domain.name) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6domainname_params.sh b/tests/results/test_read_write_mandatory_secrets/00_6domainname_params.sh new file mode 100644 index 0000000..d993f24 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/00_6domainname_params.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: domain1.lan (my.domain.name) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6float.sh b/tests/results/test_read_write_mandatory_secrets/00_6float.sh new file mode 100644 index 0000000..b825037 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/00_6float.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: 1.1 (0.0) +┣━━ 📓 var2: 1.1 (0.0) +┣━━ 📓 var3: 1.1 (0.0) +┣━━ 📓 var4: 1.1 (10.1) +┣━━ 📓 var5: 1.1 (10.1) +┗━━ 📓 var6: 1.1 (10.1) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6number.sh b/tests/results/test_read_write_mandatory_secrets/00_6number.sh new file mode 100644 index 0000000..948239b --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/00_6number.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: 1 (0) +┣━━ 📓 var2: 1 (0) +┣━━ 📓 var3: 1 (0) +┣━━ 📓 var4: 1 (10) +┣━━ 📓 var5: 1 (10) +┗━━ 📓 var6: 1 (10) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6port.sh b/tests/results/test_read_write_mandatory_secrets/00_6port.sh new file mode 100644 index 0000000..ce06ca4 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/00_6port.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 variable1: 80 +┣━━ 📓 variable2: 80 (8080) +┗━━ 📓 variable3: 80 (8080) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6regexp.sh b/tests/results/test_read_write_mandatory_secrets/00_6regexp.sh new file mode 100644 index 0000000..a048543 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/00_6regexp.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: #b1b1b1 (#a1a1a1) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6string.sh b/tests/results/test_read_write_mandatory_secrets/00_6string.sh new file mode 100644 index 0000000..667be1c --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/00_6string.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: string1 +┣━━ 📓 var2: string1 +┣━━ 📓 var3: string1 +┣━━ 📓 var4: string1 (value) +┣━━ 📓 var5: string1 (value) +┗━━ 📓 var6: string1 (value) diff --git a/tests/results/test_read_write_mandatory_secrets/00_7choice_quote.sh b/tests/results/test_read_write_mandatory_secrets/00_7choice_quote.sh new file mode 100644 index 0000000..8a467df --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/00_7choice_quote.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: quote' (quote') diff --git a/tests/results/test_read_write_mandatory_secrets/00_7help_quote.sh b/tests/results/test_read_write_mandatory_secrets/00_7help_quote.sh new file mode 100644 index 0000000..a8425a6 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/00_7help_quote.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: string1 +┗━━ 📓 var2: string1 diff --git a/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote.sh b/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote.sh new file mode 100644 index 0000000..667d48a --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: string1 (quote") diff --git a/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote2.sh b/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote2.sh new file mode 100644 index 0000000..88c78fa --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote2.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: string1 (quote'") diff --git a/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote3.sh b/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote3.sh new file mode 100644 index 0000000..a210af9 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote3.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: string1 (quote\"\') diff --git a/tests/results/test_read_write_mandatory_secrets/00_7value_quote.sh b/tests/results/test_read_write_mandatory_secrets/00_7value_quote.sh new file mode 100644 index 0000000..5be317a --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/00_7value_quote.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: string1 (quote') diff --git a/tests/results/test_read_write_mandatory_secrets/00_8calculation_information.sh b/tests/results/test_read_write_mandatory_secrets/00_8calculation_information.sh new file mode 100644 index 0000000..f4ae932 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/00_8calculation_information.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: string1 diff --git a/tests/results/test_read_write_mandatory_secrets/00_8test.sh b/tests/results/test_read_write_mandatory_secrets/00_8test.sh new file mode 100644 index 0000000..ac7e1c4 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/00_8test.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: test +┣━━ 📓 var2: test (value) +┣━━ 📓 var3: test1 +┣━━ 📓 var4: null +┣━━ 📓 var5: false (true) +┗━━ 📓 var6 : + ┣━━ test1 + ┗━━ test2 diff --git a/tests/results/test_read_write_mandatory_secrets/00_9choice_variable_multi.sh b/tests/results/test_read_write_mandatory_secrets/00_9choice_variable_multi.sh new file mode 100644 index 0000000..af9f106 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/00_9choice_variable_multi.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 variable1 : +┃ ┣━━ val1 +┃ ┗━━ val2 +┗━━ 📓 variable2 : + ┣━━ val1 + ┗━━ val2 diff --git a/tests/results/test_read_write_mandatory_secrets/00_9choice_variables.sh b/tests/results/test_read_write_mandatory_secrets/00_9choice_variables.sh new file mode 100644 index 0000000..0d0d112 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/00_9choice_variables.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 source_variable_1: string1 (val1) +┣━━ 📓 source_variable_2: string1 (val2) +┗━━ 📓 my_variable: string1 (val1) diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation.sh b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation.sh new file mode 100644 index 0000000..593ac4a --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: string1 (string_1_True_None) diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_information.sh b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_information.sh new file mode 100644 index 0000000..dc37c59 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_information.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: string1 diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_information_other_variable.sh b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_information_other_variable.sh new file mode 100644 index 0000000..a8425a6 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_information_other_variable.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: string1 +┗━━ 📓 var2: string1 diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_multi_optional.sh b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_multi_optional.sh new file mode 100644 index 0000000..f9b9913 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_multi_optional.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 my_variable: string1 (val1) +┗━━ 📓 my_calculated_variable : + ┣━━ string1 (string1) + ┣━━ string2 + ┗━━ string3 diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_multi_optional2.sh b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_multi_optional2.sh new file mode 100644 index 0000000..f9b9913 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_multi_optional2.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 my_variable: string1 (val1) +┗━━ 📓 my_calculated_variable : + ┣━━ string1 (string1) + ┣━━ string2 + ┗━━ string3 diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_optional.sh b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_optional.sh new file mode 100644 index 0000000..28e324c --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_optional.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 my_calculated_variable : + ┣━━ string1 + ┣━━ string2 + ┗━━ string3 diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_optional_exists.sh b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_optional_exists.sh new file mode 100644 index 0000000..541e2f3 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_optional_exists.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 my_variable : +┃ ┣━━ string1 (val1) +┃ ┣━━ string2 (val2) +┃ ┗━━ string3 +┗━━ 📓 my_calculated_variable : + ┣━━ string1 (string1) + ┣━━ string2 (string2) + ┗━━ string3 (string3) diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_param_optional.sh b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_param_optional.sh new file mode 100644 index 0000000..8b04002 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_param_optional.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: string1 (string1) +┗━━ 📓 var2: string1 (no) diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_information_other_variable.sh b/tests/results/test_read_write_mandatory_secrets/00_9default_information_other_variable.sh new file mode 100644 index 0000000..a8425a6 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/00_9default_information_other_variable.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: string1 +┗━━ 📓 var2: string1 diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_integer.sh b/tests/results/test_read_write_mandatory_secrets/00_9default_integer.sh new file mode 100644 index 0000000..25ce56e --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/00_9default_integer.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: 0 (9) diff --git a/tests/results/test_read_write_mandatory_secrets/01_6boolean_multi.sh b/tests/results/test_read_write_mandatory_secrets/01_6boolean_multi.sh new file mode 100644 index 0000000..6334adb --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/01_6boolean_multi.sh @@ -0,0 +1,22 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┗━━ true (true) +┣━━ 📓 var2 : +┃ ┗━━ true (true) +┣━━ 📓 var3 : +┃ ┗━━ true (true) +┣━━ 📓 var4 : +┃ ┗━━ true (false) +┣━━ 📓 var5 : +┃ ┗━━ true (false) +┣━━ 📓 var6 : +┃ ┗━━ true (false) +┣━━ 📓 var7 : +┃ ┗━━ true (true) +┗━━ 📓 var8 : + ┗━━ true (true) diff --git a/tests/results/test_read_write_mandatory_secrets/01_6custom_multi.sh b/tests/results/test_read_write_mandatory_secrets/01_6custom_multi.sh new file mode 100644 index 0000000..18f2c32 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/01_6custom_multi.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 custom1 : +┃ ┣━━ string1 +┃ ┣━━ string2 +┃ ┗━━ string3 +┗━━ 📓 custom2 : + ┣━━ string1 (value) + ┣━━ string2 + ┗━━ string3 diff --git a/tests/results/test_read_write_mandatory_secrets/01_6float_multi.sh b/tests/results/test_read_write_mandatory_secrets/01_6float_multi.sh new file mode 100644 index 0000000..5991aef --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/01_6float_multi.sh @@ -0,0 +1,38 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ 1.1 (0.0) +┃ ┣━━ 2.2 +┃ ┗━━ 3.3 +┣━━ 📓 var2 : +┃ ┣━━ 1.1 (0.0) +┃ ┣━━ 2.2 +┃ ┗━━ 3.3 +┣━━ 📓 var3 : +┃ ┣━━ 1.1 (0.0) +┃ ┣━━ 2.2 +┃ ┗━━ 3.3 +┣━━ 📓 var4 : +┃ ┣━━ 1.1 (10.1) +┃ ┣━━ 2.2 +┃ ┗━━ 3.3 +┣━━ 📓 var5 : +┃ ┣━━ 1.1 (10.1) +┃ ┣━━ 2.2 +┃ ┗━━ 3.3 +┣━━ 📓 var6 : +┃ ┣━━ 1.1 (10.1) +┃ ┣━━ 2.2 +┃ ┗━━ 3.3 +┣━━ 📓 var7 : +┃ ┣━━ 1.1 (0.0) +┃ ┣━━ 2.2 +┃ ┗━━ 3.3 +┗━━ 📓 var8 : + ┣━━ 1.1 (0.0) + ┣━━ 2.2 + ┗━━ 3.3 diff --git a/tests/results/test_read_write_mandatory_secrets/01_6number_multi.sh b/tests/results/test_read_write_mandatory_secrets/01_6number_multi.sh new file mode 100644 index 0000000..73e2aed --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/01_6number_multi.sh @@ -0,0 +1,38 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ 1 (0) +┃ ┣━━ 2 +┃ ┗━━ 3 +┣━━ 📓 var2 : +┃ ┣━━ 1 (0) +┃ ┣━━ 2 +┃ ┗━━ 3 +┣━━ 📓 var3 : +┃ ┣━━ 1 (0) +┃ ┣━━ 2 +┃ ┗━━ 3 +┣━━ 📓 var4 : +┃ ┣━━ 1 (10) +┃ ┣━━ 2 +┃ ┗━━ 3 +┣━━ 📓 var5 : +┃ ┣━━ 1 (10) +┃ ┣━━ 2 +┃ ┗━━ 3 +┣━━ 📓 var6 : +┃ ┣━━ 1 (10) +┃ ┣━━ 2 +┃ ┗━━ 3 +┣━━ 📓 var7 : +┃ ┣━━ 1 (0) +┃ ┣━━ 2 +┃ ┗━━ 3 +┗━━ 📓 var8 : + ┣━━ 1 (0) + ┣━━ 2 + ┗━━ 3 diff --git a/tests/results/test_read_write_mandatory_secrets/01_6string_empty.sh b/tests/results/test_read_write_mandatory_secrets/01_6string_empty.sh new file mode 100644 index 0000000..c5b1ed6 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/01_6string_empty.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var1 : + ┣━━ string1 (value) + ┣━━ string2 + ┗━━ string3 diff --git a/tests/results/test_read_write_mandatory_secrets/01_6string_multi.sh b/tests/results/test_read_write_mandatory_secrets/01_6string_multi.sh new file mode 100644 index 0000000..1a43244 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/01_6string_multi.sh @@ -0,0 +1,35 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ string1 +┃ ┣━━ string2 +┃ ┗━━ string3 +┣━━ 📓 var2 : +┃ ┣━━ string1 +┃ ┣━━ string2 +┃ ┗━━ string3 +┣━━ 📓 var3: string1 +┣━━ 📓 var4 : +┃ ┣━━ string1 (value) +┃ ┣━━ string2 +┃ ┗━━ string3 +┣━━ 📓 var5 : +┃ ┣━━ string1 (value) +┃ ┣━━ string2 +┃ ┗━━ string3 +┣━━ 📓 var6 : +┃ ┣━━ string1 (value) +┃ ┣━━ string2 +┃ ┗━━ string3 +┣━━ 📓 var7 : +┃ ┣━━ string1 (value) +┃ ┣━━ string2 +┃ ┗━━ string3 +┗━━ 📓 var8 : + ┣━━ string1 (value) + ┣━━ string2 + ┗━━ string3 diff --git a/tests/results/test_read_write_mandatory_secrets/01_7value_multi_doublequote.sh b/tests/results/test_read_write_mandatory_secrets/01_7value_multi_doublequote.sh new file mode 100644 index 0000000..28998da --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/01_7value_multi_doublequote.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable : + ┣━━ string1 (quote") + ┣━━ string2 + ┗━━ string3 diff --git a/tests/results/test_read_write_mandatory_secrets/01_7value_multi_doublequote2.sh b/tests/results/test_read_write_mandatory_secrets/01_7value_multi_doublequote2.sh new file mode 100644 index 0000000..f4d9ee3 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/01_7value_multi_doublequote2.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable : + ┣━━ string1 (quote'") + ┣━━ string2 + ┗━━ string3 diff --git a/tests/results/test_read_write_mandatory_secrets/01_7value_multi_quote.sh b/tests/results/test_read_write_mandatory_secrets/01_7value_multi_quote.sh new file mode 100644 index 0000000..782dff3 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/01_7value_multi_quote.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable : + ┣━━ string1 (quote') + ┣━━ string2 + ┗━━ string3 diff --git a/tests/results/test_read_write_mandatory_secrets/01_8calculation_information_multi.sh b/tests/results/test_read_write_mandatory_secrets/01_8calculation_information_multi.sh new file mode 100644 index 0000000..1116937 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/01_8calculation_information_multi.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable : + ┣━━ string1 + ┣━━ string2 + ┗━━ string3 diff --git a/tests/results/test_read_write_mandatory_secrets/01_9choice_variable_multi.sh b/tests/results/test_read_write_mandatory_secrets/01_9choice_variable_multi.sh new file mode 100644 index 0000000..b7ce084 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/01_9choice_variable_multi.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 variable1 : +┃ ┣━━ string1 (a) +┃ ┣━━ string2 (b) +┃ ┗━━ string3 (c) +┗━━ 📓 variable2: string1 diff --git a/tests/results/test_read_write_mandatory_secrets/04_0type_param.sh b/tests/results/test_read_write_mandatory_secrets/04_0type_param.sh new file mode 100644 index 0000000..82eba36 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/04_0type_param.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 int: 1 (10) diff --git a/tests/results/test_read_write_mandatory_secrets/04_1auto_save.sh b/tests/results/test_read_write_mandatory_secrets/04_1auto_save.sh new file mode 100644 index 0000000..4790bac --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/04_1auto_save.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: no diff --git a/tests/results/test_read_write_mandatory_secrets/04_1auto_save_and_calculated.sh b/tests/results/test_read_write_mandatory_secrets/04_1auto_save_and_calculated.sh new file mode 100644 index 0000000..7713eaa --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/04_1auto_save_and_calculated.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: string1 (no) +┗━━ 📓 var2: no diff --git a/tests/results/test_read_write_mandatory_secrets/04_1auto_save_and_calculated_hidden.sh b/tests/results/test_read_write_mandatory_secrets/04_1auto_save_and_calculated_hidden.sh new file mode 100644 index 0000000..8092847 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/04_1auto_save_and_calculated_hidden.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: string1 (no) +┗━━ 📓 var2: yes diff --git a/tests/results/test_read_write_mandatory_secrets/04_1auto_save_and_hidden.sh b/tests/results/test_read_write_mandatory_secrets/04_1auto_save_and_hidden.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/04_1auto_save_and_hidden.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden.sh b/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden.sh new file mode 100644 index 0000000..0e88906 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: string1 (value) +┣━━ 📓 var2: string1 +┗━━ 📓 var3: string1 diff --git a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_2.sh b/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_2.sh new file mode 100644 index 0000000..0e88906 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_2.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: string1 (value) +┣━━ 📓 var2: string1 +┗━━ 📓 var3: string1 diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_optional.sh b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_optional.sh new file mode 100644 index 0000000..a7dd6ad --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_optional.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 condition: string1 (no) +┗━━ 📓 var2: string1 diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable.sh b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable.sh new file mode 100644 index 0000000..87e6b02 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 condition: true (false) diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable2.sh b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable2.sh new file mode 100644 index 0000000..57a7e8f --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable2.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 condition: true (true) diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable3.sh b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable3.sh new file mode 100644 index 0000000..8d04b36 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable3.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 condition: string1 (yes) +┗━━ 📓 variable: string1 diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable4.sh b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable4.sh new file mode 100644 index 0000000..b8ab7ed --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable4.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 condition: string1 (yes) diff --git a/tests/results/test_read_write_mandatory_secrets/04_5validators.sh b/tests/results/test_read_write_mandatory_secrets/04_5validators.sh new file mode 100644 index 0000000..ed4f626 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/04_5validators.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 int: 1 diff --git a/tests/results/test_read_write_mandatory_secrets/04_5validators_differ.sh b/tests/results/test_read_write_mandatory_secrets/04_5validators_differ.sh new file mode 100644 index 0000000..d23a594 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/04_5validators_differ.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: another_value (oui) +┗━━ 📓 var2: string1 (no) diff --git a/tests/results/test_read_write_mandatory_secrets/04_5validators_multi.sh b/tests/results/test_read_write_mandatory_secrets/04_5validators_multi.sh new file mode 100644 index 0000000..905beb6 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/04_5validators_multi.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var1 : + ┣━━ string1 (no) + ┣━━ string2 (yes) + ┗━━ string3 diff --git a/tests/results/test_read_write_mandatory_secrets/04_5validators_multi2.sh b/tests/results/test_read_write_mandatory_secrets/04_5validators_multi2.sh new file mode 100644 index 0000000..578aab9 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/04_5validators_multi2.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var1 : + ┣━━ val1 (no) + ┗━━ val2 (yes) diff --git a/tests/results/test_read_write_mandatory_secrets/05_0multi_not_uniq.sh b/tests/results/test_read_write_mandatory_secrets/05_0multi_not_uniq.sh new file mode 100644 index 0000000..485561e --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/05_0multi_not_uniq.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var1 : + ┣━━ string1 (non) + ┣━━ string2 + ┗━━ string3 diff --git a/tests/results/test_read_write_mandatory_secrets/05_0multi_uniq.sh b/tests/results/test_read_write_mandatory_secrets/05_0multi_uniq.sh new file mode 100644 index 0000000..38f009b --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/05_0multi_uniq.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable : + ┣━━ string1 (non) + ┣━━ string2 + ┗━━ string3 diff --git a/tests/results/test_read_write_mandatory_secrets/12_1auto_save_expert.sh b/tests/results/test_read_write_mandatory_secrets/12_1auto_save_expert.sh new file mode 100644 index 0000000..66cfc84 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/12_1auto_save_expert.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: no diff --git a/tests/results/test_read_write_mandatory_secrets/16_0redefine_description.sh b/tests/results/test_read_write_mandatory_secrets/16_0redefine_description.sh new file mode 100644 index 0000000..dc37c59 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/16_0redefine_description.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: string1 diff --git a/tests/results/test_read_write_mandatory_secrets/16_2family_redefine_calculation.sh b/tests/results/test_read_write_mandatory_secrets/16_2family_redefine_calculation.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/16_2family_redefine_calculation.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_mandatory_secrets/16_2family_redefine_disabled.sh b/tests/results/test_read_write_mandatory_secrets/16_2family_redefine_disabled.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/16_2family_redefine_disabled.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_mandatory_secrets/16_5exists_nonexists.sh b/tests/results/test_read_write_mandatory_secrets/16_5exists_nonexists.sh new file mode 100644 index 0000000..2fd832b --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/16_5exists_nonexists.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: string1 (no) +┗━━ 📓 var2: string1 (yes) diff --git a/tests/results/test_read_write_mandatory_secrets/16_5exists_redefine.sh b/tests/results/test_read_write_mandatory_secrets/16_5exists_redefine.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/16_5exists_redefine.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_mandatory_secrets/16_5redefine_calculation.sh b/tests/results/test_read_write_mandatory_secrets/16_5redefine_calculation.sh new file mode 100644 index 0000000..34f26df --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/16_5redefine_calculation.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: string1 (yes) diff --git a/tests/results/test_read_write_mandatory_secrets/16_5redefine_choice.sh b/tests/results/test_read_write_mandatory_secrets/16_5redefine_choice.sh new file mode 100644 index 0000000..ad73acb --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/16_5redefine_choice.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: a diff --git a/tests/results/test_read_write_mandatory_secrets/16_5redefine_default.sh b/tests/results/test_read_write_mandatory_secrets/16_5redefine_default.sh new file mode 100644 index 0000000..34f26df --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/16_5redefine_default.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: string1 (yes) diff --git a/tests/results/test_read_write_mandatory_secrets/16_5redefine_default_calculation.sh b/tests/results/test_read_write_mandatory_secrets/16_5redefine_default_calculation.sh new file mode 100644 index 0000000..f4ae932 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/16_5redefine_default_calculation.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: string1 diff --git a/tests/results/test_read_write_mandatory_secrets/16_5redefine_family.sh b/tests/results/test_read_write_mandatory_secrets/16_5redefine_family.sh new file mode 100644 index 0000000..ed65344 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/16_5redefine_family.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 family + ┗━━ 📓 variable: string1 diff --git a/tests/results/test_read_write_mandatory_secrets/16_5redefine_help.sh b/tests/results/test_read_write_mandatory_secrets/16_5redefine_help.sh new file mode 100644 index 0000000..ed65344 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/16_5redefine_help.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 family + ┗━━ 📓 variable: string1 diff --git a/tests/results/test_read_write_mandatory_secrets/16_5redefine_hidden.sh b/tests/results/test_read_write_mandatory_secrets/16_5redefine_hidden.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/16_5redefine_hidden.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_mandatory_secrets/16_5redefine_multi.sh b/tests/results/test_read_write_mandatory_secrets/16_5redefine_multi.sh new file mode 100644 index 0000000..38f009b --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/16_5redefine_multi.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable : + ┣━━ string1 (non) + ┣━━ string2 + ┗━━ string3 diff --git a/tests/results/test_read_write_mandatory_secrets/16_5redefine_remove_disable_calculation.sh b/tests/results/test_read_write_mandatory_secrets/16_5redefine_remove_disable_calculation.sh new file mode 100644 index 0000000..a72bb50 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/16_5redefine_remove_disable_calculation.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 condition: string1 (no) +┗━━ 📓 variable: string1 diff --git a/tests/results/test_read_write_mandatory_secrets/16_5test_redefine.sh b/tests/results/test_read_write_mandatory_secrets/16_5test_redefine.sh new file mode 100644 index 0000000..dd0942b --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/16_5test_redefine.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: test1 (no) +┣━━ 📓 var2: test1 (non) +┗━━ 📓 var3: string1 diff --git a/tests/results/test_read_write_mandatory_secrets/16_6choice_redefine.sh b/tests/results/test_read_write_mandatory_secrets/16_6choice_redefine.sh new file mode 100644 index 0000000..12f840b --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/16_6choice_redefine.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: a (c) diff --git a/tests/results/test_read_write_mandatory_secrets/16_6exists_redefine_family.sh b/tests/results/test_read_write_mandatory_secrets/16_6exists_redefine_family.sh new file mode 100644 index 0000000..76e537b --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/16_6exists_redefine_family.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📂 family1 +┃ ┗━━ 📓 variable1: string1 +┗━━ 📂 family2 + ┗━━ 📓 variable2: string1 diff --git a/tests/results/test_read_write_mandatory_secrets/16exists_exists.sh b/tests/results/test_read_write_mandatory_secrets/16exists_exists.sh new file mode 100644 index 0000000..dc37c59 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/16exists_exists.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: string1 diff --git a/tests/results/test_read_write_mandatory_secrets/17_5redefine_leadership.sh b/tests/results/test_read_write_mandatory_secrets/17_5redefine_leadership.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/17_5redefine_leadership.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_mandatory_secrets/20_0empty_family.sh b/tests/results/test_read_write_mandatory_secrets/20_0empty_family.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/20_0empty_family.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_mandatory_secrets/20_0family_append.sh b/tests/results/test_read_write_mandatory_secrets/20_0family_append.sh new file mode 100644 index 0000000..dbf8e5c --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/20_0family_append.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 family + ┣━━ 📓 var1: string1 + ┗━━ 📓 var2: string1 diff --git a/tests/results/test_read_write_mandatory_secrets/20_0family_underscore.sh b/tests/results/test_read_write_mandatory_secrets/20_0family_underscore.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/20_0family_underscore.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_mandatory_secrets/20_0multi_family.sh b/tests/results/test_read_write_mandatory_secrets/20_0multi_family.sh new file mode 100644 index 0000000..7866b59 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/20_0multi_family.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 family + ┗━━ 📂 subfamily +  ┗━━ 📓 variable: string1 diff --git a/tests/results/test_read_write_mandatory_secrets/20_0multi_family_basic.sh b/tests/results/test_read_write_mandatory_secrets/20_0multi_family_basic.sh new file mode 100644 index 0000000..7866b59 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/20_0multi_family_basic.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 family + ┗━━ 📂 subfamily +  ┗━━ 📓 variable: string1 diff --git a/tests/results/test_read_write_mandatory_secrets/20_0multi_family_expert.sh b/tests/results/test_read_write_mandatory_secrets/20_0multi_family_expert.sh new file mode 100644 index 0000000..bb74a12 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/20_0multi_family_expert.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 family + ┗━━ 📂 subfamily +  ┗━━ 📓 variable: string1 diff --git a/tests/results/test_read_write_mandatory_secrets/20_0multi_family_order.sh b/tests/results/test_read_write_mandatory_secrets/20_0multi_family_order.sh new file mode 100644 index 0000000..b0d6c24 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/20_0multi_family_order.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 variable: string1 +┗━━ 📂 family + ┣━━ 📓 variable1: string1 + ┣━━ 📂 subfamily + ┃ ┗━━ 📓 variable: string1 + ┗━━ 📓 variable2: string1 diff --git a/tests/results/test_read_write_mandatory_secrets/20_0validators_differ_redefine.sh b/tests/results/test_read_write_mandatory_secrets/20_0validators_differ_redefine.sh new file mode 100644 index 0000000..0133939 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/20_0validators_differ_redefine.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: string1 (no) +┣━━ 📓 var2: string1 (no) +┗━━ 📓 var3: yes (yes) diff --git a/tests/results/test_read_write_mandatory_secrets/20_1empty_subfamily.sh b/tests/results/test_read_write_mandatory_secrets/20_1empty_subfamily.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/20_1empty_subfamily.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_mandatory_secrets/20_9default_information_parent.sh b/tests/results/test_read_write_mandatory_secrets/20_9default_information_parent.sh new file mode 100644 index 0000000..dbf8e5c --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/20_9default_information_parent.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 family + ┣━━ 📓 var1: string1 + ┗━━ 📓 var2: string1 diff --git a/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_condition_sub_family.sh b/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_condition_sub_family.sh new file mode 100644 index 0000000..e4921e8 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_condition_sub_family.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 condition: string1 (no) +┗━━ 📂 family + ┗━━ 📂 subfamily +  ┗━━ 📓 var1: string1 diff --git a/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.sh b/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.sh new file mode 100644 index 0000000..57a7e8f --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 condition: true (true) diff --git a/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_param_condition_sub_family.sh b/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_param_condition_sub_family.sh new file mode 100644 index 0000000..b21428f --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_param_condition_sub_family.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 condition: string1 (no) +┗━━ 📂 family + ┗━━ 📂 sub_family +  ┗━━ 📓 var1: string1 diff --git a/tests/results/test_read_write_mandatory_secrets/24_0family_mandatory_condition.sh b/tests/results/test_read_write_mandatory_secrets/24_0family_mandatory_condition.sh new file mode 100644 index 0000000..b78b5e8 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/24_0family_mandatory_condition.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 condition: string1 (no) +┗━━ 📓 var: string1 diff --git a/tests/results/test_read_write_mandatory_secrets/24_0family_mandatory_condition_variable.sh b/tests/results/test_read_write_mandatory_secrets/24_0family_mandatory_condition_variable.sh new file mode 100644 index 0000000..0253ec9 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/24_0family_mandatory_condition_variable.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 condition: true (true) +┗━━ 📓 var: string1 diff --git a/tests/results/test_read_write_mandatory_secrets/24_7validators_variable_optional.sh b/tests/results/test_read_write_mandatory_secrets/24_7validators_variable_optional.sh new file mode 100644 index 0000000..907cb19 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/24_7validators_variable_optional.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 general + ┣━━ 📓 int: 5 + ┗━━ 📓 int2: 1 (1) diff --git a/tests/results/test_read_write_mandatory_secrets/24_family_disabled_var_hidden.sh b/tests/results/test_read_write_mandatory_secrets/24_family_disabled_var_hidden.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/24_family_disabled_var_hidden.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_mandatory_secrets/40_0leadership.sh b/tests/results/test_read_write_mandatory_secrets/40_0leadership.sh new file mode 100644 index 0000000..6392bab --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/40_0leadership.sh @@ -0,0 +1,19 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string1 + ┃ ┣━━ 📓 follower1: string1 + ┃ ┗━━ 📓 follower2: string1 + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string2 + ┃ ┣━━ 📓 follower1: string2 + ┃ ┗━━ 📓 follower2: string2 + ┗━━ 📂 leader +  ┣━━ 📓 leader: string3 +  ┣━━ 📓 follower1: string3 +  ┗━━ 📓 follower2: string3 diff --git a/tests/results/test_read_write_mandatory_secrets/40_0leadership_diff_name.sh b/tests/results/test_read_write_mandatory_secrets/40_0leadership_diff_name.sh new file mode 100644 index 0000000..92bd054 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/40_0leadership_diff_name.sh @@ -0,0 +1,19 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leadership + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string1 + ┃ ┣━━ 📓 follower1: string1 + ┃ ┗━━ 📓 follower2: string1 + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string2 + ┃ ┣━━ 📓 follower1: string2 + ┃ ┗━━ 📓 follower2: string2 + ┗━━ 📂 leader +  ┣━━ 📓 leader: string3 +  ┣━━ 📓 follower1: string3 +  ┗━━ 📓 follower2: string3 diff --git a/tests/results/test_read_write_mandatory_secrets/40_0leadership_empty.sh b/tests/results/test_read_write_mandatory_secrets/40_0leadership_empty.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/40_0leadership_empty.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_mandatory_secrets/40_0leadership_follower_default_calculation.sh b/tests/results/test_read_write_mandatory_secrets/40_0leadership_follower_default_calculation.sh new file mode 100644 index 0000000..13c2a39 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/40_0leadership_follower_default_calculation.sh @@ -0,0 +1,19 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string1 + ┃ ┣━━ 📓 follower1: string1 (value) + ┃ ┗━━ 📓 follower2: string1 (string1) + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string2 + ┃ ┣━━ 📓 follower1: string2 (value) + ┃ ┗━━ 📓 follower2: string2 (string2) + ┗━━ 📂 leader +  ┣━━ 📓 leader: string3 +  ┣━━ 📓 follower1: string3 (value) +  ┗━━ 📓 follower2: string3 (string3) diff --git a/tests/results/test_read_write_mandatory_secrets/40_0leadership_follower_default_value.sh b/tests/results/test_read_write_mandatory_secrets/40_0leadership_follower_default_value.sh new file mode 100644 index 0000000..a0d01b5 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/40_0leadership_follower_default_value.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string1 + ┃ ┗━━ 📓 follower1: string1 (value) + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string2 + ┃ ┗━━ 📓 follower1: string2 (value) + ┗━━ 📂 leader +  ┣━━ 📓 leader: string3 +  ┗━━ 📓 follower1: string3 (value) diff --git a/tests/results/test_read_write_mandatory_secrets/40_0leadership_leader_not_multi.sh b/tests/results/test_read_write_mandatory_secrets/40_0leadership_leader_not_multi.sh new file mode 100644 index 0000000..2bef8b1 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/40_0leadership_leader_not_multi.sh @@ -0,0 +1,22 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📂 general +┃ ┗━━ 📓 mode_conteneur_actif: string1 (non) +┗━━ 📂 general1 + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 +  ┃ ┣━━ 📓 follower1: string1 +  ┃ ┗━━ 📓 follower2: string1 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┣━━ 📓 follower1: string2 +  ┃ ┗━━ 📓 follower2: string2 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┣━━ 📓 follower1: string3 +   ┗━━ 📓 follower2: string3 diff --git a/tests/results/test_read_write_mandatory_secrets/40_1leadership_append_follower.sh b/tests/results/test_read_write_mandatory_secrets/40_1leadership_append_follower.sh new file mode 100644 index 0000000..b1e6118 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/40_1leadership_append_follower.sh @@ -0,0 +1,22 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string1 + ┃ ┣━━ 📓 follower1: string1 + ┃ ┣━━ 📓 follower2: string1 + ┃ ┗━━ 📓 follower3: string1 + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string2 + ┃ ┣━━ 📓 follower1: string2 + ┃ ┣━━ 📓 follower2: string2 + ┃ ┗━━ 📓 follower3: string2 + ┗━━ 📂 leader +  ┣━━ 📓 leader: string3 +  ┣━━ 📓 follower1: string3 +  ┣━━ 📓 follower2: string3 +  ┗━━ 📓 follower3: string3 diff --git a/tests/results/test_read_write_mandatory_secrets/40_6leadership_follower_multi.sh b/tests/results/test_read_write_mandatory_secrets/40_6leadership_follower_multi.sh new file mode 100644 index 0000000..91cbccf --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/40_6leadership_follower_multi.sh @@ -0,0 +1,37 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leadership + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string1 + ┃ ┣━━ 📓 follower1 : + ┃ ┃ ┣━━ string1 + ┃ ┃ ┣━━ string2 + ┃ ┃ ┗━━ string3 + ┃ ┗━━ 📓 follower2 : + ┃  ┣━━ string1 (value) + ┃  ┣━━ string2 + ┃  ┗━━ string3 + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string2 + ┃ ┣━━ 📓 follower1 : + ┃ ┃ ┣━━ string1 + ┃ ┃ ┣━━ string2 + ┃ ┃ ┗━━ string3 + ┃ ┗━━ 📓 follower2 : + ┃  ┣━━ string1 (value) + ┃  ┣━━ string2 + ┃  ┗━━ string3 + ┗━━ 📂 leader +  ┣━━ 📓 leader: string3 +  ┣━━ 📓 follower1 : +  ┃ ┣━━ string1 +  ┃ ┣━━ string2 +  ┃ ┗━━ string3 +  ┗━━ 📓 follower2 : +   ┣━━ string1 (value) +   ┣━━ string2 +   ┗━━ string3 diff --git a/tests/results/test_read_write_mandatory_secrets/40_8calculation_boolean.sh b/tests/results/test_read_write_mandatory_secrets/40_8calculation_boolean.sh new file mode 100644 index 0000000..ae8ddbe --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/40_8calculation_boolean.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 bool: true (false) +┣━━ 📓 multi1 : +┃ ┣━━ true (true) +┃ ┗━━ false +┗━━ 📓 multi2 : + ┗━━ true (false) diff --git a/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable.sh b/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable.sh new file mode 100644 index 0000000..20d7370 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ string1 (string1) +┃ ┣━━ string2 (string1) +┃ ┗━━ string3 +┣━━ 📓 var2: string1 (no) +┗━━ 📓 var3: string1 (yes) diff --git a/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable_parent.sh b/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable_parent.sh new file mode 100644 index 0000000..340f17f --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable_parent.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var: string1 (no) +┗━━ 📂 fam1 + ┗━━ 📓 var: string1 (string1) diff --git a/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable_parent2.sh b/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable_parent2.sh new file mode 100644 index 0000000..d9223f3 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable_parent2.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📂 fam1 +┃ ┗━━ 📓 var: string1 (no) +┗━━ 📂 fam2 + ┗━━ 📓 var: string1 (string1) diff --git a/tests/results/test_read_write_mandatory_secrets/41_0choice_leader.sh b/tests/results/test_read_write_mandatory_secrets/41_0choice_leader.sh new file mode 100644 index 0000000..06ffcb1 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/41_0choice_leader.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string1 + ┃ ┗━━ 📓 follower1: a + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string2 + ┃ ┗━━ 📓 follower1: b + ┗━━ 📂 leader +  ┣━━ 📓 leader: string3 +  ┗━━ 📓 follower1: c diff --git a/tests/results/test_read_write_mandatory_secrets/44_0leadership_hidden.sh b/tests/results/test_read_write_mandatory_secrets/44_0leadership_hidden.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/44_0leadership_hidden.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_mandatory_secrets/44_0leadership_leader_hidden.sh b/tests/results/test_read_write_mandatory_secrets/44_0leadership_leader_hidden.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/44_0leadership_leader_hidden.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_mandatory_secrets/44_1leadership_append_hidden_follower.sh b/tests/results/test_read_write_mandatory_secrets/44_1leadership_append_hidden_follower.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/44_1leadership_append_hidden_follower.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_mandatory_secrets/44_4leadership_mandatory.sh b/tests/results/test_read_write_mandatory_secrets/44_4leadership_mandatory.sh new file mode 100644 index 0000000..3d617dc --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/44_4leadership_mandatory.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string1 + ┃ ┗━━ 📓 follower1: string1 + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string2 + ┃ ┗━━ 📓 follower1: string2 + ┗━━ 📂 leader +  ┣━━ 📓 leader: string3 +  ┗━━ 📓 follower1: string3 diff --git a/tests/results/test_read_write_mandatory_secrets/44_4leadership_mandatory_follower.sh b/tests/results/test_read_write_mandatory_secrets/44_4leadership_mandatory_follower.sh new file mode 100644 index 0000000..d7e4c2f --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/44_4leadership_mandatory_follower.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string1 + ┃ ┗━━ 📓 follower: string1 + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string2 + ┃ ┗━━ 📓 follower: string2 + ┗━━ 📂 leader +  ┣━━ 📓 leader: string3 +  ┗━━ 📓 follower: string3 diff --git a/tests/results/test_read_write_mandatory_secrets/44_5leadership_leader_hidden_calculation.sh b/tests/results/test_read_write_mandatory_secrets/44_5leadership_leader_hidden_calculation.sh new file mode 100644 index 0000000..03ccc42 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/44_5leadership_leader_hidden_calculation.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 condition: string1 (no) +┗━━ 📂 leader + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string1 + ┃ ┗━━ 📓 follower: string1 + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string2 + ┃ ┗━━ 📓 follower: string2 + ┗━━ 📂 leader +  ┣━━ 📓 leader: string3 +  ┗━━ 📓 follower: string3 diff --git a/tests/results/test_read_write_mandatory_secrets/44_6leadership_follower_disabled_calculation.sh b/tests/results/test_read_write_mandatory_secrets/44_6leadership_follower_disabled_calculation.sh new file mode 100644 index 0000000..fc87b11 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/44_6leadership_follower_disabled_calculation.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 condition: string1 (yes) +┗━━ 📂 leader + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string1 + ┃ ┗━━ 📓 follower: string1 + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string2 + ┃ ┗━━ 📓 follower: string2 + ┗━━ 📂 leader +  ┣━━ 📓 leader: string3 +  ┗━━ 📓 follower: string3 diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic.sh b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic.sh new file mode 100644 index 0000000..16eacf9 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 (val1) +┃ ┗━━ val2 (val2) +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: string1 +┗━━ 📂 dynval2 + ┗━━ 📓 var: string1 diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_1_1.sh b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_1_1.sh new file mode 100644 index 0000000..bed6fde --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_1_1.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 (val1) +┃ ┗━━ val2 (val2) +┣━━ 📂 dynval1 +┃ ┗━━ 📓 vardyn: string1 +┗━━ 📂 dynval2 + ┗━━ 📓 vardyn: string1 diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_1_1_empty.sh b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_1_1_empty.sh new file mode 100644 index 0000000..7ee5af6 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_1_1_empty.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 vardyn: string1 +┗━━ 📂 dynval2 + ┗━━ 📓 vardyn: string1 diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_empty.sh b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_empty.sh new file mode 100644 index 0000000..4508771 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_empty.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ string1 +┃ ┣━━ string2 +┃ ┗━━ string3 +┣━━ 📂 dynstring1 +┃ ┗━━ 📓 var: string1 +┣━━ 📂 dynstring2 +┃ ┗━━ 📓 var: string1 +┗━━ 📂 dynstring3 + ┗━━ 📓 var: string1 diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_no_description.sh b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_no_description.sh new file mode 100644 index 0000000..16eacf9 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_no_description.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 (val1) +┃ ┗━━ val2 (val2) +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: string1 +┗━━ 📂 dynval2 + ┗━━ 📓 var: string1 diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_no_description_empty.sh b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_no_description_empty.sh new file mode 100644 index 0000000..cb5f893 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_no_description_empty.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: string1 +┗━━ 📂 dynval2 + ┗━━ 📓 var: string1 diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_static.sh b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_static.sh new file mode 100644 index 0000000..aa01500 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_static.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: string1 +┗━━ 📂 dynval2 + ┗━━ 📓 var: string1 diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_test.sh b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_test.sh new file mode 100644 index 0000000..cb5f893 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_test.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: string1 +┗━━ 📂 dynval2 + ┗━━ 📓 var: string1 diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_empty.sh b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_empty.sh new file mode 100644 index 0000000..5a1a757 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_empty.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ string1 +┃ ┣━━ string2 +┃ ┗━━ string3 +┣━━ 📂 dynstring1 +┃ ┗━━ 📓 var: string1 (val) +┣━━ 📂 dynstring2 +┃ ┗━━ 📓 var: string1 (val) +┗━━ 📂 dynstring3 + ┗━━ 📓 var: string1 (val) diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix.sh b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix.sh new file mode 100644 index 0000000..bf4a21e --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 (val1) +┃ ┗━━ val2 (val2) +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: string1 (a value) +┗━━ 📂 dynval2 + ┗━━ 📓 var: string1 (a value) diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.sh b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.sh new file mode 100644 index 0000000..bf58803 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: string1 (a value) +┗━━ 📂 dynval2 + ┗━━ 📓 var: string1 (a value) diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_empty.sh b/tests/results/test_read_write_mandatory_secrets/60_0family_empty.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/60_0family_empty.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_hidden.sh b/tests/results/test_read_write_mandatory_secrets/60_0family_hidden.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/60_0family_hidden.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_mode.sh b/tests/results/test_read_write_mandatory_secrets/60_0family_mode.sh new file mode 100644 index 0000000..1fc84cb --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/60_0family_mode.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 family + ┗━━ 📓 var: string1 (non) diff --git a/tests/results/test_read_write_mandatory_secrets/60_1family_dynamic_jinja.sh b/tests/results/test_read_write_mandatory_secrets/60_1family_dynamic_jinja.sh new file mode 100644 index 0000000..e729684 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/60_1family_dynamic_jinja.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ string1 (val1) +┃ ┣━━ string2 (val2) +┃ ┗━━ string3 +┣━━ 📂 dyn1 +┃ ┗━━ 📓 var: string1 (val) +┣━━ 📂 dyn2 +┃ ┗━━ 📓 var: string1 (val) +┗━━ 📂 dyn3 + ┗━━ 📓 var: string1 (val) diff --git a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.sh b/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.sh new file mode 100644 index 0000000..0b0f8a5 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ val1 (val1) +┃ ┗━━ val2 (val2) +┣━━ 📂 dynval1 +┃ ┗━━ 📂 family +┃  ┗━━ 📓 var: string1 +┣━━ 📂 dynval2 +┃ ┗━━ 📂 family +┃  ┗━━ 📓 var: string1 +┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.sh b/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.sh new file mode 100644 index 0000000..224eead --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 (val1) +┃ ┗━━ val2 (val2) +┣━━ 📂 dynval1 +┃ ┗━━ 📂 family +┃  ┗━━ 📓 var: string1 (val1) +┣━━ 📂 dynval2 +┃ ┗━━ 📂 family +┃  ┗━━ 📓 var: string1 (val2) +┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh b/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh new file mode 100644 index 0000000..ac05959 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📂 family +┃  ┗━━ 📓 var: string1 (val1) +┣━━ 📂 dynval2 +┃ ┗━━ 📂 family +┃  ┗━━ 📓 var: string1 (val2) +┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.sh b/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.sh new file mode 100644 index 0000000..f07f775 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📂 family +┃  ┗━━ 📓 var: string1 +┣━━ 📂 dynval2 +┃ ┗━━ 📂 family +┃  ┗━━ 📓 var: string1 +┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_outside_calc.sh b/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_outside_calc.sh new file mode 100644 index 0000000..2a69a0e --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_outside_calc.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ val1 (val1) +┃ ┗━━ val2 (val2) +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: string1 (val) +┣━━ 📂 dynval2 +┃ ┗━━ 📓 var: string1 (val) +┗━━ 📓 newvar: string1 (string1) diff --git a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_outside_calc_empty.sh b/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_outside_calc_empty.sh new file mode 100644 index 0000000..ea2c278 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_outside_calc_empty.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: string1 (val) +┣━━ 📂 dynval2 +┃ ┗━━ 📓 var: string1 (val) +┗━━ 📓 newvar: string1 (string1) diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2.sh b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2.sh new file mode 100644 index 0000000..ab8bd79 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 (val1) +┃ ┗━━ val2 (val2) +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: string1 (val1) +┗━━ 📂 dynval2 + ┗━━ 📓 var: string1 (val2) diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.sh b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.sh new file mode 100644 index 0000000..ee955df --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: string1 (val1) +┗━━ 📂 dynval2 + ┗━━ 📓 var: string1 (val2) diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param.sh b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param.sh new file mode 100644 index 0000000..ab8bd79 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 (val1) +┃ ┗━━ val2 (val2) +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: string1 (val1) +┗━━ 📂 dynval2 + ┗━━ 📓 var: string1 (val2) diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.sh b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.sh new file mode 100644 index 0000000..ee955df --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: string1 (val1) +┗━━ 📂 dynval2 + ┗━━ 📓 var: string1 (val2) diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable.sh b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable.sh new file mode 100644 index 0000000..5f6727e --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ val1 (val1) +┃ ┗━━ val2 (val2) +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: string1 +┣━━ 📂 dynval2 +┃ ┗━━ 📓 var: string1 +┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_empty.sh b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_empty.sh new file mode 100644 index 0000000..daf1966 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_empty.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: string1 +┣━━ 📂 dynval2 +┃ ┗━━ 📓 var: string1 +┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_hidden_suffix.sh b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_hidden_suffix.sh new file mode 100644 index 0000000..ca1c503 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_hidden_suffix.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 dynval1 + ┣━━ 📓 var: string1 + ┗━━ 📂 family +  ┗━━ 📓 var: string1 diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.sh b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.sh new file mode 100644 index 0000000..5cf86d7 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 (val1) +┃ ┗━━ val2 (val2) +┣━━ 📂 dyn_val1 +┃ ┗━━ 📓 var: string1 (val1) +┣━━ 📂 dyn_val2 +┃ ┗━━ 📓 var: string1 (val2) +┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.sh b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.sh new file mode 100644 index 0000000..d5606bb --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dyn_val1 +┃ ┗━━ 📓 var: string1 (val1) +┣━━ 📂 dyn_val2 +┃ ┗━━ 📓 var: string1 (val2) +┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_read_write_mandatory_secrets/60_6family_dynamic_leadership.sh b/tests/results/test_read_write_mandatory_secrets/60_6family_dynamic_leadership.sh new file mode 100644 index 0000000..82256f8 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/60_6family_dynamic_leadership.sh @@ -0,0 +1,37 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 (val1) +┃ ┗━━ val2 (val2) +┣━━ 📂 dynval1 +┃ ┗━━ 📂 leadership +┃  ┣━━ 📂 leader +┃  ┃ ┣━━ 📓 leader: string1 +┃  ┃ ┣━━ 📓 follower1: string1 +┃  ┃ ┗━━ 📓 follower2: string1 +┃  ┣━━ 📂 leader +┃  ┃ ┣━━ 📓 leader: string2 +┃  ┃ ┣━━ 📓 follower1: string2 +┃  ┃ ┗━━ 📓 follower2: string2 +┃  ┗━━ 📂 leader +┃   ┣━━ 📓 leader: string3 +┃   ┣━━ 📓 follower1: string3 +┃   ┗━━ 📓 follower2: string3 +┗━━ 📂 dynval2 + ┗━━ 📂 leadership +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 +  ┃ ┣━━ 📓 follower1: string1 +  ┃ ┗━━ 📓 follower2: string1 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┣━━ 📓 follower1: string2 +  ┃ ┗━━ 📓 follower2: string2 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┣━━ 📓 follower1: string3 +   ┗━━ 📓 follower2: string3 diff --git a/tests/results/test_read_write_mandatory_secrets/60_6family_dynamic_leadership_empty.sh b/tests/results/test_read_write_mandatory_secrets/60_6family_dynamic_leadership_empty.sh new file mode 100644 index 0000000..0893260 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/60_6family_dynamic_leadership_empty.sh @@ -0,0 +1,37 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📂 leadership +┃  ┣━━ 📂 leader +┃  ┃ ┣━━ 📓 leader: string1 +┃  ┃ ┣━━ 📓 follower1: string1 +┃  ┃ ┗━━ 📓 follower2: string1 +┃  ┣━━ 📂 leader +┃  ┃ ┣━━ 📓 leader: string2 +┃  ┃ ┣━━ 📓 follower1: string2 +┃  ┃ ┗━━ 📓 follower2: string2 +┃  ┗━━ 📂 leader +┃   ┣━━ 📓 leader: string3 +┃   ┣━━ 📓 follower1: string3 +┃   ┗━━ 📓 follower2: string3 +┗━━ 📂 dynval2 + ┗━━ 📂 leadership +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 +  ┃ ┣━━ 📓 follower1: string1 +  ┃ ┗━━ 📓 follower2: string1 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┣━━ 📓 follower1: string2 +  ┃ ┗━━ 📓 follower2: string2 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┣━━ 📓 follower1: string3 +   ┗━━ 📓 follower2: string3 diff --git a/tests/results/test_read_write_mandatory_secrets/60_9family_dynamic_calc_both.sh b/tests/results/test_read_write_mandatory_secrets/60_9family_dynamic_calc_both.sh new file mode 100644 index 0000000..a2be971 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/60_9family_dynamic_calc_both.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var: string1 (val2) +┣━━ 📂 dynval1 +┃ ┗━━ 📓 vardyn: string1 +┗━━ 📂 dynstring1 + ┗━━ 📓 vardyn: string1 diff --git a/tests/results/test_read_write_mandatory_secrets/68_0family_leadership_mode.sh b/tests/results/test_read_write_mandatory_secrets/68_0family_leadership_mode.sh new file mode 100644 index 0000000..6392bab --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets/68_0family_leadership_mode.sh @@ -0,0 +1,19 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string1 + ┃ ┣━━ 📓 follower1: string1 + ┃ ┗━━ 📓 follower2: string1 + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string2 + ┃ ┣━━ 📓 follower1: string2 + ┃ ┗━━ 📓 follower2: string2 + ┗━━ 📂 leader +  ┣━━ 📓 leader: string3 +  ┣━━ 📓 follower1: string3 +  ┗━━ 📓 follower2: string3 diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_0empty.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_0empty.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_0empty.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_0version_underscore.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_0version_underscore.sh new file mode 100644 index 0000000..7c10f7b --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_0version_underscore.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - version (a variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_1empty_variable.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_1empty_variable.sh new file mode 100644 index 0000000..fb7ea79 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_1empty_variable.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - empty diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_2default_calculated.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_2default_calculated.sh new file mode 100644 index 0000000..ea81b84 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_2default_calculated.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: no +┗━━ 📓 var2 : + ┗━━ no diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_2default_calculated_multi.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_2default_calculated_multi.sh new file mode 100644 index 0000000..79f67bc --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_2default_calculated_multi.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ no +┃ ┣━━ yes +┃ ┗━━ maybe +┗━━ 📓 var2 : + ┣━━ no + ┣━━ yes + ┗━━ maybe diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_2default_calculated_variable_transitive.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_2default_calculated_variable_transitive.sh new file mode 100644 index 0000000..9fb9f2d --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_2default_calculated_variable_transitive.sh @@ -0,0 +1,4 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┣━━  - var1 (a first variable) +┗━━  - var2 (a second variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_4load_subfolder.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_4load_subfolder.sh new file mode 100644 index 0000000..c1ceb3b --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_4load_subfolder.sh @@ -0,0 +1,4 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┣━━  - var1 (a variable) +┗━━  - var2 (a variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_5load_notype.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_5load_notype.sh new file mode 100644 index 0000000..35da888 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_5load_notype.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 without_type: non diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_6boolean.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_6boolean.sh new file mode 100644 index 0000000..6805146 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_6boolean.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: true +┣━━ 📓 var2: true +┣━━ 📓 var3: true +┣━━ 📓 var4: false +┣━━ 📓 var5: false +┗━━ 📓 var6: false diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_6boolean_no_mandatory.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_6boolean_no_mandatory.sh new file mode 100644 index 0000000..66d2b7d --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_6boolean_no_mandatory.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: true diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_6choice.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_6choice.sh new file mode 100644 index 0000000..c4ddc42 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_6choice.sh @@ -0,0 +1,4 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┣━━  - var1 (the first variable) +┗━━  - var2 (the second variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_6choice_calculation.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_6choice_calculation.sh new file mode 100644 index 0000000..03c04da --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_6choice_calculation.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: 9 diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_6choice_variable.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_6choice_variable.sh new file mode 100644 index 0000000..235edb0 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_6choice_variable.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ a +┃ ┣━━ b +┃ ┗━━ c +┗━━ 📓 var2: a diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_6custom.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_6custom.sh new file mode 100644 index 0000000..4332907 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_6custom.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - custom1 (the first variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_6domainname.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_6domainname.sh new file mode 100644 index 0000000..b67665a --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_6domainname.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: my.domain.name diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_6domainname_params.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_6domainname_params.sh new file mode 100644 index 0000000..b67665a --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_6domainname_params.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: my.domain.name diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_6float.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_6float.sh new file mode 100644 index 0000000..5199bcc --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_6float.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: 0.0 +┣━━ 📓 var2: 0.0 +┣━━ 📓 var3: 0.0 +┣━━ 📓 var4: 10.1 +┣━━ 📓 var5: 10.1 +┗━━ 📓 var6: 10.1 diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_6number.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_6number.sh new file mode 100644 index 0000000..c7c986a --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_6number.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: 0 +┣━━ 📓 var2: 0 +┣━━ 📓 var3: 0 +┣━━ 📓 var4: 10 +┣━━ 📓 var5: 10 +┗━━ 📓 var6: 10 diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_6port.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_6port.sh new file mode 100644 index 0000000..e844c32 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_6port.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - variable1 (a port variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_6regexp.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_6regexp.sh new file mode 100644 index 0000000..cdbcab1 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_6regexp.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: #a1a1a1 diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_6string.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_6string.sh new file mode 100644 index 0000000..cc61947 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_6string.sh @@ -0,0 +1,5 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┣━━  - var1 (the first variable) +┣━━  - var2 (the second variable) +┗━━  - var3 (the third variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_7choice_quote.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_7choice_quote.sh new file mode 100644 index 0000000..c8c584b --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_7choice_quote.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: quote' diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_7help_quote.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_7help_quote.sh new file mode 100644 index 0000000..c4ddc42 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_7help_quote.sh @@ -0,0 +1,4 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┣━━  - var1 (the first variable) +┗━━  - var2 (the second variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_7value_doublequote.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_7value_doublequote.sh new file mode 100644 index 0000000..aaf6caa --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_7value_doublequote.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: quote" diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_7value_doublequote2.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_7value_doublequote2.sh new file mode 100644 index 0000000..0e8e8d3 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_7value_doublequote2.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: quote'" diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_7value_doublequote3.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_7value_doublequote3.sh new file mode 100644 index 0000000..4ea0921 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_7value_doublequote3.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: quote\"\' diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_7value_quote.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_7value_quote.sh new file mode 100644 index 0000000..acdb9f0 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_7value_quote.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: quote' diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_8calculation_information.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_8calculation_information.sh new file mode 100644 index 0000000..6b275e0 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_8calculation_information.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - variable (a variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_8test.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_8test.sh new file mode 100644 index 0000000..042e742 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_8test.sh @@ -0,0 +1,5 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┣━━  - var1 (the first variable) +┣━━  - var3 (the third variable) +┗━━  - var6 (the sixth variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_9choice_variable_multi.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_9choice_variable_multi.sh new file mode 100644 index 0000000..a791e3a --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_9choice_variable_multi.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - variable1 (a first variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_9choice_variables.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_9choice_variables.sh new file mode 100644 index 0000000..6e39835 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_9choice_variables.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 source_variable_1: val1 +┣━━ 📓 source_variable_2: val2 +┗━━ 📓 my_variable: val1 diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_9default_calculation.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_9default_calculation.sh new file mode 100644 index 0000000..1c17dd6 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_9default_calculation.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: string_1_True_None diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_9default_calculation_information.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_9default_calculation_information.sh new file mode 100644 index 0000000..47ef9de --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_9default_calculation_information.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - var (a variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_9default_calculation_information_other_variable.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_9default_calculation_information_other_variable.sh new file mode 100644 index 0000000..9fb9f2d --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_9default_calculation_information_other_variable.sh @@ -0,0 +1,4 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┣━━  - var1 (a first variable) +┗━━  - var2 (a second variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_9default_calculation_multi_optional.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_9default_calculation_multi_optional.sh new file mode 100644 index 0000000..eac7e25 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_9default_calculation_multi_optional.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 my_variable: val1 +┗━━ 📓 my_calculated_variable : + ┗━━ val1 diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_9default_calculation_multi_optional2.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_9default_calculation_multi_optional2.sh new file mode 100644 index 0000000..eac7e25 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_9default_calculation_multi_optional2.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 my_variable: val1 +┗━━ 📓 my_calculated_variable : + ┗━━ val1 diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_9default_calculation_optional.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_9default_calculation_optional.sh new file mode 100644 index 0000000..b04705f --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_9default_calculation_optional.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - my_calculated_variable diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_9default_calculation_optional_exists.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_9default_calculation_optional_exists.sh new file mode 100644 index 0000000..7536369 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_9default_calculation_optional_exists.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 my_variable : +┃ ┣━━ val1 +┃ ┗━━ val2 +┗━━ 📓 my_calculated_variable : + ┣━━ val1 + ┗━━ val2 diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_9default_calculation_param_optional.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_9default_calculation_param_optional.sh new file mode 100644 index 0000000..95b4d3c --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_9default_calculation_param_optional.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: no +┗━━ 📓 var2: no diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_9default_information_other_variable.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_9default_information_other_variable.sh new file mode 100644 index 0000000..9fb9f2d --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_9default_information_other_variable.sh @@ -0,0 +1,4 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┣━━  - var1 (a first variable) +┗━━  - var2 (a second variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_9default_integer.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_9default_integer.sh new file mode 100644 index 0000000..03c04da --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_9default_integer.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: 9 diff --git a/tests/results/test_read_write_mandatory_secrets_errors/01_6boolean_multi.sh b/tests/results/test_read_write_mandatory_secrets_errors/01_6boolean_multi.sh new file mode 100644 index 0000000..2efa842 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/01_6boolean_multi.sh @@ -0,0 +1,22 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┗━━ true +┣━━ 📓 var2 : +┃ ┗━━ true +┣━━ 📓 var3 : +┃ ┗━━ true +┣━━ 📓 var4 : +┃ ┗━━ false +┣━━ 📓 var5 : +┃ ┗━━ false +┣━━ 📓 var6 : +┃ ┗━━ false +┣━━ 📓 var7 : +┃ ┗━━ true +┗━━ 📓 var8 : + ┗━━ true diff --git a/tests/results/test_read_write_mandatory_secrets_errors/01_6custom_multi.sh b/tests/results/test_read_write_mandatory_secrets_errors/01_6custom_multi.sh new file mode 100644 index 0000000..602bb0b --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/01_6custom_multi.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - custom1 (a first custom variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/01_6float_multi.sh b/tests/results/test_read_write_mandatory_secrets_errors/01_6float_multi.sh new file mode 100644 index 0000000..4e5008a --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/01_6float_multi.sh @@ -0,0 +1,22 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┗━━ 0.0 +┣━━ 📓 var2 : +┃ ┗━━ 0.0 +┣━━ 📓 var3 : +┃ ┗━━ 0.0 +┣━━ 📓 var4 : +┃ ┗━━ 10.1 +┣━━ 📓 var5 : +┃ ┗━━ 10.1 +┣━━ 📓 var6 : +┃ ┗━━ 10.1 +┣━━ 📓 var7 : +┃ ┗━━ 0.0 +┗━━ 📓 var8 : + ┗━━ 0.0 diff --git a/tests/results/test_read_write_mandatory_secrets_errors/01_6number_multi.sh b/tests/results/test_read_write_mandatory_secrets_errors/01_6number_multi.sh new file mode 100644 index 0000000..7dee2a9 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/01_6number_multi.sh @@ -0,0 +1,22 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┗━━ 0 +┣━━ 📓 var2 : +┃ ┗━━ 0 +┣━━ 📓 var3 : +┃ ┗━━ 0 +┣━━ 📓 var4 : +┃ ┗━━ 10 +┣━━ 📓 var5 : +┃ ┗━━ 10 +┣━━ 📓 var6 : +┃ ┗━━ 10 +┣━━ 📓 var7 : +┃ ┗━━ 0 +┗━━ 📓 var8 : + ┗━━ 0 diff --git a/tests/results/test_read_write_mandatory_secrets_errors/01_6string_empty.sh b/tests/results/test_read_write_mandatory_secrets_errors/01_6string_empty.sh new file mode 100644 index 0000000..912bfc2 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/01_6string_empty.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - var1 (the second variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/01_6string_multi.sh b/tests/results/test_read_write_mandatory_secrets_errors/01_6string_multi.sh new file mode 100644 index 0000000..cc61947 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/01_6string_multi.sh @@ -0,0 +1,5 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┣━━  - var1 (the first variable) +┣━━  - var2 (the second variable) +┗━━  - var3 (the third variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/01_7value_multi_doublequote.sh b/tests/results/test_read_write_mandatory_secrets_errors/01_7value_multi_doublequote.sh new file mode 100644 index 0000000..809894f --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/01_7value_multi_doublequote.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable : + ┗━━ quote" diff --git a/tests/results/test_read_write_mandatory_secrets_errors/01_7value_multi_doublequote2.sh b/tests/results/test_read_write_mandatory_secrets_errors/01_7value_multi_doublequote2.sh new file mode 100644 index 0000000..30de023 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/01_7value_multi_doublequote2.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable : + ┗━━ quote'" diff --git a/tests/results/test_read_write_mandatory_secrets_errors/01_7value_multi_quote.sh b/tests/results/test_read_write_mandatory_secrets_errors/01_7value_multi_quote.sh new file mode 100644 index 0000000..50f342f --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/01_7value_multi_quote.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable : + ┗━━ quote' diff --git a/tests/results/test_read_write_mandatory_secrets_errors/01_8calculation_information_multi.sh b/tests/results/test_read_write_mandatory_secrets_errors/01_8calculation_information_multi.sh new file mode 100644 index 0000000..6b275e0 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/01_8calculation_information_multi.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - variable (a variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/01_9choice_variable_multi.sh b/tests/results/test_read_write_mandatory_secrets_errors/01_9choice_variable_multi.sh new file mode 100644 index 0000000..8a87e54 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/01_9choice_variable_multi.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - variable2 (a second variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/04_0type_param.sh b/tests/results/test_read_write_mandatory_secrets_errors/04_0type_param.sh new file mode 100644 index 0000000..05d7c5a --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/04_0type_param.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 int: 10 diff --git a/tests/results/test_read_write_mandatory_secrets_errors/04_1auto_save.sh b/tests/results/test_read_write_mandatory_secrets_errors/04_1auto_save.sh new file mode 100644 index 0000000..4790bac --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/04_1auto_save.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: no diff --git a/tests/results/test_read_write_mandatory_secrets_errors/04_1auto_save_and_calculated.sh b/tests/results/test_read_write_mandatory_secrets_errors/04_1auto_save_and_calculated.sh new file mode 100644 index 0000000..bc7be55 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/04_1auto_save_and_calculated.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: no +┗━━ 📓 var2: no diff --git a/tests/results/test_read_write_mandatory_secrets_errors/04_1auto_save_and_calculated_hidden.sh b/tests/results/test_read_write_mandatory_secrets_errors/04_1auto_save_and_calculated_hidden.sh new file mode 100644 index 0000000..ac49fef --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/04_1auto_save_and_calculated_hidden.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: no +┗━━ 📓 var2: yes diff --git a/tests/results/test_read_write_mandatory_secrets_errors/04_1auto_save_and_hidden.sh b/tests/results/test_read_write_mandatory_secrets_errors/04_1auto_save_and_hidden.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/04_1auto_save_and_hidden.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_mandatory_secrets_errors/04_1default_calculation_hidden.sh b/tests/results/test_read_write_mandatory_secrets_errors/04_1default_calculation_hidden.sh new file mode 100644 index 0000000..b5dc101 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/04_1default_calculation_hidden.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: value +┗━━ 📓 var3: value diff --git a/tests/results/test_read_write_mandatory_secrets_errors/04_1default_calculation_hidden_2.sh b/tests/results/test_read_write_mandatory_secrets_errors/04_1default_calculation_hidden_2.sh new file mode 100644 index 0000000..b5dc101 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/04_1default_calculation_hidden_2.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: value +┗━━ 📓 var3: value diff --git a/tests/results/test_read_write_mandatory_secrets_errors/04_5disabled_calculation_optional.sh b/tests/results/test_read_write_mandatory_secrets_errors/04_5disabled_calculation_optional.sh new file mode 100644 index 0000000..29461f3 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/04_5disabled_calculation_optional.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 condition: no diff --git a/tests/results/test_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable.sh b/tests/results/test_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable.sh new file mode 100644 index 0000000..6b275e0 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - variable (a variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable2.sh b/tests/results/test_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable2.sh new file mode 100644 index 0000000..2a451c3 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable2.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 condition: true diff --git a/tests/results/test_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable3.sh b/tests/results/test_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable3.sh new file mode 100644 index 0000000..b78ef57 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable3.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 condition: yes diff --git a/tests/results/test_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable4.sh b/tests/results/test_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable4.sh new file mode 100644 index 0000000..6b275e0 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable4.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - variable (a variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/04_5validators.sh b/tests/results/test_read_write_mandatory_secrets_errors/04_5validators.sh new file mode 100644 index 0000000..4cb9bdd --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/04_5validators.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - int (A number) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/04_5validators_differ.sh b/tests/results/test_read_write_mandatory_secrets_errors/04_5validators_differ.sh new file mode 100644 index 0000000..ab2871f --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/04_5validators_differ.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: oui +┗━━ 📓 var2: no diff --git a/tests/results/test_read_write_mandatory_secrets_errors/04_5validators_multi.sh b/tests/results/test_read_write_mandatory_secrets_errors/04_5validators_multi.sh new file mode 100644 index 0000000..6974930 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/04_5validators_multi.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var1 : + ┣━━ no + ┗━━ yes diff --git a/tests/results/test_read_write_mandatory_secrets_errors/04_5validators_multi2.sh b/tests/results/test_read_write_mandatory_secrets_errors/04_5validators_multi2.sh new file mode 100644 index 0000000..6974930 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/04_5validators_multi2.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var1 : + ┣━━ no + ┗━━ yes diff --git a/tests/results/test_read_write_mandatory_secrets_errors/05_0multi_not_uniq.sh b/tests/results/test_read_write_mandatory_secrets_errors/05_0multi_not_uniq.sh new file mode 100644 index 0000000..02a01a7 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/05_0multi_not_uniq.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var1 : + ┗━━ non diff --git a/tests/results/test_read_write_mandatory_secrets_errors/05_0multi_uniq.sh b/tests/results/test_read_write_mandatory_secrets_errors/05_0multi_uniq.sh new file mode 100644 index 0000000..3ba1b77 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/05_0multi_uniq.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable : + ┗━━ non diff --git a/tests/results/test_read_write_mandatory_secrets_errors/12_1auto_save_expert.sh b/tests/results/test_read_write_mandatory_secrets_errors/12_1auto_save_expert.sh new file mode 100644 index 0000000..66cfc84 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/12_1auto_save_expert.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: no diff --git a/tests/results/test_read_write_mandatory_secrets_errors/16_0redefine_description.sh b/tests/results/test_read_write_mandatory_secrets_errors/16_0redefine_description.sh new file mode 100644 index 0000000..4546913 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/16_0redefine_description.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - var (Redefined) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/16_2family_redefine_calculation.sh b/tests/results/test_read_write_mandatory_secrets_errors/16_2family_redefine_calculation.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/16_2family_redefine_calculation.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_mandatory_secrets_errors/16_2family_redefine_disabled.sh b/tests/results/test_read_write_mandatory_secrets_errors/16_2family_redefine_disabled.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/16_2family_redefine_disabled.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_mandatory_secrets_errors/16_5exists_nonexists.sh b/tests/results/test_read_write_mandatory_secrets_errors/16_5exists_nonexists.sh new file mode 100644 index 0000000..426d276 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/16_5exists_nonexists.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: no +┗━━ 📓 var2: yes diff --git a/tests/results/test_read_write_mandatory_secrets_errors/16_5exists_redefine.sh b/tests/results/test_read_write_mandatory_secrets_errors/16_5exists_redefine.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/16_5exists_redefine.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_calculation.sh b/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_calculation.sh new file mode 100644 index 0000000..06e4220 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_calculation.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: yes diff --git a/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_choice.sh b/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_choice.sh new file mode 100644 index 0000000..6b275e0 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_choice.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - variable (a variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_default.sh b/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_default.sh new file mode 100644 index 0000000..06e4220 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_default.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: yes diff --git a/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_default_calculation.sh b/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_default_calculation.sh new file mode 100644 index 0000000..6b275e0 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_default_calculation.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - variable (a variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_family.sh b/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_family.sh new file mode 100644 index 0000000..65de0a9 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_family.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - family.variable (a variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_help.sh b/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_help.sh new file mode 100644 index 0000000..360b944 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_help.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - family.variable (redefine help) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_hidden.sh b/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_hidden.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_hidden.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_multi.sh b/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_multi.sh new file mode 100644 index 0000000..3ba1b77 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_multi.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable : + ┗━━ non diff --git a/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_remove_disable_calculation.sh b/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_remove_disable_calculation.sh new file mode 100644 index 0000000..6b275e0 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_remove_disable_calculation.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - variable (a variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/16_5test_redefine.sh b/tests/results/test_read_write_mandatory_secrets_errors/16_5test_redefine.sh new file mode 100644 index 0000000..7327528 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/16_5test_redefine.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - var3 (a third variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/16_6choice_redefine.sh b/tests/results/test_read_write_mandatory_secrets_errors/16_6choice_redefine.sh new file mode 100644 index 0000000..f4ac3c9 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/16_6choice_redefine.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: c diff --git a/tests/results/test_read_write_mandatory_secrets_errors/16_6exists_redefine_family.sh b/tests/results/test_read_write_mandatory_secrets_errors/16_6exists_redefine_family.sh new file mode 100644 index 0000000..16e390c --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/16_6exists_redefine_family.sh @@ -0,0 +1,4 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┣━━  - family1.variable1 (a variable) +┗━━  - family2.variable2 (a second variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/16exists_exists.sh b/tests/results/test_read_write_mandatory_secrets_errors/16exists_exists.sh new file mode 100644 index 0000000..efd3f62 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/16exists_exists.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - var (Description) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/17_5redefine_leadership.sh b/tests/results/test_read_write_mandatory_secrets_errors/17_5redefine_leadership.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/17_5redefine_leadership.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_mandatory_secrets_errors/20_0empty_family.sh b/tests/results/test_read_write_mandatory_secrets_errors/20_0empty_family.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/20_0empty_family.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_mandatory_secrets_errors/20_0family_append.sh b/tests/results/test_read_write_mandatory_secrets_errors/20_0family_append.sh new file mode 100644 index 0000000..92fe249 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/20_0family_append.sh @@ -0,0 +1,4 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┣━━  - family.var1 (The first variable) +┗━━  - family.var2 (The second variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/20_0family_underscore.sh b/tests/results/test_read_write_mandatory_secrets_errors/20_0family_underscore.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/20_0family_underscore.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_mandatory_secrets_errors/20_0multi_family.sh b/tests/results/test_read_write_mandatory_secrets_errors/20_0multi_family.sh new file mode 100644 index 0000000..f1a2fba --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/20_0multi_family.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 family + ┗━━ 📂 subfamily +  ┗━━ 📓 variable: null diff --git a/tests/results/test_read_write_mandatory_secrets_errors/20_0multi_family_basic.sh b/tests/results/test_read_write_mandatory_secrets_errors/20_0multi_family_basic.sh new file mode 100644 index 0000000..2e2bbcc --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/20_0multi_family_basic.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - family.subfamily.variable (a variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/20_0multi_family_expert.sh b/tests/results/test_read_write_mandatory_secrets_errors/20_0multi_family_expert.sh new file mode 100644 index 0000000..969cf95 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/20_0multi_family_expert.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 family + ┗━━ 📂 subfamily +  ┗━━ 📓 variable: null diff --git a/tests/results/test_read_write_mandatory_secrets_errors/20_0multi_family_order.sh b/tests/results/test_read_write_mandatory_secrets_errors/20_0multi_family_order.sh new file mode 100644 index 0000000..83fa6ef --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/20_0multi_family_order.sh @@ -0,0 +1,6 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┣━━  - variable (a variable) +┣━━  - family.variable1 (a first variable) +┣━━  - family.subfamily.variable (a variable) +┗━━  - family.variable2 (a second variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/20_0validators_differ_redefine.sh b/tests/results/test_read_write_mandatory_secrets_errors/20_0validators_differ_redefine.sh new file mode 100644 index 0000000..bd7ecf0 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/20_0validators_differ_redefine.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: no +┣━━ 📓 var2: no +┗━━ 📓 var3: yes diff --git a/tests/results/test_read_write_mandatory_secrets_errors/20_1empty_subfamily.sh b/tests/results/test_read_write_mandatory_secrets_errors/20_1empty_subfamily.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/20_1empty_subfamily.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_mandatory_secrets_errors/20_9default_information_parent.sh b/tests/results/test_read_write_mandatory_secrets_errors/20_9default_information_parent.sh new file mode 100644 index 0000000..4384908 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/20_9default_information_parent.sh @@ -0,0 +1,4 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┣━━  - family.var1 (a first variable) +┗━━  - family.var2 (a second variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/24_0family_hidden_condition_sub_family.sh b/tests/results/test_read_write_mandatory_secrets_errors/24_0family_hidden_condition_sub_family.sh new file mode 100644 index 0000000..c8ba74f --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/24_0family_hidden_condition_sub_family.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - family.subfamily.var1 (a variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/24_0family_hidden_condition_variable_sub_family.sh b/tests/results/test_read_write_mandatory_secrets_errors/24_0family_hidden_condition_variable_sub_family.sh new file mode 100644 index 0000000..2a451c3 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/24_0family_hidden_condition_variable_sub_family.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 condition: true diff --git a/tests/results/test_read_write_mandatory_secrets_errors/24_0family_hidden_param_condition_sub_family.sh b/tests/results/test_read_write_mandatory_secrets_errors/24_0family_hidden_param_condition_sub_family.sh new file mode 100644 index 0000000..fd7388e --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/24_0family_hidden_param_condition_sub_family.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - family.sub_family.var1 (a variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/24_0family_mandatory_condition.sh b/tests/results/test_read_write_mandatory_secrets_errors/24_0family_mandatory_condition.sh new file mode 100644 index 0000000..a34c17a --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/24_0family_mandatory_condition.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 condition: no +┗━━ 📓 var: null diff --git a/tests/results/test_read_write_mandatory_secrets_errors/24_0family_mandatory_condition_variable.sh b/tests/results/test_read_write_mandatory_secrets_errors/24_0family_mandatory_condition_variable.sh new file mode 100644 index 0000000..47ef9de --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/24_0family_mandatory_condition_variable.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - var (a variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/24_7validators_variable_optional.sh b/tests/results/test_read_write_mandatory_secrets_errors/24_7validators_variable_optional.sh new file mode 100644 index 0000000..f026875 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/24_7validators_variable_optional.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - general.int (a first number) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/24_family_disabled_var_hidden.sh b/tests/results/test_read_write_mandatory_secrets_errors/24_family_disabled_var_hidden.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/24_family_disabled_var_hidden.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_mandatory_secrets_errors/40_0leadership.sh b/tests/results/test_read_write_mandatory_secrets_errors/40_0leadership.sh new file mode 100644 index 0000000..cac53c1 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/40_0leadership.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - leader.leader (a leader) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/40_0leadership_diff_name.sh b/tests/results/test_read_write_mandatory_secrets_errors/40_0leadership_diff_name.sh new file mode 100644 index 0000000..85a7530 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/40_0leadership_diff_name.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - leadership.leader (a leader) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/40_0leadership_empty.sh b/tests/results/test_read_write_mandatory_secrets_errors/40_0leadership_empty.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/40_0leadership_empty.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_mandatory_secrets_errors/40_0leadership_follower_default_calculation.sh b/tests/results/test_read_write_mandatory_secrets_errors/40_0leadership_follower_default_calculation.sh new file mode 100644 index 0000000..cac53c1 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/40_0leadership_follower_default_calculation.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - leader.leader (a leader) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/40_0leadership_follower_default_value.sh b/tests/results/test_read_write_mandatory_secrets_errors/40_0leadership_follower_default_value.sh new file mode 100644 index 0000000..3dea677 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/40_0leadership_follower_default_value.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader diff --git a/tests/results/test_read_write_mandatory_secrets_errors/40_0leadership_leader_not_multi.sh b/tests/results/test_read_write_mandatory_secrets_errors/40_0leadership_leader_not_multi.sh new file mode 100644 index 0000000..f36ee3c --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/40_0leadership_leader_not_multi.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - general1.leader.leader diff --git a/tests/results/test_read_write_mandatory_secrets_errors/40_1leadership_append_follower.sh b/tests/results/test_read_write_mandatory_secrets_errors/40_1leadership_append_follower.sh new file mode 100644 index 0000000..8a84ee5 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/40_1leadership_append_follower.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - leader.leader (the leader) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/40_6leadership_follower_multi.sh b/tests/results/test_read_write_mandatory_secrets_errors/40_6leadership_follower_multi.sh new file mode 100644 index 0000000..b97caa1 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/40_6leadership_follower_multi.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - leadership.leader (The leader) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/40_8calculation_boolean.sh b/tests/results/test_read_write_mandatory_secrets_errors/40_8calculation_boolean.sh new file mode 100644 index 0000000..2c419a1 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/40_8calculation_boolean.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 bool: false +┣━━ 📓 multi1 : +┃ ┗━━ false +┗━━ 📓 multi2 : + ┣━━ true + ┗━━ false diff --git a/tests/results/test_read_write_mandatory_secrets_errors/40_8calculation_multi_variable.sh b/tests/results/test_read_write_mandatory_secrets_errors/40_8calculation_multi_variable.sh new file mode 100644 index 0000000..8d7ff25 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/40_8calculation_multi_variable.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ no +┃ ┗━━ yes +┣━━ 📓 var2: no +┗━━ 📓 var3: yes diff --git a/tests/results/test_read_write_mandatory_secrets_errors/40_8calculation_multi_variable_parent.sh b/tests/results/test_read_write_mandatory_secrets_errors/40_8calculation_multi_variable_parent.sh new file mode 100644 index 0000000..457599c --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/40_8calculation_multi_variable_parent.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var: no +┗━━ 📂 fam1 + ┗━━ 📓 var: no diff --git a/tests/results/test_read_write_mandatory_secrets_errors/40_8calculation_multi_variable_parent2.sh b/tests/results/test_read_write_mandatory_secrets_errors/40_8calculation_multi_variable_parent2.sh new file mode 100644 index 0000000..7fd8094 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/40_8calculation_multi_variable_parent2.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📂 fam1 +┃ ┗━━ 📓 var: no +┗━━ 📂 fam2 + ┗━━ 📓 var: no diff --git a/tests/results/test_read_write_mandatory_secrets_errors/41_0choice_leader.sh b/tests/results/test_read_write_mandatory_secrets_errors/41_0choice_leader.sh new file mode 100644 index 0000000..3dea677 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/41_0choice_leader.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader diff --git a/tests/results/test_read_write_mandatory_secrets_errors/44_0leadership_hidden.sh b/tests/results/test_read_write_mandatory_secrets_errors/44_0leadership_hidden.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/44_0leadership_hidden.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_mandatory_secrets_errors/44_0leadership_leader_hidden.sh b/tests/results/test_read_write_mandatory_secrets_errors/44_0leadership_leader_hidden.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/44_0leadership_leader_hidden.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_mandatory_secrets_errors/44_1leadership_append_hidden_follower.sh b/tests/results/test_read_write_mandatory_secrets_errors/44_1leadership_append_hidden_follower.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/44_1leadership_append_hidden_follower.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_mandatory_secrets_errors/44_4leadership_mandatory.sh b/tests/results/test_read_write_mandatory_secrets_errors/44_4leadership_mandatory.sh new file mode 100644 index 0000000..cac53c1 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/44_4leadership_mandatory.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - leader.leader (a leader) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/44_4leadership_mandatory_follower.sh b/tests/results/test_read_write_mandatory_secrets_errors/44_4leadership_mandatory_follower.sh new file mode 100644 index 0000000..3dea677 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/44_4leadership_mandatory_follower.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader diff --git a/tests/results/test_read_write_mandatory_secrets_errors/44_5leadership_leader_hidden_calculation.sh b/tests/results/test_read_write_mandatory_secrets_errors/44_5leadership_leader_hidden_calculation.sh new file mode 100644 index 0000000..29461f3 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/44_5leadership_leader_hidden_calculation.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 condition: no diff --git a/tests/results/test_read_write_mandatory_secrets_errors/44_6leadership_follower_disabled_calculation.sh b/tests/results/test_read_write_mandatory_secrets_errors/44_6leadership_follower_disabled_calculation.sh new file mode 100644 index 0000000..cac53c1 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/44_6leadership_follower_disabled_calculation.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - leader.leader (a leader) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic.sh new file mode 100644 index 0000000..7803f1e --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic.sh @@ -0,0 +1,4 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┣━━  - dynval1.var (A dynamic variable) +┗━━  - dynval2.var (A dynamic variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_1_1.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_1_1.sh new file mode 100644 index 0000000..16704d1 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_1_1.sh @@ -0,0 +1,4 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┣━━  - dynval1.vardyn (A dynamic variable) +┗━━  - dynval2.vardyn (A dynamic variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_1_1_empty.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_1_1_empty.sh new file mode 100644 index 0000000..1e0f43c --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_1_1_empty.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var : diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_empty.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_empty.sh new file mode 100644 index 0000000..1e0f43c --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_empty.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var : diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_no_description.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_no_description.sh new file mode 100644 index 0000000..6d66538 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_no_description.sh @@ -0,0 +1,4 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┣━━  - dynval1.var +┗━━  - dynval2.var diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_no_description_empty.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_no_description_empty.sh new file mode 100644 index 0000000..1e0f43c --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_no_description_empty.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var : diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_static.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_static.sh new file mode 100644 index 0000000..fd40da6 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_static.sh @@ -0,0 +1,4 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┣━━  - dynval1.var (a variable inside a dynamic family) +┗━━  - dynval2.var (a variable inside a dynamic family) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_test.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_test.sh new file mode 100644 index 0000000..c244188 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_test.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - var (A suffix variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_variable_empty.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_variable_empty.sh new file mode 100644 index 0000000..5a5145b --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_variable_empty.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - var (a suffix variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_variable_suffix.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_variable_suffix.sh new file mode 100644 index 0000000..50b6af7 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_variable_suffix.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: a value +┗━━ 📂 dynval2 + ┗━━ 📓 var: a value diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_variable_suffix_empty.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_variable_suffix_empty.sh new file mode 100644 index 0000000..c244188 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_variable_suffix_empty.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - var (A suffix variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_0family_empty.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_0family_empty.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_0family_empty.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_0family_hidden.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_0family_hidden.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_0family_hidden.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_0family_mode.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_0family_mode.sh new file mode 100644 index 0000000..b185000 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_0family_mode.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 family + ┗━━ 📓 var: non diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_1family_dynamic_jinja.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_1family_dynamic_jinja.sh new file mode 100644 index 0000000..89255b7 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_1family_dynamic_jinja.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dyn1 +┃ ┗━━ 📓 var: val +┗━━ 📂 dyn2 + ┗━━ 📓 var: val diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group.sh new file mode 100644 index 0000000..6f81c2a --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group.sh @@ -0,0 +1,5 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┣━━  - dynval1.family.var (with a variable) +┣━━  - dynval2.family.var (with a variable) +┗━━  - var2 (a second variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_2.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_2.sh new file mode 100644 index 0000000..542bbf0 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_2.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📂 family +┃  ┗━━ 📓 var: val1 +┣━━ 📂 dynval2 +┃ ┗━━ 📂 family +┃  ┗━━ 📓 var: val2 +┗━━ 📓 var2: val1 diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh new file mode 100644 index 0000000..1f9cfb6 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┗━━ 📓 var2: null diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_empty.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_empty.sh new file mode 100644 index 0000000..c4f11bb --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┗━━ 📓 var2: null diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_2family_dynamic_outside_calc.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_2family_dynamic_outside_calc.sh new file mode 100644 index 0000000..71918dc --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_2family_dynamic_outside_calc.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: val +┣━━ 📂 dynval2 +┃ ┗━━ 📓 var: val +┗━━ 📓 newvar: val diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_2family_dynamic_outside_calc_empty.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_2family_dynamic_outside_calc_empty.sh new file mode 100644 index 0000000..339e3f5 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_2family_dynamic_outside_calc_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┗━━ 📓 newvar: null diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix2.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix2.sh new file mode 100644 index 0000000..a8f9d1e --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix2.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: val1 +┗━━ 📂 dynval2 + ┗━━ 📓 var: val2 diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix2_empty.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix2_empty.sh new file mode 100644 index 0000000..1e0f43c --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix2_empty.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var : diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix_param.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix_param.sh new file mode 100644 index 0000000..a8f9d1e --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix_param.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: val1 +┗━━ 📂 dynval2 + ┗━━ 📓 var: val2 diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix_param_empty.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix_param_empty.sh new file mode 100644 index 0000000..1e0f43c --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix_param_empty.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var : diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_variable.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_variable.sh new file mode 100644 index 0000000..a2f4978 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_variable.sh @@ -0,0 +1,5 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┣━━  - dynval1.var (A dynamic variable) +┣━━  - dynval2.var (A dynamic variable) +┗━━  - var2 (A variable calculated) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_variable_empty.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_variable_empty.sh new file mode 100644 index 0000000..3e222d2 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_variable_empty.sh @@ -0,0 +1,3 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┗━━  - var2 (A variable calculated) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_hidden_suffix.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_hidden_suffix.sh new file mode 100644 index 0000000..94239c1 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_hidden_suffix.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 dynval1 + ┣━━ 📓 var: null + ┗━━ 📂 family +  ┗━━ 📓 var: null diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside_suffix.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside_suffix.sh new file mode 100644 index 0000000..db50fc0 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside_suffix.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dyn_val1 +┃ ┗━━ 📓 var: val1 +┣━━ 📂 dyn_val2 +┃ ┗━━ 📓 var: val2 +┗━━ 📓 var2: val1 diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside_suffix_empty.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside_suffix_empty.sh new file mode 100644 index 0000000..1f9cfb6 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside_suffix_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┗━━ 📓 var2: null diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_6family_dynamic_leadership.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_6family_dynamic_leadership.sh new file mode 100644 index 0000000..7ba1c5a --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_6family_dynamic_leadership.sh @@ -0,0 +1,4 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┣━━  - dynval1.leadership.leader (a leader) +┗━━  - dynval2.leadership.leader (a leader) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_6family_dynamic_leadership_empty.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_6family_dynamic_leadership_empty.sh new file mode 100644 index 0000000..1e0f43c --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_6family_dynamic_leadership_empty.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var : diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_9family_dynamic_calc_both.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_9family_dynamic_calc_both.sh new file mode 100644 index 0000000..b7e0f4b --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_9family_dynamic_calc_both.sh @@ -0,0 +1,4 @@ +🛑 ERRORS +┣━━ The following variables are mandatory but have no value: +┣━━  - dynval1.vardyn (a dynamic variable) +┗━━  - dynval2.vardyn (a dynamic variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/68_0family_leadership_mode.sh b/tests/results/test_read_write_mandatory_secrets_errors/68_0family_leadership_mode.sh new file mode 100644 index 0000000..3dea677 --- /dev/null +++ b/tests/results/test_read_write_mandatory_secrets_errors/68_0family_leadership_mode.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader diff --git a/tests/results/test_read_write_secrets/00_0empty.sh b/tests/results/test_read_write_secrets/00_0empty.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_secrets/00_0empty.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_secrets/00_0version_underscore.sh b/tests/results/test_read_write_secrets/00_0version_underscore.sh new file mode 100644 index 0000000..52cdafe --- /dev/null +++ b/tests/results/test_read_write_secrets/00_0version_underscore.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 version: null diff --git a/tests/results/test_read_write_secrets/00_1empty_variable.sh b/tests/results/test_read_write_secrets/00_1empty_variable.sh new file mode 100644 index 0000000..299bf27 --- /dev/null +++ b/tests/results/test_read_write_secrets/00_1empty_variable.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 empty: null diff --git a/tests/results/test_read_write_secrets/00_2default_calculated.sh b/tests/results/test_read_write_secrets/00_2default_calculated.sh new file mode 100644 index 0000000..ea81b84 --- /dev/null +++ b/tests/results/test_read_write_secrets/00_2default_calculated.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: no +┗━━ 📓 var2 : + ┗━━ no diff --git a/tests/results/test_read_write_secrets/00_2default_calculated_multi.sh b/tests/results/test_read_write_secrets/00_2default_calculated_multi.sh new file mode 100644 index 0000000..79f67bc --- /dev/null +++ b/tests/results/test_read_write_secrets/00_2default_calculated_multi.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ no +┃ ┣━━ yes +┃ ┗━━ maybe +┗━━ 📓 var2 : + ┣━━ no + ┣━━ yes + ┗━━ maybe diff --git a/tests/results/test_read_write_secrets/00_2default_calculated_variable_transitive.sh b/tests/results/test_read_write_secrets/00_2default_calculated_variable_transitive.sh new file mode 100644 index 0000000..8248204 --- /dev/null +++ b/tests/results/test_read_write_secrets/00_2default_calculated_variable_transitive.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┗━━ 📓 var2 : diff --git a/tests/results/test_read_write_secrets/00_4load_subfolder.sh b/tests/results/test_read_write_secrets/00_4load_subfolder.sh new file mode 100644 index 0000000..0ee4247 --- /dev/null +++ b/tests/results/test_read_write_secrets/00_4load_subfolder.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: null +┗━━ 📓 var2: null diff --git a/tests/results/test_read_write_secrets/00_5load_notype.sh b/tests/results/test_read_write_secrets/00_5load_notype.sh new file mode 100644 index 0000000..35da888 --- /dev/null +++ b/tests/results/test_read_write_secrets/00_5load_notype.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 without_type: non diff --git a/tests/results/test_read_write_secrets/00_6boolean.sh b/tests/results/test_read_write_secrets/00_6boolean.sh new file mode 100644 index 0000000..6805146 --- /dev/null +++ b/tests/results/test_read_write_secrets/00_6boolean.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: true +┣━━ 📓 var2: true +┣━━ 📓 var3: true +┣━━ 📓 var4: false +┣━━ 📓 var5: false +┗━━ 📓 var6: false diff --git a/tests/results/test_read_write_secrets/00_6boolean_no_mandatory.sh b/tests/results/test_read_write_secrets/00_6boolean_no_mandatory.sh new file mode 100644 index 0000000..66d2b7d --- /dev/null +++ b/tests/results/test_read_write_secrets/00_6boolean_no_mandatory.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: true diff --git a/tests/results/test_read_write_secrets/00_6choice.sh b/tests/results/test_read_write_secrets/00_6choice.sh new file mode 100644 index 0000000..bb6ec9a --- /dev/null +++ b/tests/results/test_read_write_secrets/00_6choice.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: null +┣━━ 📓 var2: null +┣━━ 📓 var3: null +┣━━ 📓 var4: null +┣━━ 📓 var5: a +┗━━ 📓 var6: 1 diff --git a/tests/results/test_read_write_secrets/00_6choice_calculation.sh b/tests/results/test_read_write_secrets/00_6choice_calculation.sh new file mode 100644 index 0000000..03c04da --- /dev/null +++ b/tests/results/test_read_write_secrets/00_6choice_calculation.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: 9 diff --git a/tests/results/test_read_write_secrets/00_6choice_variable.sh b/tests/results/test_read_write_secrets/00_6choice_variable.sh new file mode 100644 index 0000000..235edb0 --- /dev/null +++ b/tests/results/test_read_write_secrets/00_6choice_variable.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ a +┃ ┣━━ b +┃ ┗━━ c +┗━━ 📓 var2: a diff --git a/tests/results/test_read_write_secrets/00_6custom.sh b/tests/results/test_read_write_secrets/00_6custom.sh new file mode 100644 index 0000000..acf7c86 --- /dev/null +++ b/tests/results/test_read_write_secrets/00_6custom.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 custom1: null +┗━━ 📓 custom2: value diff --git a/tests/results/test_read_write_secrets/00_6domainname.sh b/tests/results/test_read_write_secrets/00_6domainname.sh new file mode 100644 index 0000000..b67665a --- /dev/null +++ b/tests/results/test_read_write_secrets/00_6domainname.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: my.domain.name diff --git a/tests/results/test_read_write_secrets/00_6domainname_params.sh b/tests/results/test_read_write_secrets/00_6domainname_params.sh new file mode 100644 index 0000000..b67665a --- /dev/null +++ b/tests/results/test_read_write_secrets/00_6domainname_params.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: my.domain.name diff --git a/tests/results/test_read_write_secrets/00_6float.sh b/tests/results/test_read_write_secrets/00_6float.sh new file mode 100644 index 0000000..5199bcc --- /dev/null +++ b/tests/results/test_read_write_secrets/00_6float.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: 0.0 +┣━━ 📓 var2: 0.0 +┣━━ 📓 var3: 0.0 +┣━━ 📓 var4: 10.1 +┣━━ 📓 var5: 10.1 +┗━━ 📓 var6: 10.1 diff --git a/tests/results/test_read_write_secrets/00_6number.sh b/tests/results/test_read_write_secrets/00_6number.sh new file mode 100644 index 0000000..c7c986a --- /dev/null +++ b/tests/results/test_read_write_secrets/00_6number.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: 0 +┣━━ 📓 var2: 0 +┣━━ 📓 var3: 0 +┣━━ 📓 var4: 10 +┣━━ 📓 var5: 10 +┗━━ 📓 var6: 10 diff --git a/tests/results/test_read_write_secrets/00_6port.sh b/tests/results/test_read_write_secrets/00_6port.sh new file mode 100644 index 0000000..796d724 --- /dev/null +++ b/tests/results/test_read_write_secrets/00_6port.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 variable1: null +┣━━ 📓 variable2: 8080 +┗━━ 📓 variable3: 8080 diff --git a/tests/results/test_read_write_secrets/00_6regexp.sh b/tests/results/test_read_write_secrets/00_6regexp.sh new file mode 100644 index 0000000..cdbcab1 --- /dev/null +++ b/tests/results/test_read_write_secrets/00_6regexp.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: #a1a1a1 diff --git a/tests/results/test_read_write_secrets/00_6string.sh b/tests/results/test_read_write_secrets/00_6string.sh new file mode 100644 index 0000000..298fccc --- /dev/null +++ b/tests/results/test_read_write_secrets/00_6string.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: null +┣━━ 📓 var2: null +┣━━ 📓 var3: null +┣━━ 📓 var4: value +┣━━ 📓 var5: value +┗━━ 📓 var6: value diff --git a/tests/results/test_read_write_secrets/00_7choice_quote.sh b/tests/results/test_read_write_secrets/00_7choice_quote.sh new file mode 100644 index 0000000..c8c584b --- /dev/null +++ b/tests/results/test_read_write_secrets/00_7choice_quote.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: quote' diff --git a/tests/results/test_read_write_secrets/00_7help_quote.sh b/tests/results/test_read_write_secrets/00_7help_quote.sh new file mode 100644 index 0000000..0ee4247 --- /dev/null +++ b/tests/results/test_read_write_secrets/00_7help_quote.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: null +┗━━ 📓 var2: null diff --git a/tests/results/test_read_write_secrets/00_7value_doublequote.sh b/tests/results/test_read_write_secrets/00_7value_doublequote.sh new file mode 100644 index 0000000..aaf6caa --- /dev/null +++ b/tests/results/test_read_write_secrets/00_7value_doublequote.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: quote" diff --git a/tests/results/test_read_write_secrets/00_7value_doublequote2.sh b/tests/results/test_read_write_secrets/00_7value_doublequote2.sh new file mode 100644 index 0000000..0e8e8d3 --- /dev/null +++ b/tests/results/test_read_write_secrets/00_7value_doublequote2.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: quote'" diff --git a/tests/results/test_read_write_secrets/00_7value_doublequote3.sh b/tests/results/test_read_write_secrets/00_7value_doublequote3.sh new file mode 100644 index 0000000..4ea0921 --- /dev/null +++ b/tests/results/test_read_write_secrets/00_7value_doublequote3.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: quote\"\' diff --git a/tests/results/test_read_write_secrets/00_7value_quote.sh b/tests/results/test_read_write_secrets/00_7value_quote.sh new file mode 100644 index 0000000..acdb9f0 --- /dev/null +++ b/tests/results/test_read_write_secrets/00_7value_quote.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: quote' diff --git a/tests/results/test_read_write_secrets/00_8calculation_information.sh b/tests/results/test_read_write_secrets/00_8calculation_information.sh new file mode 100644 index 0000000..caae029 --- /dev/null +++ b/tests/results/test_read_write_secrets/00_8calculation_information.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: null diff --git a/tests/results/test_read_write_secrets/00_8test.sh b/tests/results/test_read_write_secrets/00_8test.sh new file mode 100644 index 0000000..49e438a --- /dev/null +++ b/tests/results/test_read_write_secrets/00_8test.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: null +┣━━ 📓 var2: value +┣━━ 📓 var3: null +┣━━ 📓 var4: null +┣━━ 📓 var5: true +┗━━ 📓 var6 : diff --git a/tests/results/test_read_write_secrets/00_9choice_variable_multi.sh b/tests/results/test_read_write_secrets/00_9choice_variable_multi.sh new file mode 100644 index 0000000..abf5529 --- /dev/null +++ b/tests/results/test_read_write_secrets/00_9choice_variable_multi.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 variable1 : +┗━━ 📓 variable2 : diff --git a/tests/results/test_read_write_secrets/00_9choice_variables.sh b/tests/results/test_read_write_secrets/00_9choice_variables.sh new file mode 100644 index 0000000..6e39835 --- /dev/null +++ b/tests/results/test_read_write_secrets/00_9choice_variables.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 source_variable_1: val1 +┣━━ 📓 source_variable_2: val2 +┗━━ 📓 my_variable: val1 diff --git a/tests/results/test_read_write_secrets/00_9default_calculation.sh b/tests/results/test_read_write_secrets/00_9default_calculation.sh new file mode 100644 index 0000000..1c17dd6 --- /dev/null +++ b/tests/results/test_read_write_secrets/00_9default_calculation.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: string_1_True_None diff --git a/tests/results/test_read_write_secrets/00_9default_calculation_information.sh b/tests/results/test_read_write_secrets/00_9default_calculation_information.sh new file mode 100644 index 0000000..e46acca --- /dev/null +++ b/tests/results/test_read_write_secrets/00_9default_calculation_information.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: null diff --git a/tests/results/test_read_write_secrets/00_9default_calculation_information_other_variable.sh b/tests/results/test_read_write_secrets/00_9default_calculation_information_other_variable.sh new file mode 100644 index 0000000..0ee4247 --- /dev/null +++ b/tests/results/test_read_write_secrets/00_9default_calculation_information_other_variable.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: null +┗━━ 📓 var2: null diff --git a/tests/results/test_read_write_secrets/00_9default_calculation_multi_optional.sh b/tests/results/test_read_write_secrets/00_9default_calculation_multi_optional.sh new file mode 100644 index 0000000..eac7e25 --- /dev/null +++ b/tests/results/test_read_write_secrets/00_9default_calculation_multi_optional.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 my_variable: val1 +┗━━ 📓 my_calculated_variable : + ┗━━ val1 diff --git a/tests/results/test_read_write_secrets/00_9default_calculation_multi_optional2.sh b/tests/results/test_read_write_secrets/00_9default_calculation_multi_optional2.sh new file mode 100644 index 0000000..eac7e25 --- /dev/null +++ b/tests/results/test_read_write_secrets/00_9default_calculation_multi_optional2.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 my_variable: val1 +┗━━ 📓 my_calculated_variable : + ┗━━ val1 diff --git a/tests/results/test_read_write_secrets/00_9default_calculation_optional.sh b/tests/results/test_read_write_secrets/00_9default_calculation_optional.sh new file mode 100644 index 0000000..416e8d0 --- /dev/null +++ b/tests/results/test_read_write_secrets/00_9default_calculation_optional.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 my_calculated_variable : diff --git a/tests/results/test_read_write_secrets/00_9default_calculation_optional_exists.sh b/tests/results/test_read_write_secrets/00_9default_calculation_optional_exists.sh new file mode 100644 index 0000000..7536369 --- /dev/null +++ b/tests/results/test_read_write_secrets/00_9default_calculation_optional_exists.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 my_variable : +┃ ┣━━ val1 +┃ ┗━━ val2 +┗━━ 📓 my_calculated_variable : + ┣━━ val1 + ┗━━ val2 diff --git a/tests/results/test_read_write_secrets/00_9default_calculation_param_optional.sh b/tests/results/test_read_write_secrets/00_9default_calculation_param_optional.sh new file mode 100644 index 0000000..95b4d3c --- /dev/null +++ b/tests/results/test_read_write_secrets/00_9default_calculation_param_optional.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: no +┗━━ 📓 var2: no diff --git a/tests/results/test_read_write_secrets/00_9default_information_other_variable.sh b/tests/results/test_read_write_secrets/00_9default_information_other_variable.sh new file mode 100644 index 0000000..0ee4247 --- /dev/null +++ b/tests/results/test_read_write_secrets/00_9default_information_other_variable.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: null +┗━━ 📓 var2: null diff --git a/tests/results/test_read_write_secrets/00_9default_integer.sh b/tests/results/test_read_write_secrets/00_9default_integer.sh new file mode 100644 index 0000000..03c04da --- /dev/null +++ b/tests/results/test_read_write_secrets/00_9default_integer.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: 9 diff --git a/tests/results/test_read_write_secrets/01_6boolean_multi.sh b/tests/results/test_read_write_secrets/01_6boolean_multi.sh new file mode 100644 index 0000000..2efa842 --- /dev/null +++ b/tests/results/test_read_write_secrets/01_6boolean_multi.sh @@ -0,0 +1,22 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┗━━ true +┣━━ 📓 var2 : +┃ ┗━━ true +┣━━ 📓 var3 : +┃ ┗━━ true +┣━━ 📓 var4 : +┃ ┗━━ false +┣━━ 📓 var5 : +┃ ┗━━ false +┣━━ 📓 var6 : +┃ ┗━━ false +┣━━ 📓 var7 : +┃ ┗━━ true +┗━━ 📓 var8 : + ┗━━ true diff --git a/tests/results/test_read_write_secrets/01_6custom_multi.sh b/tests/results/test_read_write_secrets/01_6custom_multi.sh new file mode 100644 index 0000000..65d524e --- /dev/null +++ b/tests/results/test_read_write_secrets/01_6custom_multi.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 custom1 : +┗━━ 📓 custom2 : + ┗━━ value diff --git a/tests/results/test_read_write_secrets/01_6float_multi.sh b/tests/results/test_read_write_secrets/01_6float_multi.sh new file mode 100644 index 0000000..4e5008a --- /dev/null +++ b/tests/results/test_read_write_secrets/01_6float_multi.sh @@ -0,0 +1,22 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┗━━ 0.0 +┣━━ 📓 var2 : +┃ ┗━━ 0.0 +┣━━ 📓 var3 : +┃ ┗━━ 0.0 +┣━━ 📓 var4 : +┃ ┗━━ 10.1 +┣━━ 📓 var5 : +┃ ┗━━ 10.1 +┣━━ 📓 var6 : +┃ ┗━━ 10.1 +┣━━ 📓 var7 : +┃ ┗━━ 0.0 +┗━━ 📓 var8 : + ┗━━ 0.0 diff --git a/tests/results/test_read_write_secrets/01_6number_multi.sh b/tests/results/test_read_write_secrets/01_6number_multi.sh new file mode 100644 index 0000000..7dee2a9 --- /dev/null +++ b/tests/results/test_read_write_secrets/01_6number_multi.sh @@ -0,0 +1,22 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┗━━ 0 +┣━━ 📓 var2 : +┃ ┗━━ 0 +┣━━ 📓 var3 : +┃ ┗━━ 0 +┣━━ 📓 var4 : +┃ ┗━━ 10 +┣━━ 📓 var5 : +┃ ┗━━ 10 +┣━━ 📓 var6 : +┃ ┗━━ 10 +┣━━ 📓 var7 : +┃ ┗━━ 0 +┗━━ 📓 var8 : + ┗━━ 0 diff --git a/tests/results/test_read_write_secrets/01_6string_empty.sh b/tests/results/test_read_write_secrets/01_6string_empty.sh new file mode 100644 index 0000000..e1cc3d9 --- /dev/null +++ b/tests/results/test_read_write_secrets/01_6string_empty.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var1 : + ┣━━ value + ┗━━ null diff --git a/tests/results/test_read_write_secrets/01_6string_multi.sh b/tests/results/test_read_write_secrets/01_6string_multi.sh new file mode 100644 index 0000000..b318db8 --- /dev/null +++ b/tests/results/test_read_write_secrets/01_6string_multi.sh @@ -0,0 +1,19 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┣━━ 📓 var2 : +┣━━ 📓 var3: null +┣━━ 📓 var4 : +┃ ┗━━ value +┣━━ 📓 var5 : +┃ ┗━━ value +┣━━ 📓 var6 : +┃ ┗━━ value +┣━━ 📓 var7 : +┃ ┗━━ value +┗━━ 📓 var8 : + ┗━━ value diff --git a/tests/results/test_read_write_secrets/01_7value_multi_doublequote.sh b/tests/results/test_read_write_secrets/01_7value_multi_doublequote.sh new file mode 100644 index 0000000..809894f --- /dev/null +++ b/tests/results/test_read_write_secrets/01_7value_multi_doublequote.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable : + ┗━━ quote" diff --git a/tests/results/test_read_write_secrets/01_7value_multi_doublequote2.sh b/tests/results/test_read_write_secrets/01_7value_multi_doublequote2.sh new file mode 100644 index 0000000..30de023 --- /dev/null +++ b/tests/results/test_read_write_secrets/01_7value_multi_doublequote2.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable : + ┗━━ quote'" diff --git a/tests/results/test_read_write_secrets/01_7value_multi_quote.sh b/tests/results/test_read_write_secrets/01_7value_multi_quote.sh new file mode 100644 index 0000000..50f342f --- /dev/null +++ b/tests/results/test_read_write_secrets/01_7value_multi_quote.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable : + ┗━━ quote' diff --git a/tests/results/test_read_write_secrets/01_8calculation_information_multi.sh b/tests/results/test_read_write_secrets/01_8calculation_information_multi.sh new file mode 100644 index 0000000..de4bc3b --- /dev/null +++ b/tests/results/test_read_write_secrets/01_8calculation_information_multi.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable : diff --git a/tests/results/test_read_write_secrets/01_9choice_variable_multi.sh b/tests/results/test_read_write_secrets/01_9choice_variable_multi.sh new file mode 100644 index 0000000..7d1c77f --- /dev/null +++ b/tests/results/test_read_write_secrets/01_9choice_variable_multi.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 variable1 : +┃ ┣━━ a +┃ ┣━━ b +┃ ┗━━ c +┗━━ 📓 variable2: null diff --git a/tests/results/test_read_write_secrets/04_0type_param.sh b/tests/results/test_read_write_secrets/04_0type_param.sh new file mode 100644 index 0000000..05d7c5a --- /dev/null +++ b/tests/results/test_read_write_secrets/04_0type_param.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 int: 10 diff --git a/tests/results/test_read_write_secrets/04_1auto_save.sh b/tests/results/test_read_write_secrets/04_1auto_save.sh new file mode 100644 index 0000000..4790bac --- /dev/null +++ b/tests/results/test_read_write_secrets/04_1auto_save.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: no diff --git a/tests/results/test_read_write_secrets/04_1auto_save_and_calculated.sh b/tests/results/test_read_write_secrets/04_1auto_save_and_calculated.sh new file mode 100644 index 0000000..bc7be55 --- /dev/null +++ b/tests/results/test_read_write_secrets/04_1auto_save_and_calculated.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: no +┗━━ 📓 var2: no diff --git a/tests/results/test_read_write_secrets/04_1auto_save_and_calculated_hidden.sh b/tests/results/test_read_write_secrets/04_1auto_save_and_calculated_hidden.sh new file mode 100644 index 0000000..ac49fef --- /dev/null +++ b/tests/results/test_read_write_secrets/04_1auto_save_and_calculated_hidden.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: no +┗━━ 📓 var2: yes diff --git a/tests/results/test_read_write_secrets/04_1auto_save_and_hidden.sh b/tests/results/test_read_write_secrets/04_1auto_save_and_hidden.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_secrets/04_1auto_save_and_hidden.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_secrets/04_1default_calculation_hidden.sh b/tests/results/test_read_write_secrets/04_1default_calculation_hidden.sh new file mode 100644 index 0000000..b5dc101 --- /dev/null +++ b/tests/results/test_read_write_secrets/04_1default_calculation_hidden.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: value +┗━━ 📓 var3: value diff --git a/tests/results/test_read_write_secrets/04_1default_calculation_hidden_2.sh b/tests/results/test_read_write_secrets/04_1default_calculation_hidden_2.sh new file mode 100644 index 0000000..b5dc101 --- /dev/null +++ b/tests/results/test_read_write_secrets/04_1default_calculation_hidden_2.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: value +┗━━ 📓 var3: value diff --git a/tests/results/test_read_write_secrets/04_5disabled_calculation_optional.sh b/tests/results/test_read_write_secrets/04_5disabled_calculation_optional.sh new file mode 100644 index 0000000..29461f3 --- /dev/null +++ b/tests/results/test_read_write_secrets/04_5disabled_calculation_optional.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 condition: no diff --git a/tests/results/test_read_write_secrets/04_5disabled_calculation_variable.sh b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable.sh new file mode 100644 index 0000000..cc821db --- /dev/null +++ b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 condition: false +┗━━ 📓 variable: null diff --git a/tests/results/test_read_write_secrets/04_5disabled_calculation_variable2.sh b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable2.sh new file mode 100644 index 0000000..2a451c3 --- /dev/null +++ b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable2.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 condition: true diff --git a/tests/results/test_read_write_secrets/04_5disabled_calculation_variable3.sh b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable3.sh new file mode 100644 index 0000000..b78ef57 --- /dev/null +++ b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable3.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 condition: yes diff --git a/tests/results/test_read_write_secrets/04_5disabled_calculation_variable4.sh b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable4.sh new file mode 100644 index 0000000..0434808 --- /dev/null +++ b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable4.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 condition: yes +┗━━ 📓 variable: null diff --git a/tests/results/test_read_write_secrets/04_5validators.sh b/tests/results/test_read_write_secrets/04_5validators.sh new file mode 100644 index 0000000..27abddf --- /dev/null +++ b/tests/results/test_read_write_secrets/04_5validators.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 int: null diff --git a/tests/results/test_read_write_secrets/04_5validators_differ.sh b/tests/results/test_read_write_secrets/04_5validators_differ.sh new file mode 100644 index 0000000..ab2871f --- /dev/null +++ b/tests/results/test_read_write_secrets/04_5validators_differ.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: oui +┗━━ 📓 var2: no diff --git a/tests/results/test_read_write_secrets/04_5validators_multi.sh b/tests/results/test_read_write_secrets/04_5validators_multi.sh new file mode 100644 index 0000000..6974930 --- /dev/null +++ b/tests/results/test_read_write_secrets/04_5validators_multi.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var1 : + ┣━━ no + ┗━━ yes diff --git a/tests/results/test_read_write_secrets/04_5validators_multi2.sh b/tests/results/test_read_write_secrets/04_5validators_multi2.sh new file mode 100644 index 0000000..6974930 --- /dev/null +++ b/tests/results/test_read_write_secrets/04_5validators_multi2.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var1 : + ┣━━ no + ┗━━ yes diff --git a/tests/results/test_read_write_secrets/05_0multi_not_uniq.sh b/tests/results/test_read_write_secrets/05_0multi_not_uniq.sh new file mode 100644 index 0000000..02a01a7 --- /dev/null +++ b/tests/results/test_read_write_secrets/05_0multi_not_uniq.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var1 : + ┗━━ non diff --git a/tests/results/test_read_write_secrets/05_0multi_uniq.sh b/tests/results/test_read_write_secrets/05_0multi_uniq.sh new file mode 100644 index 0000000..3ba1b77 --- /dev/null +++ b/tests/results/test_read_write_secrets/05_0multi_uniq.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable : + ┗━━ non diff --git a/tests/results/test_read_write_secrets/12_1auto_save_expert.sh b/tests/results/test_read_write_secrets/12_1auto_save_expert.sh new file mode 100644 index 0000000..66cfc84 --- /dev/null +++ b/tests/results/test_read_write_secrets/12_1auto_save_expert.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: no diff --git a/tests/results/test_read_write_secrets/16_0redefine_description.sh b/tests/results/test_read_write_secrets/16_0redefine_description.sh new file mode 100644 index 0000000..e46acca --- /dev/null +++ b/tests/results/test_read_write_secrets/16_0redefine_description.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: null diff --git a/tests/results/test_read_write_secrets/16_2family_redefine_calculation.sh b/tests/results/test_read_write_secrets/16_2family_redefine_calculation.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_secrets/16_2family_redefine_calculation.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_secrets/16_2family_redefine_disabled.sh b/tests/results/test_read_write_secrets/16_2family_redefine_disabled.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_secrets/16_2family_redefine_disabled.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_secrets/16_5exists_nonexists.sh b/tests/results/test_read_write_secrets/16_5exists_nonexists.sh new file mode 100644 index 0000000..426d276 --- /dev/null +++ b/tests/results/test_read_write_secrets/16_5exists_nonexists.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: no +┗━━ 📓 var2: yes diff --git a/tests/results/test_read_write_secrets/16_5exists_redefine.sh b/tests/results/test_read_write_secrets/16_5exists_redefine.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_secrets/16_5exists_redefine.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_secrets/16_5redefine_calculation.sh b/tests/results/test_read_write_secrets/16_5redefine_calculation.sh new file mode 100644 index 0000000..06e4220 --- /dev/null +++ b/tests/results/test_read_write_secrets/16_5redefine_calculation.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: yes diff --git a/tests/results/test_read_write_secrets/16_5redefine_choice.sh b/tests/results/test_read_write_secrets/16_5redefine_choice.sh new file mode 100644 index 0000000..caae029 --- /dev/null +++ b/tests/results/test_read_write_secrets/16_5redefine_choice.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: null diff --git a/tests/results/test_read_write_secrets/16_5redefine_default.sh b/tests/results/test_read_write_secrets/16_5redefine_default.sh new file mode 100644 index 0000000..06e4220 --- /dev/null +++ b/tests/results/test_read_write_secrets/16_5redefine_default.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: yes diff --git a/tests/results/test_read_write_secrets/16_5redefine_default_calculation.sh b/tests/results/test_read_write_secrets/16_5redefine_default_calculation.sh new file mode 100644 index 0000000..caae029 --- /dev/null +++ b/tests/results/test_read_write_secrets/16_5redefine_default_calculation.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: null diff --git a/tests/results/test_read_write_secrets/16_5redefine_family.sh b/tests/results/test_read_write_secrets/16_5redefine_family.sh new file mode 100644 index 0000000..4f92ae6 --- /dev/null +++ b/tests/results/test_read_write_secrets/16_5redefine_family.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 family + ┗━━ 📓 variable: null diff --git a/tests/results/test_read_write_secrets/16_5redefine_help.sh b/tests/results/test_read_write_secrets/16_5redefine_help.sh new file mode 100644 index 0000000..4f92ae6 --- /dev/null +++ b/tests/results/test_read_write_secrets/16_5redefine_help.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 family + ┗━━ 📓 variable: null diff --git a/tests/results/test_read_write_secrets/16_5redefine_hidden.sh b/tests/results/test_read_write_secrets/16_5redefine_hidden.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_secrets/16_5redefine_hidden.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_secrets/16_5redefine_multi.sh b/tests/results/test_read_write_secrets/16_5redefine_multi.sh new file mode 100644 index 0000000..3ba1b77 --- /dev/null +++ b/tests/results/test_read_write_secrets/16_5redefine_multi.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable : + ┗━━ non diff --git a/tests/results/test_read_write_secrets/16_5redefine_remove_disable_calculation.sh b/tests/results/test_read_write_secrets/16_5redefine_remove_disable_calculation.sh new file mode 100644 index 0000000..c9ca114 --- /dev/null +++ b/tests/results/test_read_write_secrets/16_5redefine_remove_disable_calculation.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 condition: no +┗━━ 📓 variable: null diff --git a/tests/results/test_read_write_secrets/16_5test_redefine.sh b/tests/results/test_read_write_secrets/16_5test_redefine.sh new file mode 100644 index 0000000..e1ebfd4 --- /dev/null +++ b/tests/results/test_read_write_secrets/16_5test_redefine.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: no +┣━━ 📓 var2: non +┗━━ 📓 var3: null diff --git a/tests/results/test_read_write_secrets/16_6choice_redefine.sh b/tests/results/test_read_write_secrets/16_6choice_redefine.sh new file mode 100644 index 0000000..f4ac3c9 --- /dev/null +++ b/tests/results/test_read_write_secrets/16_6choice_redefine.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: c diff --git a/tests/results/test_read_write_secrets/16_6exists_redefine_family.sh b/tests/results/test_read_write_secrets/16_6exists_redefine_family.sh new file mode 100644 index 0000000..f10a9e0 --- /dev/null +++ b/tests/results/test_read_write_secrets/16_6exists_redefine_family.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📂 family1 +┃ ┗━━ 📓 variable1: null +┗━━ 📂 family2 + ┗━━ 📓 variable2: null diff --git a/tests/results/test_read_write_secrets/16exists_exists.sh b/tests/results/test_read_write_secrets/16exists_exists.sh new file mode 100644 index 0000000..e46acca --- /dev/null +++ b/tests/results/test_read_write_secrets/16exists_exists.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: null diff --git a/tests/results/test_read_write_secrets/17_5redefine_leadership.sh b/tests/results/test_read_write_secrets/17_5redefine_leadership.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_secrets/17_5redefine_leadership.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_secrets/20_0empty_family.sh b/tests/results/test_read_write_secrets/20_0empty_family.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_secrets/20_0empty_family.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_secrets/20_0family_append.sh b/tests/results/test_read_write_secrets/20_0family_append.sh new file mode 100644 index 0000000..c604327 --- /dev/null +++ b/tests/results/test_read_write_secrets/20_0family_append.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 family + ┣━━ 📓 var1: null + ┗━━ 📓 var2: null diff --git a/tests/results/test_read_write_secrets/20_0family_underscore.sh b/tests/results/test_read_write_secrets/20_0family_underscore.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_secrets/20_0family_underscore.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_secrets/20_0multi_family.sh b/tests/results/test_read_write_secrets/20_0multi_family.sh new file mode 100644 index 0000000..f1a2fba --- /dev/null +++ b/tests/results/test_read_write_secrets/20_0multi_family.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 family + ┗━━ 📂 subfamily +  ┗━━ 📓 variable: null diff --git a/tests/results/test_read_write_secrets/20_0multi_family_basic.sh b/tests/results/test_read_write_secrets/20_0multi_family_basic.sh new file mode 100644 index 0000000..f1a2fba --- /dev/null +++ b/tests/results/test_read_write_secrets/20_0multi_family_basic.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 family + ┗━━ 📂 subfamily +  ┗━━ 📓 variable: null diff --git a/tests/results/test_read_write_secrets/20_0multi_family_expert.sh b/tests/results/test_read_write_secrets/20_0multi_family_expert.sh new file mode 100644 index 0000000..969cf95 --- /dev/null +++ b/tests/results/test_read_write_secrets/20_0multi_family_expert.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 family + ┗━━ 📂 subfamily +  ┗━━ 📓 variable: null diff --git a/tests/results/test_read_write_secrets/20_0multi_family_order.sh b/tests/results/test_read_write_secrets/20_0multi_family_order.sh new file mode 100644 index 0000000..80e09fb --- /dev/null +++ b/tests/results/test_read_write_secrets/20_0multi_family_order.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 variable: null +┗━━ 📂 family + ┣━━ 📓 variable1: null + ┣━━ 📂 subfamily + ┃ ┗━━ 📓 variable: null + ┗━━ 📓 variable2: null diff --git a/tests/results/test_read_write_secrets/20_0validators_differ_redefine.sh b/tests/results/test_read_write_secrets/20_0validators_differ_redefine.sh new file mode 100644 index 0000000..bd7ecf0 --- /dev/null +++ b/tests/results/test_read_write_secrets/20_0validators_differ_redefine.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: no +┣━━ 📓 var2: no +┗━━ 📓 var3: yes diff --git a/tests/results/test_read_write_secrets/20_1empty_subfamily.sh b/tests/results/test_read_write_secrets/20_1empty_subfamily.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_secrets/20_1empty_subfamily.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_secrets/20_9default_information_parent.sh b/tests/results/test_read_write_secrets/20_9default_information_parent.sh new file mode 100644 index 0000000..c604327 --- /dev/null +++ b/tests/results/test_read_write_secrets/20_9default_information_parent.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 family + ┣━━ 📓 var1: null + ┗━━ 📓 var2: null diff --git a/tests/results/test_read_write_secrets/24_0family_hidden_condition_sub_family.sh b/tests/results/test_read_write_secrets/24_0family_hidden_condition_sub_family.sh new file mode 100644 index 0000000..523c07d --- /dev/null +++ b/tests/results/test_read_write_secrets/24_0family_hidden_condition_sub_family.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 condition: no +┗━━ 📂 family + ┗━━ 📂 subfamily +  ┗━━ 📓 var1: null diff --git a/tests/results/test_read_write_secrets/24_0family_hidden_condition_variable_sub_family.sh b/tests/results/test_read_write_secrets/24_0family_hidden_condition_variable_sub_family.sh new file mode 100644 index 0000000..2a451c3 --- /dev/null +++ b/tests/results/test_read_write_secrets/24_0family_hidden_condition_variable_sub_family.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 condition: true diff --git a/tests/results/test_read_write_secrets/24_0family_hidden_param_condition_sub_family.sh b/tests/results/test_read_write_secrets/24_0family_hidden_param_condition_sub_family.sh new file mode 100644 index 0000000..0185d8a --- /dev/null +++ b/tests/results/test_read_write_secrets/24_0family_hidden_param_condition_sub_family.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 condition: no +┗━━ 📂 family + ┗━━ 📂 sub_family +  ┗━━ 📓 var1: null diff --git a/tests/results/test_read_write_secrets/24_0family_mandatory_condition.sh b/tests/results/test_read_write_secrets/24_0family_mandatory_condition.sh new file mode 100644 index 0000000..a34c17a --- /dev/null +++ b/tests/results/test_read_write_secrets/24_0family_mandatory_condition.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 condition: no +┗━━ 📓 var: null diff --git a/tests/results/test_read_write_secrets/24_0family_mandatory_condition_variable.sh b/tests/results/test_read_write_secrets/24_0family_mandatory_condition_variable.sh new file mode 100644 index 0000000..1f3055b --- /dev/null +++ b/tests/results/test_read_write_secrets/24_0family_mandatory_condition_variable.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 condition: true +┗━━ 📓 var: null diff --git a/tests/results/test_read_write_secrets/24_7validators_variable_optional.sh b/tests/results/test_read_write_secrets/24_7validators_variable_optional.sh new file mode 100644 index 0000000..ba6b947 --- /dev/null +++ b/tests/results/test_read_write_secrets/24_7validators_variable_optional.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 general + ┣━━ 📓 int: null + ┗━━ 📓 int2: 1 diff --git a/tests/results/test_read_write_secrets/24_family_disabled_var_hidden.sh b/tests/results/test_read_write_secrets/24_family_disabled_var_hidden.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_secrets/24_family_disabled_var_hidden.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_secrets/40_0leadership.sh b/tests/results/test_read_write_secrets/40_0leadership.sh new file mode 100644 index 0000000..3dea677 --- /dev/null +++ b/tests/results/test_read_write_secrets/40_0leadership.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader diff --git a/tests/results/test_read_write_secrets/40_0leadership_diff_name.sh b/tests/results/test_read_write_secrets/40_0leadership_diff_name.sh new file mode 100644 index 0000000..f0c5faa --- /dev/null +++ b/tests/results/test_read_write_secrets/40_0leadership_diff_name.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leadership diff --git a/tests/results/test_read_write_secrets/40_0leadership_empty.sh b/tests/results/test_read_write_secrets/40_0leadership_empty.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_secrets/40_0leadership_empty.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_secrets/40_0leadership_follower_default_calculation.sh b/tests/results/test_read_write_secrets/40_0leadership_follower_default_calculation.sh new file mode 100644 index 0000000..3dea677 --- /dev/null +++ b/tests/results/test_read_write_secrets/40_0leadership_follower_default_calculation.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader diff --git a/tests/results/test_read_write_secrets/40_0leadership_follower_default_value.sh b/tests/results/test_read_write_secrets/40_0leadership_follower_default_value.sh new file mode 100644 index 0000000..3dea677 --- /dev/null +++ b/tests/results/test_read_write_secrets/40_0leadership_follower_default_value.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader diff --git a/tests/results/test_read_write_secrets/40_0leadership_leader_not_multi.sh b/tests/results/test_read_write_secrets/40_0leadership_leader_not_multi.sh new file mode 100644 index 0000000..bbd6942 --- /dev/null +++ b/tests/results/test_read_write_secrets/40_0leadership_leader_not_multi.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📂 general +┃ ┗━━ 📓 mode_conteneur_actif: non +┗━━ 📂 general1 + ┗━━ 📂 leader diff --git a/tests/results/test_read_write_secrets/40_1leadership_append_follower.sh b/tests/results/test_read_write_secrets/40_1leadership_append_follower.sh new file mode 100644 index 0000000..3dea677 --- /dev/null +++ b/tests/results/test_read_write_secrets/40_1leadership_append_follower.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader diff --git a/tests/results/test_read_write_secrets/40_6leadership_follower_multi.sh b/tests/results/test_read_write_secrets/40_6leadership_follower_multi.sh new file mode 100644 index 0000000..f0c5faa --- /dev/null +++ b/tests/results/test_read_write_secrets/40_6leadership_follower_multi.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leadership diff --git a/tests/results/test_read_write_secrets/40_8calculation_boolean.sh b/tests/results/test_read_write_secrets/40_8calculation_boolean.sh new file mode 100644 index 0000000..2c419a1 --- /dev/null +++ b/tests/results/test_read_write_secrets/40_8calculation_boolean.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 bool: false +┣━━ 📓 multi1 : +┃ ┗━━ false +┗━━ 📓 multi2 : + ┣━━ true + ┗━━ false diff --git a/tests/results/test_read_write_secrets/40_8calculation_multi_variable.sh b/tests/results/test_read_write_secrets/40_8calculation_multi_variable.sh new file mode 100644 index 0000000..8d7ff25 --- /dev/null +++ b/tests/results/test_read_write_secrets/40_8calculation_multi_variable.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ no +┃ ┗━━ yes +┣━━ 📓 var2: no +┗━━ 📓 var3: yes diff --git a/tests/results/test_read_write_secrets/40_8calculation_multi_variable_parent.sh b/tests/results/test_read_write_secrets/40_8calculation_multi_variable_parent.sh new file mode 100644 index 0000000..457599c --- /dev/null +++ b/tests/results/test_read_write_secrets/40_8calculation_multi_variable_parent.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var: no +┗━━ 📂 fam1 + ┗━━ 📓 var: no diff --git a/tests/results/test_read_write_secrets/40_8calculation_multi_variable_parent2.sh b/tests/results/test_read_write_secrets/40_8calculation_multi_variable_parent2.sh new file mode 100644 index 0000000..7fd8094 --- /dev/null +++ b/tests/results/test_read_write_secrets/40_8calculation_multi_variable_parent2.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📂 fam1 +┃ ┗━━ 📓 var: no +┗━━ 📂 fam2 + ┗━━ 📓 var: no diff --git a/tests/results/test_read_write_secrets/41_0choice_leader.sh b/tests/results/test_read_write_secrets/41_0choice_leader.sh new file mode 100644 index 0000000..3dea677 --- /dev/null +++ b/tests/results/test_read_write_secrets/41_0choice_leader.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader diff --git a/tests/results/test_read_write_secrets/44_0leadership_hidden.sh b/tests/results/test_read_write_secrets/44_0leadership_hidden.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_secrets/44_0leadership_hidden.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_secrets/44_0leadership_leader_hidden.sh b/tests/results/test_read_write_secrets/44_0leadership_leader_hidden.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_secrets/44_0leadership_leader_hidden.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_secrets/44_1leadership_append_hidden_follower.sh b/tests/results/test_read_write_secrets/44_1leadership_append_hidden_follower.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_secrets/44_1leadership_append_hidden_follower.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_secrets/44_4leadership_mandatory.sh b/tests/results/test_read_write_secrets/44_4leadership_mandatory.sh new file mode 100644 index 0000000..3dea677 --- /dev/null +++ b/tests/results/test_read_write_secrets/44_4leadership_mandatory.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader diff --git a/tests/results/test_read_write_secrets/44_4leadership_mandatory_follower.sh b/tests/results/test_read_write_secrets/44_4leadership_mandatory_follower.sh new file mode 100644 index 0000000..3dea677 --- /dev/null +++ b/tests/results/test_read_write_secrets/44_4leadership_mandatory_follower.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader diff --git a/tests/results/test_read_write_secrets/44_5leadership_leader_hidden_calculation.sh b/tests/results/test_read_write_secrets/44_5leadership_leader_hidden_calculation.sh new file mode 100644 index 0000000..29461f3 --- /dev/null +++ b/tests/results/test_read_write_secrets/44_5leadership_leader_hidden_calculation.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 condition: no diff --git a/tests/results/test_read_write_secrets/44_6leadership_follower_disabled_calculation.sh b/tests/results/test_read_write_secrets/44_6leadership_follower_disabled_calculation.sh new file mode 100644 index 0000000..2e8b7f6 --- /dev/null +++ b/tests/results/test_read_write_secrets/44_6leadership_follower_disabled_calculation.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 condition: yes +┗━━ 📂 leader diff --git a/tests/results/test_read_write_secrets/60_0family_dynamic.sh b/tests/results/test_read_write_secrets/60_0family_dynamic.sh new file mode 100644 index 0000000..dfa45e7 --- /dev/null +++ b/tests/results/test_read_write_secrets/60_0family_dynamic.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: null +┗━━ 📂 dynval2 + ┗━━ 📓 var: null diff --git a/tests/results/test_read_write_secrets/60_0family_dynamic_1_1.sh b/tests/results/test_read_write_secrets/60_0family_dynamic_1_1.sh new file mode 100644 index 0000000..de2eea8 --- /dev/null +++ b/tests/results/test_read_write_secrets/60_0family_dynamic_1_1.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 vardyn: null +┗━━ 📂 dynval2 + ┗━━ 📓 vardyn: null diff --git a/tests/results/test_read_write_secrets/60_0family_dynamic_1_1_empty.sh b/tests/results/test_read_write_secrets/60_0family_dynamic_1_1_empty.sh new file mode 100644 index 0000000..1e0f43c --- /dev/null +++ b/tests/results/test_read_write_secrets/60_0family_dynamic_1_1_empty.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var : diff --git a/tests/results/test_read_write_secrets/60_0family_dynamic_empty.sh b/tests/results/test_read_write_secrets/60_0family_dynamic_empty.sh new file mode 100644 index 0000000..1e0f43c --- /dev/null +++ b/tests/results/test_read_write_secrets/60_0family_dynamic_empty.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var : diff --git a/tests/results/test_read_write_secrets/60_0family_dynamic_no_description.sh b/tests/results/test_read_write_secrets/60_0family_dynamic_no_description.sh new file mode 100644 index 0000000..dfa45e7 --- /dev/null +++ b/tests/results/test_read_write_secrets/60_0family_dynamic_no_description.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: null +┗━━ 📂 dynval2 + ┗━━ 📓 var: null diff --git a/tests/results/test_read_write_secrets/60_0family_dynamic_no_description_empty.sh b/tests/results/test_read_write_secrets/60_0family_dynamic_no_description_empty.sh new file mode 100644 index 0000000..1e0f43c --- /dev/null +++ b/tests/results/test_read_write_secrets/60_0family_dynamic_no_description_empty.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var : diff --git a/tests/results/test_read_write_secrets/60_0family_dynamic_static.sh b/tests/results/test_read_write_secrets/60_0family_dynamic_static.sh new file mode 100644 index 0000000..a7d3f13 --- /dev/null +++ b/tests/results/test_read_write_secrets/60_0family_dynamic_static.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: null +┗━━ 📂 dynval2 + ┗━━ 📓 var: null diff --git a/tests/results/test_read_write_secrets/60_0family_dynamic_test.sh b/tests/results/test_read_write_secrets/60_0family_dynamic_test.sh new file mode 100644 index 0000000..1e0f43c --- /dev/null +++ b/tests/results/test_read_write_secrets/60_0family_dynamic_test.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var : diff --git a/tests/results/test_read_write_secrets/60_0family_dynamic_variable_empty.sh b/tests/results/test_read_write_secrets/60_0family_dynamic_variable_empty.sh new file mode 100644 index 0000000..1e0f43c --- /dev/null +++ b/tests/results/test_read_write_secrets/60_0family_dynamic_variable_empty.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var : diff --git a/tests/results/test_read_write_secrets/60_0family_dynamic_variable_suffix.sh b/tests/results/test_read_write_secrets/60_0family_dynamic_variable_suffix.sh new file mode 100644 index 0000000..50b6af7 --- /dev/null +++ b/tests/results/test_read_write_secrets/60_0family_dynamic_variable_suffix.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: a value +┗━━ 📂 dynval2 + ┗━━ 📓 var: a value diff --git a/tests/results/test_read_write_secrets/60_0family_dynamic_variable_suffix_empty.sh b/tests/results/test_read_write_secrets/60_0family_dynamic_variable_suffix_empty.sh new file mode 100644 index 0000000..1e0f43c --- /dev/null +++ b/tests/results/test_read_write_secrets/60_0family_dynamic_variable_suffix_empty.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var : diff --git a/tests/results/test_read_write_secrets/60_0family_empty.sh b/tests/results/test_read_write_secrets/60_0family_empty.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_secrets/60_0family_empty.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_secrets/60_0family_hidden.sh b/tests/results/test_read_write_secrets/60_0family_hidden.sh new file mode 100644 index 0000000..fa31cd7 --- /dev/null +++ b/tests/results/test_read_write_secrets/60_0family_hidden.sh @@ -0,0 +1,6 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_read_write_secrets/60_0family_mode.sh b/tests/results/test_read_write_secrets/60_0family_mode.sh new file mode 100644 index 0000000..b185000 --- /dev/null +++ b/tests/results/test_read_write_secrets/60_0family_mode.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 family + ┗━━ 📓 var: non diff --git a/tests/results/test_read_write_secrets/60_1family_dynamic_jinja.sh b/tests/results/test_read_write_secrets/60_1family_dynamic_jinja.sh new file mode 100644 index 0000000..89255b7 --- /dev/null +++ b/tests/results/test_read_write_secrets/60_1family_dynamic_jinja.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dyn1 +┃ ┗━━ 📓 var: val +┗━━ 📂 dyn2 + ┗━━ 📓 var: val diff --git a/tests/results/test_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group.sh b/tests/results/test_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group.sh new file mode 100644 index 0000000..5851bf1 --- /dev/null +++ b/tests/results/test_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📂 family +┃  ┗━━ 📓 var: null +┣━━ 📂 dynval2 +┃ ┗━━ 📂 family +┃  ┗━━ 📓 var: null +┗━━ 📓 var2: null diff --git a/tests/results/test_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_2.sh b/tests/results/test_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_2.sh new file mode 100644 index 0000000..542bbf0 --- /dev/null +++ b/tests/results/test_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_2.sh @@ -0,0 +1,16 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📂 family +┃  ┗━━ 📓 var: val1 +┣━━ 📂 dynval2 +┃ ┗━━ 📂 family +┃  ┗━━ 📓 var: val2 +┗━━ 📓 var2: val1 diff --git a/tests/results/test_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh b/tests/results/test_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh new file mode 100644 index 0000000..1f9cfb6 --- /dev/null +++ b/tests/results/test_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┗━━ 📓 var2: null diff --git a/tests/results/test_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.sh b/tests/results/test_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.sh new file mode 100644 index 0000000..c4f11bb --- /dev/null +++ b/tests/results/test_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┗━━ 📓 var2: null diff --git a/tests/results/test_read_write_secrets/60_2family_dynamic_outside_calc.sh b/tests/results/test_read_write_secrets/60_2family_dynamic_outside_calc.sh new file mode 100644 index 0000000..71918dc --- /dev/null +++ b/tests/results/test_read_write_secrets/60_2family_dynamic_outside_calc.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: val +┣━━ 📂 dynval2 +┃ ┗━━ 📓 var: val +┗━━ 📓 newvar: val diff --git a/tests/results/test_read_write_secrets/60_2family_dynamic_outside_calc_empty.sh b/tests/results/test_read_write_secrets/60_2family_dynamic_outside_calc_empty.sh new file mode 100644 index 0000000..339e3f5 --- /dev/null +++ b/tests/results/test_read_write_secrets/60_2family_dynamic_outside_calc_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┗━━ 📓 newvar: null diff --git a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_suffix2.sh b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_suffix2.sh new file mode 100644 index 0000000..a8f9d1e --- /dev/null +++ b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_suffix2.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: val1 +┗━━ 📂 dynval2 + ┗━━ 📓 var: val2 diff --git a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_suffix2_empty.sh b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_suffix2_empty.sh new file mode 100644 index 0000000..1e0f43c --- /dev/null +++ b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_suffix2_empty.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var : diff --git a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_suffix_param.sh b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_suffix_param.sh new file mode 100644 index 0000000..a8f9d1e --- /dev/null +++ b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_suffix_param.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: val1 +┗━━ 📂 dynval2 + ┗━━ 📓 var: val2 diff --git a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_suffix_param_empty.sh b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_suffix_param_empty.sh new file mode 100644 index 0000000..1e0f43c --- /dev/null +++ b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_suffix_param_empty.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var : diff --git a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_variable.sh b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_variable.sh new file mode 100644 index 0000000..94eceb8 --- /dev/null +++ b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_variable.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: null +┣━━ 📂 dynval2 +┃ ┗━━ 📓 var: null +┗━━ 📓 var2: null diff --git a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_variable_empty.sh b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_variable_empty.sh new file mode 100644 index 0000000..c4f11bb --- /dev/null +++ b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_variable_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┗━━ 📓 var2: null diff --git a/tests/results/test_read_write_secrets/60_5family_dynamic_hidden_suffix.sh b/tests/results/test_read_write_secrets/60_5family_dynamic_hidden_suffix.sh new file mode 100644 index 0000000..94239c1 --- /dev/null +++ b/tests/results/test_read_write_secrets/60_5family_dynamic_hidden_suffix.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 dynval1 + ┣━━ 📓 var: null + ┗━━ 📂 family +  ┗━━ 📓 var: null diff --git a/tests/results/test_read_write_secrets/60_5family_dynamic_variable_outside_suffix.sh b/tests/results/test_read_write_secrets/60_5family_dynamic_variable_outside_suffix.sh new file mode 100644 index 0000000..db50fc0 --- /dev/null +++ b/tests/results/test_read_write_secrets/60_5family_dynamic_variable_outside_suffix.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dyn_val1 +┃ ┗━━ 📓 var: val1 +┣━━ 📂 dyn_val2 +┃ ┗━━ 📓 var: val2 +┗━━ 📓 var2: val1 diff --git a/tests/results/test_read_write_secrets/60_5family_dynamic_variable_outside_suffix_empty.sh b/tests/results/test_read_write_secrets/60_5family_dynamic_variable_outside_suffix_empty.sh new file mode 100644 index 0000000..1f9cfb6 --- /dev/null +++ b/tests/results/test_read_write_secrets/60_5family_dynamic_variable_outside_suffix_empty.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┗━━ 📓 var2: null diff --git a/tests/results/test_read_write_secrets/60_6family_dynamic_leadership.sh b/tests/results/test_read_write_secrets/60_6family_dynamic_leadership.sh new file mode 100644 index 0000000..922f729 --- /dev/null +++ b/tests/results/test_read_write_secrets/60_6family_dynamic_leadership.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📂 leadership +┗━━ 📂 dynval2 + ┗━━ 📂 leadership diff --git a/tests/results/test_read_write_secrets/60_6family_dynamic_leadership_empty.sh b/tests/results/test_read_write_secrets/60_6family_dynamic_leadership_empty.sh new file mode 100644 index 0000000..1e0f43c --- /dev/null +++ b/tests/results/test_read_write_secrets/60_6family_dynamic_leadership_empty.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var : diff --git a/tests/results/test_read_write_secrets/60_9family_dynamic_calc_both.sh b/tests/results/test_read_write_secrets/60_9family_dynamic_calc_both.sh new file mode 100644 index 0000000..001fc9d --- /dev/null +++ b/tests/results/test_read_write_secrets/60_9family_dynamic_calc_both.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var: val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 vardyn: null +┗━━ 📂 dynval2 + ┗━━ 📓 vardyn: null diff --git a/tests/results/test_read_write_secrets/68_0family_leadership_mode.sh b/tests/results/test_read_write_secrets/68_0family_leadership_mode.sh new file mode 100644 index 0000000..3dea677 --- /dev/null +++ b/tests/results/test_read_write_secrets/68_0family_leadership_mode.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader diff --git a/tests/results/test_secrets/00_0empty.sh b/tests/results/test_secrets/00_0empty.sh new file mode 100644 index 0000000..d2701ec --- /dev/null +++ b/tests/results/test_secrets/00_0empty.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_secrets/00_0version_underscore.sh b/tests/results/test_secrets/00_0version_underscore.sh new file mode 100644 index 0000000..cbb3131 --- /dev/null +++ b/tests/results/test_secrets/00_0version_underscore.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 version: string1 diff --git a/tests/results/test_secrets/00_1empty_variable.sh b/tests/results/test_secrets/00_1empty_variable.sh new file mode 100644 index 0000000..10d4ca9 --- /dev/null +++ b/tests/results/test_secrets/00_1empty_variable.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 empty: string1 diff --git a/tests/results/test_secrets/00_2default_calculated.sh b/tests/results/test_secrets/00_2default_calculated.sh new file mode 100644 index 0000000..456e0a0 --- /dev/null +++ b/tests/results/test_secrets/00_2default_calculated.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: string1 (no) +┗━━ 📓 var2 : + ┣━━ string1 (string1) + ┣━━ string2 + ┗━━ string3 diff --git a/tests/results/test_secrets/00_2default_calculated_multi.sh b/tests/results/test_secrets/00_2default_calculated_multi.sh new file mode 100644 index 0000000..a5340fd --- /dev/null +++ b/tests/results/test_secrets/00_2default_calculated_multi.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ string1 (no) +┃ ┣━━ string2 (yes) +┃ ┗━━ string3 (maybe) +┗━━ 📓 var2 : + ┣━━ string1 (string1) + ┣━━ string2 (string2) + ┗━━ string3 (string3) diff --git a/tests/results/test_secrets/00_2default_calculated_variable_transitive.sh b/tests/results/test_secrets/00_2default_calculated_variable_transitive.sh new file mode 100644 index 0000000..851283d --- /dev/null +++ b/tests/results/test_secrets/00_2default_calculated_variable_transitive.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ domain1.lan +┃ ┗━━ domain2.lan +┗━━ 📓 var2 : + ┣━━ domain1.lan (domain1.lan) + ┗━━ domain2.lan (domain2.lan) diff --git a/tests/results/test_secrets/00_4load_subfolder.sh b/tests/results/test_secrets/00_4load_subfolder.sh new file mode 100644 index 0000000..745d9a2 --- /dev/null +++ b/tests/results/test_secrets/00_4load_subfolder.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: string1 +┗━━ 📓 var2: string1 diff --git a/tests/results/test_secrets/00_5load_notype.sh b/tests/results/test_secrets/00_5load_notype.sh new file mode 100644 index 0000000..65bd95e --- /dev/null +++ b/tests/results/test_secrets/00_5load_notype.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 without_type: string1 (non) diff --git a/tests/results/test_secrets/00_6boolean.sh b/tests/results/test_secrets/00_6boolean.sh new file mode 100644 index 0000000..b27ab1f --- /dev/null +++ b/tests/results/test_secrets/00_6boolean.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: true (true) +┣━━ 📓 var2: true (true) +┣━━ 📓 var3: true (true) +┣━━ 📓 var4: true (false) +┣━━ 📓 var5: true (false) +┗━━ 📓 var6: true (false) diff --git a/tests/results/test_secrets/00_6boolean_no_mandatory.sh b/tests/results/test_secrets/00_6boolean_no_mandatory.sh new file mode 100644 index 0000000..20d348f --- /dev/null +++ b/tests/results/test_secrets/00_6boolean_no_mandatory.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: true (true) diff --git a/tests/results/test_secrets/00_6choice.sh b/tests/results/test_secrets/00_6choice.sh new file mode 100644 index 0000000..49df8e5 --- /dev/null +++ b/tests/results/test_secrets/00_6choice.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: a +┣━━ 📓 var2: a +┣━━ 📓 var3: a +┣━━ 📓 var4: null +┣━━ 📓 var5: a (a) +┗━━ 📓 var6: 1 (1) diff --git a/tests/results/test_secrets/00_6choice_calculation.sh b/tests/results/test_secrets/00_6choice_calculation.sh new file mode 100644 index 0000000..ac78811 --- /dev/null +++ b/tests/results/test_secrets/00_6choice_calculation.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: 0 (9) diff --git a/tests/results/test_secrets/00_6choice_variable.sh b/tests/results/test_secrets/00_6choice_variable.sh new file mode 100644 index 0000000..8acfef6 --- /dev/null +++ b/tests/results/test_secrets/00_6choice_variable.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ string1 (a) +┃ ┣━━ string2 (b) +┃ ┗━━ string3 (c) +┗━━ 📓 var2: string1 (a) diff --git a/tests/results/test_secrets/00_6custom.sh b/tests/results/test_secrets/00_6custom.sh new file mode 100644 index 0000000..3e4f83a --- /dev/null +++ b/tests/results/test_secrets/00_6custom.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 custom1: string1 +┗━━ 📓 custom2: string1 (value) diff --git a/tests/results/test_secrets/00_6domainname.sh b/tests/results/test_secrets/00_6domainname.sh new file mode 100644 index 0000000..4b6a7cc --- /dev/null +++ b/tests/results/test_secrets/00_6domainname.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: domain1.lan (my.domain.name) diff --git a/tests/results/test_secrets/00_6domainname_params.sh b/tests/results/test_secrets/00_6domainname_params.sh new file mode 100644 index 0000000..4b6a7cc --- /dev/null +++ b/tests/results/test_secrets/00_6domainname_params.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: domain1.lan (my.domain.name) diff --git a/tests/results/test_secrets/00_6float.sh b/tests/results/test_secrets/00_6float.sh new file mode 100644 index 0000000..b2f2084 --- /dev/null +++ b/tests/results/test_secrets/00_6float.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: 1.1 (0.0) +┣━━ 📓 var2: 1.1 (0.0) +┣━━ 📓 var3: 1.1 (0.0) +┣━━ 📓 var4: 1.1 (10.1) +┣━━ 📓 var5: 1.1 (10.1) +┗━━ 📓 var6: 1.1 (10.1) diff --git a/tests/results/test_secrets/00_6number.sh b/tests/results/test_secrets/00_6number.sh new file mode 100644 index 0000000..65e8ec8 --- /dev/null +++ b/tests/results/test_secrets/00_6number.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: 1 (0) +┣━━ 📓 var2: 1 (0) +┣━━ 📓 var3: 1 (0) +┣━━ 📓 var4: 1 (10) +┣━━ 📓 var5: 1 (10) +┗━━ 📓 var6: 1 (10) diff --git a/tests/results/test_secrets/00_6port.sh b/tests/results/test_secrets/00_6port.sh new file mode 100644 index 0000000..8a43519 --- /dev/null +++ b/tests/results/test_secrets/00_6port.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 variable1: 80 +┣━━ 📓 variable2: 80 (8080) +┗━━ 📓 variable3: 80 (8080) diff --git a/tests/results/test_secrets/00_6regexp.sh b/tests/results/test_secrets/00_6regexp.sh new file mode 100644 index 0000000..c85c7c3 --- /dev/null +++ b/tests/results/test_secrets/00_6regexp.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: #b1b1b1 (#a1a1a1) diff --git a/tests/results/test_secrets/00_6string.sh b/tests/results/test_secrets/00_6string.sh new file mode 100644 index 0000000..8ab1c48 --- /dev/null +++ b/tests/results/test_secrets/00_6string.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: string1 +┣━━ 📓 var2: string1 +┣━━ 📓 var3: string1 +┣━━ 📓 var4: string1 (value) +┣━━ 📓 var5: string1 (value) +┗━━ 📓 var6: string1 (value) diff --git a/tests/results/test_secrets/00_7choice_quote.sh b/tests/results/test_secrets/00_7choice_quote.sh new file mode 100644 index 0000000..514be07 --- /dev/null +++ b/tests/results/test_secrets/00_7choice_quote.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: quote' (quote') diff --git a/tests/results/test_secrets/00_7help_quote.sh b/tests/results/test_secrets/00_7help_quote.sh new file mode 100644 index 0000000..745d9a2 --- /dev/null +++ b/tests/results/test_secrets/00_7help_quote.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: string1 +┗━━ 📓 var2: string1 diff --git a/tests/results/test_secrets/00_7value_doublequote.sh b/tests/results/test_secrets/00_7value_doublequote.sh new file mode 100644 index 0000000..cfb0fba --- /dev/null +++ b/tests/results/test_secrets/00_7value_doublequote.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: string1 (quote") diff --git a/tests/results/test_secrets/00_7value_doublequote2.sh b/tests/results/test_secrets/00_7value_doublequote2.sh new file mode 100644 index 0000000..d2d1201 --- /dev/null +++ b/tests/results/test_secrets/00_7value_doublequote2.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: string1 (quote'") diff --git a/tests/results/test_secrets/00_7value_doublequote3.sh b/tests/results/test_secrets/00_7value_doublequote3.sh new file mode 100644 index 0000000..452fc21 --- /dev/null +++ b/tests/results/test_secrets/00_7value_doublequote3.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: string1 (quote\"\') diff --git a/tests/results/test_secrets/00_7value_quote.sh b/tests/results/test_secrets/00_7value_quote.sh new file mode 100644 index 0000000..4d59689 --- /dev/null +++ b/tests/results/test_secrets/00_7value_quote.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: string1 (quote') diff --git a/tests/results/test_secrets/00_8calculation_information.sh b/tests/results/test_secrets/00_8calculation_information.sh new file mode 100644 index 0000000..20ee287 --- /dev/null +++ b/tests/results/test_secrets/00_8calculation_information.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: string1 diff --git a/tests/results/test_secrets/00_8test.sh b/tests/results/test_secrets/00_8test.sh new file mode 100644 index 0000000..b1ffb34 --- /dev/null +++ b/tests/results/test_secrets/00_8test.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: test +┣━━ 📓 var2: test (value) +┣━━ 📓 var3: test1 +┣━━ 📓 var4: null +┣━━ 📓 var5: false (true) +┗━━ 📓 var6 : + ┣━━ test1 + ┗━━ test2 diff --git a/tests/results/test_secrets/00_9choice_variable_multi.sh b/tests/results/test_secrets/00_9choice_variable_multi.sh new file mode 100644 index 0000000..a583b22 --- /dev/null +++ b/tests/results/test_secrets/00_9choice_variable_multi.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 variable1 : +┃ ┣━━ val1 +┃ ┗━━ val2 +┗━━ 📓 variable2 : + ┣━━ val1 + ┗━━ val2 diff --git a/tests/results/test_secrets/00_9choice_variables.sh b/tests/results/test_secrets/00_9choice_variables.sh new file mode 100644 index 0000000..ab3878d --- /dev/null +++ b/tests/results/test_secrets/00_9choice_variables.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 source_variable_1: string1 (val1) +┣━━ 📓 source_variable_2: string1 (val2) +┗━━ 📓 my_variable: string1 (val1) diff --git a/tests/results/test_secrets/00_9default_calculation.sh b/tests/results/test_secrets/00_9default_calculation.sh new file mode 100644 index 0000000..f48bdd2 --- /dev/null +++ b/tests/results/test_secrets/00_9default_calculation.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: string1 (string_1_True_None) diff --git a/tests/results/test_secrets/00_9default_calculation_information.sh b/tests/results/test_secrets/00_9default_calculation_information.sh new file mode 100644 index 0000000..9d9c8c4 --- /dev/null +++ b/tests/results/test_secrets/00_9default_calculation_information.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: string1 diff --git a/tests/results/test_secrets/00_9default_calculation_information_other_variable.sh b/tests/results/test_secrets/00_9default_calculation_information_other_variable.sh new file mode 100644 index 0000000..745d9a2 --- /dev/null +++ b/tests/results/test_secrets/00_9default_calculation_information_other_variable.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: string1 +┗━━ 📓 var2: string1 diff --git a/tests/results/test_secrets/00_9default_calculation_multi_optional.sh b/tests/results/test_secrets/00_9default_calculation_multi_optional.sh new file mode 100644 index 0000000..09d1e5c --- /dev/null +++ b/tests/results/test_secrets/00_9default_calculation_multi_optional.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 my_variable: string1 (val1) +┗━━ 📓 my_calculated_variable : + ┣━━ string1 (string1) + ┣━━ string2 + ┗━━ string3 diff --git a/tests/results/test_secrets/00_9default_calculation_multi_optional2.sh b/tests/results/test_secrets/00_9default_calculation_multi_optional2.sh new file mode 100644 index 0000000..09d1e5c --- /dev/null +++ b/tests/results/test_secrets/00_9default_calculation_multi_optional2.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 my_variable: string1 (val1) +┗━━ 📓 my_calculated_variable : + ┣━━ string1 (string1) + ┣━━ string2 + ┗━━ string3 diff --git a/tests/results/test_secrets/00_9default_calculation_optional.sh b/tests/results/test_secrets/00_9default_calculation_optional.sh new file mode 100644 index 0000000..1636046 --- /dev/null +++ b/tests/results/test_secrets/00_9default_calculation_optional.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 my_calculated_variable : + ┣━━ string1 + ┣━━ string2 + ┗━━ string3 diff --git a/tests/results/test_secrets/00_9default_calculation_optional_exists.sh b/tests/results/test_secrets/00_9default_calculation_optional_exists.sh new file mode 100644 index 0000000..2d44a09 --- /dev/null +++ b/tests/results/test_secrets/00_9default_calculation_optional_exists.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 my_variable : +┃ ┣━━ string1 (val1) +┃ ┣━━ string2 (val2) +┃ ┗━━ string3 +┗━━ 📓 my_calculated_variable : + ┣━━ string1 (string1) + ┣━━ string2 (string2) + ┗━━ string3 (string3) diff --git a/tests/results/test_secrets/00_9default_calculation_param_optional.sh b/tests/results/test_secrets/00_9default_calculation_param_optional.sh new file mode 100644 index 0000000..67cc3d2 --- /dev/null +++ b/tests/results/test_secrets/00_9default_calculation_param_optional.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: string1 (string1) +┗━━ 📓 var2: string1 (no) diff --git a/tests/results/test_secrets/00_9default_information_other_variable.sh b/tests/results/test_secrets/00_9default_information_other_variable.sh new file mode 100644 index 0000000..745d9a2 --- /dev/null +++ b/tests/results/test_secrets/00_9default_information_other_variable.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: string1 +┗━━ 📓 var2: string1 diff --git a/tests/results/test_secrets/00_9default_integer.sh b/tests/results/test_secrets/00_9default_integer.sh new file mode 100644 index 0000000..ac78811 --- /dev/null +++ b/tests/results/test_secrets/00_9default_integer.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: 0 (9) diff --git a/tests/results/test_secrets/01_6boolean_multi.sh b/tests/results/test_secrets/01_6boolean_multi.sh new file mode 100644 index 0000000..fd45bd5 --- /dev/null +++ b/tests/results/test_secrets/01_6boolean_multi.sh @@ -0,0 +1,23 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┗━━ true (true) +┣━━ 📓 var2 : +┃ ┗━━ true (true) +┣━━ 📓 var3 : +┃ ┗━━ true (true) +┣━━ 📓 var4 : +┃ ┗━━ true (false) +┣━━ 📓 var5 : +┃ ┗━━ true (false) +┣━━ 📓 var6 : +┃ ┗━━ true (false) +┣━━ 📓 var7 : +┃ ┗━━ true (true) +┗━━ 📓 var8 : + ┗━━ true (true) diff --git a/tests/results/test_secrets/01_6custom_multi.sh b/tests/results/test_secrets/01_6custom_multi.sh new file mode 100644 index 0000000..9ca11f8 --- /dev/null +++ b/tests/results/test_secrets/01_6custom_multi.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 custom1 : +┃ ┣━━ string1 +┃ ┣━━ string2 +┃ ┗━━ string3 +┗━━ 📓 custom2 : + ┣━━ string1 (value) + ┣━━ string2 + ┗━━ string3 diff --git a/tests/results/test_secrets/01_6float_multi.sh b/tests/results/test_secrets/01_6float_multi.sh new file mode 100644 index 0000000..23d167b --- /dev/null +++ b/tests/results/test_secrets/01_6float_multi.sh @@ -0,0 +1,39 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ 1.1 (0.0) +┃ ┣━━ 2.2 +┃ ┗━━ 3.3 +┣━━ 📓 var2 : +┃ ┣━━ 1.1 (0.0) +┃ ┣━━ 2.2 +┃ ┗━━ 3.3 +┣━━ 📓 var3 : +┃ ┣━━ 1.1 (0.0) +┃ ┣━━ 2.2 +┃ ┗━━ 3.3 +┣━━ 📓 var4 : +┃ ┣━━ 1.1 (10.1) +┃ ┣━━ 2.2 +┃ ┗━━ 3.3 +┣━━ 📓 var5 : +┃ ┣━━ 1.1 (10.1) +┃ ┣━━ 2.2 +┃ ┗━━ 3.3 +┣━━ 📓 var6 : +┃ ┣━━ 1.1 (10.1) +┃ ┣━━ 2.2 +┃ ┗━━ 3.3 +┣━━ 📓 var7 : +┃ ┣━━ 1.1 (0.0) +┃ ┣━━ 2.2 +┃ ┗━━ 3.3 +┗━━ 📓 var8 : + ┣━━ 1.1 (0.0) + ┣━━ 2.2 + ┗━━ 3.3 diff --git a/tests/results/test_secrets/01_6number_multi.sh b/tests/results/test_secrets/01_6number_multi.sh new file mode 100644 index 0000000..a5ad107 --- /dev/null +++ b/tests/results/test_secrets/01_6number_multi.sh @@ -0,0 +1,39 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ 1 (0) +┃ ┣━━ 2 +┃ ┗━━ 3 +┣━━ 📓 var2 : +┃ ┣━━ 1 (0) +┃ ┣━━ 2 +┃ ┗━━ 3 +┣━━ 📓 var3 : +┃ ┣━━ 1 (0) +┃ ┣━━ 2 +┃ ┗━━ 3 +┣━━ 📓 var4 : +┃ ┣━━ 1 (10) +┃ ┣━━ 2 +┃ ┗━━ 3 +┣━━ 📓 var5 : +┃ ┣━━ 1 (10) +┃ ┣━━ 2 +┃ ┗━━ 3 +┣━━ 📓 var6 : +┃ ┣━━ 1 (10) +┃ ┣━━ 2 +┃ ┗━━ 3 +┣━━ 📓 var7 : +┃ ┣━━ 1 (0) +┃ ┣━━ 2 +┃ ┗━━ 3 +┗━━ 📓 var8 : + ┣━━ 1 (0) + ┣━━ 2 + ┗━━ 3 diff --git a/tests/results/test_secrets/01_6string_empty.sh b/tests/results/test_secrets/01_6string_empty.sh new file mode 100644 index 0000000..c8a3fd0 --- /dev/null +++ b/tests/results/test_secrets/01_6string_empty.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var1 : + ┣━━ string1 (value) + ┣━━ string2 + ┗━━ string3 diff --git a/tests/results/test_secrets/01_6string_multi.sh b/tests/results/test_secrets/01_6string_multi.sh new file mode 100644 index 0000000..4e254cd --- /dev/null +++ b/tests/results/test_secrets/01_6string_multi.sh @@ -0,0 +1,36 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ string1 +┃ ┣━━ string2 +┃ ┗━━ string3 +┣━━ 📓 var2 : +┃ ┣━━ string1 +┃ ┣━━ string2 +┃ ┗━━ string3 +┣━━ 📓 var3: string1 +┣━━ 📓 var4 : +┃ ┣━━ string1 (value) +┃ ┣━━ string2 +┃ ┗━━ string3 +┣━━ 📓 var5 : +┃ ┣━━ string1 (value) +┃ ┣━━ string2 +┃ ┗━━ string3 +┣━━ 📓 var6 : +┃ ┣━━ string1 (value) +┃ ┣━━ string2 +┃ ┗━━ string3 +┣━━ 📓 var7 : +┃ ┣━━ string1 (value) +┃ ┣━━ string2 +┃ ┗━━ string3 +┗━━ 📓 var8 : + ┣━━ string1 (value) + ┣━━ string2 + ┗━━ string3 diff --git a/tests/results/test_secrets/01_7value_multi_doublequote.sh b/tests/results/test_secrets/01_7value_multi_doublequote.sh new file mode 100644 index 0000000..c48b269 --- /dev/null +++ b/tests/results/test_secrets/01_7value_multi_doublequote.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable : + ┣━━ string1 (quote") + ┣━━ string2 + ┗━━ string3 diff --git a/tests/results/test_secrets/01_7value_multi_doublequote2.sh b/tests/results/test_secrets/01_7value_multi_doublequote2.sh new file mode 100644 index 0000000..d28cadf --- /dev/null +++ b/tests/results/test_secrets/01_7value_multi_doublequote2.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable : + ┣━━ string1 (quote'") + ┣━━ string2 + ┗━━ string3 diff --git a/tests/results/test_secrets/01_7value_multi_quote.sh b/tests/results/test_secrets/01_7value_multi_quote.sh new file mode 100644 index 0000000..7a0036e --- /dev/null +++ b/tests/results/test_secrets/01_7value_multi_quote.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable : + ┣━━ string1 (quote') + ┣━━ string2 + ┗━━ string3 diff --git a/tests/results/test_secrets/01_8calculation_information_multi.sh b/tests/results/test_secrets/01_8calculation_information_multi.sh new file mode 100644 index 0000000..3d17763 --- /dev/null +++ b/tests/results/test_secrets/01_8calculation_information_multi.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable : + ┣━━ string1 + ┣━━ string2 + ┗━━ string3 diff --git a/tests/results/test_secrets/01_9choice_variable_multi.sh b/tests/results/test_secrets/01_9choice_variable_multi.sh new file mode 100644 index 0000000..d7a7ea2 --- /dev/null +++ b/tests/results/test_secrets/01_9choice_variable_multi.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 variable1 : +┃ ┣━━ string1 (a) +┃ ┣━━ string2 (b) +┃ ┗━━ string3 (c) +┗━━ 📓 variable2: string1 diff --git a/tests/results/test_secrets/04_0type_param.sh b/tests/results/test_secrets/04_0type_param.sh new file mode 100644 index 0000000..ddfef88 --- /dev/null +++ b/tests/results/test_secrets/04_0type_param.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 int: 1 (10) diff --git a/tests/results/test_secrets/04_1auto_save.sh b/tests/results/test_secrets/04_1auto_save.sh new file mode 100644 index 0000000..a99ff67 --- /dev/null +++ b/tests/results/test_secrets/04_1auto_save.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: no diff --git a/tests/results/test_secrets/04_1auto_save_and_calculated.sh b/tests/results/test_secrets/04_1auto_save_and_calculated.sh new file mode 100644 index 0000000..a730525 --- /dev/null +++ b/tests/results/test_secrets/04_1auto_save_and_calculated.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: string1 (no) +┗━━ 📓 var2: no diff --git a/tests/results/test_secrets/04_1auto_save_and_calculated_hidden.sh b/tests/results/test_secrets/04_1auto_save_and_calculated_hidden.sh new file mode 100644 index 0000000..823343a --- /dev/null +++ b/tests/results/test_secrets/04_1auto_save_and_calculated_hidden.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: string1 (no) +┗━━ 📓 var2: yes diff --git a/tests/results/test_secrets/04_1auto_save_and_hidden.sh b/tests/results/test_secrets/04_1auto_save_and_hidden.sh new file mode 100644 index 0000000..f3bbf7c --- /dev/null +++ b/tests/results/test_secrets/04_1auto_save_and_hidden.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: yes diff --git a/tests/results/test_secrets/04_1default_calculation_hidden.sh b/tests/results/test_secrets/04_1default_calculation_hidden.sh new file mode 100644 index 0000000..f4a35c3 --- /dev/null +++ b/tests/results/test_secrets/04_1default_calculation_hidden.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: string1 (value) +┣━━ 📓 var2: string1 +┗━━ 📓 var3: string1 diff --git a/tests/results/test_secrets/04_1default_calculation_hidden_2.sh b/tests/results/test_secrets/04_1default_calculation_hidden_2.sh new file mode 100644 index 0000000..f4a35c3 --- /dev/null +++ b/tests/results/test_secrets/04_1default_calculation_hidden_2.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: string1 (value) +┣━━ 📓 var2: string1 +┗━━ 📓 var3: string1 diff --git a/tests/results/test_secrets/04_5disabled_calculation_optional.sh b/tests/results/test_secrets/04_5disabled_calculation_optional.sh new file mode 100644 index 0000000..c862f1f --- /dev/null +++ b/tests/results/test_secrets/04_5disabled_calculation_optional.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 condition: string1 (no) +┣━━ 📓 var1: null +┗━━ 📓 var2: string1 diff --git a/tests/results/test_secrets/04_5disabled_calculation_variable.sh b/tests/results/test_secrets/04_5disabled_calculation_variable.sh new file mode 100644 index 0000000..a9481ef --- /dev/null +++ b/tests/results/test_secrets/04_5disabled_calculation_variable.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 condition: true (false) diff --git a/tests/results/test_secrets/04_5disabled_calculation_variable2.sh b/tests/results/test_secrets/04_5disabled_calculation_variable2.sh new file mode 100644 index 0000000..881ad94 --- /dev/null +++ b/tests/results/test_secrets/04_5disabled_calculation_variable2.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 condition: true (true) diff --git a/tests/results/test_secrets/04_5disabled_calculation_variable3.sh b/tests/results/test_secrets/04_5disabled_calculation_variable3.sh new file mode 100644 index 0000000..36d67de --- /dev/null +++ b/tests/results/test_secrets/04_5disabled_calculation_variable3.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 condition: string1 (yes) +┗━━ 📓 variable: string1 diff --git a/tests/results/test_secrets/04_5disabled_calculation_variable4.sh b/tests/results/test_secrets/04_5disabled_calculation_variable4.sh new file mode 100644 index 0000000..672c603 --- /dev/null +++ b/tests/results/test_secrets/04_5disabled_calculation_variable4.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 condition: string1 (yes) diff --git a/tests/results/test_secrets/04_5validators.sh b/tests/results/test_secrets/04_5validators.sh new file mode 100644 index 0000000..adce015 --- /dev/null +++ b/tests/results/test_secrets/04_5validators.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 int: 1 diff --git a/tests/results/test_secrets/04_5validators_differ.sh b/tests/results/test_secrets/04_5validators_differ.sh new file mode 100644 index 0000000..e30325e --- /dev/null +++ b/tests/results/test_secrets/04_5validators_differ.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: another_value (oui) +┗━━ 📓 var2: string1 (no) diff --git a/tests/results/test_secrets/04_5validators_multi.sh b/tests/results/test_secrets/04_5validators_multi.sh new file mode 100644 index 0000000..7f26d87 --- /dev/null +++ b/tests/results/test_secrets/04_5validators_multi.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var1 : + ┣━━ string1 (no) + ┣━━ string2 (yes) + ┗━━ string3 diff --git a/tests/results/test_secrets/04_5validators_multi2.sh b/tests/results/test_secrets/04_5validators_multi2.sh new file mode 100644 index 0000000..3fcdbdb --- /dev/null +++ b/tests/results/test_secrets/04_5validators_multi2.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var1 : + ┣━━ val1 (no) + ┗━━ val2 (yes) diff --git a/tests/results/test_secrets/05_0multi_not_uniq.sh b/tests/results/test_secrets/05_0multi_not_uniq.sh new file mode 100644 index 0000000..472495b --- /dev/null +++ b/tests/results/test_secrets/05_0multi_not_uniq.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var1 : + ┣━━ string1 (non) + ┣━━ string2 + ┗━━ string3 diff --git a/tests/results/test_secrets/05_0multi_uniq.sh b/tests/results/test_secrets/05_0multi_uniq.sh new file mode 100644 index 0000000..d52c787 --- /dev/null +++ b/tests/results/test_secrets/05_0multi_uniq.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable : + ┣━━ string1 (non) + ┣━━ string2 + ┗━━ string3 diff --git a/tests/results/test_secrets/12_1auto_save_expert.sh b/tests/results/test_secrets/12_1auto_save_expert.sh new file mode 100644 index 0000000..29435ca --- /dev/null +++ b/tests/results/test_secrets/12_1auto_save_expert.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: no diff --git a/tests/results/test_secrets/16_0redefine_description.sh b/tests/results/test_secrets/16_0redefine_description.sh new file mode 100644 index 0000000..9d9c8c4 --- /dev/null +++ b/tests/results/test_secrets/16_0redefine_description.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: string1 diff --git a/tests/results/test_secrets/16_2family_redefine_calculation.sh b/tests/results/test_secrets/16_2family_redefine_calculation.sh new file mode 100644 index 0000000..d2701ec --- /dev/null +++ b/tests/results/test_secrets/16_2family_redefine_calculation.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_secrets/16_2family_redefine_disabled.sh b/tests/results/test_secrets/16_2family_redefine_disabled.sh new file mode 100644 index 0000000..d2701ec --- /dev/null +++ b/tests/results/test_secrets/16_2family_redefine_disabled.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_secrets/16_5exists_nonexists.sh b/tests/results/test_secrets/16_5exists_nonexists.sh new file mode 100644 index 0000000..3466da7 --- /dev/null +++ b/tests/results/test_secrets/16_5exists_nonexists.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: string1 (no) +┗━━ 📓 var2: string1 (yes) diff --git a/tests/results/test_secrets/16_5exists_redefine.sh b/tests/results/test_secrets/16_5exists_redefine.sh new file mode 100644 index 0000000..d93518e --- /dev/null +++ b/tests/results/test_secrets/16_5exists_redefine.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var1: yes diff --git a/tests/results/test_secrets/16_5redefine_calculation.sh b/tests/results/test_secrets/16_5redefine_calculation.sh new file mode 100644 index 0000000..41a9217 --- /dev/null +++ b/tests/results/test_secrets/16_5redefine_calculation.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: string1 (yes) diff --git a/tests/results/test_secrets/16_5redefine_choice.sh b/tests/results/test_secrets/16_5redefine_choice.sh new file mode 100644 index 0000000..a9898f1 --- /dev/null +++ b/tests/results/test_secrets/16_5redefine_choice.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: a diff --git a/tests/results/test_secrets/16_5redefine_default.sh b/tests/results/test_secrets/16_5redefine_default.sh new file mode 100644 index 0000000..41a9217 --- /dev/null +++ b/tests/results/test_secrets/16_5redefine_default.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: string1 (yes) diff --git a/tests/results/test_secrets/16_5redefine_default_calculation.sh b/tests/results/test_secrets/16_5redefine_default_calculation.sh new file mode 100644 index 0000000..20ee287 --- /dev/null +++ b/tests/results/test_secrets/16_5redefine_default_calculation.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: string1 diff --git a/tests/results/test_secrets/16_5redefine_family.sh b/tests/results/test_secrets/16_5redefine_family.sh new file mode 100644 index 0000000..bfc9f47 --- /dev/null +++ b/tests/results/test_secrets/16_5redefine_family.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 family + ┗━━ 📓 variable: string1 diff --git a/tests/results/test_secrets/16_5redefine_help.sh b/tests/results/test_secrets/16_5redefine_help.sh new file mode 100644 index 0000000..bfc9f47 --- /dev/null +++ b/tests/results/test_secrets/16_5redefine_help.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 family + ┗━━ 📓 variable: string1 diff --git a/tests/results/test_secrets/16_5redefine_hidden.sh b/tests/results/test_secrets/16_5redefine_hidden.sh new file mode 100644 index 0000000..a958bd4 --- /dev/null +++ b/tests/results/test_secrets/16_5redefine_hidden.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable: no diff --git a/tests/results/test_secrets/16_5redefine_multi.sh b/tests/results/test_secrets/16_5redefine_multi.sh new file mode 100644 index 0000000..d52c787 --- /dev/null +++ b/tests/results/test_secrets/16_5redefine_multi.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 variable : + ┣━━ string1 (non) + ┣━━ string2 + ┗━━ string3 diff --git a/tests/results/test_secrets/16_5redefine_remove_disable_calculation.sh b/tests/results/test_secrets/16_5redefine_remove_disable_calculation.sh new file mode 100644 index 0000000..7122d35 --- /dev/null +++ b/tests/results/test_secrets/16_5redefine_remove_disable_calculation.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 condition: string1 (no) +┗━━ 📓 variable: string1 diff --git a/tests/results/test_secrets/16_5test_redefine.sh b/tests/results/test_secrets/16_5test_redefine.sh new file mode 100644 index 0000000..3208745 --- /dev/null +++ b/tests/results/test_secrets/16_5test_redefine.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: test1 (no) +┣━━ 📓 var2: test1 (non) +┗━━ 📓 var3: string1 diff --git a/tests/results/test_secrets/16_6choice_redefine.sh b/tests/results/test_secrets/16_6choice_redefine.sh new file mode 100644 index 0000000..569602b --- /dev/null +++ b/tests/results/test_secrets/16_6choice_redefine.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: a (c) diff --git a/tests/results/test_secrets/16_6exists_redefine_family.sh b/tests/results/test_secrets/16_6exists_redefine_family.sh new file mode 100644 index 0000000..0958ff9 --- /dev/null +++ b/tests/results/test_secrets/16_6exists_redefine_family.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📂 family1 +┃ ┗━━ 📓 variable1: string1 +┗━━ 📂 family2 + ┗━━ 📓 variable2: string1 diff --git a/tests/results/test_secrets/16exists_exists.sh b/tests/results/test_secrets/16exists_exists.sh new file mode 100644 index 0000000..9d9c8c4 --- /dev/null +++ b/tests/results/test_secrets/16exists_exists.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📓 var: string1 diff --git a/tests/results/test_secrets/17_5redefine_leadership.sh b/tests/results/test_secrets/17_5redefine_leadership.sh new file mode 100644 index 0000000..0986b3a --- /dev/null +++ b/tests/results/test_secrets/17_5redefine_leadership.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader diff --git a/tests/results/test_secrets/20_0empty_family.sh b/tests/results/test_secrets/20_0empty_family.sh new file mode 100644 index 0000000..d2701ec --- /dev/null +++ b/tests/results/test_secrets/20_0empty_family.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_secrets/20_0family_append.sh b/tests/results/test_secrets/20_0family_append.sh new file mode 100644 index 0000000..2a1dc69 --- /dev/null +++ b/tests/results/test_secrets/20_0family_append.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 family + ┣━━ 📓 var1: string1 + ┗━━ 📓 var2: string1 diff --git a/tests/results/test_secrets/20_0family_underscore.sh b/tests/results/test_secrets/20_0family_underscore.sh new file mode 100644 index 0000000..d2701ec --- /dev/null +++ b/tests/results/test_secrets/20_0family_underscore.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_secrets/20_0multi_family.sh b/tests/results/test_secrets/20_0multi_family.sh new file mode 100644 index 0000000..c94a75f --- /dev/null +++ b/tests/results/test_secrets/20_0multi_family.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 family + ┗━━ 📂 subfamily +  ┗━━ 📓 variable: string1 diff --git a/tests/results/test_secrets/20_0multi_family_basic.sh b/tests/results/test_secrets/20_0multi_family_basic.sh new file mode 100644 index 0000000..c94a75f --- /dev/null +++ b/tests/results/test_secrets/20_0multi_family_basic.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 family + ┗━━ 📂 subfamily +  ┗━━ 📓 variable: string1 diff --git a/tests/results/test_secrets/20_0multi_family_expert.sh b/tests/results/test_secrets/20_0multi_family_expert.sh new file mode 100644 index 0000000..a0a7fcb --- /dev/null +++ b/tests/results/test_secrets/20_0multi_family_expert.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 family + ┗━━ 📂 subfamily +  ┗━━ 📓 variable: string1 diff --git a/tests/results/test_secrets/20_0multi_family_order.sh b/tests/results/test_secrets/20_0multi_family_order.sh new file mode 100644 index 0000000..cabace8 --- /dev/null +++ b/tests/results/test_secrets/20_0multi_family_order.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 variable: string1 +┗━━ 📂 family + ┣━━ 📓 variable1: string1 + ┣━━ 📂 subfamily + ┃ ┗━━ 📓 variable: string1 + ┗━━ 📓 variable2: string1 diff --git a/tests/results/test_secrets/20_0validators_differ_redefine.sh b/tests/results/test_secrets/20_0validators_differ_redefine.sh new file mode 100644 index 0000000..9e562b8 --- /dev/null +++ b/tests/results/test_secrets/20_0validators_differ_redefine.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1: string1 (no) +┣━━ 📓 var2: string1 (no) +┗━━ 📓 var3: yes (yes) diff --git a/tests/results/test_secrets/20_1empty_subfamily.sh b/tests/results/test_secrets/20_1empty_subfamily.sh new file mode 100644 index 0000000..d2701ec --- /dev/null +++ b/tests/results/test_secrets/20_1empty_subfamily.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_secrets/20_9default_information_parent.sh b/tests/results/test_secrets/20_9default_information_parent.sh new file mode 100644 index 0000000..2a1dc69 --- /dev/null +++ b/tests/results/test_secrets/20_9default_information_parent.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 family + ┣━━ 📓 var1: string1 + ┗━━ 📓 var2: string1 diff --git a/tests/results/test_secrets/24_0family_hidden_condition_sub_family.sh b/tests/results/test_secrets/24_0family_hidden_condition_sub_family.sh new file mode 100644 index 0000000..386c7f7 --- /dev/null +++ b/tests/results/test_secrets/24_0family_hidden_condition_sub_family.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 condition: string1 (no) +┗━━ 📂 family + ┗━━ 📂 subfamily +  ┗━━ 📓 var1: string1 diff --git a/tests/results/test_secrets/24_0family_hidden_condition_variable_sub_family.sh b/tests/results/test_secrets/24_0family_hidden_condition_variable_sub_family.sh new file mode 100644 index 0000000..d12c240 --- /dev/null +++ b/tests/results/test_secrets/24_0family_hidden_condition_variable_sub_family.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 condition: true (true) +┗━━ 📂 family + ┗━━ 📂 subfamily +  ┗━━ 📓 var1: null diff --git a/tests/results/test_secrets/24_0family_hidden_param_condition_sub_family.sh b/tests/results/test_secrets/24_0family_hidden_param_condition_sub_family.sh new file mode 100644 index 0000000..a43d055 --- /dev/null +++ b/tests/results/test_secrets/24_0family_hidden_param_condition_sub_family.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 condition: string1 (no) +┗━━ 📂 family + ┗━━ 📂 sub_family +  ┗━━ 📓 var1: string1 diff --git a/tests/results/test_secrets/24_0family_mandatory_condition.sh b/tests/results/test_secrets/24_0family_mandatory_condition.sh new file mode 100644 index 0000000..d7edcb8 --- /dev/null +++ b/tests/results/test_secrets/24_0family_mandatory_condition.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 condition: string1 (no) +┗━━ 📓 var: string1 diff --git a/tests/results/test_secrets/24_0family_mandatory_condition_variable.sh b/tests/results/test_secrets/24_0family_mandatory_condition_variable.sh new file mode 100644 index 0000000..d88e1e8 --- /dev/null +++ b/tests/results/test_secrets/24_0family_mandatory_condition_variable.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 condition: true (true) +┗━━ 📓 var: string1 diff --git a/tests/results/test_secrets/24_7validators_variable_optional.sh b/tests/results/test_secrets/24_7validators_variable_optional.sh new file mode 100644 index 0000000..0c957fe --- /dev/null +++ b/tests/results/test_secrets/24_7validators_variable_optional.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 general + ┣━━ 📓 int: 5 + ┗━━ 📓 int2: 1 (1) diff --git a/tests/results/test_secrets/24_family_disabled_var_hidden.sh b/tests/results/test_secrets/24_family_disabled_var_hidden.sh new file mode 100644 index 0000000..d2701ec --- /dev/null +++ b/tests/results/test_secrets/24_family_disabled_var_hidden.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_secrets/40_0leadership.sh b/tests/results/test_secrets/40_0leadership.sh new file mode 100644 index 0000000..1cf06b1 --- /dev/null +++ b/tests/results/test_secrets/40_0leadership.sh @@ -0,0 +1,20 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string1 + ┃ ┣━━ 📓 follower1: string1 + ┃ ┗━━ 📓 follower2: string1 + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string2 + ┃ ┣━━ 📓 follower1: string2 + ┃ ┗━━ 📓 follower2: string2 + ┗━━ 📂 leader +  ┣━━ 📓 leader: string3 +  ┣━━ 📓 follower1: string3 +  ┗━━ 📓 follower2: string3 diff --git a/tests/results/test_secrets/40_0leadership_diff_name.sh b/tests/results/test_secrets/40_0leadership_diff_name.sh new file mode 100644 index 0000000..a4b3870 --- /dev/null +++ b/tests/results/test_secrets/40_0leadership_diff_name.sh @@ -0,0 +1,20 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leadership + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string1 + ┃ ┣━━ 📓 follower1: string1 + ┃ ┗━━ 📓 follower2: string1 + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string2 + ┃ ┣━━ 📓 follower1: string2 + ┃ ┗━━ 📓 follower2: string2 + ┗━━ 📂 leader +  ┣━━ 📓 leader: string3 +  ┣━━ 📓 follower1: string3 +  ┗━━ 📓 follower2: string3 diff --git a/tests/results/test_secrets/40_0leadership_empty.sh b/tests/results/test_secrets/40_0leadership_empty.sh new file mode 100644 index 0000000..d2701ec --- /dev/null +++ b/tests/results/test_secrets/40_0leadership_empty.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_secrets/40_0leadership_follower_default_calculation.sh b/tests/results/test_secrets/40_0leadership_follower_default_calculation.sh new file mode 100644 index 0000000..de2c6b6 --- /dev/null +++ b/tests/results/test_secrets/40_0leadership_follower_default_calculation.sh @@ -0,0 +1,20 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string1 + ┃ ┣━━ 📓 follower1: string1 (value) + ┃ ┗━━ 📓 follower2: string1 (string1) + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string2 + ┃ ┣━━ 📓 follower1: string2 (value) + ┃ ┗━━ 📓 follower2: string2 (string2) + ┗━━ 📂 leader +  ┣━━ 📓 leader: string3 +  ┣━━ 📓 follower1: string3 (value) +  ┗━━ 📓 follower2: string3 (string3) diff --git a/tests/results/test_secrets/40_0leadership_follower_default_value.sh b/tests/results/test_secrets/40_0leadership_follower_default_value.sh new file mode 100644 index 0000000..ec2629f --- /dev/null +++ b/tests/results/test_secrets/40_0leadership_follower_default_value.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string1 + ┃ ┗━━ 📓 follower1: string1 (value) + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string2 + ┃ ┗━━ 📓 follower1: string2 (value) + ┗━━ 📂 leader +  ┣━━ 📓 leader: string3 +  ┗━━ 📓 follower1: string3 (value) diff --git a/tests/results/test_secrets/40_0leadership_leader_not_multi.sh b/tests/results/test_secrets/40_0leadership_leader_not_multi.sh new file mode 100644 index 0000000..3559fd2 --- /dev/null +++ b/tests/results/test_secrets/40_0leadership_leader_not_multi.sh @@ -0,0 +1,23 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📂 general +┃ ┗━━ 📓 mode_conteneur_actif: string1 (non) +┗━━ 📂 general1 + ┗━━ 📂 leader +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 +  ┃ ┣━━ 📓 follower1: string1 +  ┃ ┗━━ 📓 follower2: string1 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┣━━ 📓 follower1: string2 +  ┃ ┗━━ 📓 follower2: string2 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┣━━ 📓 follower1: string3 +   ┗━━ 📓 follower2: string3 diff --git a/tests/results/test_secrets/40_1leadership_append_follower.sh b/tests/results/test_secrets/40_1leadership_append_follower.sh new file mode 100644 index 0000000..6f82870 --- /dev/null +++ b/tests/results/test_secrets/40_1leadership_append_follower.sh @@ -0,0 +1,23 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string1 + ┃ ┣━━ 📓 follower1: string1 + ┃ ┣━━ 📓 follower2: string1 + ┃ ┗━━ 📓 follower3: string1 + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string2 + ┃ ┣━━ 📓 follower1: string2 + ┃ ┣━━ 📓 follower2: string2 + ┃ ┗━━ 📓 follower3: string2 + ┗━━ 📂 leader +  ┣━━ 📓 leader: string3 +  ┣━━ 📓 follower1: string3 +  ┣━━ 📓 follower2: string3 +  ┗━━ 📓 follower3: string3 diff --git a/tests/results/test_secrets/40_6leadership_follower_multi.sh b/tests/results/test_secrets/40_6leadership_follower_multi.sh new file mode 100644 index 0000000..edf63fb --- /dev/null +++ b/tests/results/test_secrets/40_6leadership_follower_multi.sh @@ -0,0 +1,38 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leadership + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string1 + ┃ ┣━━ 📓 follower1 : + ┃ ┃ ┣━━ string1 + ┃ ┃ ┣━━ string2 + ┃ ┃ ┗━━ string3 + ┃ ┗━━ 📓 follower2 : + ┃  ┣━━ string1 (value) + ┃  ┣━━ string2 + ┃  ┗━━ string3 + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string2 + ┃ ┣━━ 📓 follower1 : + ┃ ┃ ┣━━ string1 + ┃ ┃ ┣━━ string2 + ┃ ┃ ┗━━ string3 + ┃ ┗━━ 📓 follower2 : + ┃  ┣━━ string1 (value) + ┃  ┣━━ string2 + ┃  ┗━━ string3 + ┗━━ 📂 leader +  ┣━━ 📓 leader: string3 +  ┣━━ 📓 follower1 : +  ┃ ┣━━ string1 +  ┃ ┣━━ string2 +  ┃ ┗━━ string3 +  ┗━━ 📓 follower2 : +   ┣━━ string1 (value) +   ┣━━ string2 +   ┗━━ string3 diff --git a/tests/results/test_secrets/40_8calculation_boolean.sh b/tests/results/test_secrets/40_8calculation_boolean.sh new file mode 100644 index 0000000..5ad3273 --- /dev/null +++ b/tests/results/test_secrets/40_8calculation_boolean.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 bool: true (false) +┣━━ 📓 multi1 : +┃ ┣━━ true (true) +┃ ┗━━ false +┗━━ 📓 multi2 : + ┗━━ true (false) diff --git a/tests/results/test_secrets/40_8calculation_multi_variable.sh b/tests/results/test_secrets/40_8calculation_multi_variable.sh new file mode 100644 index 0000000..f02cd68 --- /dev/null +++ b/tests/results/test_secrets/40_8calculation_multi_variable.sh @@ -0,0 +1,13 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ string1 (string1) +┃ ┣━━ string2 (string1) +┃ ┗━━ string3 +┣━━ 📓 var2: string1 (no) +┗━━ 📓 var3: string1 (yes) diff --git a/tests/results/test_secrets/40_8calculation_multi_variable_parent.sh b/tests/results/test_secrets/40_8calculation_multi_variable_parent.sh new file mode 100644 index 0000000..e3c89bf --- /dev/null +++ b/tests/results/test_secrets/40_8calculation_multi_variable_parent.sh @@ -0,0 +1,10 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var: string1 (no) +┗━━ 📂 fam1 + ┗━━ 📓 var: string1 (string1) diff --git a/tests/results/test_secrets/40_8calculation_multi_variable_parent2.sh b/tests/results/test_secrets/40_8calculation_multi_variable_parent2.sh new file mode 100644 index 0000000..b3ffd39 --- /dev/null +++ b/tests/results/test_secrets/40_8calculation_multi_variable_parent2.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📂 fam1 +┃ ┗━━ 📓 var: string1 (no) +┗━━ 📂 fam2 + ┗━━ 📓 var: string1 (string1) diff --git a/tests/results/test_secrets/41_0choice_leader.sh b/tests/results/test_secrets/41_0choice_leader.sh new file mode 100644 index 0000000..621054f --- /dev/null +++ b/tests/results/test_secrets/41_0choice_leader.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string1 + ┃ ┗━━ 📓 follower1: a + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string2 + ┃ ┗━━ 📓 follower1: b + ┗━━ 📂 leader +  ┣━━ 📓 leader: string3 +  ┗━━ 📓 follower1: c diff --git a/tests/results/test_secrets/44_0leadership_hidden.sh b/tests/results/test_secrets/44_0leadership_hidden.sh new file mode 100644 index 0000000..0986b3a --- /dev/null +++ b/tests/results/test_secrets/44_0leadership_hidden.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader diff --git a/tests/results/test_secrets/44_0leadership_leader_hidden.sh b/tests/results/test_secrets/44_0leadership_leader_hidden.sh new file mode 100644 index 0000000..0986b3a --- /dev/null +++ b/tests/results/test_secrets/44_0leadership_leader_hidden.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader diff --git a/tests/results/test_secrets/44_1leadership_append_hidden_follower.sh b/tests/results/test_secrets/44_1leadership_append_hidden_follower.sh new file mode 100644 index 0000000..0986b3a --- /dev/null +++ b/tests/results/test_secrets/44_1leadership_append_hidden_follower.sh @@ -0,0 +1,8 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader diff --git a/tests/results/test_secrets/44_4leadership_mandatory.sh b/tests/results/test_secrets/44_4leadership_mandatory.sh new file mode 100644 index 0000000..2631fe9 --- /dev/null +++ b/tests/results/test_secrets/44_4leadership_mandatory.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string1 + ┃ ┗━━ 📓 follower1: string1 + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string2 + ┃ ┗━━ 📓 follower1: string2 + ┗━━ 📂 leader +  ┣━━ 📓 leader: string3 +  ┗━━ 📓 follower1: string3 diff --git a/tests/results/test_secrets/44_4leadership_mandatory_follower.sh b/tests/results/test_secrets/44_4leadership_mandatory_follower.sh new file mode 100644 index 0000000..76d1cd5 --- /dev/null +++ b/tests/results/test_secrets/44_4leadership_mandatory_follower.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string1 + ┃ ┗━━ 📓 follower: string1 + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string2 + ┃ ┗━━ 📓 follower: string2 + ┗━━ 📂 leader +  ┣━━ 📓 leader: string3 +  ┗━━ 📓 follower: string3 diff --git a/tests/results/test_secrets/44_5leadership_leader_hidden_calculation.sh b/tests/results/test_secrets/44_5leadership_leader_hidden_calculation.sh new file mode 100644 index 0000000..3ed7795 --- /dev/null +++ b/tests/results/test_secrets/44_5leadership_leader_hidden_calculation.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 condition: string1 (no) +┗━━ 📂 leader + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string1 + ┃ ┗━━ 📓 follower: string1 + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string2 + ┃ ┗━━ 📓 follower: string2 + ┗━━ 📂 leader +  ┣━━ 📓 leader: string3 +  ┗━━ 📓 follower: string3 diff --git a/tests/results/test_secrets/44_6leadership_follower_disabled_calculation.sh b/tests/results/test_secrets/44_6leadership_follower_disabled_calculation.sh new file mode 100644 index 0000000..c8cf81c --- /dev/null +++ b/tests/results/test_secrets/44_6leadership_follower_disabled_calculation.sh @@ -0,0 +1,18 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 condition: string1 (yes) +┗━━ 📂 leader + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string1 + ┃ ┗━━ 📓 follower: string1 + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string2 + ┃ ┗━━ 📓 follower: string2 + ┗━━ 📂 leader +  ┣━━ 📓 leader: string3 +  ┗━━ 📓 follower: string3 diff --git a/tests/results/test_secrets/60_0family_dynamic.sh b/tests/results/test_secrets/60_0family_dynamic.sh new file mode 100644 index 0000000..ef89e4b --- /dev/null +++ b/tests/results/test_secrets/60_0family_dynamic.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 (val1) +┃ ┗━━ val2 (val2) +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: string1 +┗━━ 📂 dynval2 + ┗━━ 📓 var: string1 diff --git a/tests/results/test_secrets/60_0family_dynamic_1_1.sh b/tests/results/test_secrets/60_0family_dynamic_1_1.sh new file mode 100644 index 0000000..ec8930d --- /dev/null +++ b/tests/results/test_secrets/60_0family_dynamic_1_1.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 (val1) +┃ ┗━━ val2 (val2) +┣━━ 📂 dynval1 +┃ ┗━━ 📓 vardyn: string1 +┗━━ 📂 dynval2 + ┗━━ 📓 vardyn: string1 diff --git a/tests/results/test_secrets/60_0family_dynamic_1_1_empty.sh b/tests/results/test_secrets/60_0family_dynamic_1_1_empty.sh new file mode 100644 index 0000000..89e74b5 --- /dev/null +++ b/tests/results/test_secrets/60_0family_dynamic_1_1_empty.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 vardyn: string1 +┗━━ 📂 dynval2 + ┗━━ 📓 vardyn: string1 diff --git a/tests/results/test_secrets/60_0family_dynamic_empty.sh b/tests/results/test_secrets/60_0family_dynamic_empty.sh new file mode 100644 index 0000000..db9c00d --- /dev/null +++ b/tests/results/test_secrets/60_0family_dynamic_empty.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ string1 +┃ ┣━━ string2 +┃ ┗━━ string3 +┣━━ 📂 dynstring1 +┃ ┗━━ 📓 var: string1 +┣━━ 📂 dynstring2 +┃ ┗━━ 📓 var: string1 +┗━━ 📂 dynstring3 + ┗━━ 📓 var: string1 diff --git a/tests/results/test_secrets/60_0family_dynamic_no_description.sh b/tests/results/test_secrets/60_0family_dynamic_no_description.sh new file mode 100644 index 0000000..ef89e4b --- /dev/null +++ b/tests/results/test_secrets/60_0family_dynamic_no_description.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 (val1) +┃ ┗━━ val2 (val2) +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: string1 +┗━━ 📂 dynval2 + ┗━━ 📓 var: string1 diff --git a/tests/results/test_secrets/60_0family_dynamic_no_description_empty.sh b/tests/results/test_secrets/60_0family_dynamic_no_description_empty.sh new file mode 100644 index 0000000..c64d84a --- /dev/null +++ b/tests/results/test_secrets/60_0family_dynamic_no_description_empty.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: string1 +┗━━ 📂 dynval2 + ┗━━ 📓 var: string1 diff --git a/tests/results/test_secrets/60_0family_dynamic_static.sh b/tests/results/test_secrets/60_0family_dynamic_static.sh new file mode 100644 index 0000000..8433ae8 --- /dev/null +++ b/tests/results/test_secrets/60_0family_dynamic_static.sh @@ -0,0 +1,11 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: string1 +┗━━ 📂 dynval2 + ┗━━ 📓 var: string1 diff --git a/tests/results/test_secrets/60_0family_dynamic_test.sh b/tests/results/test_secrets/60_0family_dynamic_test.sh new file mode 100644 index 0000000..c64d84a --- /dev/null +++ b/tests/results/test_secrets/60_0family_dynamic_test.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: string1 +┗━━ 📂 dynval2 + ┗━━ 📓 var: string1 diff --git a/tests/results/test_secrets/60_0family_dynamic_variable_empty.sh b/tests/results/test_secrets/60_0family_dynamic_variable_empty.sh new file mode 100644 index 0000000..a953da0 --- /dev/null +++ b/tests/results/test_secrets/60_0family_dynamic_variable_empty.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ string1 +┃ ┣━━ string2 +┃ ┗━━ string3 +┣━━ 📂 dynstring1 +┃ ┗━━ 📓 var: string1 (val) +┣━━ 📂 dynstring2 +┃ ┗━━ 📓 var: string1 (val) +┗━━ 📂 dynstring3 + ┗━━ 📓 var: string1 (val) diff --git a/tests/results/test_secrets/60_0family_dynamic_variable_suffix.sh b/tests/results/test_secrets/60_0family_dynamic_variable_suffix.sh new file mode 100644 index 0000000..3c86228 --- /dev/null +++ b/tests/results/test_secrets/60_0family_dynamic_variable_suffix.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 (val1) +┃ ┗━━ val2 (val2) +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: string1 (a value) +┗━━ 📂 dynval2 + ┗━━ 📓 var: string1 (a value) diff --git a/tests/results/test_secrets/60_0family_dynamic_variable_suffix_empty.sh b/tests/results/test_secrets/60_0family_dynamic_variable_suffix_empty.sh new file mode 100644 index 0000000..19ac83d --- /dev/null +++ b/tests/results/test_secrets/60_0family_dynamic_variable_suffix_empty.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: string1 (a value) +┗━━ 📂 dynval2 + ┗━━ 📓 var: string1 (a value) diff --git a/tests/results/test_secrets/60_0family_empty.sh b/tests/results/test_secrets/60_0family_empty.sh new file mode 100644 index 0000000..d2701ec --- /dev/null +++ b/tests/results/test_secrets/60_0family_empty.sh @@ -0,0 +1,7 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: diff --git a/tests/results/test_secrets/60_0family_hidden.sh b/tests/results/test_secrets/60_0family_hidden.sh new file mode 100644 index 0000000..10fba37 --- /dev/null +++ b/tests/results/test_secrets/60_0family_hidden.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 family + ┗━━ 📓 var: null diff --git a/tests/results/test_secrets/60_0family_mode.sh b/tests/results/test_secrets/60_0family_mode.sh new file mode 100644 index 0000000..d5af23e --- /dev/null +++ b/tests/results/test_secrets/60_0family_mode.sh @@ -0,0 +1,9 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 family + ┗━━ 📓 var: string1 (non) diff --git a/tests/results/test_secrets/60_1family_dynamic_jinja.sh b/tests/results/test_secrets/60_1family_dynamic_jinja.sh new file mode 100644 index 0000000..7d22b32 --- /dev/null +++ b/tests/results/test_secrets/60_1family_dynamic_jinja.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ string1 (val1) +┃ ┣━━ string2 (val2) +┃ ┗━━ string3 +┣━━ 📂 dyn1 +┃ ┗━━ 📓 var: string1 (val) +┣━━ 📂 dyn2 +┃ ┗━━ 📓 var: string1 (val) +┗━━ 📂 dyn3 + ┗━━ 📓 var: string1 (val) diff --git a/tests/results/test_secrets/60_2family_dynamic_jinja_fill_sub_group.sh b/tests/results/test_secrets/60_2family_dynamic_jinja_fill_sub_group.sh new file mode 100644 index 0000000..cd45ae4 --- /dev/null +++ b/tests/results/test_secrets/60_2family_dynamic_jinja_fill_sub_group.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ val1 (val1) +┃ ┗━━ val2 (val2) +┣━━ 📂 dynval1 +┃ ┗━━ 📂 family +┃  ┗━━ 📓 var: string1 +┣━━ 📂 dynval2 +┃ ┗━━ 📂 family +┃  ┗━━ 📓 var: string1 +┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_secrets/60_2family_dynamic_jinja_fill_sub_group_2.sh b/tests/results/test_secrets/60_2family_dynamic_jinja_fill_sub_group_2.sh new file mode 100644 index 0000000..63ec016 --- /dev/null +++ b/tests/results/test_secrets/60_2family_dynamic_jinja_fill_sub_group_2.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 (val1) +┃ ┗━━ val2 (val2) +┣━━ 📂 dynval1 +┃ ┗━━ 📂 family +┃  ┗━━ 📓 var: string1 (val1) +┣━━ 📂 dynval2 +┃ ┗━━ 📂 family +┃  ┗━━ 📓 var: string1 (val2) +┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh b/tests/results/test_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh new file mode 100644 index 0000000..a11d5fb --- /dev/null +++ b/tests/results/test_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📂 family +┃  ┗━━ 📓 var: string1 (val1) +┣━━ 📂 dynval2 +┃ ┗━━ 📂 family +┃  ┗━━ 📓 var: string1 (val2) +┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.sh b/tests/results/test_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.sh new file mode 100644 index 0000000..b2582f2 --- /dev/null +++ b/tests/results/test_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.sh @@ -0,0 +1,17 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📂 family +┃  ┗━━ 📓 var: string1 +┣━━ 📂 dynval2 +┃ ┗━━ 📂 family +┃  ┗━━ 📓 var: string1 +┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_secrets/60_2family_dynamic_outside_calc.sh b/tests/results/test_secrets/60_2family_dynamic_outside_calc.sh new file mode 100644 index 0000000..283c64a --- /dev/null +++ b/tests/results/test_secrets/60_2family_dynamic_outside_calc.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ val1 (val1) +┃ ┗━━ val2 (val2) +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: string1 (val) +┣━━ 📂 dynval2 +┃ ┗━━ 📓 var: string1 (val) +┗━━ 📓 newvar: string1 (string1) diff --git a/tests/results/test_secrets/60_2family_dynamic_outside_calc_empty.sh b/tests/results/test_secrets/60_2family_dynamic_outside_calc_empty.sh new file mode 100644 index 0000000..01fbe72 --- /dev/null +++ b/tests/results/test_secrets/60_2family_dynamic_outside_calc_empty.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: string1 (val) +┣━━ 📂 dynval2 +┃ ┗━━ 📓 var: string1 (val) +┗━━ 📓 newvar: string1 (string1) diff --git a/tests/results/test_secrets/60_5family_dynamic_calc_suffix2.sh b/tests/results/test_secrets/60_5family_dynamic_calc_suffix2.sh new file mode 100644 index 0000000..8f4cc48 --- /dev/null +++ b/tests/results/test_secrets/60_5family_dynamic_calc_suffix2.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 (val1) +┃ ┗━━ val2 (val2) +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: string1 (val1) +┗━━ 📂 dynval2 + ┗━━ 📓 var: string1 (val2) diff --git a/tests/results/test_secrets/60_5family_dynamic_calc_suffix2_empty.sh b/tests/results/test_secrets/60_5family_dynamic_calc_suffix2_empty.sh new file mode 100644 index 0000000..21086f8 --- /dev/null +++ b/tests/results/test_secrets/60_5family_dynamic_calc_suffix2_empty.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: string1 (val1) +┗━━ 📂 dynval2 + ┗━━ 📓 var: string1 (val2) diff --git a/tests/results/test_secrets/60_5family_dynamic_calc_suffix_param.sh b/tests/results/test_secrets/60_5family_dynamic_calc_suffix_param.sh new file mode 100644 index 0000000..8f4cc48 --- /dev/null +++ b/tests/results/test_secrets/60_5family_dynamic_calc_suffix_param.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 (val1) +┃ ┗━━ val2 (val2) +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: string1 (val1) +┗━━ 📂 dynval2 + ┗━━ 📓 var: string1 (val2) diff --git a/tests/results/test_secrets/60_5family_dynamic_calc_suffix_param_empty.sh b/tests/results/test_secrets/60_5family_dynamic_calc_suffix_param_empty.sh new file mode 100644 index 0000000..21086f8 --- /dev/null +++ b/tests/results/test_secrets/60_5family_dynamic_calc_suffix_param_empty.sh @@ -0,0 +1,14 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: string1 (val1) +┗━━ 📂 dynval2 + ┗━━ 📓 var: string1 (val2) diff --git a/tests/results/test_secrets/60_5family_dynamic_calc_variable.sh b/tests/results/test_secrets/60_5family_dynamic_calc_variable.sh new file mode 100644 index 0000000..09730e3 --- /dev/null +++ b/tests/results/test_secrets/60_5family_dynamic_calc_variable.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ val1 (val1) +┃ ┗━━ val2 (val2) +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: string1 +┣━━ 📂 dynval2 +┃ ┗━━ 📓 var: string1 +┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_secrets/60_5family_dynamic_calc_variable_empty.sh b/tests/results/test_secrets/60_5family_dynamic_calc_variable_empty.sh new file mode 100644 index 0000000..db12349 --- /dev/null +++ b/tests/results/test_secrets/60_5family_dynamic_calc_variable_empty.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var1 : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 var: string1 +┣━━ 📂 dynval2 +┃ ┗━━ 📓 var: string1 +┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_secrets/60_5family_dynamic_hidden_suffix.sh b/tests/results/test_secrets/60_5family_dynamic_hidden_suffix.sh new file mode 100644 index 0000000..cabdce6 --- /dev/null +++ b/tests/results/test_secrets/60_5family_dynamic_hidden_suffix.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📂 dynval1 +┃ ┣━━ 📓 var: string1 +┃ ┗━━ 📂 family +┃  ┗━━ 📓 var: string1 +┗━━ 📂 dynval2 + ┣━━ 📓 var: null + ┗━━ 📂 family +  ┗━━ 📓 var: null diff --git a/tests/results/test_secrets/60_5family_dynamic_variable_outside_suffix.sh b/tests/results/test_secrets/60_5family_dynamic_variable_outside_suffix.sh new file mode 100644 index 0000000..4c4033a --- /dev/null +++ b/tests/results/test_secrets/60_5family_dynamic_variable_outside_suffix.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 (val1) +┃ ┗━━ val2 (val2) +┣━━ 📂 dyn_val1 +┃ ┗━━ 📓 var: string1 (val1) +┣━━ 📂 dyn_val2 +┃ ┗━━ 📓 var: string1 (val2) +┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_secrets/60_5family_dynamic_variable_outside_suffix_empty.sh b/tests/results/test_secrets/60_5family_dynamic_variable_outside_suffix_empty.sh new file mode 100644 index 0000000..a834550 --- /dev/null +++ b/tests/results/test_secrets/60_5family_dynamic_variable_outside_suffix_empty.sh @@ -0,0 +1,15 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dyn_val1 +┃ ┗━━ 📓 var: string1 (val1) +┣━━ 📂 dyn_val2 +┃ ┗━━ 📓 var: string1 (val2) +┗━━ 📓 var2: string1 (string1) diff --git a/tests/results/test_secrets/60_6family_dynamic_leadership.sh b/tests/results/test_secrets/60_6family_dynamic_leadership.sh new file mode 100644 index 0000000..a9c3f90 --- /dev/null +++ b/tests/results/test_secrets/60_6family_dynamic_leadership.sh @@ -0,0 +1,38 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 (val1) +┃ ┗━━ val2 (val2) +┣━━ 📂 dynval1 +┃ ┗━━ 📂 leadership +┃  ┣━━ 📂 leader +┃  ┃ ┣━━ 📓 leader: string1 +┃  ┃ ┣━━ 📓 follower1: string1 +┃  ┃ ┗━━ 📓 follower2: string1 +┃  ┣━━ 📂 leader +┃  ┃ ┣━━ 📓 leader: string2 +┃  ┃ ┣━━ 📓 follower1: string2 +┃  ┃ ┗━━ 📓 follower2: string2 +┃  ┗━━ 📂 leader +┃   ┣━━ 📓 leader: string3 +┃   ┣━━ 📓 follower1: string3 +┃   ┗━━ 📓 follower2: string3 +┗━━ 📂 dynval2 + ┗━━ 📂 leadership +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 +  ┃ ┣━━ 📓 follower1: string1 +  ┃ ┗━━ 📓 follower2: string1 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┣━━ 📓 follower1: string2 +  ┃ ┗━━ 📓 follower2: string2 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┣━━ 📓 follower1: string3 +   ┗━━ 📓 follower2: string3 diff --git a/tests/results/test_secrets/60_6family_dynamic_leadership_empty.sh b/tests/results/test_secrets/60_6family_dynamic_leadership_empty.sh new file mode 100644 index 0000000..8acc46c --- /dev/null +++ b/tests/results/test_secrets/60_6family_dynamic_leadership_empty.sh @@ -0,0 +1,38 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var : +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📂 leadership +┃  ┣━━ 📂 leader +┃  ┃ ┣━━ 📓 leader: string1 +┃  ┃ ┣━━ 📓 follower1: string1 +┃  ┃ ┗━━ 📓 follower2: string1 +┃  ┣━━ 📂 leader +┃  ┃ ┣━━ 📓 leader: string2 +┃  ┃ ┣━━ 📓 follower1: string2 +┃  ┃ ┗━━ 📓 follower2: string2 +┃  ┗━━ 📂 leader +┃   ┣━━ 📓 leader: string3 +┃   ┣━━ 📓 follower1: string3 +┃   ┗━━ 📓 follower2: string3 +┗━━ 📂 dynval2 + ┗━━ 📂 leadership +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string1 +  ┃ ┣━━ 📓 follower1: string1 +  ┃ ┗━━ 📓 follower2: string1 +  ┣━━ 📂 leader +  ┃ ┣━━ 📓 leader: string2 +  ┃ ┣━━ 📓 follower1: string2 +  ┃ ┗━━ 📓 follower2: string2 +  ┗━━ 📂 leader +   ┣━━ 📓 leader: string3 +   ┣━━ 📓 follower1: string3 +   ┗━━ 📓 follower2: string3 diff --git a/tests/results/test_secrets/60_9family_dynamic_calc_both.sh b/tests/results/test_secrets/60_9family_dynamic_calc_both.sh new file mode 100644 index 0000000..407ad72 --- /dev/null +++ b/tests/results/test_secrets/60_9family_dynamic_calc_both.sh @@ -0,0 +1,12 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 var: string1 (val2) +┣━━ 📂 dynval1 +┃ ┗━━ 📓 vardyn: string1 +┗━━ 📂 dynstring1 + ┗━━ 📓 vardyn: string1 diff --git a/tests/results/test_secrets/68_0family_leadership_mode.sh b/tests/results/test_secrets/68_0family_leadership_mode.sh new file mode 100644 index 0000000..1cf06b1 --- /dev/null +++ b/tests/results/test_secrets/68_0family_leadership_mode.sh @@ -0,0 +1,20 @@ +╭────────────────────────── Caption ──────────────────────────╮ +│ Variable Default value │ +│ Undocumented variable Modified value │ +│ Undocumented but modified variable (Original default value) │ +│ Unmodifiable variable │ +╰─────────────────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 leader + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string1 + ┃ ┣━━ 📓 follower1: string1 + ┃ ┗━━ 📓 follower2: string1 + ┣━━ 📂 leader + ┃ ┣━━ 📓 leader: string2 + ┃ ┣━━ 📓 follower1: string2 + ┃ ┗━━ 📓 follower2: string2 + ┗━━ 📂 leader +  ┣━━ 📓 leader: string3 +  ┣━━ 📓 follower1: string3 +  ┗━━ 📓 follower2: string3 diff --git a/tests/test_load.py b/tests/test_load.py new file mode 100644 index 0000000..f5e2da7 --- /dev/null +++ b/tests/test_load.py @@ -0,0 +1,120 @@ +from pytest import fixture # , raises +from pathlib import Path +from rougail import Rougail +from rougail.output_console import RougailOutputConsole as RougailOutput + +from rougail_tests.utils import get_structures_list, get_rougail_config, get_values_for_config + + +EXT = 'sh' + + +excludes = [] +#excludes = [ +# '60_2family_dynamic_jinja_fill_sub_group', +# '60_2family_dynamic_jinja_fill_sub_group_2', +#] + +test_ok = get_structures_list(excludes) +# test_ok = [Path('../rougail-tests/structures/40_0leadership_follower_default_submulti')] + + +def idfn(fixture_value): + return fixture_value.name + + +@fixture(scope="module", params=test_ok, ids=idfn) +def test_dir(request): + return request.param + + +def _test_dictionaries(test_dir, namespace, ext, *, read_write=True, mandatory=False, show_secrets=False, do_calc=True): + rougailconfig = get_rougail_config(test_dir, namespace) + if not rougailconfig: + return + ################################## + rougailconfig['step.output'] = 'console' + rougailconfig["console.read_write"] = read_write + rougailconfig["console.mandatory"] = mandatory + rougailconfig["console.show_secrets"] = show_secrets + ################################## + dir_name = 'test' + if namespace: + dir_name += '_namespace' + elif (test_dir / 'force_namespace').is_file(): + return + ################################## + if read_write: + dir_name += '_read_write' + if mandatory: + dir_name += '_mandatory' + if not show_secrets: + dir_name += '_secrets' + if not do_calc: + dir_name += '_errors' + ################################## + rougail = Rougail(rougailconfig) + config = rougail.run() + ################################## + if do_calc and (mandatory or not read_write): + get_values_for_config(config) + ################################## + generated_output = RougailOutput(config, rougailconfig=rougailconfig).run() + output_file = Path(__file__).parent / 'results' / dir_name / (test_dir.name + "." + ext) + if not output_file.is_file(): + if not output_file.parent.is_dir(): + output_file.parent.mkdir() + with output_file.open('w') as outfh: + outfh.write(generated_output) + with output_file.open() as outfh: + attented_output = outfh.read() + assert generated_output == attented_output, f'filename {output_file}' + + +def test_dictionaries_console(test_dir): + _test_dictionaries(test_dir, True, EXT) + + +def test_dictionaries_console_errors(test_dir): + _test_dictionaries(test_dir, True, EXT, do_calc=False, mandatory=True) + + +def test_dictionaries_console_read_only(test_dir): + _test_dictionaries(test_dir, True, EXT, read_write=False) + + +def test_dictionaries_console_mandatory(test_dir): + _test_dictionaries(test_dir, True, EXT, mandatory=True) + + +def test_dictionaries_console_mandatory_read_only(test_dir): + _test_dictionaries(test_dir, True, EXT, read_write=False, mandatory=True) + + +def test_dictionaries_console_secrets(test_dir): + _test_dictionaries(test_dir, True, EXT, show_secrets=True) + + +################# +def test_dictionaries_console_namespace(test_dir): + _test_dictionaries(test_dir, False, EXT) + + +def test_dictionaries_console_namespace_errors(test_dir): + _test_dictionaries(test_dir, False, EXT, do_calc=False, mandatory=True) + + +def test_dictionaries_console_namespace_read_only(test_dir): + _test_dictionaries(test_dir, False, EXT, read_write=False) + + +def test_dictionaries_console_namespace_mandatory(test_dir): + _test_dictionaries(test_dir, False, EXT, mandatory=True) + + +def test_dictionaries_console_namespace_mandatory_read_only(test_dir): + _test_dictionaries(test_dir, False, EXT, read_write=False, mandatory=True) + + +def test_dictionaries_console_namespace_secrets(test_dir): + _test_dictionaries(test_dir, False, EXT, show_secrets=True)