from io import StringIO from contextlib import redirect_stdout, redirect_stderr from tiramisu_cmdline_parser import TiramisuCmdlineParser from tiramisu import IntOption, StrOption, BoolOption, ChoiceOption, \ SymLinkOption, OptionDescription, Config def get_config(has_tree=False, default_verbosity=False): choiceoption = ChoiceOption('cmd', 'choice the sub argument', ('str', 'list', 'int', 'none'), properties=('mandatory', 'positional')) booloption = BoolOption('verbosity', 'increase output verbosity', default=default_verbosity) short_booloption = SymLinkOption('v', booloption) str_ = StrOption('str', 'string option', properties=('mandatory',), requires=[{'option': choiceoption, 'expected': 'str', 'action': 'disabled', 'inverse': True}]) list_ = StrOption('list', 'list string option', multi=True, properties=('mandatory',), requires=[{'option': choiceoption, 'expected': 'list', 'action': 'disabled', 'inverse': True}]) int_ = IntOption('int', 'int option', properties=('mandatory',), requires=[{'option': choiceoption, 'expected': 'int', 'action': 'disabled', 'inverse': True}]) root = OptionDescription('root', 'root', [choiceoption, booloption, short_booloption, str_, list_, int_ ]) if has_tree: root = OptionDescription('root', 'root', [root]) config = Config(root) config.property.read_write() return config def test_readme_help(): output = """usage: prog.py [-h] [-v] [-nv] {str,list,int,none} positional arguments: {str,list,int,none} choice the sub argument optional arguments: -h, --help show this help message and exit -v, --verbosity increase output verbosity -nv, --no-verbosity """ parser = TiramisuCmdlineParser(get_config(), 'prog.py') f = StringIO() with redirect_stdout(f): parser.print_help() assert f.getvalue() == output def test_readme_help_tree(): output = """usage: prog.py [-h] [-v] [-nv] {str,list,int,none} optional arguments: -h, --help show this help message and exit root: {str,list,int,none} choice the sub argument -v, --root.verbosity increase output verbosity -nv, --root.no-verbosity """ parser = TiramisuCmdlineParser(get_config(True), 'prog.py') f = StringIO() with redirect_stdout(f): parser.print_help() assert f.getvalue() == output def test_readme_help_tree_flatten(): output = """usage: prog.py [-h] [-v] [-nv] {str,list,int,none} optional arguments: -h, --help show this help message and exit root: {str,list,int,none} choice the sub argument -v, --verbosity increase output verbosity -nv, --no-verbosity """ parser = TiramisuCmdlineParser(get_config(True), 'prog.py', fullpath=False) f = StringIO() with redirect_stdout(f): parser.print_help() assert f.getvalue() == output def test_readme_help_modif_positional(): output = """usage: prog.py str [-h] [-v] [-nv] --str STR optional arguments: -h, --help show this help message and exit -v, --verbosity increase output verbosity -nv, --no-verbosity --str STR string option """ parser = TiramisuCmdlineParser(get_config(), 'prog.py') f = StringIO() with redirect_stdout(f): try: parser.parse_args(['str', '--help']) except SystemExit as err: assert str(err) == "0" else: raise Exception('must raises') assert f.getvalue() == output def test_readme_help_modif(): output = """usage: prog.py str --str toto [-h] [-v] [-nv] optional arguments: -h, --help show this help message and exit -v, --verbosity increase output verbosity -nv, --no-verbosity """ parser = TiramisuCmdlineParser(get_config(), 'prog.py') f = StringIO() with redirect_stdout(f): try: parser.parse_args(['str', '--str', 'toto', '--help']) except SystemExit as err: assert str(err) == "0" else: raise Exception('must raises') assert f.getvalue() == output def test_readme_help_modif_short(): output = """usage: prog.py str --verbosity [-h] --str STR optional arguments: -h, --help show this help message and exit --str STR string option """ parser = TiramisuCmdlineParser(get_config(), 'prog.py') f = StringIO() with redirect_stdout(f): try: parser.parse_args(['str', '-v', '--help']) except SystemExit as err: assert str(err) == "0" else: raise Exception('must raises') assert f.getvalue() == output def test_readme_help_modif_short_no(): output = """usage: prog.py str --verbosity [-h] --str STR optional arguments: -h, --help show this help message and exit --str STR string option """ parser = TiramisuCmdlineParser(get_config(), 'prog.py') f = StringIO() with redirect_stdout(f): try: parser.parse_args(['str', '-nv', '--help']) except SystemExit as err: assert str(err) == "0" else: raise Exception('must raises') assert f.getvalue() == output def test_readme_positional_mandatory(): output = """usage: prog.py [-h] [-v] [-nv] {str,list,int,none} prog.py: error: the following arguments are required: cmd """ parser = TiramisuCmdlineParser(get_config(), 'prog.py') f = StringIO() with redirect_stderr(f): try: parser.parse_args([]) except SystemExit as err: assert str(err) == "2" else: raise Exception('must raises') assert f.getvalue() == output def test_readme_positional_mandatory_tree(): output = """usage: prog.py [-h] [-v] [-nv] {str,list,int,none} prog.py: error: the following arguments are required: root.cmd """ parser = TiramisuCmdlineParser(get_config(True), 'prog.py') f = StringIO() with redirect_stderr(f): try: parser.parse_args([]) except SystemExit as err: assert str(err) == "2" else: raise Exception('must raises') assert f.getvalue() == output def test_readme_positional_mandatory_tree_flatten(): output = """usage: prog.py [-h] [-v] [-nv] {str,list,int,none} prog.py: error: the following arguments are required: cmd """ parser = TiramisuCmdlineParser(get_config(True), 'prog.py', fullpath=False) f = StringIO() with redirect_stderr(f): try: parser.parse_args([]) except SystemExit as err: assert str(err) == "2" else: raise Exception('must raises') assert f.getvalue() == output def test_readme_mandatory(): output = """usage: prog.py str [-h] [-v] [-nv] --str STR prog.py: error: the following arguments are required: --str """ parser = TiramisuCmdlineParser(get_config(), 'prog.py') f = StringIO() with redirect_stderr(f): try: parser.parse_args(['str']) except SystemExit as err: assert str(err) == "2" else: raise Exception('must raises') assert f.getvalue() == output def test_readme_mandatory_tree(): output = """usage: prog.py str [-h] [-v] [-nv] --root.str STR prog.py: error: the following arguments are required: --root.str """ parser = TiramisuCmdlineParser(get_config(True), 'prog.py') f = StringIO() with redirect_stderr(f): try: parser.parse_args(['str']) except SystemExit as err: assert str(err) == "2" else: raise Exception('must raises') assert f.getvalue() == output def test_readme_mandatory_tree_flatten(): output = """usage: prog.py str [-h] [-v] [-nv] --str STR prog.py: error: the following arguments are required: --str """ parser = TiramisuCmdlineParser(get_config(True), 'prog.py', fullpath=False) f = StringIO() with redirect_stderr(f): try: parser.parse_args(['str']) except SystemExit as err: assert str(err) == "2" else: raise Exception('must raises') assert f.getvalue() == output def test_readme_cross(): output = """usage: prog.py none [-h] [-v] [-nv] prog.py: error: unrecognized arguments: --int """ parser = TiramisuCmdlineParser(get_config(), 'prog.py') f = StringIO() with redirect_stderr(f): try: parser.parse_args(['none', '--int']) except SystemExit as err: assert str(err) == "2" else: raise Exception('must raises') assert f.getvalue() == output def test_readme_cross_tree(): output = """usage: prog.py none [-h] [-v] [-nv] prog.py: error: unrecognized arguments: --int """ parser = TiramisuCmdlineParser(get_config(True), 'prog.py') f = StringIO() with redirect_stderr(f): try: parser.parse_args(['none', '--int']) except SystemExit as err: assert str(err) == "2" else: raise Exception('must raises') assert f.getvalue() == output def test_readme_cross_tree_flatten(): output = """usage: prog.py none [-h] [-v] [-nv] prog.py: error: unrecognized arguments: --int """ parser = TiramisuCmdlineParser(get_config(True), 'prog.py', fullpath=False) f = StringIO() with redirect_stderr(f): try: parser.parse_args(['none', '--int']) except SystemExit as err: assert str(err) == "2" else: raise Exception('must raises') assert f.getvalue() == output def test_readme_int(): output = {'cmd': 'int', 'int': 3, 'verbosity': False, 'v': False} config = get_config() parser = TiramisuCmdlineParser(config, 'prog.py') parser.parse_args(['int', '--int', '3']) assert config.value.dict() == output def test_readme_int_tree(): output = {'root.cmd': 'int', 'root.int': 3, 'root.verbosity': False, 'root.v': False} config = get_config(True) parser = TiramisuCmdlineParser(config, 'prog.py') parser.parse_args(['int', '--root.int', '3']) assert config.value.dict() == output def test_readme_int_tree_flatten(): output = {'root.cmd': 'int', 'root.int': 3, 'root.verbosity': False, 'root.v': False} config = get_config(True) parser = TiramisuCmdlineParser(config, 'prog.py', fullpath=False) parser.parse_args(['int', '--int', '3']) assert config.value.dict() == output def test_readme_int_verbosity(): output = {'cmd': 'int', 'int': 3, 'verbosity': True, 'v': True} config = get_config() parser = TiramisuCmdlineParser(config, 'prog.py') parser.parse_args(['int', '--int', '3', '--verbosity']) assert config.value.dict() == output def test_readme_int_verbosity_tree(): output = {'root.cmd': 'int', 'root.int': 3, 'root.verbosity': True, 'root.v': True} config = get_config(True) parser = TiramisuCmdlineParser(config, 'prog.py') parser.parse_args(['int', '--root.int', '3', '--root.verbosity']) assert config.value.dict() == output def test_readme_int_verbosity_tree_flatten(): output = {'root.cmd': 'int', 'root.int': 3, 'root.verbosity': True, 'root.v': True} config = get_config(True) parser = TiramisuCmdlineParser(config, 'prog.py', fullpath=False) parser.parse_args(['int', '--int', '3', '--verbosity']) assert config.value.dict() == output def test_readme_int_verbosity_short(): output = {'cmd': 'int', 'int': 3, 'verbosity': True, 'v': True} config = get_config() parser = TiramisuCmdlineParser(config, 'prog.py') parser.parse_args(['int', '--int', '3', '-v']) assert config.value.dict() == output def test_readme_int_verbosity_short_store_false(): output = {'cmd': 'int', 'int': 3, 'verbosity': None, 'v': True} config = get_config(default_verbosity=None) config.option('verbosity').property.add('storefalse') parser = TiramisuCmdlineParser(config, 'prog.py') parser.parse_args(['int', '--int', '3', '-v']) output = {'cmd': 'int', 'int': 3, 'verbosity': False, 'v': False} assert config.value.dict() == output parser.parse_args(['int', '--int', '3', '-nv']) output = {'cmd': 'int', 'int': 3, 'verbosity': True, 'v': True} assert config.value.dict() == output def test_readme_int_verbosity_short_no(): output = {'cmd': 'int', 'int': 3, 'verbosity': False, 'v': False} config = get_config() parser = TiramisuCmdlineParser(config, 'prog.py') parser.parse_args(['int', '--int', '3', '-nv']) assert config.value.dict() == output def test_readme_int_verbosity_short_tree(): output = {'root.cmd': 'int', 'root.int': 3, 'root.verbosity': True, 'root.v': True} config = get_config(True) parser = TiramisuCmdlineParser(config, 'prog.py') parser.parse_args(['int', '--root.int', '3', '-v']) assert config.value.dict() == output def test_readme_int_verbosity_short_tree_flatten(): output = {'root.cmd': 'int', 'root.int': 3, 'root.verbosity': True, 'root.v': True} config = get_config(True) parser = TiramisuCmdlineParser(config, 'prog.py', fullpath=False) parser.parse_args(['int', '--int', '3', '-v']) assert config.value.dict() == output def test_readme_str(): output = {'cmd': 'str', 'str': 'value', 'verbosity': False, 'v': False} config = get_config() parser = TiramisuCmdlineParser(config, 'prog.py') parser.parse_args(['str', '--str', 'value']) assert config.value.dict() == output def test_readme_str_tree(): output = {'root.cmd': 'str', 'root.str': 'value', 'root.verbosity': False, 'root.v': False} config = get_config(True) parser = TiramisuCmdlineParser(config, 'prog.py') parser.parse_args(['str', '--root.str', 'value']) assert config.value.dict() == output def test_readme_str_tree_flatten(): output = {'root.cmd': 'str', 'root.str': 'value', 'root.verbosity': False, 'root.v': False} config = get_config(True) parser = TiramisuCmdlineParser(config, 'prog.py', fullpath=False) parser.parse_args(['str', '--str', 'value']) assert config.value.dict() == output def test_readme_str_int(): output = {'cmd': 'str', 'str': '3', 'verbosity': False, 'v': False} config = get_config() parser = TiramisuCmdlineParser(config, 'prog.py') parser.parse_args(['str', '--str', '3']) assert config.value.dict() == output def test_readme_str_int_tree(): output = {'root.cmd': 'str', 'root.str': '3', 'root.verbosity': False, 'root.v': False} config = get_config(True) parser = TiramisuCmdlineParser(config, 'prog.py') parser.parse_args(['str', '--root.str', '3']) assert config.value.dict() == output def test_readme_str_int_tree_flatten(): output = {'root.cmd': 'str', 'root.str': '3', 'root.verbosity': False, 'root.v': False} config = get_config(True) parser = TiramisuCmdlineParser(config, 'prog.py', fullpath=False) parser.parse_args(['str', '--str', '3']) assert config.value.dict() == output def test_readme_list(): output = {'cmd': 'list', 'list': ['a', 'b', 'c'], 'verbosity': False, 'v': False} config = get_config() parser = TiramisuCmdlineParser(config, 'prog.py') parser.parse_args(['list', '--list', 'a', 'b', 'c']) assert config.value.dict() == output def test_readme_list_tree(): output = {'root.cmd': 'list', 'root.list': ['a', 'b', 'c'], 'root.verbosity': False, 'root.v': False} config = get_config(True) parser = TiramisuCmdlineParser(config, 'prog.py') parser.parse_args(['list', '--root.list', 'a', 'b', 'c']) assert config.value.dict() == output def test_readme_list_tree_flatten(): output = {'root.cmd': 'list', 'root.list': ['a', 'b', 'c'], 'root.verbosity': False, 'root.v': False} config = get_config(True) parser = TiramisuCmdlineParser(config, 'prog.py', fullpath=False) parser.parse_args(['list', '--list', 'a', 'b', 'c']) assert config.value.dict() == output def test_readme_list_uniq(): output = {'cmd': 'list', 'list': ['a'], 'verbosity': False, 'v': False} config = get_config() parser = TiramisuCmdlineParser(config, 'prog.py') parser.parse_args(['list', '--list', 'a']) assert config.value.dict() == output def test_readme_list_uniq_tree(): output = {'root.cmd': 'list', 'root.list': ['a'], 'root.verbosity': False, 'root.v': False} config = get_config(True) parser = TiramisuCmdlineParser(config, 'prog.py') parser.parse_args(['list', '--root.list', 'a']) assert config.value.dict() == output def test_readme_list_uniq_tree_flatten(): output = {'root.cmd': 'list', 'root.list': ['a'], 'root.verbosity': False, 'root.v': False} config = get_config(True) parser = TiramisuCmdlineParser(config, 'prog.py', fullpath=False) parser.parse_args(['list', '--list', 'a']) assert config.value.dict() == output