blob: 594624f3a482c546b2dc4f115ed916f001b3b716 (
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
|
import pytest
import unittest
import trapd_exit
pid_file="/tmp/test_pid_file"
pid_file_dne="/tmp/test_pid_file_NOT"
class test_cleanup_and_exit(unittest.TestCase):
"""
Test the cleanup_and_exit mod
"""
def test_normal_exit(self):
"""
Test normal exit works as expected
"""
open(pid_file, 'w')
with pytest.raises(SystemExit) as pytest_wrapped_sys_exit:
result = trapd_exit.cleanup_and_exit(0,pid_file)
assert pytest_wrapped_sys_exit.type == SystemExit
assert pytest_wrapped_sys_exit.value.code == 0
# compare = str(result).startswith("SystemExit: 0")
# self.assertEqual(compare, True)
def test_abnormal_exit(self):
"""
Test exit with missing PID file exits non-zero
"""
with pytest.raises(SystemExit) as pytest_wrapped_sys_exit:
result = trapd_exit.cleanup_and_exit(0,pid_file_dne)
assert pytest_wrapped_sys_exit.type == SystemExit
assert pytest_wrapped_sys_exit.value.code == 1
if __name__ == '__main__':
unittest.main()
|