-
Notifications
You must be signed in to change notification settings - Fork 37
/
tbInfo.py
145 lines (119 loc) · 4.38 KB
/
tbInfo.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
#******************************************************************************
# * Copyright (c) 2019, XtremeDV. 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.
# *
# * Author: Jude Zhang, Email: [email protected]
# *******************************************************************************
import os
import sys
from utils import *
from globals import *
from readCfgFile import readGroupCfgFile, readBuildCfgFile
class flowList(object):
def __init__ (self, name):
self._name = name
@property
def name(self):
return self._name
@property
def list(self):
pass
@list.setter
def list(self,value):
pass
def check(self, value):
return value in self.list
def show(self):
print ('Available '+self.name+':\n' + '\n'.join(['\t' + x for x in self.list]))
class testList(flowList):
def __init__ (self):
super(testList,self).__init__('Tests')
self._testDir=defaultTestDir()
self._testlist = {}
@property
def list(self):
return self._testlist.keys()
@property
def testDir(self):
return self._testDir
@testDir.setter
def testDir(self, value):
if not os.path.isdir(expandDirVar(value)):
raise SystemError('%s is not exists!' % value)
self._testDir = expandDirVar(value)
self._testlist = {}
self._getTestList()
def genTestFileList(self, dir):
with open(os.path.join(dir,defaultTestListFile()), 'w') as file:
file.write('+incdir+' + self._testDir + '\n')
for test in self._testlist.values():
file.write('+incdir+' + test + '\n')
file.write('+incdir+' + os.path.join(test, '..') + '\n')
file.write(os.path.join(test, os.path.basename(test) + '.sv') + '\n')
def _getTestList(self):
for dirpath, dirname, filename in os.walk(self._testDir, topdown=True, followlinks=True):
if '.svn' in dirname:
dirname.remove('.svn')
for file in filename:
basename, extname = os.path.splitext(file)
if extname == '.sv' and basename == os.path.basename(dirpath):
self._testlist[basename] = dirpath
class allTestList(object):
def __init__ (self):
self._testlists={}
def setTestLists(self, build, testlist):
self._testlists[build] = testlist
def show(self):
if self._testlists:
print ('Available tests:')
for key, value in self._testlists.items():
print('\t'+ key + ':\n' + '\n'.join(['\t\t' + x for x in sorted(value.list)]))
else:
testList().show()
class groupList(flowList):
def __init__(self):
super(groupList, self).__init__('Groups')
self._groupFile = defaultGroupFile()
self._grouplist = readGroupCfgFile(self._groupFile).testGroup.subSection.keys()
@property
def list(self):
return self._grouplist
@property
def groupFile(self):
return self._groupFile
@groupFile.setter
def groupFile(self, value):
if not os.path.isfile(value):
raise SystemError('%s is not exists!' % value)
self._groupFile = value
self._grouplist = readGroupCfgFile(self._groupFile).testGroup.subSection.keys()
class buildList(flowList):
def __init__ (self):
super(buildList, self).__init__('Builds')
self._buildlist= readBuildCfgFile(defaultBuildFile()).build.subSection.keys()
@property
def list(self):
return self._buildlist
testlist = allTestList()
buildlist = buildList()
grouplist = groupList()
def show(name):
getattr(sys.modules[__name__], name + 'list').show()
#if __name__ == '__main__':
# tests = testList()
# tests._getTestList()
# testlist.setTestLists('default_build', tests)
# show('test')
# show('build')
# show('group')