blob: aed27e596810bb013c1d0f33e7580fac1d76399c [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 Ronquillo6df87812017-08-28 16:17:36 +000071 q() # basically exit(), but in R
72}
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
155avgs <- c( fileData[ 'max_intents_ovs' ],
156 fileData[ 'max_flows_ovs' ] )
157
158# --------------------
159# Construct Data Frame
160# --------------------
161
162print( "Constructing Data Frame" )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000163
164dataFrame <- melt( avgs )
165dataFrame$scale <- fileData$scale
166
167colnames( dataFrame ) <- c( "ms", "type", "scale" )
168
169dataFrame$type <- as.character( dataFrame$type )
170dataFrame$type <- factor( dataFrame$type, levels=unique( dataFrame$type ) )
171
Jeremy Ronquillo2d2649d2017-09-14 12:53:06 -0700172dataFrame <- na.omit( dataFrame ) # Omit any data that doesn't exist
173
174print( "Data Frame Results:" )
175print( dataFrame )
176
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000177# **********************************************************
178# STEP 3: Generate graphs.
179# **********************************************************
180
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700181print( "**********************************************************" )
182print( "STEP 3: Generate Graph." )
183print( "**********************************************************" )
184
185# ------------------
186# Generate Main Plot
187# ------------------
188
189print( "Creating main plot." )
190mainPlot <- ggplot( data = dataFrame, aes( x = scale,
191 y = ms,
192 fill = type ) )
193
194# ------------------------------
195# Fundamental Variables Assigned
196# ------------------------------
197
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000198print( "Generating fundamental graph data." )
199
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700200barWidth <- 1.3
Jeremy Ronquillo0e27b912017-10-21 14:34:24 -0700201theme_set( theme_grey( base_size = 22 ) ) # set the default text size of the graph.
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700202xScaleConfig <- scale_x_continuous( breaks=c( 1, 3, 5, 7, 9 ) )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000203xLabel <- xlab( "Scale" )
204yLabel <- ylab( "Max Number of Intents/Flow Rules" )
205fillLabel <- labs( fill="Type" )
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700206imageWidth <- 15
207imageHeight <- 10
208imageDPI <- 200
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000209
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700210theme <- theme( plot.title = element_text( hjust = 0.5, size = 32, face = 'bold' ),
211 legend.position = "bottom",
212 legend.text = element_text( size=22 ),
213 legend.title = element_blank(),
214 legend.key.size = unit( 1.5, 'lines' ) )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000215
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700216colors <- scale_fill_manual( values = c( "#F77670",
217 "#619DFA" ) )
218
219wrapLegend <- guides( fill = guide_legend( nrow = 1, byrow = TRUE ) )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000220title <- ggtitle( chartTitle )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000221
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700222fundamentalGraphData <- mainPlot +
223 xScaleConfig +
224 xLabel +
225 yLabel +
226 fillLabel +
227 theme +
228 wrapLegend +
229 title +
230 colors
231
232# ---------------------------
233# Generating Bar Graph Format
234# ---------------------------
235
236print( "Generating bar graph." )
237
238barGraphFormat <- geom_bar( stat = "identity",
239 position = position_dodge(),
240 width = barWidth )
241
242values <- geom_text( aes( x = dataFrame$scale,
243 y = dataFrame$ms + 0.015 * max( dataFrame$ms ),
244 label = format( dataFrame$ms,
245 digits=3,
246 big.mark = ",",
247 scientific = FALSE ) ),
248 size = 5.2,
249 fontface = "bold",
250 position = position_dodge( width = 1.25 ) )
251
252result <- fundamentalGraphData +
253 barGraphFormat +
254 values
255
256# -----------------------
257# Exporting Graph to File
258# -----------------------
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000259
260print( paste( "Saving bar chart to", outputFile ) )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000261
Jeremy Ronquillo7673f802017-10-30 09:42:44 -0700262ggsave( outputFile,
263 width = imageWidth,
264 height = imageHeight,
265 dpi = imageDPI )
266
267print( paste( "[SUCCESS] Successfully wrote bar chart out to", outputFile ) )