blob: 045f5e761ab91a187867b9cc7e7da61f8a0f509e [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 -070030has_flow_obj = 1
31database_host = 2
32database_port = 3
33database_u_id = 4
34database_pw = 5
35test_name = 6
36branch_name = 7
37old_flow = 8
38save_directory = 9
Jeremy Ronquillo6df87812017-08-28 16:17:36 +000039
Jeremy Ronquillo6df87812017-08-28 16:17:36 +000040print( "Reading commmand-line args." )
41args <- commandArgs( trailingOnly=TRUE )
42
Jeremy Ronquillo7673f802017-10-30 09:42:44 -070043# ----------------
44# Import Libraries
45# ----------------
46
Jeremy Ronquillo6df87812017-08-28 16:17:36 +000047print( "Importing libraries." )
48library( ggplot2 )
49library( reshape2 )
50library( RPostgreSQL ) # For databases
51
Jeremy Ronquillo7673f802017-10-30 09:42:44 -070052# -------------------
53# Check CLI Arguments
54# -------------------
55
56print( "Verifying CLI args." )
57
Devin Lim0e967162017-11-03 15:59:53 -070058if ( is.na( args[ save_directory ] ) ){
Jeremy Ronquillo7673f802017-10-30 09:42:44 -070059 print( paste( "Usage: Rscript SCPFInstalledIntentsFlows",
60 "<has-flowObj>",
61 "<database-host>",
62 "<database-port>",
63 "<database-user-id>",
64 "<database-password>",
65 "<test-name>",
66 "<branch-name>",
Devin Lim0e967162017-11-03 15:59:53 -070067 "<using-old-flow>",
Jeremy Ronquillo7673f802017-10-30 09:42:44 -070068 "<directory-to-save-graphs>",
69 sep=" " ) )
70
Jeremy Ronquillo9ea85d02017-11-27 10:21:03 -080071 quit( status = 1 ) # basically exit(), but in R
Jeremy Ronquillo6df87812017-08-28 16:17:36 +000072}
73
Jeremy Ronquillo7673f802017-10-30 09:42:44 -070074# -----------------
75# Create File Names
76# -----------------
Jeremy Ronquillo6df87812017-08-28 16:17:36 +000077
Jeremy Ronquillo7673f802017-10-30 09:42:44 -070078print( "Creating filenames and title of graph." )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +000079
Jeremy Ronquillo7673f802017-10-30 09:42:44 -070080fileFlowObjModifier <- ""
81sqlFlowObjModifier <- ""
82chartTitle <- "Number of Installed Intents & Flows"
Jeremy Ronquillo6df87812017-08-28 16:17:36 +000083
Devin Lim0e967162017-11-03 15:59:53 -070084if ( args[ has_flow_obj ] == "y" ){
Jeremy Ronquillo7673f802017-10-30 09:42:44 -070085 fileFlowObjModifier <- "_flowObj"
86 sqlFlowObjModifier <- "fobj_"
Jeremy Ronquillo4363d092017-10-13 13:28:47 -070087 chartTitle <- "Number of Installed Intents & Flows\n with Flow Objectives"
Jeremy Ronquillo6df87812017-08-28 16:17:36 +000088}
Devin Lim0e967162017-11-03 15:59:53 -070089fileOldFlowModifier <- ""
90if ( args[ old_flow ] == 'y' ){
91 fileOldFlowModifier <- "_OldFlow"
Devin Lim1bba7622017-11-14 16:31:41 -080092 chartTitle <- paste( chartTitle, "With Eventually Consistent Flow Rule Store", sep="\n" )
Devin Lim0e967162017-11-03 15:59:53 -070093}
Jeremy Ronquillo6df87812017-08-28 16:17:36 +000094
Devin Lim0e967162017-11-03 15:59:53 -070095outputFile <- paste( args[ save_directory ],
96 args[ test_name ],
Jeremy Ronquillo7673f802017-10-30 09:42:44 -070097 fileFlowObjModifier,
Devin Lim0e967162017-11-03 15:59:53 -070098 fileOldFlowModifier,
Jeremy Ronquillo7673f802017-10-30 09:42:44 -070099 "_",
Devin Lim0e967162017-11-03 15:59:53 -0700100 args[ branch_name ],
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700101 "_errGraph.jpg",
102 sep="" )
103
104# ------------------
105# SQL Initialization
106# ------------------
107
108print( "Initializing SQL" )
109
110con <- dbConnect( dbDriver( "PostgreSQL" ),
111 dbname = "onostest",
Devin Lim0e967162017-11-03 15:59:53 -0700112 host = args[ database_host ],
113 port = strtoi( args[ database_port ] ),
114 user = args[ database_u_id ],
115 password = args[ database_pw ] )
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700116
117# -------------------------------
118# Scaling Max Intents SQL Command
119# -------------------------------
120
121print( "Scaling Max Intents SQL Command" )
122
123command <- paste( "SELECT * FROM max_intents_",
124 sqlFlowObjModifier,
125 "tests WHERE branch = '",
Devin Lim0e967162017-11-03 15:59:53 -0700126 args[ branch_name ],
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700127 "' AND date IN ( SELECT MAX( date ) FROM max_intents_",
128 sqlFlowObjModifier,
129 "tests WHERE branch = '",
Devin Lim0e967162017-11-03 15:59:53 -0700130 args[ branch_name ],
131 "' AND ",
132 ( if( args[ old_flow ] == 'y' ) "" else "NOT " ),
133 "is_old_flow",
134 " ) ",
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700135 sep="" )
136
137print( "Sending SQL command:" )
138print( command )
139fileData <- dbGetQuery( con, command )
140
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000141# **********************************************************
142# STEP 2: Organize data.
143# **********************************************************
144
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700145print( "**********************************************************" )
146print( "STEP 2: Organize Data." )
147print( "**********************************************************" )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000148
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700149# ------------
150# Data Sorting
151# ------------
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000152
153print( "Sorting data." )
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700154
Jeremy Ronquillo9ea85d02017-11-27 10:21:03 -0800155requiredColumns <- c( "max_intents_ovs", "max_flows_ovs" )
156
157tryCatch( avgs <- c( fileData[ requiredColumns] ),
158 error = function( e ) {
159 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." )
160 print( "Required columns: " )
161 print( requiredColumns )
162 print( "Actual columns: " )
163 print( names( fileData ) )
164 print( "Error dump:" )
165 print( e )
166 quit( status = 1 )
167 }
168 )
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700169
170# --------------------
171# Construct Data Frame
172# --------------------
173
174print( "Constructing Data Frame" )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000175
176dataFrame <- melt( avgs )
177dataFrame$scale <- fileData$scale
178
179colnames( dataFrame ) <- c( "ms", "type", "scale" )
180
181dataFrame$type <- as.character( dataFrame$type )
182dataFrame$type <- factor( dataFrame$type, levels=unique( dataFrame$type ) )
183
Jeremy Ronquillo2d2649d2017-09-14 12:53:06 -0700184dataFrame <- na.omit( dataFrame ) # Omit any data that doesn't exist
185
186print( "Data Frame Results:" )
187print( dataFrame )
188
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000189# **********************************************************
190# STEP 3: Generate graphs.
191# **********************************************************
192
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700193print( "**********************************************************" )
194print( "STEP 3: Generate Graph." )
195print( "**********************************************************" )
196
197# ------------------
198# Generate Main Plot
199# ------------------
200
201print( "Creating main plot." )
202mainPlot <- ggplot( data = dataFrame, aes( x = scale,
203 y = ms,
204 fill = type ) )
205
206# ------------------------------
207# Fundamental Variables Assigned
208# ------------------------------
209
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000210print( "Generating fundamental graph data." )
211
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700212barWidth <- 1.3
Jeremy Ronquillo0e27b912017-10-21 14:34:24 -0700213theme_set( theme_grey( base_size = 22 ) ) # set the default text size of the graph.
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700214xScaleConfig <- scale_x_continuous( breaks=c( 1, 3, 5, 7, 9 ) )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000215xLabel <- xlab( "Scale" )
216yLabel <- ylab( "Max Number of Intents/Flow Rules" )
217fillLabel <- labs( fill="Type" )
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700218imageWidth <- 15
219imageHeight <- 10
220imageDPI <- 200
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000221
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700222theme <- theme( plot.title = element_text( hjust = 0.5, size = 32, face = 'bold' ),
223 legend.position = "bottom",
224 legend.text = element_text( size=22 ),
225 legend.title = element_blank(),
Jeremy Ronquillo94f99dd2018-01-05 11:11:27 -0800226 legend.key.size = unit( 1.5, 'lines' ),
227 plot.subtitle = element_text( size=16, hjust=1.0 ) )
228
229subtitle <- paste( "Last Updated: ", format( Sys.time(), format = "%b %d, %Y at %I:%M %p %Z" ), sep="" )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000230
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700231colors <- scale_fill_manual( values = c( "#F77670",
232 "#619DFA" ) )
233
234wrapLegend <- guides( fill = guide_legend( nrow = 1, byrow = TRUE ) )
Jeremy Ronquillo94f99dd2018-01-05 11:11:27 -0800235
236title <- labs( title = chartTitle, subtitle = subtitle )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000237
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700238fundamentalGraphData <- mainPlot +
239 xScaleConfig +
240 xLabel +
241 yLabel +
242 fillLabel +
243 theme +
244 wrapLegend +
245 title +
246 colors
247
248# ---------------------------
249# Generating Bar Graph Format
250# ---------------------------
251
252print( "Generating bar graph." )
253
254barGraphFormat <- geom_bar( stat = "identity",
255 position = position_dodge(),
256 width = barWidth )
257
258values <- geom_text( aes( x = dataFrame$scale,
259 y = dataFrame$ms + 0.015 * max( dataFrame$ms ),
260 label = format( dataFrame$ms,
261 digits=3,
262 big.mark = ",",
263 scientific = FALSE ) ),
264 size = 5.2,
265 fontface = "bold",
266 position = position_dodge( width = 1.25 ) )
267
268result <- fundamentalGraphData +
269 barGraphFormat +
270 values
271
272# -----------------------
273# Exporting Graph to File
274# -----------------------
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000275
276print( paste( "Saving bar chart to", outputFile ) )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000277
Jeremy Ronquillo9ea85d02017-11-27 10:21:03 -0800278tryCatch( ggsave( outputFile,
279 width = imageWidth,
280 height = imageHeight,
281 dpi = imageDPI ),
282 error = function( e ){
283 print( "[ERROR] There was a problem saving the graph due to a graph formatting exception. Error dump:" )
284 print( e )
285 quit( status = 1 )
286 }
287 )
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700288
289print( paste( "[SUCCESS] Successfully wrote bar chart out to", outputFile ) )
Jeremy Ronquillo9ea85d02017-11-27 10:21:03 -0800290quit( status = 0 )