entrypoint fixed
This commit is contained in:
parent
7d4a5417af
commit
f261bc357d
1 changed files with 7 additions and 4 deletions
|
|
@ -43,13 +43,16 @@ def mock_subscription_download_factory():
|
||||||
time.sleep(1)
|
time.sleep(1)
|
||||||
if not mock_success_output:
|
if not mock_success_output:
|
||||||
raise ValueError("error")
|
raise ValueError("error")
|
||||||
return (
|
|
||||||
FileHandlerTransactionLog()
|
(
|
||||||
|
self._enhanced_download_archive.get_file_handler_transaction_log()
|
||||||
.log_created_file("created_file.txt", FileMetadata())
|
.log_created_file("created_file.txt", FileMetadata())
|
||||||
.log_modified_file("modified_file.txt", FileMetadata())
|
.log_modified_file("modified_file.txt", FileMetadata())
|
||||||
.log_removed_file("deleted_file.txt")
|
.log_removed_file("deleted_file.txt")
|
||||||
)
|
)
|
||||||
|
|
||||||
|
return self._enhanced_download_archive.get_file_handler_transaction_log()
|
||||||
|
|
||||||
return _mock_download
|
return _mock_download
|
||||||
|
|
||||||
return _mock_subscription_download_factory
|
return _mock_subscription_download_factory
|
||||||
|
|
@ -228,8 +231,8 @@ def test_transaction_log_to_file(
|
||||||
str(transaction_log_file_path),
|
str(transaction_log_file_path),
|
||||||
],
|
],
|
||||||
):
|
):
|
||||||
transaction_logs = main()
|
subscriptions = main()
|
||||||
assert transaction_logs
|
assert subscriptions
|
||||||
|
|
||||||
with open(transaction_log_file_path, "r", encoding="utf-8") as transaction_log_file:
|
with open(transaction_log_file_path, "r", encoding="utf-8") as transaction_log_file:
|
||||||
assert transaction_log_file.readlines()[0] == "Transaction log for john_smith:\n"
|
assert transaction_log_file.readlines()[0] == "Transaction log for john_smith:\n"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue