blob: 9c75ef5cd0ef6d3b4b488c29693d087dab116b8d [file] [log] [blame]
Jeremy Ronquillob27ce4c2017-07-17 12:41:28 -07001"""
2Copyright 2015 Open Networking Foundation (ONF)
3
4Please refer questions to either the onos test mailing list at <onos-test@onosproject.org>,
5the System Testing Plans and Results wiki page at <https://wiki.onosproject.org/x/voMg>,
6or the System Testing Guide page at <https://wiki.onosproject.org/x/WYQg>
7
8 TestON is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 2 of the License, or
11 (at your option) any later version.
12
13 TestON is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with TestON. If not, see <http://www.gnu.org/licenses/>.
20"""
21
YPZhang38fb1192016-08-11 11:03:38 -070022'''
23 SCPFswitchLat
24 Test Switch add/remove latency
25 calculate package latency between switch and ONOS
26 Switch UP:
27 TCP -- Feature Reply -- Role Request -- Role Reply -- Device -- Graph
28 Siwtch Down:
29 Openflow FIN/ACK -- ACK -- Device -- Graph
30'''
cameron@onlab.us21106ea2015-07-23 15:32:51 -070031
32class SCPFswitchLat:
33
Devin Lim142b5342017-07-20 15:22:39 -070034 def __init__( self ):
cameron@onlab.us21106ea2015-07-23 15:32:51 -070035 self.default = ''
36
YPZhang38fb1192016-08-11 11:03:38 -070037 def CASE0( self, main ):
cameron@onlab.us21106ea2015-07-23 15:32:51 -070038 import os
YPZhang38fb1192016-08-11 11:03:38 -070039 import imp
40 '''
41 - GIT
42 - BUILDING ONOS
43 Pull specific ONOS branch, then Build ONOS ono ONOS Bench.
44 This step is usually skipped. Because in a Jenkins driven automated
45 test env. We want Jenkins jobs to pull&build for flexibility to handle
46 different versions of ONOS.
47 - Construct tests variables
48 '''
Devin Lim58046fa2017-07-05 16:55:00 -070049 try:
50 from tests.dependencies.ONOSSetup import ONOSSetup
51 main.testSetUp = ONOSSetup()
52 except ImportError:
53 main.log.error( "ONOSSetup not found. exiting the test" )
54 main.exit()
55 main.testSetUp.envSetupDescription()
56 stepResult = main.FALSE
57 try:
58 # The dictionary to record different type of wrongs
59 main.wrong = { 'totalWrong': 0, 'skipDown' : 0, 'TsharkValueIncorrect': 0,
60 'TypeError' : 0, 'decodeJasonError': 0,
Devin Lim142b5342017-07-20 15:22:39 -070061 'checkResultIncorrect': 0 }
62 main.maxWrong = int( main.params[ 'TEST' ] [ 'MaxWrong' ] )
63 main.resultRange = main.params[ 'TEST' ][ 'ResultRange' ]
64 main.searchTerm = main.params[ 'TEST' ][ 'SearchTerm' ]
65 main.MN1Ip = main.params[ 'MN' ][ 'ip1' ]
Devin Lim58046fa2017-07-05 16:55:00 -070066 main.dependencyPath = main.testOnDirectory + \
Devin Lim142b5342017-07-20 15:22:39 -070067 main.params[ 'DEPENDENCY' ][ 'path' ]
68 main.topoName = main.params[ 'DEPENDENCY' ][ 'topology' ]
69 main.dependencyFunc = main.params[ 'DEPENDENCY' ][ 'function' ]
70 main.cellName = main.params[ 'ENV' ][ 'cellName' ]
71 main.apps = main.params[ 'ENV' ][ 'cellApps' ]
72 main.scale = ( main.params[ 'SCALE' ] ).split( "," )
YPZhang38fb1192016-08-11 11:03:38 -070073
Devin Lim142b5342017-07-20 15:22:39 -070074 main.ofPackage = main.params[ 'TSHARK' ]
75 main.defaultTopoCfg = main.params [ 'CFG' ][ 'defaultTopo' ]
76 main.tsharkResultPath = main.params[ 'TEST' ][ 'tsharkResultPath' ]
77 main.sampleSize = int( main.params[ 'TEST' ][ 'sampleSize' ] )
78 main.warmUp = int( main.params[ 'TEST' ][ 'warmUp' ] )
79 main.dbFileName = main.params[ 'DATABASE' ][ 'dbName' ]
80 main.startUpSleep = int( main.params[ 'SLEEP' ][ 'startup' ] )
81 main.measurementSleep = int( main.params[ 'SLEEP' ][ 'measure' ] )
82 main.deleteSwSleep = int( main.params[ 'SLEEP' ][ 'deleteSW' ] )
83 main.maxScale = int( main.params[ 'max' ] )
84 main.timeout = int( main.params[ 'TIMEOUT' ][ 'timeout' ] )
85 main.MNSleep = int( main.params[ 'SLEEP' ][ 'mininet' ] )
86 main.device = main.params[ 'TEST' ][ 'device' ]
87 stepResult = main.testSetUp.envSetup()
88 main.log.info( "Create Database file " + main.dbFileName )
89 resultsDB = open( main.dbFileName, "w+" )
Devin Lim58046fa2017-07-05 16:55:00 -070090 resultsDB.close()
YPZhang38fb1192016-08-11 11:03:38 -070091
Devin Lim142b5342017-07-20 15:22:39 -070092 main.switchFunc = imp.load_source( main.dependencyFunc,
Devin Lim58046fa2017-07-05 16:55:00 -070093 main.dependencyPath +
94 main.dependencyFunc +
Devin Lim142b5342017-07-20 15:22:39 -070095 ".py" )
Devin Lim58046fa2017-07-05 16:55:00 -070096 except Exception as e:
97 main.testSetUp.envSetupException( e )
98 main.testSetUp.evnSetupConclusion( stepResult )
99 main.commit = main.commit.split( " " )[ 1 ]
Devin Lim142b5342017-07-20 15:22:39 -0700100 def CASE1( self, main ):
YPZhang38fb1192016-08-11 11:03:38 -0700101 # Clean up test environment and set up
cameron@onlab.us21106ea2015-07-23 15:32:51 -0700102 import time
Devin Lim58046fa2017-07-05 16:55:00 -0700103 try:
104 from tests.dependencies.utils import Utils
105 except ImportError:
106 main.log.error( "Utils not found exiting the test" )
YPZhang38fb1192016-08-11 11:03:38 -0700107 main.exit()
Devin Lim58046fa2017-07-05 16:55:00 -0700108 try:
109 main.Utils
110 except ( NameError, AttributeError ):
111 main.Utils = Utils()
112 main.maxNumBatch = 0
Devin Lim142b5342017-07-20 15:22:39 -0700113 main.testSetUp.ONOSSetUp( main.Mininet1, main.Cluster, True,
114 cellName=main.cellName, killRemoveMax=False )
YPZhang38fb1192016-08-11 11:03:38 -0700115
Devin Lim142b5342017-07-20 15:22:39 -0700116 main.log.info( "Configure apps" )
117 main.Cluster.active( 0 ).CLI.setCfg( main.defaultTopoCfg,
118 "maxEvents 1" )
119 main.Cluster.active( 0 ).CLI.setCfg( main.defaultTopoCfg,
120 "maxBatchMs 0" )
121 main.Cluster.active( 0 ).CLI.setCfg( main.defaultTopoCfg,
122 "maxIdleMs 0" )
123 main.Cluster.command( "logSet",
124 args=[ "DEBUG", "org.onosproject.metrics.topology" ],
125 specificDriver=2 )
126 time.sleep( 1 )
YPZhang38fb1192016-08-11 11:03:38 -0700127
Devin Lim142b5342017-07-20 15:22:39 -0700128 main.log.info( "Copy topology file to Mininet" )
129 main.ONOSbench.copyMininetFile( main.topoName,
130 main.dependencyPath,
131 main.Mininet1.user_name,
132 main.Mininet1.ip_address )
Devin Lim58046fa2017-07-05 16:55:00 -0700133 main.Utils.mininetCleanup( main.Mininet1 )
Devin Lim142b5342017-07-20 15:22:39 -0700134 time.sleep( main.MNSleep )
135 main.log.info( "Start new mininet topology" )
cameron@onlab.us21106ea2015-07-23 15:32:51 -0700136 main.Mininet1.startNet()
Devin Lim142b5342017-07-20 15:22:39 -0700137 main.log.info( "Assign switch to controller to ONOS node 1" )
cameron@onlab.us21106ea2015-07-23 15:32:51 -0700138
Devin Lim142b5342017-07-20 15:22:39 -0700139 time.sleep( 2 )
cameron@onlab.us21106ea2015-07-23 15:32:51 -0700140
Devin Lim142b5342017-07-20 15:22:39 -0700141 def CASE2( self, main ):
cameron@onlab.us21106ea2015-07-23 15:32:51 -0700142 import time
cameron@onlab.us21106ea2015-07-23 15:32:51 -0700143 import json
cameron@onlab.us21106ea2015-07-23 15:32:51 -0700144 import numpy
145
Devin Lim142b5342017-07-20 15:22:39 -0700146 resultDict = { 'up' : {}, 'down' : {} }
147 for i in range( 1, main.Cluster.numCtrls + 1 ):
148 resultDict[ 'up' ][ 'node' + str( i ) ] = {}
149 resultDict[ 'up' ][ 'node' + str( i ) ][ 'Ave' ] = {}
150 resultDict[ 'up' ][ 'node' + str( i ) ][ 'Std' ] = {}
151 resultDict[ 'up' ][ 'node' + str( i ) ][ 'T_F' ] = []#TCP to Feature
152 resultDict[ 'up' ][ 'node' + str( i ) ][ 'F_R' ] = []#Feature to Role
153 resultDict[ 'up' ][ 'node' + str( i ) ][ 'RQ_RR' ] = []#role request to role reply
154 resultDict[ 'up' ][ 'node' + str( i ) ][ 'RR_D' ] = []#role reply to Device
155 resultDict[ 'up' ][ 'node' + str( i ) ][ 'D_G' ] = []#Device to Graph
156 resultDict[ 'up' ][ 'node' + str( i ) ][ 'E_E' ] = []#TCP to Graph
Jon Hall4ba53f02015-07-29 13:07:41 -0700157
Devin Lim142b5342017-07-20 15:22:39 -0700158 for i in range( 1, main.Cluster.numCtrls + 1 ):
159 resultDict[ 'down' ][ 'node' + str( i ) ] = {}
160 resultDict[ 'down' ][ 'node' + str( i ) ][ 'Ave' ] = {}
161 resultDict[ 'down' ][ 'node' + str( i ) ][ 'Std' ] = {}
162 resultDict[ 'down' ][ 'node' + str( i ) ][ 'FA_A' ] = []#Fin_ack to ACK
163 resultDict[ 'down' ][ 'node' + str( i ) ][ 'A_D' ] = []#Ack to Device
164 resultDict[ 'down' ][ 'node' + str( i ) ][ 'D_G' ] = []#Device to Graph
165 resultDict[ 'down' ][ 'node' + str( i ) ][ 'E_E' ] = []#fin_ack to Graph
166 for i in range( 1 , main.sampleSize + main.warmUp ):
167 main.log.info( "************************************************************" )
168 main.log.info( "************************ Iteration: {} **********************" .format( str( i ) ) )
YPZhang38fb1192016-08-11 11:03:38 -0700169 if i < main.warmUp:
170 main.switchFunc.captureOfPack( main, main.device, main.ofPackage,
171 "up", resultDict, True )
172 main.switchFunc.captureOfPack( main, main.device, main.ofPackage,
173 "down", resultDict, True )
Devin Lim142b5342017-07-20 15:22:39 -0700174 main.Cluster.active( 0 ).CLI.removeDevice( "of:0000000000000001" )
cameron@onlab.us21106ea2015-07-23 15:32:51 -0700175 else:
YPZhang38fb1192016-08-11 11:03:38 -0700176 main.switchFunc.captureOfPack( main, main.device, main.ofPackage,
177 "up", resultDict, False )
Devin Lim142b5342017-07-20 15:22:39 -0700178 main.switchFunc.captureOfPack ( main, main.device, main.ofPackage,
YPZhang38fb1192016-08-11 11:03:38 -0700179 "down", resultDict, False )
Devin Lim142b5342017-07-20 15:22:39 -0700180 main.Cluster.active( 0 ).CLI.removeDevice( "of:0000000000000001" )
chengchiyu08303a02016-09-08 17:40:26 -0700181
YPZhang38fb1192016-08-11 11:03:38 -0700182 # Dictionary for result
183 maxDict = {}
Devin Lim142b5342017-07-20 15:22:39 -0700184 maxDict[ 'down' ] = {}
185 maxDict[ 'up' ] = {}
186 maxDict[ 'down' ][ 'max' ] = 0
187 maxDict[ 'up' ][ 'max' ] = 0
188 maxDict[ 'down' ][ 'node' ] = 0
189 maxDict[ 'up' ][ 'node' ] = 0
Jon Hall4ba53f02015-07-29 13:07:41 -0700190
Devin Lim142b5342017-07-20 15:22:39 -0700191 for i in range( 1, main.Cluster.numCtrls + 1 ):
YPZhang38fb1192016-08-11 11:03:38 -0700192 # calculate average and std for result, and grep the max End to End data
Devin Lim142b5342017-07-20 15:22:39 -0700193 EtoEtemp = numpy.average( resultDict[ 'up' ][ 'node' + str( i ) ][ 'E_E' ] )
194 resultDict[ 'up' ][ 'node' + str( i ) ][ 'Ave' ][ 'E_E' ] = EtoEtemp
195 if maxDict[ 'up' ][ 'max' ] < EtoEtemp:
YPZhang38fb1192016-08-11 11:03:38 -0700196 # get max End to End latency
Devin Lim142b5342017-07-20 15:22:39 -0700197 maxDict[ 'up' ][ 'max' ] = EtoEtemp
198 maxDict[ 'up' ][ 'node' ] = i
199 resultDict[ 'up' ][ 'node' + str( i ) ][ 'Ave' ][ 'T_F' ] = numpy.average( resultDict[ 'up' ][ 'node' + str( i ) ][ 'T_F' ] )
200 resultDict[ 'up' ][ 'node' + str( i ) ][ 'Ave' ][ 'F_R' ] = numpy.average( resultDict[ 'up' ][ 'node' + str( i ) ][ 'F_R' ] )
201 resultDict[ 'up' ][ 'node' + str( i ) ][ 'Ave' ][ 'RQ_RR' ] = numpy.average( resultDict[ 'up' ][ 'node' + str( i ) ][ 'RQ_RR' ] )
202 resultDict[ 'up' ][ 'node' + str( i ) ][ 'Ave' ][ 'RR_D' ] = numpy.average( resultDict[ 'up' ][ 'node' + str( i ) ][ 'RR_D' ] )
203 resultDict[ 'up' ][ 'node' + str( i ) ][ 'Ave' ][ 'D_G' ] = numpy.average( resultDict[ 'up' ][ 'node' + str( i ) ][ 'D_G' ] )
Jon Hall4ba53f02015-07-29 13:07:41 -0700204
Devin Lim142b5342017-07-20 15:22:39 -0700205 resultDict[ 'up' ][ 'node' + str( i ) ][ 'Std' ][ 'E_E' ] = numpy.std( resultDict[ 'up' ][ 'node' + str( i ) ][ 'E_E' ] )
206 resultDict[ 'up' ][ 'node' + str( i ) ][ 'Std' ][ 'T_F' ] = numpy.std( resultDict[ 'up' ][ 'node' + str( i ) ][ 'T_F' ] )
207 resultDict[ 'up' ][ 'node' + str( i ) ][ 'Std' ][ 'F_R' ] = numpy.std( resultDict[ 'up' ][ 'node' + str( i ) ][ 'F_R' ] )
208 resultDict[ 'up' ][ 'node' + str( i ) ][ 'Std' ][ 'RQ_RR' ] = numpy.std( resultDict[ 'up' ][ 'node' + str( i ) ][ 'RQ_RR' ] )
209 resultDict[ 'up' ][ 'node' + str( i ) ][ 'Std' ][ 'RR_D' ] = numpy.std( resultDict[ 'up' ][ 'node' + str( i ) ][ 'RR_D' ] )
210 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 -0700211
YPZhang38fb1192016-08-11 11:03:38 -0700212 # calculate average and std for result, and grep the max End to End data
Devin Lim142b5342017-07-20 15:22:39 -0700213 EtoEtemp = numpy.average( resultDict[ 'down' ][ 'node' + str( i ) ][ 'E_E' ] )
214 resultDict[ 'down' ][ 'node' + str( i ) ][ 'Ave' ][ 'E_E' ] = EtoEtemp
215 if maxDict[ 'down' ][ 'max' ] < EtoEtemp:
YPZhang38fb1192016-08-11 11:03:38 -0700216 # get max End to End latency
Devin Lim142b5342017-07-20 15:22:39 -0700217 maxDict[ 'down' ][ 'max' ] = EtoEtemp
218 maxDict[ 'down' ][ 'node' ] = i
219 resultDict[ 'down' ][ 'node' + str( i ) ][ 'Ave' ][ 'FA_A' ] = numpy.average( resultDict[ 'down' ][ 'node' + str( i ) ][ 'FA_A' ] )
220 resultDict[ 'down' ][ 'node' + str( i ) ][ 'Ave' ][ 'A_D' ] = numpy.average( resultDict[ 'down' ][ 'node' + str( i ) ][ 'A_D' ] )
221 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 -0700222
Devin Lim142b5342017-07-20 15:22:39 -0700223 resultDict[ 'down' ][ 'node' + str( i ) ][ 'Std' ][ 'E_E' ] = numpy.std( resultDict[ 'down' ][ 'node' + str( i ) ][ 'E_E' ] )
224 resultDict[ 'down' ][ 'node' + str( i ) ][ 'Std' ][ 'FA_A' ] = numpy.std( resultDict[ 'down' ][ 'node' + str( i ) ][ 'FA_A' ] )
225 resultDict[ 'down' ][ 'node' + str( i ) ][ 'Std' ][ 'A_D' ] = numpy.std( resultDict[ 'down' ][ 'node' + str( i ) ][ 'A_D' ] )
226 resultDict[ 'down' ][ 'node' + str( i ) ][ 'Std' ][ 'D_G' ] = numpy.std( resultDict[ 'down' ][ 'node' + str( i ) ][ 'D_G' ] )
Jon Hall4ba53f02015-07-29 13:07:41 -0700227
Devin Lim142b5342017-07-20 15:22:39 -0700228 main.log.report( "=====node{} Summary:=====".format( str( i ) ) )
YPZhang38fb1192016-08-11 11:03:38 -0700229 main.log.report( "=============Switch up=======" )
Jon Hall4ba53f02015-07-29 13:07:41 -0700230
YPZhang38fb1192016-08-11 11:03:38 -0700231 main.log.report(
Devin Lim142b5342017-07-20 15:22:39 -0700232 "End to End average: {}".format( str( resultDict[ "up" ][ 'node' + str( i ) ][ 'Ave' ][ 'E_E' ] ) ) )
YPZhang38fb1192016-08-11 11:03:38 -0700233 main.log.report(
Devin Lim142b5342017-07-20 15:22:39 -0700234 "End to End Std: {}".format( str( resultDict[ "up" ][ 'node' + str( i ) ][ 'Std' ][ 'E_E' ] ) ) )
Jon Hall4ba53f02015-07-29 13:07:41 -0700235
YPZhang38fb1192016-08-11 11:03:38 -0700236 main.log.report(
Devin Lim142b5342017-07-20 15:22:39 -0700237 "TCP to Feature average: {}".format( str( resultDict[ "up" ][ 'node' + str( i ) ][ 'Ave' ][ 'T_F' ] ) ) )
YPZhang38fb1192016-08-11 11:03:38 -0700238 main.log.report(
Devin Lim142b5342017-07-20 15:22:39 -0700239 "TCP to Feature Std: {}".format( str( resultDict[ "up" ][ 'node' + str( i ) ][ 'Std' ][ 'T_F' ] ) ) )
Jon Hall4ba53f02015-07-29 13:07:41 -0700240
YPZhang38fb1192016-08-11 11:03:38 -0700241 main.log.report(
Devin Lim142b5342017-07-20 15:22:39 -0700242 "Feature to Role average: {}".format( str( resultDict[ "up" ][ 'node' + str( i ) ][ 'Ave' ][ 'F_R' ] ) ) )
YPZhang38fb1192016-08-11 11:03:38 -0700243 main.log.report(
Devin Lim142b5342017-07-20 15:22:39 -0700244 "Feature to Role Std: {}".format( str( resultDict[ "up" ][ 'node' + str( i ) ][ 'Std' ][ 'F_R' ] ) ) )
cameron@onlab.us21106ea2015-07-23 15:32:51 -0700245
YPZhang38fb1192016-08-11 11:03:38 -0700246 main.log.report(
Devin Lim142b5342017-07-20 15:22:39 -0700247 "Role request to Role reply average: {}".format( str( resultDict[ "up" ][ 'node' + str( i ) ][ 'Ave' ][ 'RQ_RR' ] ) ) )
YPZhang38fb1192016-08-11 11:03:38 -0700248 main.log.report(
Devin Lim142b5342017-07-20 15:22:39 -0700249 "Role request to Role reply Std: {}".format( str( resultDict[ "up" ][ 'node' + str( i ) ][ 'Std' ][ 'RQ_RR' ] ) ) )
cameron@onlab.us21106ea2015-07-23 15:32:51 -0700250
YPZhang38fb1192016-08-11 11:03:38 -0700251 main.log.report(
Devin Lim142b5342017-07-20 15:22:39 -0700252 "Role reply to Device average: {}".format( str( resultDict[ "up" ][ 'node' + str( i ) ][ 'Ave' ][ 'RR_D' ] ) ) )
YPZhang38fb1192016-08-11 11:03:38 -0700253 main.log.report(
Devin Lim142b5342017-07-20 15:22:39 -0700254 "Role reply to Device Std: {}".format( str( resultDict[ "up" ][ 'node' + str( i ) ][ 'Std' ][ 'RR_D' ] ) ) )
Jon Hall4ba53f02015-07-29 13:07:41 -0700255
YPZhang38fb1192016-08-11 11:03:38 -0700256 main.log.report(
Devin Lim142b5342017-07-20 15:22:39 -0700257 "Device to Graph average: {}".format( str( resultDict[ "up" ][ 'node' + str( i ) ][ 'Ave' ][ 'D_G' ] ) ) )
YPZhang38fb1192016-08-11 11:03:38 -0700258 main.log.report(
Devin Lim142b5342017-07-20 15:22:39 -0700259 "Device to Graph Std: {}".format( str( resultDict[ "up" ][ 'node' + str( i ) ][ 'Std' ][ 'D_G' ] ) ) )
cameron@onlab.us21106ea2015-07-23 15:32:51 -0700260
YPZhang38fb1192016-08-11 11:03:38 -0700261 main.log.report( "=============Switch down=======" )
Jon Hall4ba53f02015-07-29 13:07:41 -0700262
YPZhang38fb1192016-08-11 11:03:38 -0700263 main.log.report(
Devin Lim142b5342017-07-20 15:22:39 -0700264 "End to End average: {}".format( str( resultDict[ "down" ][ 'node' + str( i ) ][ 'Ave' ][ 'E_E' ] ) ) )
YPZhang38fb1192016-08-11 11:03:38 -0700265 main.log.report(
Devin Lim142b5342017-07-20 15:22:39 -0700266 "End to End Std: {}".format( str( resultDict[ "down" ][ 'node' + str( i ) ][ 'Std' ][ 'E_E' ] ) ) )
Jon Hall4ba53f02015-07-29 13:07:41 -0700267
YPZhang38fb1192016-08-11 11:03:38 -0700268 main.log.report(
Devin Lim142b5342017-07-20 15:22:39 -0700269 "Fin_ACK to ACK average: {}".format( str( resultDict[ "down" ][ 'node' + str( i ) ][ 'Ave' ][ 'FA_A' ] ) ) )
YPZhang38fb1192016-08-11 11:03:38 -0700270 main.log.report(
Devin Lim142b5342017-07-20 15:22:39 -0700271 "Fin_ACK to ACK Std: {}".format( str( resultDict[ "down" ][ 'node' + str( i ) ][ 'Std' ][ 'FA_A' ] ) ) )
Jon Hall4ba53f02015-07-29 13:07:41 -0700272
YPZhang38fb1192016-08-11 11:03:38 -0700273 main.log.report(
Devin Lim142b5342017-07-20 15:22:39 -0700274 "ACK to Device average: {}".format( str( resultDict[ "down" ][ 'node' + str( i ) ][ 'Ave' ][ 'A_D' ] ) ) )
YPZhang38fb1192016-08-11 11:03:38 -0700275 main.log.report(
Devin Lim142b5342017-07-20 15:22:39 -0700276 "ACK to Device Std: {}".format( str( resultDict[ "down" ][ 'node' + str( i ) ][ 'Std' ][ 'A_D' ] ) ) )
cameron@onlab.us21106ea2015-07-23 15:32:51 -0700277
YPZhang38fb1192016-08-11 11:03:38 -0700278 main.log.report(
Devin Lim142b5342017-07-20 15:22:39 -0700279 "Device to Graph average: {}".format( str( resultDict[ "down" ][ 'node' + str( i ) ][ 'Ave' ][ 'D_G' ] ) ) )
YPZhang38fb1192016-08-11 11:03:38 -0700280 main.log.report(
Devin Lim142b5342017-07-20 15:22:39 -0700281 "Device to Graph Std: {}".format( str( resultDict[ "down" ][ 'node' + str( i ) ][ 'Std' ][ 'D_G' ] ) ) )
Jon Hall4ba53f02015-07-29 13:07:41 -0700282
Devin Lim142b5342017-07-20 15:22:39 -0700283 with open( main.dbFileName, "a" ) as dbFile:
YPZhang38fb1192016-08-11 11:03:38 -0700284 # TODO: Save STD to Database
285 # Scale number
Devin Lim142b5342017-07-20 15:22:39 -0700286 temp = str( main.Cluster.numCtrls )
YPZhang38fb1192016-08-11 11:03:38 -0700287 temp += ",'baremetal1'"
288 # put result
Devin Lim142b5342017-07-20 15:22:39 -0700289 temp += "," + str( "%.2f" % resultDict[ 'up' ][ 'node' + str( maxDict[ 'up' ][ 'node' ] ) ][ 'Ave' ][ 'E_E' ] )
290 temp += "," + str( "%.2f" % resultDict[ 'up' ][ 'node' + str( maxDict[ 'up' ][ 'node' ] ) ][ 'Ave' ][ 'T_F' ] )
291 temp += "," + str( "%.2f" % resultDict[ 'up' ][ 'node' + str( maxDict[ 'up' ][ 'node' ] ) ][ 'Ave' ][ 'F_R' ] )
292 temp += "," + str( "%.2f" % resultDict[ 'up' ][ 'node' + str( maxDict[ 'up' ][ 'node' ] ) ][ 'Ave' ][ 'RQ_RR' ] )
293 temp += "," + str( "%.2f" % resultDict[ 'up' ][ 'node' + str( maxDict[ 'up' ][ 'node' ] ) ][ 'Ave' ][ 'RR_D' ] )
294 temp += "," + str( "%.2f" % resultDict[ 'up' ][ 'node' + str( maxDict[ 'up' ][ 'node' ] ) ][ 'Ave' ][ 'D_G' ] )
cameron@onlab.us21106ea2015-07-23 15:32:51 -0700295
Devin Lim142b5342017-07-20 15:22:39 -0700296 temp += "," + str( "%.2f" % resultDict[ 'down' ][ 'node' + str( maxDict[ 'down' ][ 'node' ] ) ][ 'Ave' ][ 'E_E' ] )
297 temp += "," + str( "%.2f" % resultDict[ 'down' ][ 'node' + str( maxDict[ 'down' ][ 'node' ] ) ][ 'Ave' ][ 'FA_A' ] )
298 temp += "," + str( "%.2f" % resultDict[ 'down' ][ 'node' + str( maxDict[ 'down' ][ 'node' ] ) ][ 'Ave' ][ 'A_D' ] )
299 temp += "," + str( "%.2f" % resultDict[ 'down' ][ 'node' + str( maxDict[ 'down' ][ 'node' ] ) ][ 'Ave' ][ 'D_G' ] )
chengchiyuc6f4cc02016-08-24 14:04:20 -0700300
Devin Lim142b5342017-07-20 15:22:39 -0700301 temp += "," + str( "%.2f" % resultDict[ 'up' ][ 'node' + str( maxDict[ 'up' ][ 'node' ] ) ][ 'Std' ][ 'E_E' ] )
302 temp += "," + str( "%.2f" % resultDict[ 'down' ][ 'node' + str( maxDict[ 'down' ][ 'node' ] ) ][ 'Std' ][ 'E_E' ] )
chengchiyuc6f4cc02016-08-24 14:04:20 -0700303
YPZhang38fb1192016-08-11 11:03:38 -0700304 temp += "\n"
305 dbFile.write( temp )
306 dbFile.close()