blob: 86290dba80fd6864a824e5ff295ce56e0be9168f [file] [log] [blame]
Jeremy Ronquillo6df87812017-08-28 16:17:36 +00001# Copyright 2017 Open Networking Foundation (ONF)
2#
3# Please refer questions to either the onos test mailing list at <onos-test@onosproject.org>,
4# the System Testing Plans and Results wiki page at <https://wiki.onosproject.org/x/voMg>,
5# or the System Testing Guide page at <https://wiki.onosproject.org/x/WYQg>
6#
7# TestON is free software: you can redistribute it and/or modify
8# it under the terms of the GNU General Public License as published by
9# the Free Software Foundation, either version 2 of the License, or
10# (at your option) any later version.
11#
12# TestON is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU General Public License for more details.
16#
17# You should have received a copy of the GNU General Public License
18# along with TestON. If not, see <http://www.gnu.org/licenses/>.
19#
20# If you have any questions, or if you don't understand R,
Jeremy Ronquillob6268842017-10-03 13:02:58 -070021# please contact Jeremy Ronquillo: j_ronquillo@u.pacific.edu
Jeremy Ronquillo6df87812017-08-28 16:17:36 +000022
23# **********************************************************
Jeremy Ronquillo7673f802017-10-30 09:42:44 -070024# STEP 1: Data management.
Jeremy Ronquillo6df87812017-08-28 16:17:36 +000025# **********************************************************
26
Jeremy Ronquillo7673f802017-10-30 09:42:44 -070027print( "**********************************************************" )
28print( "STEP 1: Data management." )
29print( "**********************************************************" )
Devin Lim0e967162017-11-03 15:59:53 -070030database_host = 1
31database_port = 2
32database_u_id = 3
33database_pw = 4
34test_name = 5
35branch_name = 6
36save_directory = 7
Jeremy Ronquillo6df87812017-08-28 16:17:36 +000037
Jeremy Ronquillob6268842017-10-03 13:02:58 -070038# Command line arguments are read.
Jeremy Ronquillo6df87812017-08-28 16:17:36 +000039print( "Reading commmand-line args." )
40args <- commandArgs( trailingOnly=TRUE )
41
Jeremy Ronquillo7673f802017-10-30 09:42:44 -070042# ----------------
43# Import Libraries
44# ----------------
45
Jeremy Ronquillo6df87812017-08-28 16:17:36 +000046print( "Importing libraries." )
47library( ggplot2 )
48library( reshape2 )
49library( RPostgreSQL ) # For databases
50
Jeremy Ronquillo7673f802017-10-30 09:42:44 -070051# -------------------
52# Check CLI Arguments
53# -------------------
54
55print( "Verifying CLI args." )
56
Devin Lim0e967162017-11-03 15:59:53 -070057if ( is.na( args[ save_directory ] ) ){
Jeremy Ronquillo7673f802017-10-30 09:42:44 -070058
59 print( paste( "Usage: Rscript SCPFswitchLat",
60 "<database-host>",
61 "<database-port>",
62 "<database-user-id>",
63 "<database-password>",
64 "<test-name>",
65 "<branch-name>",
66 "<directory-to-save-graphs>",
67 sep=" ") )
68
Jeremy Ronquillo9ea85d02017-11-27 10:21:03 -080069 quit( status = 1 ) # basically exit(), but in R
Jeremy Ronquillo6df87812017-08-28 16:17:36 +000070}
71
Jeremy Ronquillo7673f802017-10-30 09:42:44 -070072# -----------------
73# Create File Names
74# -----------------
Jeremy Ronquillo6df87812017-08-28 16:17:36 +000075
Jeremy Ronquillo7673f802017-10-30 09:42:44 -070076print( "Creating filenames and title of graph." )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +000077
Devin Lim0e967162017-11-03 15:59:53 -070078errBarOutputFileUp <- paste( args[ save_directory ],
Jeremy Ronquillo7673f802017-10-30 09:42:44 -070079 "SCPFswitchLat_",
Devin Lim0e967162017-11-03 15:59:53 -070080 args[ branch_name ],
Jeremy Ronquillo7673f802017-10-30 09:42:44 -070081 "_UpErrBarWithStack.jpg",
82 sep="" )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +000083
Devin Lim0e967162017-11-03 15:59:53 -070084errBarOutputFileDown <- paste( args[ save_directory ],
Jeremy Ronquillo7673f802017-10-30 09:42:44 -070085 "SCPFswitchLat_",
Devin Lim0e967162017-11-03 15:59:53 -070086 args[ branch_name ],
Jeremy Ronquillo7673f802017-10-30 09:42:44 -070087 "_DownErrBarWithStack.jpg",
88 sep="" )
89# ------------------
90# SQL Initialization
91# ------------------
Jeremy Ronquillo6df87812017-08-28 16:17:36 +000092
Jeremy Ronquillo7673f802017-10-30 09:42:44 -070093print( "Initializing SQL" )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +000094
Jeremy Ronquillo7673f802017-10-30 09:42:44 -070095con <- dbConnect( dbDriver( "PostgreSQL" ),
96 dbname = "onostest",
Devin Lim0e967162017-11-03 15:59:53 -070097 host = args[ database_host ],
98 port = strtoi( args[ database_port ] ),
99 user = args[ database_u_id ],
100 password = args[ database_pw ] )
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700101
102# --------------------------
103# Switch Latency SQL Command
104# --------------------------
105
106print( "Generating Switch Latency SQL Command" )
107
108command <- paste( "SELECT * FROM switch_latency_details WHERE branch = '",
Devin Lim0e967162017-11-03 15:59:53 -0700109 args[ branch_name ],
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700110 "' AND date IN ( SELECT MAX( date ) FROM switch_latency_details WHERE branch='",
Devin Lim0e967162017-11-03 15:59:53 -0700111 args[ branch_name ],
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700112 "' )",
113 sep="" )
114
115print( "Sending SQL command:" )
116print( command )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000117
118fileData <- dbGetQuery( con, command )
119
120# **********************************************************
121# STEP 2: Organize data.
122# **********************************************************
123
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700124print( "**********************************************************" )
125print( "STEP 2: Organize Data." )
126print( "**********************************************************" )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000127
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700128# -------------------------------
129# Switch Up Averages Data Sorting
130# -------------------------------
131
132print( "Sorting data for Switch Up Averages." )
133
Jeremy Ronquillo9ea85d02017-11-27 10:21:03 -0800134requiredColumns <- c( "up_device_to_graph_avg",
Devin Limf70bb3a2018-04-13 19:15:51 -0700135 "feature_reply_to_device_avg",
Jeremy Ronquillo9ea85d02017-11-27 10:21:03 -0800136 "tcp_to_feature_reply_avg" )
137
138tryCatch( upAvgs <- c( fileData[ requiredColumns] ),
139 error = function( e ) {
140 print( "[ERROR] One or more expected columns are missing from the data. Please check that the data and SQL command are valid, then try again." )
141 print( "Required columns: " )
142 print( requiredColumns )
143 print( "Actual columns: " )
144 print( names( fileData ) )
145 print( "Error dump:" )
146 print( e )
147 quit( status = 1 )
148 }
149 )
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700150
151# ------------------------------
152# Switch Up Construct Data Frame
153# ------------------------------
154
155print( "Constructing Switch Up data frame." )
156
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000157upAvgsData <- melt( upAvgs )
158upAvgsData$scale <- fileData$scale
159upAvgsData$up_std <- fileData$up_std
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700160upAvgsData <- na.omit( upAvgsData )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000161
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700162colnames( upAvgsData ) <- c( "ms",
163 "type",
164 "scale",
165 "stds" )
166
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000167upAvgsData$type <- as.character( upAvgsData$type )
168upAvgsData$type <- factor( upAvgsData$type, levels=unique( upAvgsData$type ) )
169
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700170sumOfUpAvgs <- fileData[ 'up_device_to_graph_avg' ] +
Devin Limf70bb3a2018-04-13 19:15:51 -0700171 fileData[ 'feature_reply_to_device_avg' ] +
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700172 fileData[ 'tcp_to_feature_reply_avg' ]
173
174print( "Up Averages Results:" )
175print( upAvgsData )
176
177# ---------------------------------
178# Switch Down Averages Data Sorting
179# ---------------------------------
180
181print( "Sorting data for Switch Down Averages." )
182
Jeremy Ronquillo9ea85d02017-11-27 10:21:03 -0800183requiredColumns <- c( "down_device_to_graph_avg",
184 "ack_to_device_avg",
185 "fin_ack_to_ack_avg" )
186
187tryCatch( downAvgs <- c( fileData[ requiredColumns] ),
188 error = function( e ) {
189 print( "[ERROR] One or more expected columns are missing from the data. Please check that the data and SQL command are valid, then try again." )
190 print( "Required columns: " )
191 print( requiredColumns )
192 print( "Actual columns: " )
193 print( names( fileData ) )
194 print( "Error dump:" )
195 print( e )
196 quit( status = 1 )
197 }
198 )
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700199
200# --------------------------------
201# Switch Down Construct Data Frame
202# --------------------------------
203
204print( "Constructing Switch Down data frame." )
205
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000206downAvgsData <- melt( downAvgs )
207downAvgsData$scale <- fileData$scale
208downAvgsData$down_std <- fileData$down_std
209
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700210colnames( downAvgsData ) <- c( "ms",
211 "type",
212 "scale",
213 "stds" )
214
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000215downAvgsData$type <- as.character( downAvgsData$type )
216downAvgsData$type <- factor( downAvgsData$type, levels=unique( downAvgsData$type ) )
217
Jeremy Ronquillo2d2649d2017-09-14 12:53:06 -0700218downAvgsData <- na.omit( downAvgsData )
219
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700220sumOfDownAvgs <- fileData[ 'down_device_to_graph_avg' ] +
221 fileData[ 'ack_to_device_avg' ] +
222 fileData[ 'fin_ack_to_ack_avg' ]
Jeremy Ronquillo2d2649d2017-09-14 12:53:06 -0700223
224print( "Down Averages Results:" )
225print( downAvgsData )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000226
227# **********************************************************
228# STEP 3: Generate graphs.
229# **********************************************************
230
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700231print( "**********************************************************" )
232print( "STEP 3: Generate Graph." )
233print( "**********************************************************" )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000234
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700235# ------------------------------------
236# Initialize Variables For Both Graphs
237# ------------------------------------
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000238
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700239print( "Initializing variables used in both graphs." )
Jeremy Ronquillo2d2649d2017-09-14 12:53:06 -0700240
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700241theme_set( theme_grey( base_size = 22 ) ) # set the default text size of the graphs
242xScaleConfig <- scale_x_continuous( breaks = c( 1, 3, 5, 7, 9 ) )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000243xLabel <- xlab( "Scale" )
244yLabel <- ylab( "Latency (ms)" )
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700245imageWidth <- 15
246imageHeight <- 10
247imageDPI <- 200
248errorBarColor <- rgb( 140, 140, 140, maxColorValue = 255 )
249barWidth <- 1
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000250
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700251theme <- theme( plot.title = element_text( hjust = 0.5, size = 32, face = 'bold' ),
252 legend.position = "bottom",
253 legend.text = element_text( size = 22 ),
254 legend.title = element_blank(),
Jeremy Ronquillo94f99dd2018-01-05 11:11:27 -0800255 legend.key.size = unit( 1.5, 'lines' ),
256 plot.subtitle = element_text( size=16, hjust=1.0 ) )
257
258subtitle <- paste( "Last Updated: ", format( Sys.time(), format = "%b %d, %Y at %I:%M %p %Z" ), sep="" )
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700259
260# ----------------------------
261# Switch Up Generate Main Plot
262# ----------------------------
263
264print( "Creating main plot (Switch Up Latency)." )
265
266mainPlot <- ggplot( data = upAvgsData, aes( x = scale,
267 y = ms,
268 fill = type,
269 ymin = fileData[ 'up_end_to_end_avg' ],
270 ymax = fileData[ 'up_end_to_end_avg' ] + stds ) )
271
272# ----------------------------------------
273# Switch Up Fundamental Variables Assigned
274# ----------------------------------------
275
276print( "Generating fundamental graph data (Switch Up Latency)." )
277
Jeremy Ronquillo94f99dd2018-01-05 11:11:27 -0800278title <- labs( title = "Switch Up Latency", subtitle = subtitle )
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700279
280fundamentalGraphData <- mainPlot +
281 xScaleConfig +
282 xLabel +
283 yLabel +
284 theme +
285 title
286
287# -------------------------------------
288# Switch Up Generating Bar Graph Format
289# -------------------------------------
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000290
291print( "Generating bar graph with error bars (Switch Up Latency)." )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000292
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700293barGraphFormat <- geom_bar( stat = "identity", width = barWidth )
294errorBarFormat <- geom_errorbar( width = barWidth, color = errorBarColor )
295
296barGraphValues <- geom_text( aes( x = upAvgsData$scale,
297 y = sumOfUpAvgs + 0.04 * max( sumOfUpAvgs ),
298 label = format( sumOfUpAvgs,
299 digits = 3,
300 big.mark = ",",
301 scientific = FALSE ) ),
302 size = 7.0,
303 fontface = "bold" )
304
305wrapLegend <- guides( fill = guide_legend( nrow = 2, byrow = TRUE ) )
306
307result <- fundamentalGraphData +
308 barGraphFormat +
309 errorBarFormat +
310 barGraphValues +
311 wrapLegend
312
313# ---------------------------------
314# Switch Up Exporting Graph to File
315# ---------------------------------
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000316
317print( paste( "Saving bar chart with error bars (Switch Up Latency) to", errBarOutputFileUp ) )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000318
Jeremy Ronquillo9ea85d02017-11-27 10:21:03 -0800319tryCatch( ggsave( errBarOutputFileUp,
320 width = imageWidth,
321 height = imageHeight,
322 dpi = imageDPI ),
323 error = function( e ){
324 print( "[ERROR] There was a problem saving the graph due to a graph formatting exception. Error dump:" )
325 print( e )
326 quit( status = 1 )
327 }
328 )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000329
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700330print( paste( "[SUCCESS] Successfully wrote bar chart with error bars (Switch Up Latency) out to", errBarOutputFileUp ) )
331
332# ------------------------------
333# Switch Down Generate Main Plot
334# ------------------------------
335
336print( "Creating main plot (Switch Down Latency)." )
337
338mainPlot <- ggplot( data = downAvgsData, aes( x = scale,
339 y = ms,
340 fill = type,
341 ymin = fileData[ 'down_end_to_end_avg' ],
342 ymax = fileData[ 'down_end_to_end_avg' ] + stds ) )
343
344# ------------------------------------------
345# Switch Down Fundamental Variables Assigned
346# ------------------------------------------
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000347
348print( "Generating fundamental graph data (Switch Down Latency)." )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000349
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700350colors <- scale_fill_manual( values=c( "#F77670", # Red
351 "#619DFA", # Blue
352 "#18BA48" ) ) # Green
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000353
Jeremy Ronquillo94f99dd2018-01-05 11:11:27 -0800354title <- labs( title = "Switch Down Latency", subtitle = subtitle )
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700355
356fundamentalGraphData <- mainPlot +
357 xScaleConfig +
358 xLabel +
359 yLabel +
360 theme +
361 title
362
363# ---------------------------------------
364# Switch Down Generating Bar Graph Format
365# ---------------------------------------
366
367print( "Generating bar graph with error bars (Switch Down Latency)." )
368barGraphFormat <- geom_bar( stat = "identity", width = barWidth )
369errorBarFormat <- geom_errorbar( width = barWidth, color = errorBarColor )
370
371barGraphValues <- geom_text( aes( x = downAvgsData$scale,
372 y = sumOfDownAvgs + 0.04 * max( sumOfDownAvgs ),
373 label = format( sumOfDownAvgs,
374 digits = 3,
375 big.mark = ",",
376 scientific = FALSE ) ),
377 size = 7.0,
378 fontface = "bold" )
379
380wrapLegend <- guides( fill = guide_legend( nrow = 1, byrow = TRUE ) )
381
382result <- fundamentalGraphData +
383 barGraphFormat +
384 colors +
385 errorBarFormat +
386 barGraphValues +
387 wrapLegend
388
389# -----------------------------------
390# Switch Down Exporting Graph to File
391# -----------------------------------
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000392
393print( paste( "Saving bar chart with error bars (Switch Down Latency) to", errBarOutputFileDown ) )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000394
Jeremy Ronquillo9ea85d02017-11-27 10:21:03 -0800395tryCatch( ggsave( errBarOutputFileDown,
396 width = imageWidth,
397 height = imageHeight,
398 dpi = imageDPI ),
399 error = function( e ){
400 print( "[ERROR] There was a problem saving the graph due to a graph formatting exception. Error dump:" )
401 print( e )
402 quit( status = 1 )
403 }
404 )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000405
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700406print( paste( "[SUCCESS] Successfully wrote bar chart with error bars (Switch Down Latency) out to", errBarOutputFileDown ) )
Jeremy Ronquillo9ea85d02017-11-27 10:21:03 -0800407quit( status = 0 )