소스 검색

Switch from "init" to "rcreate" for creating repos in end-to-end tests.

Dan Helfman 2 년 전
부모
커밋
325b561296
3개의 변경된 파일7개의 추가작업 그리고 7개의 파일을 삭제
  1. 1 1
      tests/end-to-end/test_borgmatic.py
  2. 5 5
      tests/end-to-end/test_database.py
  3. 1 1
      tests/end-to-end/test_override.py

+ 1 - 1
tests/end-to-end/test_borgmatic.py

@@ -44,7 +44,7 @@ def test_borgmatic_command():
         generate_configuration(config_path, repository_path)
         generate_configuration(config_path, repository_path)
 
 
         subprocess.check_call(
         subprocess.check_call(
-            f'borgmatic -v 2 --config {config_path} init --encryption repokey'.split(' ')
+            f'borgmatic -v 2 --config {config_path} rcreate --encryption repokey'.split(' ')
         )
         )
 
 
         # Run borgmatic to generate a backup archive, and then list it to make sure it exists.
         # Run borgmatic to generate a backup archive, and then list it to make sure it exists.

+ 5 - 5
tests/end-to-end/test_database.py

@@ -202,7 +202,7 @@ def test_database_dump_and_restore():
         )
         )
 
 
         subprocess.check_call(
         subprocess.check_call(
-            ['borgmatic', '-v', '2', '--config', config_path, 'init', '--encryption', 'repokey']
+            ['borgmatic', '-v', '2', '--config', config_path, 'rcreate', '--encryption', 'repokey']
         )
         )
 
 
         # Run borgmatic to generate a backup archive including a database dump.
         # Run borgmatic to generate a backup archive including a database dump.
@@ -242,7 +242,7 @@ def test_database_dump_and_restore_with_restore_cli_arguments():
         )
         )
 
 
         subprocess.check_call(
         subprocess.check_call(
-            ['borgmatic', '-v', '2', '--config', config_path, 'init', '--encryption', 'repokey']
+            ['borgmatic', '-v', '2', '--config', config_path, 'rcreate', '--encryption', 'repokey']
         )
         )
 
 
         # Run borgmatic to generate a backup archive including a database dump.
         # Run borgmatic to generate a backup archive including a database dump.
@@ -299,7 +299,7 @@ def test_database_dump_and_restore_with_restore_configuration_options():
         )
         )
 
 
         subprocess.check_call(
         subprocess.check_call(
-            ['borgmatic', '-v', '2', '--config', config_path, 'init', '--encryption', 'repokey']
+            ['borgmatic', '-v', '2', '--config', config_path, 'rcreate', '--encryption', 'repokey']
         )
         )
 
 
         # Run borgmatic to generate a backup archive including a database dump.
         # Run borgmatic to generate a backup archive including a database dump.
@@ -344,7 +344,7 @@ def test_database_dump_and_restore_with_directory_format():
         )
         )
 
 
         subprocess.check_call(
         subprocess.check_call(
-            ['borgmatic', '-v', '2', '--config', config_path, 'init', '--encryption', 'repokey']
+            ['borgmatic', '-v', '2', '--config', config_path, 'rcreate', '--encryption', 'repokey']
         )
         )
 
 
         # Run borgmatic to generate a backup archive including a database dump.
         # Run borgmatic to generate a backup archive including a database dump.
@@ -374,7 +374,7 @@ def test_database_dump_with_error_causes_borgmatic_to_exit():
         )
         )
 
 
         subprocess.check_call(
         subprocess.check_call(
-            ['borgmatic', '-v', '2', '--config', config_path, 'init', '--encryption', 'repokey']
+            ['borgmatic', '-v', '2', '--config', config_path, 'rcreate', '--encryption', 'repokey']
         )
         )
 
 
         # Run borgmatic with a config override such that the database dump fails.
         # Run borgmatic with a config override such that the database dump fails.

+ 1 - 1
tests/end-to-end/test_override.py

@@ -39,7 +39,7 @@ def test_override_get_normalized():
         generate_configuration(config_path, repository_path)
         generate_configuration(config_path, repository_path)
 
 
         subprocess.check_call(
         subprocess.check_call(
-            f'borgmatic -v 2 --config {config_path} init --encryption repokey'.split(' ')
+            f'borgmatic -v 2 --config {config_path} rcreate --encryption repokey'.split(' ')
         )
         )
 
 
         # Run borgmatic with an override structured for an outdated config file format. If
         # Run borgmatic with an override structured for an outdated config file format. If