1
0
Fork 0
mirror of https://github.com/borgbase/vorta synced 2024-12-22 07:43:09 +00:00
vorta/tests/test_create.py
yfprojects 66340bc2a8
Add support for --paths-from-command to extra borg arguments. (#1538)
Backups will run although no sources are specified if `--paths-from-command` is supplied.
Also arguments after `--` will be appended to the end of the command after all other arguments.
Closes #1537.

* src/vorta/borg/create.py

* tests/test_create.py : Add test for using `--path-from-commands`.

Co-authored-by: real-yfprojects <real-yfprojects@users.noreply.github.com>
2023-01-18 15:57:23 +00:00

51 lines
1.2 KiB
Python

from vorta.borg.create import BorgCreateJob
from vorta.store.models import BackupProfileModel, SourceFileModel
def test_create_paths_from_command():
default_profile = BackupProfileModel.get()
default_profile.new_archive_name = 'a1'
default_profile.repo.create_backup_cmd = '--one-file-system'
result = BorgCreateJob.prepare(default_profile)
assert 'cmd' in result
assert result['cmd'] == [
'borg',
'create',
'--list',
'--progress',
'--info',
'--log-json',
'--json',
'--filter=AM',
'-C',
'lz4',
'--one-file-system',
'i0fi93@i593.repo.borgbase.com:repo::a1',
'/tmp/another',
]
default_profile.repo.create_backup_cmd = '--paths-from-command -- echo /tmp/another'
SourceFileModel.delete().execute()
result = BorgCreateJob.prepare(default_profile)
assert 'cmd' in result
assert result['cmd'] == [
'borg',
'create',
'--list',
'--progress',
'--info',
'--log-json',
'--json',
'--filter=AM',
'-C',
'lz4',
'--paths-from-command',
'i0fi93@i593.repo.borgbase.com:repo::a1',
'--',
'echo',
'/tmp/another',
]