blob: 3fef087231858bd817616e04c2d81da19d74197b [file] [log] [blame]
YPZhang38fb1192016-08-11 11:03:38 -07001'''
2 SCPFswitchLat
3 Test Switch add/remove latency
4 calculate package latency between switch and ONOS
5 Switch UP:
6 TCP -- Feature Reply -- Role Request -- Role Reply -- Device -- Graph
7 Siwtch Down:
8 Openflow FIN/ACK -- ACK -- Device -- Graph
9'''
cameron@onlab.us21106ea2015-07-23 15:32:51 -070010
11class SCPFswitchLat:
12
YPZhang38fb1192016-08-11 11:03:38 -070013 def __init__(self):
cameron@onlab.us21106ea2015-07-23 15:32:51 -070014 self.default = ''
15
YPZhang38fb1192016-08-11 11:03:38 -070016 def CASE0( self, main ):
cameron@onlab.us21106ea2015-07-23 15:32:51 -070017 import os
YPZhang38fb1192016-08-11 11:03:38 -070018 import imp
19 '''
20 - GIT
21 - BUILDING ONOS
22 Pull specific ONOS branch, then Build ONOS ono ONOS Bench.
23 This step is usually skipped. Because in a Jenkins driven automated
24 test env. We want Jenkins jobs to pull&build for flexibility to handle
25 different versions of ONOS.
26 - Construct tests variables
27 '''
28 gitPull = main.params['GIT']['gitPull']
29 gitBranch = main.params['GIT']['gitBranch']
30
31 main.case( "Pull onos branch and build onos on Teststation." )
32
33 if gitPull == 'True':
34 main.step( "Git Checkout ONOS branch: " + gitBranch )
35 stepResult = main.ONOSbench.gitCheckout( branch=gitBranch )
36 utilities.assert_equals(expect=main.TRUE,
37 actual=stepResult,
38 onpass="Successfully checkout onos branch.",
39 onfail="Failed to checkout onos branch. Exiting test...")
40 if not stepResult: main.exit()
41
42 main.step( "Git Pull on ONOS branch:" + gitBranch )
43 stepResult = main.ONOSbench.gitPull()
44 utilities.assert_equals(expect=main.TRUE,
45 actual=stepResult,
46 onpass="Successfully pull onos. ",
47 onfail="Failed to pull onos. Exiting test ...")
48 if not stepResult: main.exit()
49
50 main.step( "Building ONOS branch: " + gitBranch )
51 stepResult = main.ONOSbench.cleanInstall( skipTest=True )
52 utilities.assert_equals(expect=main.TRUE,
53 actual=stepResult,
54 onpass="Successfully build onos.",
55 onfail="Failed to build onos. Exiting test...")
56 if not stepResult: main.exit()
57
58 else:
59 main.log.warn( "Skipped pulling onos and Skipped building ONOS" )
chengchiyu08303a02016-09-08 17:40:26 -070060 # The dictionary to record different type of wrongs
61 main.wrong = { 'totalWrong': 0, 'skipDown' : 0, 'TsharkValueIncorrect': 0,
62 'TypeError' : 0, 'decodeJasonError': 0,
63 'checkResultIncorrect': 0}
64 main.maxWrong = int( main.params['TEST'] ['MaxWrong'] )
65 main.resultRange = main.params['TEST']['ResultRange']
66 main.searchTerm = main.params['TEST']['SearchTerm']
67 main.testOnDirectory = os.path.dirname( os.getcwd() )
YPZhang38fb1192016-08-11 11:03:38 -070068 main.MN1Ip = main.params['MN']['ip1']
69 main.dependencyPath = main.testOnDirectory + \
70 main.params['DEPENDENCY']['path']
71 main.topoName = main.params['DEPENDENCY']['topology']
72 main.dependencyFunc = main.params['DEPENDENCY']['function']
73 main.cellName = main.params['ENV']['cellName']
74 main.Apps = main.params['ENV']['cellApps']
75 main.scale = (main.params['SCALE']).split(",")
76
77 main.ofPackage = main.params['TSHARK']
78
79 main.tsharkResultPath = main.params['TEST']['tsharkResultPath']
80 main.sampleSize = int(main.params['TEST']['sampleSize'])
81 main.warmUp = int(main.params['TEST']['warmUp'])
82 main.dbFileName = main.params['DATABASE']['dbName']
83 main.startUpSleep = int(main.params['SLEEP']['startup'])
84 main.measurementSleep = int( main.params['SLEEP']['measure'] )
chengchiyu08303a02016-09-08 17:40:26 -070085 main.deleteSwSleep = int( main.params['SLEEP']['deleteSW'] )
YPZhang38fb1192016-08-11 11:03:38 -070086 main.maxScale = int( main.params['max'] )
87 main.timeout = int( main.params['TIMEOUT']['timeout'] )
88 main.MNSleep = int( main.params['SLEEP']['mininet'])
89 main.device = main.params['TEST']['device']
YPZhang38fb1192016-08-11 11:03:38 -070090 main.log.info("Create Database file " + main.dbFileName)
91 resultsDB = open(main.dbFileName, "w+")
92 resultsDB.close()
93
94 main.switchFunc = imp.load_source(main.dependencyFunc,
95 main.dependencyPath +
96 main.dependencyFunc +
97 ".py")
98
99 def CASE1(self, main):
100 # Clean up test environment and set up
cameron@onlab.us21106ea2015-07-23 15:32:51 -0700101 import time
YPZhang38fb1192016-08-11 11:03:38 -0700102 main.log.info("Get ONOS cluster IP")
103 print(main.scale)
104 main.numCtrls = int(main.scale.pop(0))
105 main.ONOSip = []
106 main.maxNumBatch = 0
107 main.AllONOSip = main.ONOSbench.getOnosIps()
108 for i in range(main.numCtrls):
109 main.ONOSip.append(main.AllONOSip[i])
110 main.log.info(main.ONOSip)
111 main.CLIs = []
112 main.log.info("Creating list of ONOS cli handles")
113 for i in range(main.numCtrls):
114 main.CLIs.append(getattr(main, 'ONOS%scli' % (i + 1)))
cameron@onlab.us21106ea2015-07-23 15:32:51 -0700115
YPZhang38fb1192016-08-11 11:03:38 -0700116 if not main.CLIs:
117 main.log.error("Failed to create the list of ONOS cli handles")
118 main.cleanup()
119 main.exit()
cameron@onlab.us21106ea2015-07-23 15:32:51 -0700120
YPZhang38fb1192016-08-11 11:03:38 -0700121 main.commit = main.ONOSbench.getVersion(report=True)
122 main.commit = main.commit.split(" ")[1]
123 main.log.info("Starting up %s node(s) ONOS cluster" % main.numCtrls)
124 main.log.info("Safety check, killing all ONOS processes" +
125 " before initiating environment setup")
cameron@onlab.us21106ea2015-07-23 15:32:51 -0700126
YPZhang38fb1192016-08-11 11:03:38 -0700127 for i in range(main.numCtrls):
128 main.ONOSbench.onosDie(main.ONOSip[i])
cameron@onlab.us21106ea2015-07-23 15:32:51 -0700129
YPZhang38fb1192016-08-11 11:03:38 -0700130 main.log.info("NODE COUNT = %s" % main.numCtrls)
131 main.ONOSbench.createCellFile(main.ONOSbench.ip_address,
132 main.cellName,
133 main.MN1Ip,
134 main.Apps,
135 main.ONOSip)
136 main.step("Apply cell to environment")
137 cellResult = main.ONOSbench.setCell(main.cellName)
138 verifyResult = main.ONOSbench.verifyCell()
139 stepResult = cellResult and verifyResult
140 utilities.assert_equals(expect=main.TRUE,
141 actual=stepResult,
142 onpass="Successfully applied cell to " + \
143 "environment",
144 onfail="Failed to apply cell to environment ")
cameron@onlab.us21106ea2015-07-23 15:32:51 -0700145
YPZhang38fb1192016-08-11 11:03:38 -0700146 main.step("Creating ONOS package")
Jon Hallbd60ea02016-08-23 10:03:59 -0700147 packageResult = main.ONOSbench.buckBuild()
YPZhang38fb1192016-08-11 11:03:38 -0700148 stepResult = packageResult
149 utilities.assert_equals(expect=main.TRUE,
150 actual=stepResult,
151 onpass="Successfully created ONOS package",
152 onfail="Failed to create ONOS package")
cameron@onlab.us21106ea2015-07-23 15:32:51 -0700153
YPZhang38fb1192016-08-11 11:03:38 -0700154 main.step("Uninstall ONOS package on all Nodes")
155 uninstallResult = main.TRUE
156 for i in range(int(main.numCtrls)):
157 main.log.info("Uninstalling package on ONOS Node IP: " + main.ONOSip[i])
158 u_result = main.ONOSbench.onosUninstall(main.ONOSip[i])
159 utilities.assert_equals(expect=main.TRUE, actual=u_result,
160 onpass="Test step PASS",
161 onfail="Test step FAIL")
162 uninstallResult = (uninstallResult and u_result)
Jon Hall4ba53f02015-07-29 13:07:41 -0700163
YPZhang38fb1192016-08-11 11:03:38 -0700164 main.step("Install ONOS package on all Nodes")
165 installResult = main.TRUE
166 for i in range(int(main.numCtrls)):
167 main.log.info("Installing package on ONOS Node IP: " + main.ONOSip[i])
168 i_result = main.ONOSbench.onosInstall(node=main.ONOSip[i])
169 utilities.assert_equals(expect=main.TRUE, actual=i_result,
170 onpass="Test step PASS",
171 onfail="Test step FAIL")
172 installResult = installResult and i_result
173
174 main.step("Verify ONOS nodes UP status")
175 statusResult = main.TRUE
176 for i in range(int(main.numCtrls)):
177 main.log.info("ONOS Node " + main.ONOSip[i] + " status:")
178 onos_status = main.ONOSbench.onosStatus(node=main.ONOSip[i])
179 utilities.assert_equals(expect=main.TRUE, actual=onos_status,
180 onpass="Test step PASS",
181 onfail="Test step FAIL")
182 statusResult = (statusResult and onos_status)
Chiyu Chengef109502016-11-21 15:51:38 -0800183
184 main.step( "Set up ONOS secure SSH" )
185 secureSshResult = main.TRUE
186 for i in range( int( main.numCtrls ) ):
187 secureSshResult = secureSshResult and main.ONOSbench.onosSecureSSH( node=main.ONOSip[i] )
188 utilities.assert_equals( expect=main.TRUE, actual=secureSshResult,
189 onpass="Test step PASS",
190 onfail="Test step FAIL" )
191
YPZhang38fb1192016-08-11 11:03:38 -0700192 time.sleep(2)
193 main.step("Start ONOS CLI on all nodes")
194 cliResult = main.TRUE
195 main.step(" Start ONOS cli using thread ")
196 startCliResult = main.TRUE
197 pool = []
198 main.threadID = 0
199 for i in range(int(main.numCtrls)):
200 t = main.Thread(target=main.CLIs[i].startOnosCli,
201 threadID=main.threadID,
202 name="startOnosCli",
203 args=[main.ONOSip[i]],
204 kwargs={"onosStartTimeout": main.timeout})
205 pool.append(t)
206 t.start()
207 main.threadID = main.threadID + 1
208 for t in pool:
209 t.join()
210 startCliResult = startCliResult and t.result
211 time.sleep(main.startUpSleep)
212
213 main.log.info("Configure apps")
214 main.CLIs[0].setCfg("org.onosproject.net.topology.impl.DefaultTopologyProvider",
215 "maxEvents 1")
216 main.CLIs[0].setCfg("org.onosproject.net.topology.impl.DefaultTopologyProvider",
217 "maxBatchMs 0")
218 main.CLIs[0].setCfg("org.onosproject.net.topology.impl.DefaultTopologyProvider",
219 "maxIdleMs 0")
chengchiyu08303a02016-09-08 17:40:26 -0700220 for i in range(main.numCtrls):
221 main.CLIs[i].logSet( "DEBUG", "org.onosproject.metrics.topology")
YPZhang38fb1192016-08-11 11:03:38 -0700222 time.sleep(1)
223
224 main.log.info("Copy topology file to Mininet")
225 main.ONOSbench.copyMininetFile(main.topoName,
226 main.dependencyPath,
227 main.Mininet1.user_name,
228 main.Mininet1.ip_address)
229 main.log.info("Stop Mininet...")
230 main.Mininet1.stopNet()
231 time.sleep(main.MNSleep)
232 main.log.info("Start new mininet topology")
cameron@onlab.us21106ea2015-07-23 15:32:51 -0700233 main.Mininet1.startNet()
YPZhang38fb1192016-08-11 11:03:38 -0700234 main.log.info("Assign switch to controller to ONOS node 1")
cameron@onlab.us21106ea2015-07-23 15:32:51 -0700235
YPZhang38fb1192016-08-11 11:03:38 -0700236 time.sleep(2)
cameron@onlab.us21106ea2015-07-23 15:32:51 -0700237
YPZhang38fb1192016-08-11 11:03:38 -0700238 def CASE2(self,main):
cameron@onlab.us21106ea2015-07-23 15:32:51 -0700239 import time
cameron@onlab.us21106ea2015-07-23 15:32:51 -0700240 import json
cameron@onlab.us21106ea2015-07-23 15:32:51 -0700241 import numpy
242
YPZhang38fb1192016-08-11 11:03:38 -0700243 resultDict = {'up' : {}, 'down' : {}}
244 for i in range(1, main.numCtrls + 1):
245 resultDict['up'][ 'node' + str(i) ] = {}
246 resultDict['up'][ 'node' + str(i) ][ 'Ave' ] = {}
247 resultDict['up'][ 'node' + str(i) ][ 'Std' ] = {}
248 resultDict['up'][ 'node' + str(i) ][ 'T_F' ] = []#TCP to Feature
249 resultDict['up'][ 'node' + str(i) ][ 'F_R' ] = []#Feature to Role
250 resultDict['up'][ 'node' + str(i) ][ 'RQ_RR' ] = []#role request to role reply
251 resultDict['up'][ 'node' + str(i) ][ 'RR_D' ] = []#role reply to Device
252 resultDict['up'][ 'node' + str(i) ][ 'D_G' ] = []#Device to Graph
253 resultDict['up'][ 'node' + str(i) ][ 'E_E' ] = []#TCP to Graph
Jon Hall4ba53f02015-07-29 13:07:41 -0700254
YPZhang38fb1192016-08-11 11:03:38 -0700255 for i in range(1,main.numCtrls + 1):
256 resultDict['down'][ 'node' + str(i) ] = {}
257 resultDict['down'][ 'node' + str(i) ][ 'Ave' ] = {}
258 resultDict['down'][ 'node' + str(i) ][ 'Std' ] = {}
259 resultDict['down'][ 'node' + str(i) ][ 'FA_A' ] = []#Fin_ack to ACK
260 resultDict['down'][ 'node' + str(i) ][ 'A_D' ] = []#Ack to Device
261 resultDict['down'][ 'node' + str(i) ][ 'D_G' ] = []#Device to Graph
262 resultDict['down'][ 'node' + str(i) ][ 'E_E' ] = []#fin_ack to Graph
263 for i in range(1 , main.sampleSize + main.warmUp):
264 main.log.info("************************************************************")
265 main.log.info("************************ Iteration: {} **********************" .format(str( i )) )
266 if i < main.warmUp:
267 main.switchFunc.captureOfPack( main, main.device, main.ofPackage,
268 "up", resultDict, True )
269 main.switchFunc.captureOfPack( main, main.device, main.ofPackage,
270 "down", resultDict, True )
chengchiyu08303a02016-09-08 17:40:26 -0700271 main.CLIs[0].removeDevice( "of:0000000000000001" )
cameron@onlab.us21106ea2015-07-23 15:32:51 -0700272 else:
YPZhang38fb1192016-08-11 11:03:38 -0700273 main.switchFunc.captureOfPack( main, main.device, main.ofPackage,
274 "up", resultDict, False )
275 main.switchFunc.captureOfPack (main, main.device, main.ofPackage,
276 "down", resultDict, False )
chengchiyu08303a02016-09-08 17:40:26 -0700277 main.CLIs[0].removeDevice( "of:0000000000000001" )
278
YPZhang38fb1192016-08-11 11:03:38 -0700279 # Dictionary for result
280 maxDict = {}
281 maxDict['down'] = {}
282 maxDict['up'] = {}
283 maxDict['down']['max'] = 0
284 maxDict['up']['max'] = 0
285 maxDict['down']['node'] = 0
286 maxDict['up']['node'] = 0
Jon Hall4ba53f02015-07-29 13:07:41 -0700287
YPZhang38fb1192016-08-11 11:03:38 -0700288 for i in range(1, main.numCtrls + 1):
289 # calculate average and std for result, and grep the max End to End data
290 EtoEtemp = numpy.average( resultDict['up'][ 'node' + str(i) ]['E_E'] )
291 resultDict['up'][ 'node' + str(i) ][ 'Ave' ][ 'E_E' ] = EtoEtemp
292 if maxDict['up']['max'] < EtoEtemp:
293 # get max End to End latency
294 maxDict['up']['max'] = EtoEtemp
295 maxDict['up']['node'] = i
296 resultDict['up']['node' + str(i)]['Ave']['T_F'] = numpy.average(resultDict['up']['node' + str(i)]['T_F'])
297 resultDict['up']['node' + str(i)]['Ave']['F_R'] = numpy.average(resultDict['up']['node' + str(i)]['F_R'])
298 resultDict['up']['node' + str(i)]['Ave']['RQ_RR'] = numpy.average(resultDict['up']['node' + str(i)]['RQ_RR'])
299 resultDict['up']['node' + str(i)]['Ave']['RR_D'] = numpy.average(resultDict['up']['node' + str(i)]['RR_D'])
300 resultDict['up']['node' + str(i)]['Ave']['D_G'] = numpy.average(resultDict['up']['node' + str(i)]['D_G'])
Jon Hall4ba53f02015-07-29 13:07:41 -0700301
YPZhang38fb1192016-08-11 11:03:38 -0700302 resultDict['up'][ 'node' + str(i) ][ 'Std' ][ 'E_E' ] = numpy.std( resultDict['up'][ 'node' + str(i) ]['E_E'] )
303 resultDict['up']['node' + str(i)]['Std']['T_F'] = numpy.std(resultDict['up']['node' + str(i)]['T_F'])
304 resultDict['up']['node' + str(i)]['Std']['F_R'] = numpy.std(resultDict['up']['node' + str(i)]['F_R'])
305 resultDict['up']['node' + str(i)]['Std']['RQ_RR'] = numpy.std(resultDict['up']['node' + str(i)]['RQ_RR'])
306 resultDict['up']['node' + str(i)]['Std']['RR_D'] = numpy.std(resultDict['up']['node' + str(i)]['RR_D'])
307 resultDict['up']['node' + str(i)]['Std']['D_G'] = numpy.std(resultDict['up']['node' + str(i)]['D_G'])
cameron@onlab.us21106ea2015-07-23 15:32:51 -0700308
YPZhang38fb1192016-08-11 11:03:38 -0700309 # calculate average and std for result, and grep the max End to End data
310 EtoEtemp = numpy.average( resultDict['down'][ 'node' + str(i) ]['E_E'] )
311 resultDict['down'][ 'node' + str(i) ][ 'Ave' ][ 'E_E' ] = EtoEtemp
312 if maxDict['down']['max'] < EtoEtemp:
313 # get max End to End latency
314 maxDict['down']['max'] = EtoEtemp
315 maxDict['down']['node'] = i
316 resultDict['down']['node' + str(i)]['Ave']['FA_A'] = numpy.average(resultDict['down']['node' + str(i)]['FA_A'])
317 resultDict['down']['node' + str(i)]['Ave']['A_D'] = numpy.average(resultDict['down']['node' + str(i)]['A_D'])
318 resultDict['down']['node' + str(i)]['Ave']['D_G'] = numpy.average(resultDict['down']['node' + str(i)]['D_G'])
cameron@onlab.us21106ea2015-07-23 15:32:51 -0700319
YPZhang38fb1192016-08-11 11:03:38 -0700320 resultDict['down'][ 'node' + str(i) ][ 'Std' ][ 'E_E' ] = numpy.std( resultDict['down'][ 'node' + str(i) ]['E_E'] )
321 resultDict['down']['node' + str(i)]['Std']['FA_A'] = numpy.std(resultDict['down']['node' + str(i)]['FA_A'])
322 resultDict['down']['node' + str(i)]['Std']['A_D'] = numpy.std(resultDict['down']['node' + str(i)]['A_D'])
323 resultDict['down']['node' + str(i)]['Std']['D_G'] = numpy.std(resultDict['down']['node' + str(i)]['D_G'])
Jon Hall4ba53f02015-07-29 13:07:41 -0700324
YPZhang38fb1192016-08-11 11:03:38 -0700325 main.log.report( "=====node{} Summary:=====".format( str(i) ) )
326 main.log.report( "=============Switch up=======" )
Jon Hall4ba53f02015-07-29 13:07:41 -0700327
YPZhang38fb1192016-08-11 11:03:38 -0700328 main.log.report(
329 "End to End average: {}".format( str(resultDict["up"][ 'node' + str(i) ][ 'Ave' ][ 'E_E' ]) ) )
330 main.log.report(
331 "End to End Std: {}".format( str(resultDict["up"][ 'node' + str(i) ][ 'Std' ][ 'E_E' ]) ) )
Jon Hall4ba53f02015-07-29 13:07:41 -0700332
YPZhang38fb1192016-08-11 11:03:38 -0700333 main.log.report(
334 "TCP to Feature average: {}".format( str(resultDict["up"][ 'node' + str(i) ][ 'Ave' ][ 'T_F' ]) ) )
335 main.log.report(
336 "TCP to Feature Std: {}".format( str(resultDict["up"][ 'node' + str(i) ][ 'Std' ][ 'T_F' ]) ) )
Jon Hall4ba53f02015-07-29 13:07:41 -0700337
YPZhang38fb1192016-08-11 11:03:38 -0700338 main.log.report(
339 "Feature to Role average: {}".format( str(resultDict["up"][ 'node' + str(i) ][ 'Ave' ][ 'F_R' ]) ) )
340 main.log.report(
341 "Feature to Role Std: {}".format( str(resultDict["up"][ 'node' + str(i) ][ 'Std' ][ 'F_R' ]) ) )
cameron@onlab.us21106ea2015-07-23 15:32:51 -0700342
YPZhang38fb1192016-08-11 11:03:38 -0700343 main.log.report(
344 "Role request to Role reply average: {}".format( str(resultDict["up"][ 'node' + str(i) ][ 'Ave' ][ 'RQ_RR' ]) ) )
345 main.log.report(
346 "Role request to Role reply Std: {}".format( str(resultDict["up"][ 'node' + str(i) ][ 'Std' ][ 'RQ_RR' ]) ) )
cameron@onlab.us21106ea2015-07-23 15:32:51 -0700347
YPZhang38fb1192016-08-11 11:03:38 -0700348 main.log.report(
349 "Role reply to Device average: {}".format( str(resultDict["up"][ 'node' + str(i) ][ 'Ave' ][ 'RR_D' ]) ) )
350 main.log.report(
351 "Role reply to Device Std: {}".format( str(resultDict["up"][ 'node' + str(i) ][ 'Std' ][ 'RR_D' ]) ) )
Jon Hall4ba53f02015-07-29 13:07:41 -0700352
YPZhang38fb1192016-08-11 11:03:38 -0700353 main.log.report(
354 "Device to Graph average: {}".format( str(resultDict["up"][ 'node' + str(i) ][ 'Ave' ][ 'D_G' ]) ) )
355 main.log.report(
356 "Device to Graph Std: {}".format( str(resultDict["up"][ 'node' + str(i) ][ 'Std' ][ 'D_G' ]) ) )
cameron@onlab.us21106ea2015-07-23 15:32:51 -0700357
YPZhang38fb1192016-08-11 11:03:38 -0700358 main.log.report( "=============Switch down=======" )
Jon Hall4ba53f02015-07-29 13:07:41 -0700359
YPZhang38fb1192016-08-11 11:03:38 -0700360 main.log.report(
361 "End to End average: {}".format( str(resultDict["down"][ 'node' + str(i) ][ 'Ave' ][ 'E_E' ]) ) )
362 main.log.report(
363 "End to End Std: {}".format( str(resultDict["down"][ 'node' + str(i) ][ 'Std' ][ 'E_E' ]) ) )
Jon Hall4ba53f02015-07-29 13:07:41 -0700364
YPZhang38fb1192016-08-11 11:03:38 -0700365 main.log.report(
366 "Fin_ACK to ACK average: {}".format( str(resultDict["down"][ 'node' + str(i) ][ 'Ave' ][ 'FA_A' ]) ) )
367 main.log.report(
368 "Fin_ACK to ACK Std: {}".format( str(resultDict["down"][ 'node' + str(i) ][ 'Std' ][ 'FA_A' ]) ) )
Jon Hall4ba53f02015-07-29 13:07:41 -0700369
YPZhang38fb1192016-08-11 11:03:38 -0700370 main.log.report(
371 "ACK to Device average: {}".format( str(resultDict["down"][ 'node' + str(i) ][ 'Ave' ][ 'A_D' ]) ) )
372 main.log.report(
373 "ACK to Device Std: {}".format( str(resultDict["down"][ 'node' + str(i) ][ 'Std' ][ 'A_D' ]) ) )
cameron@onlab.us21106ea2015-07-23 15:32:51 -0700374
YPZhang38fb1192016-08-11 11:03:38 -0700375 main.log.report(
376 "Device to Graph average: {}".format( str(resultDict["down"][ 'node' + str(i) ][ 'Ave' ][ 'D_G' ]) ) )
377 main.log.report(
378 "Device to Graph Std: {}".format( str(resultDict["down"][ 'node' + str(i) ][ 'Std' ][ 'D_G' ]) ) )
Jon Hall4ba53f02015-07-29 13:07:41 -0700379
YPZhang38fb1192016-08-11 11:03:38 -0700380 with open(main.dbFileName, "a") as dbFile:
381 # TODO: Save STD to Database
382 # Scale number
383 temp = str(main.numCtrls)
384 temp += ",'baremetal1'"
385 # put result
386 temp += "," + str( "%.2f" % resultDict['up'][ 'node' + str(maxDict['up']['node']) ][ 'Ave' ][ 'E_E' ] )
387 temp += "," + str( "%.2f" % resultDict['up'][ 'node' + str(maxDict['up']['node']) ][ 'Ave' ][ 'T_F' ] )
388 temp += "," + str( "%.2f" % resultDict['up'][ 'node' + str(maxDict['up']['node']) ][ 'Ave' ][ 'F_R' ] )
389 temp += "," + str( "%.2f" % resultDict['up'][ 'node' + str(maxDict['up']['node']) ][ 'Ave' ][ 'RQ_RR' ] )
390 temp += "," + str( "%.2f" % resultDict['up'][ 'node' + str(maxDict['up']['node']) ][ 'Ave' ][ 'RR_D' ] )
391 temp += "," + str( "%.2f" % resultDict['up'][ 'node' + str(maxDict['up']['node']) ][ 'Ave' ][ 'D_G' ] )
cameron@onlab.us21106ea2015-07-23 15:32:51 -0700392
YPZhang38fb1192016-08-11 11:03:38 -0700393 temp += "," + str( "%.2f" % resultDict['down'][ 'node' + str(maxDict['down']['node']) ][ 'Ave' ][ 'E_E' ] )
394 temp += "," + str( "%.2f" % resultDict['down'][ 'node' + str(maxDict['down']['node']) ][ 'Ave' ][ 'FA_A' ] )
395 temp += "," + str( "%.2f" % resultDict['down'][ 'node' + str(maxDict['down']['node']) ][ 'Ave' ][ 'A_D' ] )
396 temp += "," + str( "%.2f" % resultDict['down'][ 'node' + str(maxDict['down']['node']) ][ 'Ave' ][ 'D_G' ] )
chengchiyuc6f4cc02016-08-24 14:04:20 -0700397
398 temp += "," + str( "%.2f" % resultDict['up'][ 'node' + str(maxDict['up']['node']) ][ 'Std' ][ 'E_E' ] )
399 temp += "," + str( "%.2f" % resultDict['down'][ 'node' + str(maxDict['down']['node']) ][ 'Std' ][ 'E_E' ] )
400
YPZhang38fb1192016-08-11 11:03:38 -0700401 temp += "\n"
402 dbFile.write( temp )
403 dbFile.close()