test_arguments.py 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651
  1. import pytest
  2. from flexmock import flexmock
  3. from borgmatic.commands import arguments as module
  4. def test_parse_arguments_with_no_arguments_uses_defaults():
  5. config_paths = ['default']
  6. flexmock(module.collect).should_receive('get_default_config_paths').and_return(config_paths)
  7. arguments = module.parse_arguments({})
  8. global_arguments = arguments['global']
  9. assert global_arguments.config_paths == config_paths
  10. assert global_arguments.verbosity == 0
  11. assert global_arguments.syslog_verbosity == -2
  12. assert global_arguments.log_file_verbosity == 1
  13. assert global_arguments.monitoring_verbosity == 1
  14. def test_parse_arguments_with_multiple_config_flags_parses_as_list():
  15. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  16. arguments = module.parse_arguments({}, '--config', 'myconfig', '--config', 'otherconfig')
  17. global_arguments = arguments['global']
  18. assert global_arguments.config_paths == ['myconfig', 'otherconfig']
  19. assert global_arguments.verbosity == 0
  20. assert global_arguments.syslog_verbosity == -2
  21. assert global_arguments.log_file_verbosity == 1
  22. assert global_arguments.monitoring_verbosity == 1
  23. def test_parse_arguments_with_action_after_config_path_omits_action():
  24. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  25. arguments = module.parse_arguments({}, '--config', 'myconfig', 'list', '--json')
  26. global_arguments = arguments['global']
  27. assert global_arguments.config_paths == ['myconfig']
  28. assert 'list' in arguments
  29. assert arguments['list'].json
  30. def test_parse_arguments_with_action_after_config_path_omits_aliased_action():
  31. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  32. arguments = module.parse_arguments(
  33. {}, '--config', 'myconfig', 'init', '--encryption', 'repokey'
  34. )
  35. global_arguments = arguments['global']
  36. assert global_arguments.config_paths == ['myconfig']
  37. assert 'repo-create' in arguments
  38. assert arguments['repo-create'].encryption_mode == 'repokey'
  39. def test_parse_arguments_with_action_and_positional_arguments_after_config_path_omits_action_and_arguments():
  40. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  41. arguments = module.parse_arguments({}, '--config', 'myconfig', 'borg', 'key', 'export')
  42. global_arguments = arguments['global']
  43. assert global_arguments.config_paths == ['myconfig']
  44. assert 'borg' in arguments
  45. assert arguments['borg'].options == ['key', 'export']
  46. def test_parse_arguments_with_verbosity_overrides_default():
  47. config_paths = ['default']
  48. flexmock(module.collect).should_receive('get_default_config_paths').and_return(config_paths)
  49. arguments = module.parse_arguments({}, '--verbosity', '1')
  50. global_arguments = arguments['global']
  51. assert global_arguments.config_paths == config_paths
  52. assert global_arguments.verbosity == 1
  53. assert global_arguments.syslog_verbosity == -2
  54. assert global_arguments.log_file_verbosity == 1
  55. assert global_arguments.monitoring_verbosity == 1
  56. def test_parse_arguments_with_syslog_verbosity_overrides_default():
  57. config_paths = ['default']
  58. flexmock(module.collect).should_receive('get_default_config_paths').and_return(config_paths)
  59. arguments = module.parse_arguments({}, '--syslog-verbosity', '2')
  60. global_arguments = arguments['global']
  61. assert global_arguments.config_paths == config_paths
  62. assert global_arguments.verbosity == 0
  63. assert global_arguments.syslog_verbosity == 2
  64. assert global_arguments.log_file_verbosity == 1
  65. assert global_arguments.monitoring_verbosity == 1
  66. def test_parse_arguments_with_log_file_verbosity_overrides_default():
  67. config_paths = ['default']
  68. flexmock(module.collect).should_receive('get_default_config_paths').and_return(config_paths)
  69. arguments = module.parse_arguments({}, '--log-file-verbosity', '-1')
  70. global_arguments = arguments['global']
  71. assert global_arguments.config_paths == config_paths
  72. assert global_arguments.verbosity == 0
  73. assert global_arguments.syslog_verbosity == -2
  74. assert global_arguments.log_file_verbosity == -1
  75. assert global_arguments.monitoring_verbosity == 1
  76. def test_parse_arguments_with_single_override_parses():
  77. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  78. arguments = module.parse_arguments({}, '--override', 'foo.bar=baz')
  79. global_arguments = arguments['global']
  80. assert global_arguments.overrides == ['foo.bar=baz']
  81. def test_parse_arguments_with_multiple_overrides_flags_parses():
  82. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  83. arguments = module.parse_arguments(
  84. {}, '--override', 'foo.bar=baz', '--override', 'foo.quux=7', '--override', 'this.that=8'
  85. )
  86. global_arguments = arguments['global']
  87. assert global_arguments.overrides == ['foo.bar=baz', 'foo.quux=7', 'this.that=8']
  88. def test_parse_arguments_with_list_json_overrides_default():
  89. arguments = module.parse_arguments({}, 'list', '--json')
  90. assert 'list' in arguments
  91. assert arguments['list'].json is True
  92. def test_parse_arguments_with_no_actions_defaults_to_all_actions_enabled():
  93. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  94. arguments = module.parse_arguments({})
  95. assert 'prune' in arguments
  96. assert 'create' in arguments
  97. assert 'check' in arguments
  98. def test_parse_arguments_with_no_actions_passes_argument_to_relevant_actions():
  99. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  100. arguments = module.parse_arguments({}, '--stats', '--list')
  101. assert 'prune' in arguments
  102. assert arguments['prune'].stats
  103. assert arguments['prune'].list_archives
  104. assert 'create' in arguments
  105. assert arguments['create'].stats
  106. assert arguments['create'].list_files
  107. assert 'check' in arguments
  108. def test_parse_arguments_with_help_and_no_actions_shows_global_help(capsys):
  109. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  110. with pytest.raises(SystemExit) as exit:
  111. module.parse_arguments({}, '--help')
  112. assert exit.value.code == 0
  113. captured = capsys.readouterr()
  114. assert 'global arguments:' in captured.out
  115. assert 'actions:' in captured.out
  116. def test_parse_arguments_with_help_and_action_shows_action_help(capsys):
  117. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  118. with pytest.raises(SystemExit) as exit:
  119. module.parse_arguments({}, 'create', '--help')
  120. assert exit.value.code == 0
  121. captured = capsys.readouterr()
  122. assert 'global arguments:' not in captured.out
  123. assert 'actions:' not in captured.out
  124. assert 'create arguments:' in captured.out
  125. def test_parse_arguments_with_action_before_global_options_parses_options():
  126. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  127. arguments = module.parse_arguments({}, 'prune', '--verbosity', '2')
  128. assert 'prune' in arguments
  129. assert arguments['global'].verbosity == 2
  130. def test_parse_arguments_with_global_options_before_action_parses_options():
  131. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  132. arguments = module.parse_arguments({}, '--verbosity', '2', 'prune')
  133. assert 'prune' in arguments
  134. assert arguments['global'].verbosity == 2
  135. def test_parse_arguments_with_prune_action_leaves_other_actions_disabled():
  136. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  137. arguments = module.parse_arguments({}, 'prune')
  138. assert 'prune' in arguments
  139. assert 'create' not in arguments
  140. assert 'check' not in arguments
  141. def test_parse_arguments_with_multiple_actions_leaves_other_action_disabled():
  142. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  143. arguments = module.parse_arguments({}, 'create', 'check')
  144. assert 'prune' not in arguments
  145. assert 'create' in arguments
  146. assert 'check' in arguments
  147. def test_parse_arguments_disallows_invalid_argument():
  148. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  149. with pytest.raises(ValueError):
  150. module.parse_arguments({}, '--posix-me-harder')
  151. def test_parse_arguments_disallows_encryption_mode_without_init():
  152. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  153. with pytest.raises(ValueError):
  154. module.parse_arguments({}, '--config', 'myconfig', '--encryption', 'repokey')
  155. def test_parse_arguments_allows_encryption_mode_with_init():
  156. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  157. module.parse_arguments({}, '--config', 'myconfig', 'init', '--encryption', 'repokey')
  158. def test_parse_arguments_disallows_append_only_without_init():
  159. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  160. with pytest.raises(ValueError):
  161. module.parse_arguments({}, '--config', 'myconfig', '--append-only')
  162. def test_parse_arguments_disallows_storage_quota_without_init():
  163. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  164. with pytest.raises(ValueError):
  165. module.parse_arguments({}, '--config', 'myconfig', '--storage-quota', '5G')
  166. def test_parse_arguments_allows_init_and_prune():
  167. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  168. module.parse_arguments({}, '--config', 'myconfig', 'init', '--encryption', 'repokey', 'prune')
  169. def test_parse_arguments_allows_init_and_create():
  170. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  171. module.parse_arguments({}, '--config', 'myconfig', 'init', '--encryption', 'repokey', 'create')
  172. def test_parse_arguments_allows_repository_with_extract():
  173. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  174. module.parse_arguments(
  175. {}, '--config', 'myconfig', 'extract', '--repository', 'test.borg', '--archive', 'test'
  176. )
  177. def test_parse_arguments_allows_repository_with_mount():
  178. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  179. module.parse_arguments(
  180. {},
  181. '--config',
  182. 'myconfig',
  183. 'mount',
  184. '--repository',
  185. 'test.borg',
  186. '--archive',
  187. 'test',
  188. '--mount-point',
  189. '/mnt',
  190. )
  191. def test_parse_arguments_allows_repository_with_list():
  192. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  193. module.parse_arguments({}, '--config', 'myconfig', 'list', '--repository', 'test.borg')
  194. def test_parse_arguments_disallows_archive_unless_action_consumes_it():
  195. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  196. with pytest.raises(ValueError):
  197. module.parse_arguments({}, '--config', 'myconfig', '--archive', 'test')
  198. def test_parse_arguments_disallows_paths_unless_action_consumes_it():
  199. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  200. with pytest.raises(ValueError):
  201. module.parse_arguments({}, '--config', 'myconfig', '--path', 'test')
  202. def test_parse_arguments_disallows_other_actions_with_config_bootstrap():
  203. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  204. with pytest.raises(ValueError):
  205. module.parse_arguments({}, 'config', 'bootstrap', '--repository', 'test.borg', 'list')
  206. def test_parse_arguments_allows_archive_with_extract():
  207. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  208. module.parse_arguments({}, '--config', 'myconfig', 'extract', '--archive', 'test')
  209. def test_parse_arguments_allows_archive_with_mount():
  210. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  211. module.parse_arguments(
  212. {}, '--config', 'myconfig', 'mount', '--archive', 'test', '--mount-point', '/mnt'
  213. )
  214. def test_parse_arguments_allows_archive_with_restore():
  215. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  216. module.parse_arguments({}, '--config', 'myconfig', 'restore', '--archive', 'test')
  217. def test_parse_arguments_allows_archive_with_list():
  218. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  219. module.parse_arguments({}, '--config', 'myconfig', 'list', '--archive', 'test')
  220. def test_parse_arguments_requires_archive_with_extract():
  221. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  222. with pytest.raises(SystemExit):
  223. module.parse_arguments({}, '--config', 'myconfig', 'extract')
  224. def test_parse_arguments_requires_archive_with_restore():
  225. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  226. with pytest.raises(SystemExit):
  227. module.parse_arguments({}, '--config', 'myconfig', 'restore')
  228. def test_parse_arguments_requires_mount_point_with_mount():
  229. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  230. with pytest.raises(SystemExit):
  231. module.parse_arguments({}, '--config', 'myconfig', 'mount', '--archive', 'test')
  232. def test_parse_arguments_requires_mount_point_with_umount():
  233. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  234. with pytest.raises(SystemExit):
  235. module.parse_arguments({}, '--config', 'myconfig', 'umount')
  236. def test_parse_arguments_allows_progress_before_create():
  237. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  238. module.parse_arguments({}, '--progress', 'create', 'list')
  239. def test_parse_arguments_allows_progress_after_create():
  240. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  241. module.parse_arguments({}, 'create', '--progress', 'list')
  242. def test_parse_arguments_allows_progress_and_extract():
  243. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  244. module.parse_arguments({}, '--progress', 'extract', '--archive', 'test', 'list')
  245. def test_parse_arguments_disallows_progress_without_create():
  246. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  247. with pytest.raises(ValueError):
  248. module.parse_arguments({}, '--progress', 'list')
  249. def test_parse_arguments_with_stats_and_create_flags_does_not_raise():
  250. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  251. module.parse_arguments({}, '--stats', 'create', 'list')
  252. def test_parse_arguments_with_stats_and_prune_flags_does_not_raise():
  253. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  254. module.parse_arguments({}, '--stats', 'prune', 'list')
  255. def test_parse_arguments_with_stats_flag_but_no_create_or_prune_flag_raises_value_error():
  256. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  257. with pytest.raises(ValueError):
  258. module.parse_arguments({}, '--stats', 'list')
  259. def test_parse_arguments_with_list_and_create_flags_does_not_raise():
  260. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  261. module.parse_arguments({}, '--list', 'create')
  262. def test_parse_arguments_with_list_and_prune_flags_does_not_raise():
  263. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  264. module.parse_arguments({}, '--list', 'prune')
  265. def test_parse_arguments_with_list_flag_but_no_relevant_action_raises_value_error():
  266. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  267. with pytest.raises(ValueError):
  268. module.parse_arguments({}, '--list', 'repo-create')
  269. def test_parse_arguments_disallows_list_with_progress_for_create_action():
  270. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  271. with pytest.raises(ValueError):
  272. module.parse_arguments({}, 'create', '--list', '--progress')
  273. def test_parse_arguments_disallows_list_with_json_for_create_action():
  274. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  275. with pytest.raises(ValueError):
  276. module.parse_arguments({}, 'create', '--list', '--json')
  277. def test_parse_arguments_allows_json_with_list_or_info():
  278. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  279. module.parse_arguments({}, 'list', '--json')
  280. module.parse_arguments({}, 'info', '--json')
  281. def test_parse_arguments_disallows_json_with_both_list_and_info():
  282. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  283. with pytest.raises(ValueError):
  284. module.parse_arguments({}, 'list', 'info', '--json')
  285. def test_parse_arguments_disallows_json_with_both_list_and_repo_info():
  286. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  287. with pytest.raises(ValueError):
  288. module.parse_arguments({}, 'list', 'repo-info', '--json')
  289. def test_parse_arguments_disallows_json_with_both_repo_info_and_info():
  290. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  291. with pytest.raises(ValueError):
  292. module.parse_arguments({}, 'repo-info', 'info', '--json')
  293. def test_parse_arguments_disallows_transfer_with_both_archive_and_match_archives():
  294. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  295. with pytest.raises(ValueError):
  296. module.parse_arguments(
  297. {},
  298. 'transfer',
  299. '--source-repository',
  300. 'source.borg',
  301. '--archive',
  302. 'foo',
  303. '--match-archives',
  304. 'sh:*bar',
  305. )
  306. def test_parse_arguments_disallows_list_with_both_prefix_and_match_archives():
  307. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  308. with pytest.raises(ValueError):
  309. module.parse_arguments({}, 'list', '--prefix', 'foo', '--match-archives', 'sh:*bar')
  310. def test_parse_arguments_disallows_repo_list_with_both_prefix_and_match_archives():
  311. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  312. with pytest.raises(ValueError):
  313. module.parse_arguments({}, 'repo-list', '--prefix', 'foo', '--match-archives', 'sh:*bar')
  314. def test_parse_arguments_disallows_info_with_both_archive_and_match_archives():
  315. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  316. with pytest.raises(ValueError):
  317. module.parse_arguments({}, 'info', '--archive', 'foo', '--match-archives', 'sh:*bar')
  318. def test_parse_arguments_disallows_info_with_both_archive_and_prefix():
  319. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  320. with pytest.raises(ValueError):
  321. module.parse_arguments({}, 'info', '--archive', 'foo', '--prefix', 'bar')
  322. def test_parse_arguments_disallows_info_with_both_prefix_and_match_archives():
  323. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  324. with pytest.raises(ValueError):
  325. module.parse_arguments({}, 'info', '--prefix', 'foo', '--match-archives', 'sh:*bar')
  326. def test_parse_arguments_check_only_extract_does_not_raise_extract_subparser_error():
  327. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  328. module.parse_arguments({}, 'check', '--only', 'extract')
  329. def test_parse_arguments_extract_archive_check_does_not_raise_check_subparser_error():
  330. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  331. module.parse_arguments({}, 'extract', '--archive', 'check')
  332. def test_parse_arguments_extract_with_check_only_extract_does_not_raise():
  333. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  334. module.parse_arguments({}, 'extract', '--archive', 'name', 'check', '--only', 'extract')
  335. def test_parse_arguments_bootstrap_without_config_errors():
  336. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  337. with pytest.raises(ValueError):
  338. module.parse_arguments({}, 'bootstrap')
  339. def test_parse_arguments_config_with_no_subaction_errors():
  340. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  341. with pytest.raises(ValueError):
  342. module.parse_arguments({}, 'config')
  343. def test_parse_arguments_config_with_help_shows_config_help(capsys):
  344. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  345. with pytest.raises(SystemExit) as exit:
  346. module.parse_arguments({}, 'config', '--help')
  347. assert exit.value.code == 0
  348. captured = capsys.readouterr()
  349. assert 'global arguments:' not in captured.out
  350. assert 'config arguments:' in captured.out
  351. assert 'config sub-actions:' in captured.out
  352. def test_parse_arguments_config_with_subaction_but_missing_flags_errors():
  353. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  354. with pytest.raises(SystemExit) as exit:
  355. module.parse_arguments({}, 'config', 'bootstrap')
  356. assert exit.value.code == 2
  357. def test_parse_arguments_config_with_subaction_and_help_shows_subaction_help(capsys):
  358. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  359. with pytest.raises(SystemExit) as exit:
  360. module.parse_arguments({}, 'config', 'bootstrap', '--help')
  361. assert exit.value.code == 0
  362. captured = capsys.readouterr()
  363. assert 'config bootstrap arguments:' in captured.out
  364. def test_parse_arguments_config_with_subaction_and_required_flags_does_not_raise():
  365. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  366. module.parse_arguments({}, 'config', 'bootstrap', '--repository', 'repo.borg')
  367. def test_parse_arguments_config_with_subaction_and_global_flags_at_start_does_not_raise():
  368. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  369. module.parse_arguments(
  370. {}, '--verbosity', '1', 'config', 'bootstrap', '--repository', 'repo.borg'
  371. )
  372. def test_parse_arguments_config_with_subaction_and_global_flags_at_end_does_not_raise():
  373. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  374. module.parse_arguments(
  375. {}, 'config', 'bootstrap', '--repository', 'repo.borg', '--verbosity', '1'
  376. )
  377. def test_parse_arguments_config_with_subaction_and_explicit_config_file_does_not_raise():
  378. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  379. module.parse_arguments(
  380. {}, 'config', 'bootstrap', '--repository', 'repo.borg', '--config', 'test.yaml'
  381. )
  382. def test_parse_arguments_with_borg_action_and_dry_run_raises():
  383. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  384. with pytest.raises(ValueError):
  385. module.parse_arguments({}, '--dry-run', 'borg', 'list')
  386. def test_parse_arguments_with_borg_action_and_no_dry_run_does_not_raise():
  387. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  388. module.parse_arguments({}, 'borg', 'list')
  389. def test_parse_arguments_with_argument_from_schema_does_not_raise():
  390. flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
  391. module.parse_arguments(
  392. {
  393. 'type': 'object',
  394. 'properties': {'foo': {'type': 'object', 'properties': {'bar': {'type': 'integer'}}}},
  395. },
  396. '--foo.bar',
  397. '3',
  398. )