-
-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathtest_genattrib.py
More file actions
117 lines (98 loc) · 4.59 KB
/
Copy pathtest_genattrib.py
File metadata and controls
117 lines (98 loc) · 4.59 KB
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
#!/usr/bin/env python
# -*- coding: utf8 -*-
# ============================================================================
# Copyright (c) 2013-2015 nexB Inc. http://www.nexb.com/ - All rights reserved.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ============================================================================
from __future__ import print_function
import os
import unittest
from about_code_tool import genattrib
from about_code_tool.tests.test_about import get_temp_file
TESTS_DIR = os.path.abspath(os.path.dirname(__file__))
TESTDATA_DIR = os.path.join(TESTS_DIR, 'testdata')
GEN_LOCATION = os.path.join(TESTDATA_DIR, 'test_files_for_genabout')
class GenAttribTest(unittest.TestCase):
def test_convert_dict_key_to_lower_case(self):
test = [{'Directory': '/test/', 'file_name': 'test.c'}]
expected = [{'directory': '/test/', 'file_name': 'test.c'}]
result = genattrib.convert_dict_key_to_lower_case(test)
self.assertEqual(expected, result)
def test_check_no_about_file_existence(self):
test = [{'Directory': '/test/', 'file_name': '/test.c'}]
result = genattrib.check_about_file_existence_and_format(test)
self.assertFalse(result)
def test_check_have_about_file_existence(self):
test = [{'Directory': '/test/', 'about_file': '/test.ABOUT'}]
result = genattrib.check_about_file_existence_and_format(test)
self.assertEqual(test, result)
def test_check_no_about_file_not_start_with_slash(self):
test = [{'Directory': '/test/', 'file_name': 'test.c'}]
result = genattrib.check_about_file_existence_and_format(test)
self.assertFalse(result)
def test_check_have_about_file_not_start_with_slash(self):
test = [{'Directory': '/test/', 'about_file': 'test.ABOUT'}]
expected = [{'Directory': '/test/', 'about_file': '/test.ABOUT'}]
result = genattrib.check_about_file_existence_and_format(test)
self.assertEqual(expected, result)
def test_update_path_to_about(self):
test = ['/test/test1.ABOUT', '/test/test2/', 'test/test3.c']
expected = ['/test/test1.ABOUT',
'/test/test2/test2.ABOUT',
'test/test3.c.ABOUT']
result = genattrib.update_path_to_about(test)
self.assertEqual(expected, result)
def test_component_subset_to_sublist(self):
test = [{'about_file': '/tmp/', 'notes': 'test'},
{'about_file': '/tmp/t1/', 'dje_license': 'bsd-new'}]
expected = ['/tmp/', '/tmp/t1/']
result = genattrib.component_subset_to_sublist(test)
self.assertEqual(expected, result)
def test_genattrib_basic(self):
self.maxDiff = None
about_dir = 'about_code_tool/tests/testdata/genattrib/basic/'
generated_attrib = get_temp_file('generated.html')
args = [about_dir, generated_attrib]
options = None
genattrib_command_tester(args, options)
result = open(generated_attrib).read()
expected = [
'ElasticSearch 1.6.0',
'bootstrap 2.3.2',
'djangosnippets.org_2413 2011-04-12',
'Annotator 1.2.10',
'component_4',
]
for ex in expected:
self.assertTrue(ex in result)
def test_genattrib_from_zipped_dir(self):
self.maxDiff = None
about_dir = 'about_code_tool/tests/testdata/genattrib/zipped_about.zip'
generated_attrib = get_temp_file('generated.html')
args = [about_dir, generated_attrib]
options = None
genattrib_command_tester(args, options)
result = open(generated_attrib).read()
expected = [
'ElasticSearch 1.6.0',
'bootstrap 2.3.2',
'djangosnippets.org_2413 2011-04-12',
'Annotator 1.2.10',
'python-memcached 1.53',
'component_94',
'Groovy 2.4.0',
]
for ex in expected:
self.assertTrue(ex in result)
def genattrib_command_tester(args, options):
parser = genattrib.get_parser()
options, args = parser.parse_args(args, options)
genattrib.main(parser, options, args)