blob: 72f66c79ddab0271007a4e7588bd84de557f5c10 [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# **********************************************************
24# STEP 1: File management.
25# **********************************************************
26
27print( "STEP 1: File management." )
28
Jeremy Ronquillob6268842017-10-03 13:02:58 -070029# Command line arguments are read.
Jeremy Ronquillo6df87812017-08-28 16:17:36 +000030print( "Reading commmand-line args." )
31args <- commandArgs( trailingOnly=TRUE )
32
33# Import libraries to be used for graphing and organizing data, respectively.
34# Find out more about ggplot2: https://github.com/tidyverse/ggplot2
35# reshape2: https://github.com/hadley/reshape
36print( "Importing libraries." )
37library( ggplot2 )
38library( reshape2 )
39library( RPostgreSQL ) # For databases
40
41# Check if sufficient args are provided.
42if ( is.na( args[ 7 ] ) ){
43 print( "Usage: Rscript SCPFbatchFlowResp <database-host> <database-port> <database-user-id> <database-password> <test-name> <branch-name> <directory-to-save-graphs>" )
44 q() # basically exit(), but in R
45}
46
Jeremy Ronquillob6268842017-10-03 13:02:58 -070047# paste() is used to concatenate strings.
Jeremy Ronquillo6df87812017-08-28 16:17:36 +000048errBarOutputFile <- paste( args[ 7 ], args[ 5 ], sep="" )
49errBarOutputFile <- paste( errBarOutputFile, args[ 6 ], sep="_" )
50errBarOutputFile <- paste( errBarOutputFile, "_PostGraph.jpg", sep="" )
51
52print( "Reading from databases." )
53
54con <- dbConnect( dbDriver( "PostgreSQL" ), dbname="onostest", host=args[ 1 ], port=strtoi( args[ 2 ] ), user=args[ 3 ],password=args[ 4 ] )
55
56command <- paste( "SELECT * FROM batch_flow_tests WHERE branch='", args[ 6 ], sep="" )
57command <- paste( command, "' ORDER BY date DESC LIMIT 3", sep="" )
58
59print( paste( "Sending SQL command:", command ) )
60
61fileData <- dbGetQuery( con, command )
62
63chartTitle <- paste( "Single Bench Flow Latency - Post", "Last 3 Builds", sep = "\n" )
64
65# **********************************************************
66# STEP 2: Organize data.
67# **********************************************************
68
69avgs <- c()
70
71print( "Sorting data." )
72avgs <- c( fileData[ 'posttoconfrm' ], fileData[ 'elapsepost' ] )
73
74dataFrame <- melt( avgs )
75dataFrame$scale <- fileData$scale
76dataFrame$date <- fileData$date
77dataFrame$iterative <- dataFrame$iterative <- rev( seq( 1, nrow( fileData ), by = 1 ) )
78
79colnames( dataFrame ) <- c( "ms", "type", "scale", "date", "iterative" )
80
81# Format data frame so that the data is in the same order as it appeared in the file.
82dataFrame$type <- as.character( dataFrame$type )
83dataFrame$type <- factor( dataFrame$type, levels=unique( dataFrame$type ) )
84
Jeremy Ronquillo2d2649d2017-09-14 12:53:06 -070085dataFrame <- na.omit( dataFrame ) # Omit any data that doesn't exist
86
87print( "Data Frame Results:" )
88print( dataFrame )
89
Jeremy Ronquillo6df87812017-08-28 16:17:36 +000090# **********************************************************
91# STEP 3: Generate graphs.
92# **********************************************************
93
94print( "Generating fundamental graph data." )
95
Jeremy Ronquillo2d2649d2017-09-14 12:53:06 -070096theme_set( theme_grey( base_size = 20 ) ) # set the default text size of the graph.
97
Jeremy Ronquillo6df87812017-08-28 16:17:36 +000098mainPlot <- ggplot( data = dataFrame, aes( x = iterative, y = ms, fill = type ) )
99xScaleConfig <- scale_x_continuous( breaks = dataFrame$iterative, label = dataFrame$date )
Jeremy Ronquillob6268842017-10-03 13:02:58 -0700100xLabel <- xlab( "Build Date" )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000101yLabel <- ylab( "Latency (ms)" )
102fillLabel <- labs( fill="Type" )
Jeremy Ronquillo2d2649d2017-09-14 12:53:06 -0700103theme <- theme( plot.title=element_text( hjust = 0.5, size = 28, face='bold' ) )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000104
105fundamentalGraphData <- mainPlot + xScaleConfig + xLabel + yLabel + fillLabel + theme
106
107
Jeremy Ronquillo4363d092017-10-13 13:28:47 -0700108print( "Generating bar graph." )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000109width <- 0.3
110barGraphFormat <- geom_bar( stat="identity", width = width )
Jeremy Ronquillo4363d092017-10-13 13:28:47 -0700111sum <- fileData[ 'posttoconfrm' ] + fileData[ 'elapsepost' ]
112values <- geom_text( aes( x=dataFrame$iterative, y=sum + 0.04 * max( sum ), label = format( sum, digits=3, big.mark = ",", scientific = FALSE ) ), size = 5, fontface = "bold" )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000113title <- ggtitle( chartTitle )
Jeremy Ronquillo4363d092017-10-13 13:28:47 -0700114result <- fundamentalGraphData + barGraphFormat + title + values
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000115
116
117print( paste( "Saving bar chart to", errBarOutputFile ) )
118ggsave( errBarOutputFile, width = 10, height = 6, dpi = 200 )
119
120print( paste( "Successfully wrote stacked bar chart out to", errBarOutputFile ) )
121
122
123# **********************************************************
124# STEP 2: Organize data.
125# **********************************************************
126
127avgs <- c()
128
129print( "Sorting data." )
130avgs <- c( fileData[ 'deltoconfrm' ], fileData[ 'elapsedel' ] )
131
132dataFrame <- melt( avgs )
133dataFrame$scale <- fileData$scale
134dataFrame$date <- fileData$date
135dataFrame$iterative <- dataFrame$iterative <- rev( seq( 1, nrow( fileData ), by = 1 ) )
136
137colnames( dataFrame ) <- c( "ms", "type", "scale", "date", "iterative" )
138
139# Format data frame so that the data is in the same order as it appeared in the file.
140dataFrame$type <- as.character( dataFrame$type )
141dataFrame$type <- factor( dataFrame$type, levels=unique( dataFrame$type ) )
142
Jeremy Ronquillo2d2649d2017-09-14 12:53:06 -0700143dataFrame <- na.omit( dataFrame ) # Omit any data that doesn't exist
144
145print( "Data Frame Results:" )
146print( dataFrame )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000147
148# **********************************************************
149# STEP 3: Generate graphs.
150# **********************************************************
151
152print( "Generating fundamental graph data." )
153
Jeremy Ronquillo2d2649d2017-09-14 12:53:06 -0700154theme_set( theme_grey( base_size = 20 ) ) # set the default text size of the graph.
155
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000156mainPlot <- ggplot( data = dataFrame, aes( x = iterative, y = ms, fill = type ) )
157xScaleConfig <- scale_x_continuous( breaks = dataFrame$iterative, label = dataFrame$date )
158xLabel <- xlab( "Build Date" )
159yLabel <- ylab( "Latency (ms)" )
160fillLabel <- labs( fill="Type" )
Jeremy Ronquillo2d2649d2017-09-14 12:53:06 -0700161theme <- theme( plot.title=element_text( hjust = 0.5, size = 28, face='bold' ) )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000162
163fundamentalGraphData <- mainPlot + xScaleConfig + xLabel + yLabel + fillLabel + theme
164
165
Jeremy Ronquillo4363d092017-10-13 13:28:47 -0700166print( "Generating bar graph." )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000167width <- 0.3
168barGraphFormat <- geom_bar( stat="identity", width = width )
Jeremy Ronquillo4363d092017-10-13 13:28:47 -0700169sum <- fileData[ 'deltoconfrm' ] + fileData[ 'elapsedel' ]
170values <- geom_text( aes( x=dataFrame$iterative, y=sum + 0.04 * max( sum ), label = format( sum, digits=3, big.mark = ",", scientific = FALSE ) ), size = 5, fontface = "bold" )
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000171chartTitle <- paste( "Single Bench Flow Latency - Del", "Last 3 Builds", sep = "\n" )
172title <- ggtitle( chartTitle )
Jeremy Ronquillo4363d092017-10-13 13:28:47 -0700173result <- fundamentalGraphData + barGraphFormat + title + values
Jeremy Ronquillo6df87812017-08-28 16:17:36 +0000174
175errBarOutputFile <- paste( args[ 7 ], args[ 5 ], sep="" )
176errBarOutputFile <- paste( errBarOutputFile, args[ 6 ], sep="_" )
177errBarOutputFile <- paste( errBarOutputFile, "_DelGraph.jpg", sep="" )
178
179print( paste( "Saving bar chart to", errBarOutputFile ) )
180ggsave( errBarOutputFile, width = 10, height = 6, dpi = 200 )
181
182print( paste( "Successfully wrote stacked bar chart out to", errBarOutputFile ) )