forked from p15670423/monkey
UT: Fix windows bug in test_monkey_log_path.py
Bug was happening due to an attempt to delete a file with an unclosed handle
This commit is contained in:
parent
72984bb3e3
commit
301284f4d0
|
@ -1,3 +1,4 @@
|
||||||
|
import os
|
||||||
import tempfile
|
import tempfile
|
||||||
import time
|
import time
|
||||||
from functools import lru_cache, partial
|
from functools import lru_cache, partial
|
||||||
|
@ -11,7 +12,8 @@ def _get_log_path(monkey_arg: str) -> Path:
|
||||||
prefix = f"infection-monkey-{monkey_arg}-{timestamp}-"
|
prefix = f"infection-monkey-{monkey_arg}-{timestamp}-"
|
||||||
suffix = ".log"
|
suffix = ".log"
|
||||||
|
|
||||||
_, monkey_log_path = tempfile.mkstemp(suffix=suffix, prefix=prefix)
|
handle, monkey_log_path = tempfile.mkstemp(suffix=suffix, prefix=prefix)
|
||||||
|
os.close(handle)
|
||||||
|
|
||||||
return Path(monkey_log_path)
|
return Path(monkey_log_path)
|
||||||
|
|
||||||
|
|
|
@ -2,6 +2,7 @@ import pytest
|
||||||
|
|
||||||
from infection_monkey.utils.monkey_log_path import get_agent_log_path, get_dropper_log_path
|
from infection_monkey.utils.monkey_log_path import get_agent_log_path, get_dropper_log_path
|
||||||
|
|
||||||
|
|
||||||
def delete_log_file(log_path):
|
def delete_log_file(log_path):
|
||||||
if log_path.is_file():
|
if log_path.is_file():
|
||||||
log_path.unlink()
|
log_path.unlink()
|
||||||
|
|
Loading…
Reference in New Issue