Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 1 | # 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 Ronquillo | b626884 | 2017-10-03 13:02:58 -0700 | [diff] [blame] | 21 | # please contact Jeremy Ronquillo: j_ronquillo@u.pacific.edu |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 22 | |
| 23 | # ********************************************************** |
| 24 | # STEP 1: File management. |
| 25 | # ********************************************************** |
| 26 | |
| 27 | print( "STEP 1: File management." ) |
| 28 | |
Jeremy Ronquillo | b626884 | 2017-10-03 13:02:58 -0700 | [diff] [blame] | 29 | # Command line arguments are read. |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 30 | print( "Reading commmand-line args." ) |
| 31 | args <- 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 |
| 36 | print( "Importing libraries." ) |
| 37 | library( ggplot2 ) |
| 38 | library( reshape2 ) |
| 39 | library( RPostgreSQL ) # For databases |
| 40 | |
| 41 | # Check if sufficient args are provided. |
| 42 | if ( is.na( args[ 7 ] ) ){ |
| 43 | print( "Usage: Rscript SCPFportLat <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 Ronquillo | b626884 | 2017-10-03 13:02:58 -0700 | [diff] [blame] | 47 | # paste() is used to concatenate strings. |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 48 | errBarOutputFileUp <- paste( args[ 7 ], "SCPFportLat_", sep = "" ) |
| 49 | errBarOutputFileUp <- paste( errBarOutputFileUp, args[ 6 ], sep = "" ) |
| 50 | errBarOutputFileUp <- paste( errBarOutputFileUp, "_UpErrBarWithStack.jpg", sep = "" ) |
| 51 | |
| 52 | errBarOutputFileDown <- paste( args[ 7 ], "SCPFportLat_", sep = "" ) |
| 53 | errBarOutputFileDown <- paste( errBarOutputFileDown, args[ 6 ], sep = "" ) |
| 54 | errBarOutputFileDown <- paste( errBarOutputFileDown, "_DownErrBarWithStack.jpg", sep = "" ) |
| 55 | |
| 56 | print( "Reading from databases." ) |
| 57 | |
| 58 | con <- dbConnect( dbDriver( "PostgreSQL" ), dbname="onostest", host=args[ 1 ], port=strtoi( args[ 2 ] ), user=args[ 3 ],password=args[ 4 ] ) |
| 59 | |
| 60 | command <- paste( "SELECT * FROM port_latency_details WHERE branch = '", args[ 6 ], sep = "" ) |
| 61 | command <- paste( command, "' AND date IN ( SELECT MAX( date ) FROM port_latency_details WHERE branch = '", sep = "" ) |
| 62 | command <- paste( command, args[ 6 ], sep = "" ) |
| 63 | command <- paste( command, "' ) ", sep="" ) |
| 64 | |
| 65 | print( paste( "Sending SQL command:", command ) ) |
| 66 | |
| 67 | fileData <- dbGetQuery( con, command ) |
| 68 | |
| 69 | chartTitle <- paste( "Port Latency", args[ 6 ], sep = " - " ) |
| 70 | chartTitle <- paste( chartTitle, "\n" ) |
| 71 | |
| 72 | |
| 73 | # ********************************************************** |
| 74 | # STEP 2: Organize data. |
| 75 | # ********************************************************** |
| 76 | |
| 77 | print( "Sorting data." ) |
| 78 | |
| 79 | upAvgs <- c( fileData[ 'up_ofp_to_dev_avg' ], fileData[ 'up_dev_to_link_avg' ], fileData[ 'up_link_to_graph_avg' ] ) |
| 80 | upAvgsData <- melt( upAvgs ) |
| 81 | upAvgsData$scale <- fileData$scale |
| 82 | upAvgsData$up_std <- fileData$up_std |
| 83 | |
| 84 | |
| 85 | colnames( upAvgsData ) <- c( "ms", "type", "scale", "stds" ) |
| 86 | upAvgsData$type <- as.character( upAvgsData$type ) |
| 87 | upAvgsData$type <- factor( upAvgsData$type, levels=unique( upAvgsData$type ) ) |
| 88 | |
| 89 | downAvgs <- c( fileData[ 'down_ofp_to_dev_avg' ], fileData[ 'down_dev_to_link_avg' ], fileData[ 'down_link_to_graph_avg' ] ) |
| 90 | downAvgsData <- melt( downAvgs ) |
| 91 | downAvgsData$scale <- fileData$scale |
| 92 | downAvgsData$down_std <- fileData$down_std |
| 93 | |
| 94 | colnames( downAvgsData ) <- c( "ms", "type", "scale", "stds" ) |
| 95 | downAvgsData$type <- as.character( downAvgsData$type ) |
| 96 | downAvgsData$type <- factor( downAvgsData$type, levels=unique( downAvgsData$type ) ) |
| 97 | |
Jeremy Ronquillo | 2d2649d | 2017-09-14 12:53:06 -0700 | [diff] [blame] | 98 | upAvgsData <- na.omit( upAvgsData ) # Omit any data that doesn't exist |
| 99 | downAvgsData <- na.omit( downAvgsData ) # Omit any data that doesn't exist |
| 100 | |
| 101 | print( "Up Averages Results:" ) |
| 102 | print( upAvgsData ) |
| 103 | |
| 104 | print( "Down Averages Results:" ) |
| 105 | print( downAvgsData ) |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 106 | |
| 107 | # ********************************************************** |
| 108 | # STEP 3: Generate graphs. |
| 109 | # ********************************************************** |
| 110 | |
| 111 | |
| 112 | print( "Generating fundamental graph data (Port Up Latency)." ) |
| 113 | width <- 1 |
Jeremy Ronquillo | 2d2649d | 2017-09-14 12:53:06 -0700 | [diff] [blame] | 114 | theme_set( theme_grey( base_size = 20 ) ) # set the default text size of the graph. |
| 115 | |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 116 | mainPlot <- ggplot( data = upAvgsData, aes( x = scale, y = ms, fill = type, ymin = fileData[ 'up_end_to_end_avg' ] - stds, ymax = fileData[ 'up_end_to_end_avg' ] + stds ) ) |
| 117 | xScaleConfig <- scale_x_continuous( breaks=c( 1, 3, 5, 7, 9) ) |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 118 | xLabel <- xlab( "Scale" ) |
| 119 | yLabel <- ylab( "Latency (ms)" ) |
| 120 | fillLabel <- labs( fill="Type" ) |
Jeremy Ronquillo | 2d2649d | 2017-09-14 12:53:06 -0700 | [diff] [blame] | 121 | theme <- theme( plot.title=element_text( hjust = 0.5, size = 28, face='bold' ) ) |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 122 | |
Jeremy Ronquillo | b626884 | 2017-10-03 13:02:58 -0700 | [diff] [blame] | 123 | fundamentalGraphData <- mainPlot + xScaleConfig + xLabel + yLabel + fillLabel + theme |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 124 | |
| 125 | print( "Generating bar graph with error bars (Port Up Latency)." ) |
| 126 | barGraphFormat <- geom_bar( stat="identity", width = width ) |
Jeremy Ronquillo | 4363d09 | 2017-10-13 13:28:47 -0700 | [diff] [blame] | 127 | errorBarFormat <- geom_errorbar( width = width, color=rgb( 140, 140, 140, maxColorValue=255 ) ) |
| 128 | sum <- fileData[ 'up_ofp_to_dev_avg' ] + fileData[ 'up_dev_to_link_avg' ] + fileData[ 'up_link_to_graph_avg' ] |
| 129 | values <- geom_text( aes( x=upAvgsData$scale, y=sum + 0.04 * max( sum ), label = format( sum, digits=3, big.mark = ",", scientific = FALSE ) ), size = 5, fontface = "bold" ) |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 130 | title <- ggtitle( "Port Up Latency" ) |
Jeremy Ronquillo | 4363d09 | 2017-10-13 13:28:47 -0700 | [diff] [blame] | 131 | result <- fundamentalGraphData + barGraphFormat + errorBarFormat + title + values |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 132 | |
| 133 | |
| 134 | print( paste( "Saving bar chart with error bars (Port Up Latency) to", errBarOutputFileUp ) ) |
| 135 | ggsave( errBarOutputFileUp, width = 10, height = 6, dpi = 200 ) |
| 136 | |
| 137 | |
| 138 | print( paste( "Successfully wrote bar chart with error bars (Port Up Latency) out to", errBarOutputFileUp ) ) |
| 139 | |
| 140 | |
| 141 | print( "Generating fundamental graph data (Port Down Latency)." ) |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 142 | |
| 143 | mainPlot <- ggplot( data = downAvgsData, aes( x = scale, y = ms, fill = type, ymin = fileData[ 'down_end_to_end_avg' ] - stds, ymax = fileData[ 'down_end_to_end_avg' ] + stds ) ) |
Jeremy Ronquillo | 2d2649d | 2017-09-14 12:53:06 -0700 | [diff] [blame] | 144 | theme <- theme( plot.title=element_text( hjust = 0.5, size = 28, face='bold' ) ) |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 145 | |
Jeremy Ronquillo | b626884 | 2017-10-03 13:02:58 -0700 | [diff] [blame] | 146 | fundamentalGraphData <- mainPlot + xScaleConfig + xLabel + yLabel + fillLabel + theme |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 147 | |
| 148 | print( "Generating bar graph with error bars (Port Down Latency)." ) |
| 149 | barGraphFormat <- geom_bar( stat="identity", width = width ) |
Jeremy Ronquillo | 4363d09 | 2017-10-13 13:28:47 -0700 | [diff] [blame] | 150 | errorBarFormat <- geom_errorbar( width = width, color=rgb( 140, 140, 140, maxColorValue=255 ) ) |
| 151 | sum <- fileData[ 'down_ofp_to_dev_avg' ] + fileData[ 'down_dev_to_link_avg' ] + fileData[ 'down_link_to_graph_avg' ] |
| 152 | values <- geom_text( aes( x=downAvgsData$scale, y=sum + 0.04 * max( sum ), label = format( sum, digits=3, big.mark = ",", scientific = FALSE ) ), size = 5, fontface = "bold" ) |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 153 | |
| 154 | title <- ggtitle( "Port Down Latency" ) |
Jeremy Ronquillo | 4363d09 | 2017-10-13 13:28:47 -0700 | [diff] [blame] | 155 | result <- fundamentalGraphData + barGraphFormat + errorBarFormat + title + values |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 156 | |
| 157 | |
| 158 | print( paste( "Saving bar chart with error bars (Port Down Latency) to", errBarOutputFileDown ) ) |
| 159 | ggsave( errBarOutputFileDown, width = 10, height = 6, dpi = 200 ) |
| 160 | |
| 161 | |
| 162 | print( paste( "Successfully wrote bar chart with error bars (Port Down Latency) out to", errBarOutputFileDown ) ) |