2015-07-26 21:06:03 -07:00
|
|
|
import os
|
2014-12-20 11:37:25 -08:00
|
|
|
|
2015-07-26 21:06:03 -07:00
|
|
|
from flexmock import flexmock
|
2016-04-10 15:59:36 -07:00
|
|
|
import pytest
|
2014-12-20 11:37:25 -08:00
|
|
|
|
2017-07-08 22:33:51 -07:00
|
|
|
from borgmatic.commands import borgmatic as module
|
2015-07-18 18:35:29 -07:00
|
|
|
|
|
|
|
|
2014-12-20 11:37:25 -08:00
|
|
|
def test_parse_arguments_with_no_arguments_uses_defaults():
|
2016-06-10 11:21:53 -07:00
|
|
|
parser = module.parse_arguments()
|
2014-12-20 11:37:25 -08:00
|
|
|
|
2017-09-08 21:25:42 -07:00
|
|
|
assert parser.config_paths == module.collect.DEFAULT_CONFIG_PATHS
|
2017-07-10 16:25:13 -07:00
|
|
|
assert parser.excludes_filename == None
|
2017-07-10 09:43:25 -07:00
|
|
|
assert parser.verbosity is None
|
2014-12-20 11:37:25 -08:00
|
|
|
|
|
|
|
|
2017-07-25 21:18:51 -07:00
|
|
|
def test_parse_arguments_with_path_arguments_overrides_defaults():
|
2016-06-10 11:21:53 -07:00
|
|
|
parser = module.parse_arguments('--config', 'myconfig', '--excludes', 'myexcludes')
|
2014-12-20 11:37:25 -08:00
|
|
|
|
2017-07-25 21:18:51 -07:00
|
|
|
assert parser.config_paths == ['myconfig']
|
2014-12-20 11:37:25 -08:00
|
|
|
assert parser.excludes_filename == 'myexcludes'
|
2017-07-10 09:43:25 -07:00
|
|
|
assert parser.verbosity is None
|
2014-12-20 11:37:25 -08:00
|
|
|
|
|
|
|
|
2017-07-25 21:18:51 -07:00
|
|
|
def test_parse_arguments_with_multiple_config_paths_parses_as_list():
|
|
|
|
parser = module.parse_arguments('--config', 'myconfig', 'otherconfig')
|
|
|
|
|
|
|
|
assert parser.config_paths == ['myconfig', 'otherconfig']
|
|
|
|
assert parser.verbosity is None
|
|
|
|
|
|
|
|
|
2015-07-17 21:58:50 -07:00
|
|
|
def test_parse_arguments_with_verbosity_flag_overrides_default():
|
2016-06-10 11:21:53 -07:00
|
|
|
parser = module.parse_arguments('--verbosity', '1')
|
2014-12-20 11:37:25 -08:00
|
|
|
|
2017-09-08 21:25:42 -07:00
|
|
|
assert parser.config_paths == module.collect.DEFAULT_CONFIG_PATHS
|
2017-07-10 16:25:13 -07:00
|
|
|
assert parser.excludes_filename == None
|
2015-07-17 21:58:50 -07:00
|
|
|
assert parser.verbosity == 1
|
2014-12-20 11:37:25 -08:00
|
|
|
|
|
|
|
|
2017-07-28 22:02:18 -07:00
|
|
|
def test_parse_arguments_with_no_actions_defaults_to_all_actions_enabled():
|
|
|
|
parser = module.parse_arguments()
|
|
|
|
|
|
|
|
assert parser.prune is True
|
|
|
|
assert parser.create is True
|
|
|
|
assert parser.check is True
|
|
|
|
|
|
|
|
|
|
|
|
def test_parse_arguments_with_prune_action_leaves_other_actions_disabled():
|
|
|
|
parser = module.parse_arguments('--prune')
|
|
|
|
|
|
|
|
assert parser.prune is True
|
|
|
|
assert parser.create is False
|
|
|
|
assert parser.check is False
|
|
|
|
|
|
|
|
|
|
|
|
def test_parse_arguments_with_multiple_actions_leaves_other_action_disabled():
|
|
|
|
parser = module.parse_arguments('--create', '--check')
|
|
|
|
|
|
|
|
assert parser.prune is False
|
|
|
|
assert parser.create is True
|
|
|
|
assert parser.check is True
|
|
|
|
|
|
|
|
|
2014-12-20 11:37:25 -08:00
|
|
|
def test_parse_arguments_with_invalid_arguments_exits():
|
2017-07-10 09:43:25 -07:00
|
|
|
with pytest.raises(SystemExit):
|
|
|
|
module.parse_arguments('--posix-me-harder')
|