blob: 980cfe778cae77a26d5be7103d427090edc50aab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# ############################################################################ #
# #
# ::: :::::::: #
# sandbox.py :+: :+: :+: #
# +:+ +:+ +:+ #
# By: charles <me@cacharle.xyz> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2020/09/11 13:48:07 by charles #+# #+# #
# Updated: 2021/02/27 12:32:17 by cacharle ### ########.fr #
# #
# ############################################################################ #
import shutil
import subprocess
from contextlib import contextmanager
from minishell_test import config
def create():
"""Create a new sandbox directory"""
try:
config.SANDBOX_DIR.mkdir(parents=True, exist_ok=True)
except OSError:
pass
def remove():
"""Remove the sandbox directory
Brute force rm -rf if clean removal doesn't work due to permissions.
"""
try:
shutil.rmtree(config.SANDBOX_DIR)
except PermissionError:
subprocess.run(["chmod", "777", *config.SANDBOX_DIR.glob("*")], check=True)
shutil.rmtree(config.SANDBOX_DIR)
except FileNotFoundError:
pass
@contextmanager
def context():
"""Sandbox context manager"""
create()
try:
yield
finally:
remove()
|