-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.py
executable file
·57 lines (47 loc) · 1.89 KB
/
test.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
#!/usr/bin/python
# -*- coding=utf-8; -*-
# Tests for SCons Doxygen builder.
#
# Copyright © 2013 Richard van der Hoff
# Copyright © 2013 Russel Winder
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License version 2.1 as published by the Free Software Foundation.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
import unittest
import os
import sys
from doxygen import DoxyfileParse
class TestParser(unittest.TestCase):
test_config_dir = os.path.join(os.path.dirname(__file__), 'test_config')
def test_simple_parse(self):
text = """
# comment
INPUT = test.h
"""
result = DoxyfileParse(text, self.test_config_dir)
self.assertEqual(["test.h"], result["INPUT"])
def test_parse_tag_on_first_line(self):
text = """INPUT=."""
result = DoxyfileParse(text, self.test_config_dir)
self.assertEqual(["."], result["INPUT"])
def test_include_tag(self):
text = """@INCLUDE=include_test.cfg"""
result = DoxyfileParse(text, self.test_config_dir)
self.assertEqual(["abc"], result["INPUT"])
self.assertEqual([os.path.join(self.test_config_dir, "include_test.cfg")],
result["@INCLUDE"])
def test_recursive_include_tag(self):
text = """@INCLUDE=recursive_include_test.cfg"""
self.assertRaises(Exception, DoxyfileParse, text, self.test_config_dir)
if __name__ == '__main__':
unittest.main()