blob: ba84be4f08c3b506e162afbd28042283082b8123 [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# This is the R script that generates the SCPF front page graphs.
24
Jeremy Ronquillo7673f802017-10-30 09:42:44 -070025
Jeremy Ronquillo6df87812017-08-28 16:17:36 +000026# **********************************************************
27# STEP 1: Data management.
28# **********************************************************
29
Devin Lim0e967162017-11-03 15:59:53 -070030database_host = 1
31database_port = 2
32database_u_id = 3
33database_pw = 4
34graph_title = 5
35branch_name = 6
36num_dates = 7
37sql_commands = 8
38y_axis = 9
39old_flow = 10
40save_directory = 11
41
Jeremy Ronquillo7673f802017-10-30 09:42:44 -070042print( "**********************************************************" )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +000043print( "STEP 1: Data management." )
Jeremy Ronquillo7673f802017-10-30 09:42:44 -070044print( "**********************************************************" )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +000045
Jeremy Ronquillo7673f802017-10-30 09:42:44 -070046# ----------------
47# Import Libraries
48# ----------------
49
Jeremy Ronquillo6df87812017-08-28 16:17:36 +000050print( "Importing libraries." )
51library( ggplot2 )
52library( reshape2 )
53library( RPostgreSQL )
54
Jeremy Ronquillo7673f802017-10-30 09:42:44 -070055# -------------------
56# Check CLI Arguments
57# -------------------
58
59print( "Verifying CLI args." )
60
Jeremy Ronquillo6df87812017-08-28 16:17:36 +000061# Command line arguments are read. Args include the database credentials, test name, branch name, and the directory to output files.
62print( "Reading commmand-line args." )
63args <- commandArgs( trailingOnly=TRUE )
64
65# Check if sufficient args are provided.
Devin Lim0e967162017-11-03 15:59:53 -070066if ( is.na( args[ save_directory ] ) ){
Jeremy Ronquillo7673f802017-10-30 09:42:44 -070067
68 print( paste( "Usage: Rscript testresultgraph.R",
69 "<database-host>",
70 "<database-port>",
71 "<database-user-id>",
72 "<database-password>",
73 "<graph-title>", # part of the output filename as well
74 "<branch-name>", # part of the output filename
75 "<#-dates>", # part of the output filename
76 "<SQL-command>",
77 "<y-axis-title>", # y-axis may be different among other SCPF graphs (ie: batch size, latency, etc. )
Devin Lim0e967162017-11-03 15:59:53 -070078 "<using-old-flow>",
Jeremy Ronquillo7673f802017-10-30 09:42:44 -070079 "<directory-to-save-graph>",
80 sep = " " ) )
Jeremy Ronquillo9ea85d02017-11-27 10:21:03 -080081 quit( status = 1 ) # basically exit(), but in R
Jeremy Ronquillo6df87812017-08-28 16:17:36 +000082}
83
Jeremy Ronquillo7673f802017-10-30 09:42:44 -070084# -------------------------------
85# Create Title and Graph Filename
86# -------------------------------
Jeremy Ronquillo6df87812017-08-28 16:17:36 +000087
Jeremy Ronquillo7673f802017-10-30 09:42:44 -070088print( "Creating title of graph" )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +000089
90# Title of graph based on command line args.
Devin Lim0e967162017-11-03 15:59:53 -070091
92title <- args[ graph_title ]
Devin Lim1bba7622017-11-14 16:31:41 -080093title <- paste( title, if( args[ old_flow ] == "y" ) "\nWith Eventually Consistent Flow Rule Store" else "" )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +000094
Jeremy Ronquillo7673f802017-10-30 09:42:44 -070095print( "Creating graph filename." )
96
97# Filenames for the output graph include the testname, branch, and the graph type.
Devin Lim0e967162017-11-03 15:59:53 -070098outputFile <- paste( args[ save_directory ],
Jeremy Ronquillo7673f802017-10-30 09:42:44 -070099 "SCPF_Front_Page_",
Devin Lim0e967162017-11-03 15:59:53 -0700100 gsub( " ", "_", args[ graph_title ] ),
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700101 "_",
Devin Lim0e967162017-11-03 15:59:53 -0700102 args[ branch_name ],
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700103 "_",
Devin Lim0e967162017-11-03 15:59:53 -0700104 args[ num_dates ],
105 "-dates",
106 if( args[ old_flow ] == "y" ) "_OldFlow" else "",
107 "_graph.jpg",
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700108 sep="" )
109
110# ------------------
111# SQL Initialization
112# ------------------
113
114print( "Initializing SQL" )
115con <- dbConnect( dbDriver( "PostgreSQL" ),
116 dbname = "onostest",
Devin Lim0e967162017-11-03 15:59:53 -0700117 host = args[ database_host ],
118 port = strtoi( args[ database_port ] ),
119 user = args[ database_u_id ],
120 password = args[ database_pw ] )
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700121
122print( "Sending SQL command:" )
Devin Lim0e967162017-11-03 15:59:53 -0700123print( args[ sql_commands ] )
124fileData <- dbGetQuery( con, args[ sql_commands ] )
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700125
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000126# **********************************************************
127# STEP 2: Organize data.
128# **********************************************************
129
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700130print( "**********************************************************" )
131print( "STEP 2: Organize Data." )
132print( "**********************************************************" )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000133
134# Create lists c() and organize data into their corresponding list.
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700135print( "Combine data retrieved from databases into a list." )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000136
Jeremy Ronquillo9ea85d02017-11-27 10:21:03 -0800137tryCatch( if ( ncol( fileData ) > 1 ){
138 for ( i in 2:ncol( fileData ) ){
139 fileData[ i ] <- fileData[ i - 1 ] + fileData[ i ]
140 }
141 },
142 error = function( e ) {
143 print( "[ERROR] One or more expected columns are missing or invalid. Please check that the SQL command is valid, then try again." )
144 print( "Actual columns: " )
145 print( names( fileData ) )
146 print( "Error dump:" )
147 print( e )
148 quit( status = 1 )
149 }
150 )
151
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000152
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700153# --------------------
154# Construct Data Frame
155# --------------------
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000156
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700157print( "Constructing data frame from combined data." )
158
159dataFrame <- melt( fileData )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000160dataFrame$date <- fileData$date
161
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700162colnames( dataFrame ) <- c( "Legend",
163 "Values" )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000164
165# Format data frame so that the data is in the same order as it appeared in the file.
166dataFrame$Legend <- as.character( dataFrame$Legend )
167dataFrame$Legend <- factor( dataFrame$Legend, levels=unique( dataFrame$Legend ) )
168
Jeremy Ronquillo2d2649d2017-09-14 12:53:06 -0700169# Adding a temporary iterative list to the dataFrame so that there are no gaps in-between date numbers.
170dataFrame$iterative <- rev( seq( 1, nrow( fileData ), by = 1 ) )
171
172dataFrame <- na.omit( dataFrame ) # Omit any data that doesn't exist
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000173
174print( "Data Frame Results:" )
175print( dataFrame )
176
177# **********************************************************
178# STEP 3: Generate graphs.
179# **********************************************************
180
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700181print( "**********************************************************" )
182print( "STEP 3: Generate Graph." )
183print( "**********************************************************" )
184
185# -------------------
186# Main Plot Generated
187# -------------------
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000188
189print( "Creating main plot." )
190# Create the primary plot here.
191# ggplot contains the following arguments:
192# - data: the data frame that the graph will be based off of
193# - aes: the asthetics of the graph which require:
194# - x: x-axis values (usually iterative, but it will become date # later)
195# - y: y-axis values (usually tests)
196# - color: the category of the colored lines (usually legend of test)
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700197
198mainPlot <- ggplot( data = dataFrame, aes( x = iterative,
199 y = Values,
200 color = Legend ) )
201
202# -------------------
203# Main Plot Formatted
204# -------------------
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000205
206print( "Formatting main plot." )
207
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700208limitExpansion <- expand_limits( y = 0 )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000209
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700210maxYDisplay <- max( dataFrame$Values ) * 1.05
211yBreaks <- ceiling( max( dataFrame$Values ) / 10 )
212yScaleConfig <- scale_y_continuous( breaks = seq( 0, maxYDisplay, by = yBreaks ) )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000213
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700214# ------------------------------
215# Fundamental Variables Assigned
216# ------------------------------
217
218print( "Generating fundamental graph data." )
219
220theme_set( theme_grey( base_size = 22 ) ) # set the default text size of the graph.
221xLabel <- xlab( "Build" )
Devin Lim0e967162017-11-03 15:59:53 -0700222yLabel <- ylab( args[ y_axis ] )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000223
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700224imageWidth <- 15
225imageHeight <- 10
226imageDPI <- 200
227
228# Set other graph configurations here.
229theme <- theme( axis.text.x = element_blank(),
230 axis.ticks.x = element_blank(),
231 plot.title = element_text( size = 32, face='bold', hjust = 0.5 ),
232 legend.position = "bottom",
233 legend.text = element_text( size=22 ),
234 legend.title = element_blank(),
235 legend.key.size = unit( 1.5, 'lines' ),
236 legend.direction = 'horizontal' )
237
238# Colors used for the lines.
239# Note: graphs that have X lines will use the first X colors in this list.
240colors <- scale_color_manual( values=c( "#111111", # black
241 "#008CFF", # blue
242 "#FF3700", # red
243 "#00E043", # green
244 "#EEB600", # yellow
245 "#E500FF") ) # purple (not used)
246
247wrapLegend <- guides( color = guide_legend( nrow = 2, byrow = TRUE ) )
248title <- ggtitle( title )
249
250fundamentalGraphData <- mainPlot +
251 limitExpansion +
252 yScaleConfig +
253 xLabel +
254 yLabel +
255 theme +
256 colors +
257 wrapLegend +
258 title
259
260# ----------------------------
261# Generating Line Graph Format
262# ----------------------------
263
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000264print( "Generating line graph." )
265
Jeremy Ronquilloe9063762017-10-17 15:36:09 -0700266lineGraphFormat <- geom_line( size = 0.75 )
267pointFormat <- geom_point( size = 1.75 )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000268
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700269result <- fundamentalGraphData +
270 lineGraphFormat +
271 pointFormat
Jeremy Ronquillo0e27b912017-10-21 14:34:24 -0700272
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700273# -----------------------
274# Exporting Graph to File
275# -----------------------
276
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000277print( paste( "Saving result graph to", outputFile ) )
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700278
Jeremy Ronquillo9ea85d02017-11-27 10:21:03 -0800279tryCatch( ggsave( outputFile,
280 width = imageWidth,
281 height = imageHeight,
282 dpi = imageDPI ),
283 error = function( e ){
284 print( "[ERROR] There was a problem saving the graph due to a graph formatting exception. Error dump:" )
285 print( e )
286 quit( status = 1 )
287 }
288 )
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700289
290print( paste( "[SUCCESS] Successfully wrote result graph out to", outputFile ) )
Jeremy Ronquillo9ea85d02017-11-27 10:21:03 -0800291quit( status = 0 )