blob: b291551bf290e3b9032195f580a84efb86422746 [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.
Devin Lim0e967162017-11-03 15:59:53 -070025# **********************************************************\
Jeremy Ronquillo7673f802017-10-30 09:42:44 -070026print( "**********************************************************" )
27print( "STEP 1: Data management." )
28print( "**********************************************************" )
Devin Lim0e967162017-11-03 15:59:53 -070029database_host = 1
30database_port = 2
31database_u_id = 3
32database_pw = 4
33test_name = 5
34branch_name = 6
35save_directory = 7
Jeremy Ronquillo6df87812017-08-28 16:17:36 +000036
Jeremy Ronquillob6268842017-10-03 13:02:58 -070037# Command line arguments are read.
Jeremy Ronquillo6df87812017-08-28 16:17:36 +000038print( "Reading commmand-line args." )
39args <- commandArgs( trailingOnly=TRUE )
40
Jeremy Ronquillo7673f802017-10-30 09:42:44 -070041# ----------------
42# Import Libraries
43# ----------------
44
Jeremy Ronquillo6df87812017-08-28 16:17:36 +000045print( "Importing libraries." )
46library( ggplot2 )
47library( reshape2 )
48library( RPostgreSQL ) # For databases
49
Jeremy Ronquillo7673f802017-10-30 09:42:44 -070050# -------------------
51# Check CLI Arguments
52# -------------------
Jeremy Ronquillo6df87812017-08-28 16:17:36 +000053
Jeremy Ronquillo7673f802017-10-30 09:42:44 -070054print( "Verifying CLI args." )
55
Devin Lim0e967162017-11-03 15:59:53 -070056if ( is.na( args[ save_directory ] ) ){
Jeremy Ronquillo7673f802017-10-30 09:42:44 -070057
58 print( paste( "Usage: Rscript SCPFhostLat",
59 "<database-host>",
60 "<database-port>",
61 "<database-user-id>",
62 "<database-password>",
63 "<test-name>",
64 "<branch-name>",
65 "<directory-to-save-graphs>",
66 sep=" " ) )
67
Jeremy Ronquillo9ea85d02017-11-27 10:21:03 -080068 quit( status = 1 ) # basically exit(), but in R
Jeremy Ronquillo6df87812017-08-28 16:17:36 +000069}
70
Jeremy Ronquillo7673f802017-10-30 09:42:44 -070071# -----------------
72# Create File Names
73# -----------------
Jeremy Ronquillo6df87812017-08-28 16:17:36 +000074
Jeremy Ronquillo7673f802017-10-30 09:42:44 -070075print( "Creating filenames and title of graph." )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +000076
Devin Lim0e967162017-11-03 15:59:53 -070077errBarOutputFile <- paste( args[ save_directory ],
78 args[ test_name ],
Jeremy Ronquillo7673f802017-10-30 09:42:44 -070079 "_",
Devin Lim0e967162017-11-03 15:59:53 -070080 args[ branch_name ],
Jeremy Ronquillo7673f802017-10-30 09:42:44 -070081 "_errGraph.jpg",
82 sep="" )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +000083
84chartTitle <- "Host Latency"
Jeremy Ronquillo7673f802017-10-30 09:42:44 -070085# ------------------
86# SQL Initialization
87# ------------------
88
89print( "Initializing SQL" )
90
91con <- dbConnect( dbDriver( "PostgreSQL" ),
92 dbname = "onostest",
Devin Lim0e967162017-11-03 15:59:53 -070093 host = args[ database_host ],
94 port = strtoi( args[ database_port ] ),
95 user = args[ database_u_id ],
96 password = args[ database_pw ] )
Jeremy Ronquillo7673f802017-10-30 09:42:44 -070097
98# ------------------------
99# Host Latency SQL Command
100# ------------------------
101
102print( "Generating Host Latency SQL Command" )
103
104command <- paste( "SELECT * FROM host_latency_tests WHERE branch = '",
Devin Lim0e967162017-11-03 15:59:53 -0700105 args[ branch_name ],
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700106 "' AND date IN ( SELECT MAX( date ) FROM host_latency_tests WHERE branch = '",
Devin Lim0e967162017-11-03 15:59:53 -0700107 args[ branch_name ],
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700108 "' ) ",
109 sep = "" )
110
111print( "Sending SQL command:" )
112print( command )
113
114fileData <- dbGetQuery( con, command )
115
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000116
117# **********************************************************
118# STEP 2: Organize data.
119# **********************************************************
120
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700121print( "**********************************************************" )
122print( "STEP 2: Organize Data." )
123print( "**********************************************************" )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000124
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700125# ------------
126# Data Sorting
127# ------------
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000128
129print( "Sorting data." )
Jeremy Ronquillo9ea85d02017-11-27 10:21:03 -0800130
131requiredColumns <- c( "avg" )
132
133tryCatch( avgs <- c( fileData[ requiredColumns] ),
134 error = function( e ) {
135 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." )
136 print( "Required columns: " )
137 print( requiredColumns )
138 print( "Actual columns: " )
139 print( names( fileData ) )
140 print( "Error dump:" )
141 print( e )
142 quit( status = 1 )
143 }
144 )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000145
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700146# --------------------
147# Construct Data Frame
148# --------------------
149
150print( "Constructing Data Frame" )
151
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000152dataFrame <- melt( avgs )
153dataFrame$scale <- fileData$scale
154dataFrame$std <- fileData$std
155
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700156colnames( dataFrame ) <- c( "ms",
157 "type",
158 "scale",
159 "std" )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000160
Jeremy Ronquillo2d2649d2017-09-14 12:53:06 -0700161dataFrame <- na.omit( dataFrame ) # Omit any data that doesn't exist
162
163print( "Data Frame Results:" )
164print( dataFrame )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000165
166# **********************************************************
167# STEP 3: Generate graphs.
168# **********************************************************
169
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700170print( "**********************************************************" )
171print( "STEP 3: Generate Graph." )
172print( "**********************************************************" )
173
174# ------------------
175# Generate Main Plot
176# ------------------
177
178print( "Creating main plot." )
179
180mainPlot <- ggplot( data = dataFrame, aes( x = scale,
181 y = ms,
182 ymin = ms,
183 ymax = ms + std ) )
184
185# ------------------------------
186# Fundamental Variables Assigned
187# ------------------------------
188
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000189print( "Generating fundamental graph data." )
190
Jeremy Ronquillo0e27b912017-10-21 14:34:24 -0700191theme_set( theme_grey( base_size = 22 ) ) # set the default text size of the graph.
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700192xScaleConfig <- scale_x_continuous( breaks=c( 1, 3, 5, 7, 9 ) )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000193xLabel <- xlab( "Scale" )
194yLabel <- ylab( "Latency (ms)" )
195fillLabel <- labs( fill="Type" )
Jeremy Ronquillo94f99dd2018-01-05 11:11:27 -0800196theme <- theme( plot.title = element_text( hjust = 0.5, size = 32, face ='bold' ),
197 plot.subtitle = element_text( size=16, hjust=1.0 ) )
198
199subtitle <- paste( "Last Updated: ", format( Sys.time(), format = "%b %d, %Y at %I:%M %p %Z" ), sep="" )
200
201title <- labs( title = chartTitle, subtitle = subtitle )
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700202errorBarColor <- rgb( 140, 140, 140, maxColorValue = 255 )
203imageWidth <- 15
204imageHeight <- 10
205imageDPI <- 200
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000206
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700207fundamentalGraphData <- mainPlot +
208 xScaleConfig +
209 xLabel +
210 yLabel +
211 fillLabel +
212 theme +
213 title
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000214
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700215# ---------------------------
216# Generating Bar Graph Format
217# ---------------------------
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000218
219print( "Generating bar graph with error bars." )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000220
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700221barWidth <- 0.9
222barGraphFormat <- geom_bar( stat = "identity",
223 position = position_dodge(),
224 width = barWidth,
225 fill = "#A700EF" )
226
227errorBarFormat <- geom_errorbar( position = position_dodge(),
228 width = barWidth,
229 color = errorBarColor )
230
231values <- geom_text( aes( x=dataFrame$scale,
232 y=dataFrame$ms + 0.06 * max( dataFrame$ms ),
233 label = format( dataFrame$ms,
234 digits=3,
235 big.mark = ",",
236 scientific = FALSE ) ),
237 size = 7.0,
238 fontface = "bold" )
239
240result <- fundamentalGraphData +
241 barGraphFormat +
242 errorBarFormat +
243 values
244
245# -----------------------
246# Exporting Graph to File
247# -----------------------
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000248
249print( paste( "Saving bar chart with error bars to", errBarOutputFile ) )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000250
Jeremy Ronquillo9ea85d02017-11-27 10:21:03 -0800251tryCatch( ggsave( errBarOutputFile,
252 width = imageWidth,
253 height = imageHeight,
254 dpi = imageDPI ),
255 error = function( e ){
256 print( "[ERROR] There was a problem saving the graph due to a graph formatting exception. Error dump:" )
257 print( e )
258 quit( status = 1 )
259 }
260 )
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700261
Devin Lim0e967162017-11-03 15:59:53 -0700262print( paste( "[SUCCESS] Successfully wrote bar chart out to", errBarOutputFile ) )
Jeremy Ronquillo9ea85d02017-11-27 10:21:03 -0800263quit( status = 0 )