-
Notifications
You must be signed in to change notification settings - Fork 31
/
test_extract.py
151 lines (117 loc) · 4.23 KB
/
test_extract.py
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
import logging
from pathlib import Path
import pytest
from extract import (
TemporaryDirectory,
call_docker,
container_exists,
handle_report,
main,
parse_arguments,
setup_logging,
)
def exec_stub(command, *_, **__):
class ProcessResult:
def __init__(self, rc):
self.returncode = rc
@property
def stdout(self):
return b''
if command.endswith('fail'):
return ProcessResult(255)
return ProcessResult(0)
def test_parse_arguments(monkeypatch):
monkeypatch.setattr('extract.sys.argv', ['extract.py', 'ANY'])
args = parse_arguments()
assert args.FILE[0] == 'ANY'
def test_parse_arguments_no_archive(monkeypatch, capsys):
monkeypatch.setattr('extract.sys.argv', ['extract.py'])
with pytest.raises(SystemExit) as sys_exit:
parse_arguments()
assert 'required: FILE' in capsys.readouterr().err
assert sys_exit.value.code == 2
def test_parse_arguments_show_version(monkeypatch, capsys):
monkeypatch.setattr('extract.sys.argv', ['extract.py', '--version'])
with pytest.raises(SystemExit) as sys_exit:
parse_arguments()
assert '0.1' in capsys.readouterr().out
assert sys_exit.value.code == 0
def test_container_exists(monkeypatch):
monkeypatch.setattr('extract.subprocess.run', exec_stub)
assert not container_exists('please fail')
assert container_exists('please succeed')
def test_setup_logging(capsys):
logging.info('test')
assert not capsys.readouterr().err
setup_logging(verbose=False)
logging.info('test')
assert capsys.readouterr().err
def test_setup_logging_verbose(capsys):
setup_logging(verbose=False)
logging.debug('test')
assert not capsys.readouterr().err
setup_logging(verbose=True)
logging.debug('test')
assert capsys.readouterr().err
def test_handle_report(monkeypatch, capsys, tmpdir):
monkeypatch.setattr('extract.Path.read_text', lambda *_, **__: '{"a": 5}')
handle_report(None, '')
assert ' "a": 5\n' in capsys.readouterr().out
handle_report(str(Path(str(tmpdir), 'anyfile')), '')
report = Path(str(tmpdir), 'anyfile').read_bytes().decode()
assert ' "a": 5\n' in report
@pytest.mark.parametrize(
('arguments', 'return_code', 'message'),
[
(['extract.py', '-o', '/tmp', 'anyfile'], 1, 'Target directory exists'),
(['extract.py', '-o', '/tmp/valid_dir', '-c', 'container_will_fail', 'anyfile'], 1, "fail doesn't exist"),
(['extract.py', '-o', '/tmp/valid_dir', '-c', 'container_will_succeed', 'anyfile'], 1, "anyfile doesn't exist"),
(
[
'extract.py',
'-o',
'/tmp/valid_dir',
'-c',
'container_will_succeed',
'-r',
'/tmp/bad/path/to/report',
'/bin/bash',
],
1,
'Check if parent directory exists',
),
(
[
'extract.py',
'-o',
'/tmp/valid_dir',
'-c',
'container_will_succeed',
'-r',
'/etc/environment',
'/bin/bash',
],
0,
'will be overwritten',
),
(
['extract.py', '-o', '/tmp/valid_dir', '-c', 'container_will_succeed', '-r', '/tmp/report', '/bin/bash'],
0,
'',
),
],
)
def test_main_return_values(arguments, return_code, message, monkeypatch, capsys):
monkeypatch.setattr('extract.call_docker', lambda **_: None)
monkeypatch.setattr('extract.sys.argv', arguments)
monkeypatch.setattr('extract.subprocess.run', exec_stub)
assert main() == return_code
assert message in capsys.readouterr().err
def test_call_docker(monkeypatch, capsys):
monkeypatch.setattr('extract.subprocess.run', lambda *_, **__: None)
tmpdir = TemporaryDirectory()
target = Path(tmpdir.name, 'target')
Path(tmpdir.name, 'reports').mkdir(parents=True)
Path(tmpdir.name, 'reports', 'meta.json').write_text('{"test": "succeeded"}')
call_docker('/bin/bash', 'doesnt_matter', str(target), None, '128', tmpdir)
assert ' "test": "succeeded"\n' in capsys.readouterr().out