blob: 65c70030cbc6fcd4bbf4f4ba0d7d27876ca7a959 [file] [log] [blame]
tom6a9f2722014-09-13 17:00:02 -07001#!/bin/bash
2# ONOS developer BASH profile conveniences
tom5a18e802014-09-18 12:38:15 -07003# Simply include in your own .bash_aliases or .bash_profile
tom6a9f2722014-09-13 17:00:02 -07004
5# Root of the ONOS source tree
Thomas Vachuska045c01d2014-12-04 00:18:06 -08006export ONOS_ROOT=${ONOS_ROOT:-~/onos}
tom6a9f2722014-09-13 17:00:02 -07007
8# Setup some environmental context for developers
Pavlin Radoslavov93617212014-10-16 09:54:04 -07009if [ -z "${JAVA_HOME}" ]; then
10 if [ -x /usr/libexec/java_home ]; then
Thomas Vachuskad8531152014-11-03 14:39:57 -080011 export JAVA_HOME=$(/usr/libexec/java_home -v 1.8)
12 elif [ -d /usr/lib/jvm/java-8-oracle ]; then
13 export JAVA_HOME="/usr/lib/jvm/java-8-oracle"
Jonathan Harte3c951e2015-07-14 13:28:35 -070014 elif [ -d /usr/lib/jvm/java-8-openjdk-amd64 ]; then
15 export JAVA_HOME="/usr/lib/jvm/java-8-openjdk-amd64"
Pavlin Radoslavov93617212014-10-16 09:54:04 -070016 fi
17fi
Thomas Vachuska7b652ad2014-10-30 14:10:51 -070018
Jian Li98dc9ad2016-01-06 14:05:47 -080019export MAVEN=${MAVEN:-~/Applications/apache-maven-3.3.9}
Thomas Vachuska7b652ad2014-10-30 14:10:51 -070020
Jon Hallb84df5d2017-01-31 11:19:48 -080021export KARAF_VERSION=${KARAF_VERSION:-3.0.8}
Thomas Vachuska255b65f2014-11-23 14:25:31 -080022export KARAF_ROOT=${KARAF_ROOT:-~/Applications/apache-karaf-$KARAF_VERSION}
23export KARAF_LOG=$KARAF_ROOT/data/log/karaf.log
tom6a9f2722014-09-13 17:00:02 -070024
25# Setup a path
Thomas Vachuska4ccc7d32015-09-03 13:39:40 -070026export PATH="$PATH:$ONOS_ROOT/tools/dev/bin"
27export PATH="$PATH:$ONOS_ROOT/tools/test/bin:$ONOS_ROOT/tools/test/scenarios/bin"
tom1cd74ae2014-10-01 14:58:32 -070028export PATH="$PATH:$ONOS_ROOT/tools/build"
Thomas Vachuska255b65f2014-11-23 14:25:31 -080029export PATH="$PATH:$MAVEN/bin:$KARAF_ROOT/bin"
tom6a9f2722014-09-13 17:00:02 -070030
Roan Huang0fa4bc42015-05-01 15:38:20 +080031# Setup cell enviroment
32export ONOS_CELL=${ONOS_CELL:-local}
33
Thomas Vachuskac3c969a2015-08-19 16:51:16 -070034# Setup default web user/password
35export ONOS_WEB_USER=onos
36export ONOS_WEB_PASS=rocks
Thomas Vachuskaaf0ee532015-08-19 14:17:36 -070037
38# Setup default location of test scenarios
Thomas Vachuskae76f6532015-07-08 09:40:53 -070039export ONOS_SCENARIOS=$ONOS_ROOT/tools/test/scenarios
40
Carmelo Casconeb7524272017-06-05 16:53:13 -040041# Setup path to Mininet custom scripts
42export ONOS_MN_PY=$ONOS_ROOT/tools/dev/mininet/onos.py
43export BMV2_MN_PY=$ONOS_ROOT/tools/dev/mininet/bmv2.py
44
tom6a9f2722014-09-13 17:00:02 -070045# Convenience utility to warp to various ONOS source projects
46# e.g. 'o api', 'o dev', 'o'
47function o {
Ray Milkey33d81c62016-04-01 13:18:02 -070048 cd $(find $ONOS_ROOT/ -type d -and \( -name 'buck-out' -o -name '.git' -o -name 'target' -o -name 'gen-src' -o -name 'src' \) -prune -o -type d | \
HIGUCHI Yuta709e4fe2016-03-12 21:29:41 -080049 egrep "${1:-$ONOS_ROOT}" | head -n 1)
tom6a9f2722014-09-13 17:00:02 -070050}
51
Thomas Vachuska6066dff2016-10-26 13:57:36 -070052# Buck (if "buck" is not on the PATH)
53[ -z "$(which buck)" ] && alias buck="onos-buck"
tom6a9f2722014-09-13 17:00:02 -070054
tom82d6bde2014-09-23 17:33:58 -070055# Short-hand for ONOS build, package and test.
56alias ob='onos-build'
Thomas Vachuska6066dff2016-10-26 13:57:36 -070057alias obf='(cd $ONOS_ROOT && buck build onos)'
Thomas Vachuska7cbfd4f2014-11-04 18:22:49 -080058alias obd='onos-build-docs'
tom82d6bde2014-09-23 17:33:58 -070059alias op='onos-package'
tomcaf3bf72014-09-23 13:20:53 -070060alias ot='onos-test'
Thomas Vachuska6066dff2016-10-26 13:57:36 -070061
62alias deprecatedAlias='echo "This alias has been deprecated."'
63alias obi=deprecatedAlias
64alias obs=deprecatedAlias
65
Thomas Vachuska10d1d1e2016-11-20 09:18:18 -080066alias ok='NO_BUCKD=1 buck run onos-local --'
Thomas Vachuska6066dff2016-10-26 13:57:36 -070067alias oh='onos localhost halt'
68
tom0511a522014-10-04 12:06:02 -070069alias ol='onos-log'
toma6897792014-10-08 22:21:05 -070070alias ow='onos-watch'
Thomas Vachuska3cd677d2015-05-20 11:25:49 -070071alias ocl='onos-check-logs'
Thomas Vachuska85314292014-11-14 17:52:12 -080072alias oi='setPrimaryInstance'
tom6a9f2722014-09-13 17:00:02 -070073
Thomas Vachuska152f9fd2015-04-02 16:28:13 -070074# Short-hand for tailing and searching the ONOS (karaf) log
tom1cd74ae2014-10-01 14:58:32 -070075alias tl='$ONOS_ROOT/tools/dev/bin/onos-local-log'
Thomas Vachuska152f9fd2015-04-02 16:28:13 -070076alias gl='grep $KARAF_LOG --colour=auto -E -e '
77
Charles M.C. Chan870cc032015-04-24 04:57:42 +080078function filterLocalLog {
Thomas Vachuska152f9fd2015-04-02 16:28:13 -070079 tl | grep --colour=always -E -e "${1-org.onlab|org.onosproject}"
80}
Charles M.C. Chan870cc032015-04-24 04:57:42 +080081alias tlo='filterLocalLog'
Charles M.C. Chane39f3142015-05-22 18:35:24 +080082alias tle='tlo "ERROR|WARN|Exception|Error"'
Charles M.C. Chan870cc032015-04-24 04:57:42 +080083
84function filterLog {
85 ol | grep --colour=always -E -e "${1-org.onlab|org.onosproject}"
86}
87alias olo='filterLog'
Thomas Vachuska3cd677d2015-05-20 11:25:49 -070088alias ole='olo "ERROR|WARN|Exception|Error"'
tom6a9f2722014-09-13 17:00:02 -070089
90# Pretty-print JSON output
91alias pp='python -m json.tool'
92
Thomas Vachuskaaf0ee532015-08-19 14:17:36 -070093# Short-hand to launch Java API docs, REST API docs and ONOS GUI
Thomas Vachuska24c849c2014-10-27 09:53:05 -070094alias docs='open $ONOS_ROOT/docs/target/site/apidocs/index.html'
Thomas Vachuskaaf0ee532015-08-19 14:17:36 -070095alias rsdocs='onos-rsdocs'
tom1a2908c2014-09-23 16:37:39 -070096alias gui='onos-gui'
tom5c255702014-09-18 06:57:39 -070097
Thomas Vachuska6066dff2016-10-26 13:57:36 -070098# Short-hand for 'mvn clean install' for us lazy folk
99alias mci='mvn clean install'
100alias mcis='mvn clean install -DskipTests -Dcheckstyle.skip'
101alias mis='mvn install -DskipTests -Dcheckstyle.skip'
102
103# Git annotated one-line log
104alias gil='git log --oneline --decorate=short'
tom5c255702014-09-18 06:57:39 -0700105
tom5a18e802014-09-18 12:38:15 -0700106# Test related conveniences
107
tom5a18e802014-09-18 12:38:15 -0700108# SSH to a specified ONOS instance
tom0872a172014-09-23 11:24:26 -0700109alias sshctl='onos-ssh'
110alias sshnet='onos-ssh $OCN'
tom5a18e802014-09-18 12:38:15 -0700111
Thomas Vachuskae1125352016-11-09 14:06:51 -0800112# Runs a sequence of STC scenarios until the first failure.
113function stcs {
Thomas Vachuska8cc53182016-11-14 13:06:54 -0800114 for s in "$@"; do
115 if [[ $s =~ ^[0-9]*$ ]]; then
116 printf "Waiting %d seconds...\n" $s
117 sleep $s
118 else
119 printf "Running scenario %s...\n" $s
120 stc $s || return 1
121 fi
122 done
Thomas Vachuskae1125352016-11-09 14:06:51 -0800123}
Thomas Vachuska785f5812015-03-19 01:11:00 -0700124
Thomas Vachuskacc0b7d62016-07-12 14:03:11 -0700125# Applies the settings in the specified topology recipe file or lists current
126# topo recipe definition if no topo recipe file is given.
127function topo {
128 topo=${1:-""}
129 case "$topo" in
130 "")
131 env | egrep "ONOS_TOPO"
132 env | egrep "(OTD|OTL|OTH)="
133 ;;
134
135 *)
136 [ ! -f $ONOS_ROOT/tools/test/topos/$1.recipe ] && echo "No such topo recipe: $1" >&2 && return 1
137 unset ONOS_TOPO OTD OTL OTH ONOS_DEVICES ONOS_HOSTS
138 unset $(env | sed -n 's:\(^OT[DLH][0-9]\{1,\}\)=.*:\1 :g p')
139 export ONOS_TOPO=$1
140 . $ONOS_ROOT/tools/test/topos/$1.recipe
141 let d=1; while [ $d -le $OTD ]; do
142 dev="$(printf 'of:%016x' $d)"
143 export OTD$d=$dev; export ONOS_DEVICES="$ONOS_DEVICES $dev"
144 let d=d+1;
145 done
146 let h=1; while [ $h -le $OTH ]; do
147 host="$(printf '00:00:00:00:00:%02x/-1' $h)"
148 export OTH$h=$host; export ONOS_HOSTS="$ONOS_HOSTS $host"
149 let h=h+1
150 done
151 topo
152 esac
153}
154
155# Lists available topo recipes
156function topos {
157 for topo in $(ls -1 $ONOS_ROOT/tools/test/topos/*.recipe); do
158 name=$(basename $topo .recipe)
159 printf "%-16s %s\n" \
160 "$([ $name = $ONOS_TOPO ] && echo $name '*' || echo $name)" \
161 "$(grep '^#' $topo | head -n 1)"
162 done
163}
164
Thomas Vachuska785f5812015-03-19 01:11:00 -0700165# Sets the primary instance to the specified instance number.
166function setPrimaryInstance {
Jon Hallee85e2f2016-06-07 10:36:33 -0700167 export ONOS_INSTANCES=$(env | grep 'OC[0-9]*=' | sort | cut -d= -f2)
Thomas Vachuska785f5812015-03-19 01:11:00 -0700168 export OCI=$(env | egrep "OC[0-9]+" | sort | egrep OC${1:-1} | cut -d= -f2)
169 echo $OCI
170}
171
Thomas Vachuska1eff3a62016-05-03 01:07:24 -0700172# ON.Lab shared test cell warden address
173export CELL_WARDEN="10.254.1.19"
174
Thomas Vachuskafdeda922016-05-16 11:37:00 -0700175# Clears cell environment
176function clearCell {
177 unset ONOS_CELL ONOS_NIC ONOS_IP ONOS_APPS ONOS_BOOT_FEATURES
178 unset OCI OCN OCT ONOS_INSTANCES ONOS_FEATURES
Charles Chanc7a60ce2017-05-05 13:56:27 -0700179 unset ONOS_USER ONOS_GROUP ONOS_WEB_USER ONOS_WEB_PASS
Thomas Vachuskafdeda922016-05-16 11:37:00 -0700180 unset $(env | sed -n 's:\(^OC[0-9]\{1,\}\)=.*:\1 :g p')
181}
182
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700183# Applies the settings in the specified cell file or lists current cell definition
184# if no cell file is given.
185function cell {
Jon Hall7dc59d62016-05-10 14:30:16 -0700186 cell=${1:-""}
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700187 case "$cell" in
188 "borrow")
Thomas Vachuskafdeda922016-05-16 11:37:00 -0700189 clearCell
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700190 aux="/tmp/cell-$$"
Thomas Vachuskafdeda922016-05-16 11:37:00 -0700191 duration=${2:-0}
Thomas Vachuska5420ba32016-05-13 14:45:25 -0400192 spec=${3:-3+1}
193 spec=${spec/+/%2B}
194 user=${4:-$(id -un)}
Thomas Vachuska05e47a32016-10-24 09:35:11 -0700195 hint=${5}
196 query="duration=$duration&spec=$spec&user=$user&cellNameHint=$hint"
Thomas Vachuskafdeda922016-05-16 11:37:00 -0700197 curl -sS -X POST "http://$CELL_WARDEN:4321/?$query" -d "$(cat ~/.ssh/id_rsa.pub)" > $aux
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700198 . $aux
199 rm -f $aux
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700200 setPrimaryInstance 1 >/dev/null
201 onos-verify-cell
Thomas Vachuskacc0b7d62016-07-12 14:03:11 -0700202 topo default >/dev/null
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700203 ;;
204 "return")
205 curl -sS -X DELETE "http://$CELL_WARDEN:4321/?user=${2:-$(id -un)}"
Thomas Vachuskafdeda922016-05-16 11:37:00 -0700206 clearCell
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700207 ;;
208
209 "status")
210 curl -sS "http://$CELL_WARDEN:4321/" | sort
211 ;;
212
213 "")
Charles Chan9b152fc2016-11-21 12:06:49 -0800214 env | egrep "^ONOS_CELL"
215 env | egrep "^OCI"
216 env | egrep "^OC[0-9]+" | sort
217 env | egrep "^OC[NT]"
218 env | egrep "^ONOS_" | egrep -v 'ONOS_ROOT|ONOS_CELL|ONOS_INSTANCES|ONOS_DEVICES|ONOS_HOSTS' | sort
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700219 ;;
220
221 *)
Thomas Vachuskafdeda922016-05-16 11:37:00 -0700222 [ ! -f $ONOS_ROOT/tools/test/cells/$1 ] && echo "No such cell: $1" >&2 && return 1
223 clearCell
Charles Chanc7a60ce2017-05-05 13:56:27 -0700224 export ONOS_USER=sdn
225 export ONOS_GROUP=sdn
226 export ONOS_WEB_USER=onos
227 export ONOS_WEB_PASS=rocks
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700228 export ONOS_CELL=$1
229 . $ONOS_ROOT/tools/test/cells/$1
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700230 setPrimaryInstance 1 >/dev/null
231 cell
Thomas Vachuskacc0b7d62016-07-12 14:03:11 -0700232 topo default >/dev/null
Thomas Vachuskaf07ec212016-05-10 12:17:40 -0700233 esac
234}
tomecd0fbd2014-09-19 08:47:05 -0700235
Thomas Vachuskae6185572016-05-04 19:26:15 -0700236[ -n "$ONOS_CELL" -a "$ONOS_CELL" != "borrow" ] && cell $ONOS_CELL > /dev/null
tomecd0fbd2014-09-19 08:47:05 -0700237
238# Lists available cells
239function cells {
tom2482e6f2014-10-01 16:51:48 -0700240 for cell in $(ls -1 $ONOS_ROOT/tools/test/cells); do
Thomas Vachuska785f5812015-03-19 01:11:00 -0700241 printf "%-16s %s\n" \
Yi Tseng7f425d52017-02-02 13:33:59 -0800242 "$([ ! -z $ONOS_CELL ] && [ $cell = $ONOS_CELL ] && echo $cell '*' || echo $cell)" \
tom2482e6f2014-10-01 16:51:48 -0700243 "$(grep '^#' $ONOS_ROOT/tools/test/cells/$cell | head -n 1)"
244 done
tomecd0fbd2014-09-19 08:47:05 -0700245}
tom5a18e802014-09-18 12:38:15 -0700246
Thomas Vachuska9507d2a2015-12-01 20:45:57 -0800247# Find a process by regex
tom5c255702014-09-18 06:57:39 -0700248function spy {
249 ps -ef | egrep "$@" | grep -v egrep
250}
251
Thomas Vachuska9507d2a2015-12-01 20:45:57 -0800252# Kill a process by regex
tom5c255702014-09-18 06:57:39 -0700253function nuke {
tom85258ee2014-10-07 00:10:02 -0700254 spy "$@" | cut -c7-11 | xargs kill
tom5c255702014-09-18 06:57:39 -0700255}
Ayaka Koshibea9985132014-12-18 14:55:22 -0800256
Thomas Vachuskaea2d9fd2015-09-23 13:13:25 -0700257# Edit a cell file by providing a cell name; opens the cell file in $EDITOR.
258function vicell {
259 local apply=false
260 local create=false
Ayaka Koshibe77acdc72016-02-03 17:19:24 -0800261 local ${cdf:=$ONOS_CELL}
Thomas Vachuskaea2d9fd2015-09-23 13:13:25 -0700262 local cpath="${ONOS_ROOT}/tools/test/cells/"
Ayaka Koshibea9985132014-12-18 14:55:22 -0800263
Ayaka Koshibe77acdc72016-02-03 17:19:24 -0800264 if [ "$1" = "-h" ] ; then
Thomas Vachuskaea2d9fd2015-09-23 13:13:25 -0700265 printf "usage: vicell [file] [options]\n\noptions:\n"
Ayaka Koshibe77acdc72016-02-03 17:19:24 -0800266 printf "\t[file]: cell name (default: current cell)\n"
Thomas Vachuskaea2d9fd2015-09-23 13:13:25 -0700267 printf "\t-a: apply the cell after editing\n"
Ayaka Koshibe77acdc72016-02-03 17:19:24 -0800268 printf "\t-e: [editor] set EDITOR to [editor] (default: *vi*)\n"
Thomas Vachuskaea2d9fd2015-09-23 13:13:25 -0700269 printf "\t-c: create cell file if none exist\n\n"
270 return 1
271 fi
Ayaka Koshibea9985132014-12-18 14:55:22 -0800272
Thomas Vachuskaea2d9fd2015-09-23 13:13:25 -0700273 while [ $# -gt 0 ]; do
274 case "$1" in
275 -a) apply=true ;;
276 -e) EDITOR=$2; shift ;;
277 -c) create=true ;;
278 *) cdf="$1" ;;
279 esac
280 shift
281 done
Ayaka Koshibea9985132014-12-18 14:55:22 -0800282
Ayaka Koshibe77acdc72016-02-03 17:19:24 -0800283 if [ ! -e "${cpath}${cdf}" ] && ! ($create) ; then
Thomas Vachuskaea2d9fd2015-09-23 13:13:25 -0700284 printf "${cdf} : no such cell\n" && return 1
285 fi
Ayaka Koshibea9985132014-12-18 14:55:22 -0800286
Thomas Vachuskaea2d9fd2015-09-23 13:13:25 -0700287 if [ -z "${EDITOR}" ] || [ -x "$(which ${EDITOR})" ]; then
288 unset EDITOR && vi ${cpath}${cdf}
289 else
290 $EDITOR ${cpath}${cdf}
291 fi
292 ($apply) && cell ${cdf}
Ayaka Koshibea9985132014-12-18 14:55:22 -0800293}
Ayaka Koshibeaec629622015-01-05 20:33:29 -0800294
Thomas Vachuska9507d2a2015-12-01 20:45:57 -0800295# Autocomplete for certain utilities
Ayaka Koshibeaec629622015-01-05 20:33:29 -0800296. ${ONOS_ROOT}/tools/test/bin/ogroup-opts
Thomas Vachuska9507d2a2015-12-01 20:45:57 -0800297
298
299# Load AT&T MPLS topo GEO data
Ayaka Koshibe77acdc72016-02-03 17:19:24 -0800300alias atttopo='onos-netcfg $OCI $ONOS_ROOT/tools/test/topos/attmpls-cfg.json'
Simon Huntcf7e3b52016-02-29 23:26:16 -0800301
302# Load UK topo GEO data
303alias uktopo='onos-netcfg $OCI $ONOS_ROOT/tools/test/topos/uk-cfg.json'