Clean up, remove compat with py < 3.6
[pyi2ncommon] / test / test_argparse_helpers.py
1 # The software in this package is distributed under the GNU General
2 # Public License version 2 (with a special exception described below).
3 #
4 # A copy of GNU General Public License (GPL) is included in this distribution,
5 # in the file COPYING.GPL.
6 #
7 # As a special exception, if other files instantiate templates or use macros
8 # or inline functions from this file, or you compile this file and link it
9 # with other works to produce a work based on this file, this file
10 # does not by itself cause the resulting work to be covered
11 # by the GNU General Public License.
12 #
13 # However the source code for this file must still be made available
14 # in accordance with section (3) of the GNU General Public License.
15 #
16 # This exception does not invalidate any other reasons why a work based
17 # on this file might be covered by the GNU General Public License.
18
19 """ test_argparse_helpers.py: unit tests for argparse_helpers
20
21 Test classes and functions in argparse_helpers
22
23 For help see :py:mod:`unittest`
24
25 .. codeauthor:: Intra2net
26 """
27
28 import unittest
29 import os
30 from os.path import isfile
31 from tempfile import mkstemp
32
33 # relative import of tested module ensures we do not test installed version
34 try:
35     from src import argparse_helpers
36 except ImportError as ie:
37     raise RuntimeError('Failed to import tested module argparse_helpers: {}'
38                        .format(ie))
39
40
41 class ArgparseTester(unittest.TestCase):
42     """ only test case in this module, see module doc for more help """
43
44     def test_non_exit(self):
45         """Check that NonExitingParser raises the right exception."""
46         parser = argparse_helpers.NonExitingParser()
47         parser.add_argument('-a', type=int)
48         self.assertRaises(argparse_helpers.ArgParserWantsExit,
49                           parser.parse_args, ['-a', 'blubb'])
50
51     def test_existing_file(self):
52         temp_file = None
53         temp_handle = None
54         try:
55             # create a file
56             temp_handle, temp_file = mkstemp()
57             os.write(temp_handle, b'bla')
58             os.close(temp_handle)
59             temp_handle = None
60
61             # test with existing file
62             parser = argparse_helpers.NonExitingParser()
63             parser.add_argument('--input', type=argparse_helpers.existing_file)
64         finally:
65             if temp_handle:
66                 os.close(temp_handle)
67             if temp_file and isfile(temp_file):
68                 os.remove(temp_file)
69
70         # test with non-existing file
71         self.assertRaisesRegex(argparse_helpers.ArgParserWantsExit,
72                                'is not an existing file',
73                                parser.parse_args,
74                                ['--input', temp_file, ])
75
76 if __name__ == '__main__':
77     unittest.main()