tom | 6a9f272 | 2014-09-13 17:00:02 -0700 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | # ONOS developer BASH profile conveniences |
tom | 5a18e80 | 2014-09-18 12:38:15 -0700 | [diff] [blame] | 3 | # Simply include in your own .bash_aliases or .bash_profile |
tom | 6a9f272 | 2014-09-13 17:00:02 -0700 | [diff] [blame] | 4 | |
| 5 | # Root of the ONOS source tree |
Thomas Vachuska | 045c01d | 2014-12-04 00:18:06 -0800 | [diff] [blame] | 6 | export ONOS_ROOT=${ONOS_ROOT:-~/onos} |
Thomas Vachuska | bec79b9 | 2018-08-07 11:42:17 -0700 | [diff] [blame] | 7 | |
Ray Milkey | 8a0c7c7 | 2017-07-18 11:37:04 -0700 | [diff] [blame] | 8 | # This is a hack to remove symlinks from the ONOS_ROOT path. To be removed when |
| 9 | # the protobuf buck rules can handle symlinks |
| 10 | ONOS_ROOT=$(pushd $ONOS_ROOT >/dev/null && pwd -P && popd >/dev/null) |
tom | 6a9f272 | 2014-09-13 17:00:02 -0700 | [diff] [blame] | 11 | |
| 12 | # Setup some environmental context for developers |
Pavlin Radoslavov | 9361721 | 2014-10-16 09:54:04 -0700 | [diff] [blame] | 13 | if [ -z "${JAVA_HOME}" ]; then |
| 14 | if [ -x /usr/libexec/java_home ]; then |
Thomas Vachuska | d853115 | 2014-11-03 14:39:57 -0800 | [diff] [blame] | 15 | export JAVA_HOME=$(/usr/libexec/java_home -v 1.8) |
| 16 | elif [ -d /usr/lib/jvm/java-8-oracle ]; then |
| 17 | export JAVA_HOME="/usr/lib/jvm/java-8-oracle" |
Jonathan Hart | e3c951e | 2015-07-14 13:28:35 -0700 | [diff] [blame] | 18 | elif [ -d /usr/lib/jvm/java-8-openjdk-amd64 ]; then |
| 19 | export JAVA_HOME="/usr/lib/jvm/java-8-openjdk-amd64" |
Pavlin Radoslavov | 9361721 | 2014-10-16 09:54:04 -0700 | [diff] [blame] | 20 | fi |
| 21 | fi |
Thomas Vachuska | 7b652ad | 2014-10-30 14:10:51 -0700 | [diff] [blame] | 22 | |
Jian Li | 98dc9ad | 2016-01-06 14:05:47 -0800 | [diff] [blame] | 23 | export MAVEN=${MAVEN:-~/Applications/apache-maven-3.3.9} |
Thomas Vachuska | 7b652ad | 2014-10-30 14:10:51 -0700 | [diff] [blame] | 24 | |
Ray Milkey | 3f274d9 | 2018-09-28 14:23:34 -0700 | [diff] [blame] | 25 | export KARAF_VERSION=4.2.1 |
Thomas Vachuska | 255b65f | 2014-11-23 14:25:31 -0800 | [diff] [blame] | 26 | export KARAF_ROOT=${KARAF_ROOT:-~/Applications/apache-karaf-$KARAF_VERSION} |
| 27 | export KARAF_LOG=$KARAF_ROOT/data/log/karaf.log |
tom | 6a9f272 | 2014-09-13 17:00:02 -0700 | [diff] [blame] | 28 | |
| 29 | # Setup a path |
Thomas Vachuska | 4ccc7d3 | 2015-09-03 13:39:40 -0700 | [diff] [blame] | 30 | export PATH="$PATH:$ONOS_ROOT/tools/dev/bin" |
| 31 | export PATH="$PATH:$ONOS_ROOT/tools/test/bin:$ONOS_ROOT/tools/test/scenarios/bin" |
Devin Lim | 0d944e2 | 2017-06-23 15:17:53 -0700 | [diff] [blame] | 32 | export RUN_PACK_PATH=${RUN_PACK_PATH:-$ONOS_ROOT/tools/package/runtime/bin} |
| 33 | export PATH="$RUN_PACK_PATH:$PATH" |
tom | 1cd74ae | 2014-10-01 14:58:32 -0700 | [diff] [blame] | 34 | export PATH="$PATH:$ONOS_ROOT/tools/build" |
Thomas Vachuska | 255b65f | 2014-11-23 14:25:31 -0800 | [diff] [blame] | 35 | export PATH="$PATH:$MAVEN/bin:$KARAF_ROOT/bin" |
tom | 6a9f272 | 2014-09-13 17:00:02 -0700 | [diff] [blame] | 36 | |
Roan Huang | 0fa4bc4 | 2015-05-01 15:38:20 +0800 | [diff] [blame] | 37 | # Setup cell enviroment |
| 38 | export ONOS_CELL=${ONOS_CELL:-local} |
| 39 | |
Thomas Vachuska | c3c969a | 2015-08-19 16:51:16 -0700 | [diff] [blame] | 40 | # Setup default web user/password |
| 41 | export ONOS_WEB_USER=onos |
| 42 | export ONOS_WEB_PASS=rocks |
Thomas Vachuska | af0ee53 | 2015-08-19 14:17:36 -0700 | [diff] [blame] | 43 | |
| 44 | # Setup default location of test scenarios |
Thomas Vachuska | e76f653 | 2015-07-08 09:40:53 -0700 | [diff] [blame] | 45 | export ONOS_SCENARIOS=$ONOS_ROOT/tools/test/scenarios |
| 46 | |
Carmelo Cascone | b752427 | 2017-06-05 16:53:13 -0400 | [diff] [blame] | 47 | # Setup path to Mininet custom scripts |
| 48 | export ONOS_MN_PY=$ONOS_ROOT/tools/dev/mininet/onos.py |
| 49 | export BMV2_MN_PY=$ONOS_ROOT/tools/dev/mininet/bmv2.py |
| 50 | |
tom | 6a9f272 | 2014-09-13 17:00:02 -0700 | [diff] [blame] | 51 | # Convenience utility to warp to various ONOS source projects |
| 52 | # e.g. 'o api', 'o dev', 'o' |
| 53 | function o { |
Thomas Vachuska | bec79b9 | 2018-08-07 11:42:17 -0700 | [diff] [blame] | 54 | cd $(find $ONOS_ROOT/ -type d -and \( -name 'bazel-*' -o -name 'buck-out' -o -name '.git' -o -name 'target' -o -name 'gen-src' -o -name 'src' \) -prune -o -type d | \ |
Thomas Vachuska | 49367a6 | 2017-08-29 09:18:19 -0700 | [diff] [blame] | 55 | egrep "${1:-$ONOS_ROOT}" | awk '{print length($1)"\t"$1}' | sort -n | cut -f2 | head -n 1) |
tom | 6a9f272 | 2014-09-13 17:00:02 -0700 | [diff] [blame] | 56 | } |
| 57 | |
Thomas Vachuska | 6066dff | 2016-10-26 13:57:36 -0700 | [diff] [blame] | 58 | # Buck (if "buck" is not on the PATH) |
| 59 | [ -z "$(which buck)" ] && alias buck="onos-buck" |
tom | 6a9f272 | 2014-09-13 17:00:02 -0700 | [diff] [blame] | 60 | |
tom | 82d6bde | 2014-09-23 17:33:58 -0700 | [diff] [blame] | 61 | # Short-hand for ONOS build, package and test. |
Thomas Vachuska | bec79b9 | 2018-08-07 11:42:17 -0700 | [diff] [blame] | 62 | alias op="SHLVL=1 bazel build //:onos" |
Carmelo Cascone | fe59ba0 | 2018-09-04 22:31:06 -0700 | [diff] [blame] | 63 | alias ot="bazel run //:buildifier_check && bazel query 'tests(//...)' | SHLVL=1 xargs bazel test --test_summary=terse --test_output=errors" |
Thomas Vachuska | bec79b9 | 2018-08-07 11:42:17 -0700 | [diff] [blame] | 64 | alias ob="op && ot" |
| 65 | alias obd="SHLVL=1 bazel build //docs:external //docs:internal" |
Thomas Vachuska | 6066dff | 2016-10-26 13:57:36 -0700 | [diff] [blame] | 66 | |
Thomas Vachuska | bec79b9 | 2018-08-07 11:42:17 -0700 | [diff] [blame] | 67 | alias ok="SHLVL=1 bazel run onos-local --" |
| 68 | alias oh="onos localhost halt" |
Thomas Vachuska | 6066dff | 2016-10-26 13:57:36 -0700 | [diff] [blame] | 69 | |
tom | 0511a52 | 2014-10-04 12:06:02 -0700 | [diff] [blame] | 70 | alias ol='onos-log' |
tom | a689779 | 2014-10-08 22:21:05 -0700 | [diff] [blame] | 71 | alias ow='onos-watch' |
Thomas Vachuska | 3cd677d | 2015-05-20 11:25:49 -0700 | [diff] [blame] | 72 | alias ocl='onos-check-logs' |
Thomas Vachuska | 8531429 | 2014-11-14 17:52:12 -0800 | [diff] [blame] | 73 | alias oi='setPrimaryInstance' |
tom | 6a9f272 | 2014-09-13 17:00:02 -0700 | [diff] [blame] | 74 | |
Thomas Vachuska | 152f9fd | 2015-04-02 16:28:13 -0700 | [diff] [blame] | 75 | # Short-hand for tailing and searching the ONOS (karaf) log |
tom | 1cd74ae | 2014-10-01 14:58:32 -0700 | [diff] [blame] | 76 | alias tl='$ONOS_ROOT/tools/dev/bin/onos-local-log' |
Thomas Vachuska | 152f9fd | 2015-04-02 16:28:13 -0700 | [diff] [blame] | 77 | alias gl='grep $KARAF_LOG --colour=auto -E -e ' |
| 78 | |
Charles M.C. Chan | 870cc03 | 2015-04-24 04:57:42 +0800 | [diff] [blame] | 79 | function filterLocalLog { |
Thomas Vachuska | 152f9fd | 2015-04-02 16:28:13 -0700 | [diff] [blame] | 80 | tl | grep --colour=always -E -e "${1-org.onlab|org.onosproject}" |
| 81 | } |
Charles M.C. Chan | 870cc03 | 2015-04-24 04:57:42 +0800 | [diff] [blame] | 82 | alias tlo='filterLocalLog' |
Charles M.C. Chan | e39f314 | 2015-05-22 18:35:24 +0800 | [diff] [blame] | 83 | alias tle='tlo "ERROR|WARN|Exception|Error"' |
Charles M.C. Chan | 870cc03 | 2015-04-24 04:57:42 +0800 | [diff] [blame] | 84 | |
| 85 | function filterLog { |
| 86 | ol | grep --colour=always -E -e "${1-org.onlab|org.onosproject}" |
| 87 | } |
| 88 | alias olo='filterLog' |
Thomas Vachuska | 3cd677d | 2015-05-20 11:25:49 -0700 | [diff] [blame] | 89 | alias ole='olo "ERROR|WARN|Exception|Error"' |
tom | 6a9f272 | 2014-09-13 17:00:02 -0700 | [diff] [blame] | 90 | |
| 91 | # Pretty-print JSON output |
| 92 | alias pp='python -m json.tool' |
| 93 | |
Thomas Vachuska | af0ee53 | 2015-08-19 14:17:36 -0700 | [diff] [blame] | 94 | # Short-hand to launch Java API docs, REST API docs and ONOS GUI |
Thomas Vachuska | 24c849c | 2014-10-27 09:53:05 -0700 | [diff] [blame] | 95 | alias docs='open $ONOS_ROOT/docs/target/site/apidocs/index.html' |
Thomas Vachuska | af0ee53 | 2015-08-19 14:17:36 -0700 | [diff] [blame] | 96 | alias rsdocs='onos-rsdocs' |
tom | 1a2908c | 2014-09-23 16:37:39 -0700 | [diff] [blame] | 97 | alias gui='onos-gui' |
tom | 5c25570 | 2014-09-18 06:57:39 -0700 | [diff] [blame] | 98 | |
Thomas Vachuska | 6066dff | 2016-10-26 13:57:36 -0700 | [diff] [blame] | 99 | # Short-hand for 'mvn clean install' for us lazy folk |
| 100 | alias mci='mvn clean install' |
Thomas Vachuska | 6066dff | 2016-10-26 13:57:36 -0700 | [diff] [blame] | 101 | |
| 102 | # Git annotated one-line log |
| 103 | alias gil='git log --oneline --decorate=short' |
tom | 5c25570 | 2014-09-18 06:57:39 -0700 | [diff] [blame] | 104 | |
tom | 5a18e80 | 2014-09-18 12:38:15 -0700 | [diff] [blame] | 105 | # Test related conveniences |
| 106 | |
tom | 5a18e80 | 2014-09-18 12:38:15 -0700 | [diff] [blame] | 107 | # SSH to a specified ONOS instance |
tom | 0872a17 | 2014-09-23 11:24:26 -0700 | [diff] [blame] | 108 | alias sshctl='onos-ssh' |
| 109 | alias sshnet='onos-ssh $OCN' |
tom | 5a18e80 | 2014-09-18 12:38:15 -0700 | [diff] [blame] | 110 | |
Thomas Vachuska | e112535 | 2016-11-09 14:06:51 -0800 | [diff] [blame] | 111 | # Runs a sequence of STC scenarios until the first failure. |
| 112 | function stcs { |
Thomas Vachuska | 8cc5318 | 2016-11-14 13:06:54 -0800 | [diff] [blame] | 113 | for s in "$@"; do |
| 114 | if [[ $s =~ ^[0-9]*$ ]]; then |
| 115 | printf "Waiting %d seconds...\n" $s |
| 116 | sleep $s |
| 117 | else |
| 118 | printf "Running scenario %s...\n" $s |
| 119 | stc $s || return 1 |
| 120 | fi |
| 121 | done |
Thomas Vachuska | e112535 | 2016-11-09 14:06:51 -0800 | [diff] [blame] | 122 | } |
Thomas Vachuska | 785f581 | 2015-03-19 01:11:00 -0700 | [diff] [blame] | 123 | |
Thomas Vachuska | cc0b7d6 | 2016-07-12 14:03:11 -0700 | [diff] [blame] | 124 | # Applies the settings in the specified topology recipe file or lists current |
| 125 | # topo recipe definition if no topo recipe file is given. |
| 126 | function topo { |
| 127 | topo=${1:-""} |
| 128 | case "$topo" in |
| 129 | "") |
| 130 | env | egrep "ONOS_TOPO" |
| 131 | env | egrep "(OTD|OTL|OTH)=" |
| 132 | ;; |
| 133 | |
| 134 | *) |
| 135 | [ ! -f $ONOS_ROOT/tools/test/topos/$1.recipe ] && echo "No such topo recipe: $1" >&2 && return 1 |
| 136 | unset ONOS_TOPO OTD OTL OTH ONOS_DEVICES ONOS_HOSTS |
Ray Milkey | 2c6ffb8 | 2018-03-09 08:57:52 -0800 | [diff] [blame] | 137 | ONOS_DEVICES="" |
| 138 | ONOS_HOSTS="" |
Thomas Vachuska | cc0b7d6 | 2016-07-12 14:03:11 -0700 | [diff] [blame] | 139 | unset $(env | sed -n 's:\(^OT[DLH][0-9]\{1,\}\)=.*:\1 :g p') |
| 140 | export ONOS_TOPO=$1 |
| 141 | . $ONOS_ROOT/tools/test/topos/$1.recipe |
| 142 | let d=1; while [ $d -le $OTD ]; do |
| 143 | dev="$(printf 'of:%016x' $d)" |
| 144 | export OTD$d=$dev; export ONOS_DEVICES="$ONOS_DEVICES $dev" |
| 145 | let d=d+1; |
| 146 | done |
| 147 | let h=1; while [ $h -le $OTH ]; do |
| 148 | host="$(printf '00:00:00:00:00:%02x/-1' $h)" |
| 149 | export OTH$h=$host; export ONOS_HOSTS="$ONOS_HOSTS $host" |
| 150 | let h=h+1 |
| 151 | done |
| 152 | topo |
| 153 | esac |
| 154 | } |
| 155 | |
| 156 | # Lists available topo recipes |
| 157 | function topos { |
| 158 | for topo in $(ls -1 $ONOS_ROOT/tools/test/topos/*.recipe); do |
| 159 | name=$(basename $topo .recipe) |
| 160 | printf "%-16s %s\n" \ |
| 161 | "$([ $name = $ONOS_TOPO ] && echo $name '*' || echo $name)" \ |
| 162 | "$(grep '^#' $topo | head -n 1)" |
| 163 | done |
| 164 | } |
| 165 | |
Thomas Vachuska | 785f581 | 2015-03-19 01:11:00 -0700 | [diff] [blame] | 166 | # Sets the primary instance to the specified instance number. |
| 167 | function setPrimaryInstance { |
Jon Hall | ee85e2f | 2016-06-07 10:36:33 -0700 | [diff] [blame] | 168 | export ONOS_INSTANCES=$(env | grep 'OC[0-9]*=' | sort | cut -d= -f2) |
Thomas Vachuska | fd8cb68 | 2018-07-27 12:29:14 -0700 | [diff] [blame] | 169 | |
Ray Milkey | acfb410 | 2018-08-08 11:11:59 -0700 | [diff] [blame] | 170 | if [ -z "${OCC1-}" ]; then |
Thomas Vachuska | fd8cb68 | 2018-07-27 12:29:14 -0700 | [diff] [blame] | 171 | aux=/tmp/cell-$$.aux |
| 172 | let i=1 |
| 173 | for n in $ONOS_INSTANCES; do |
| 174 | echo "export OCC$i=$n" >> $aux |
| 175 | let i=i+1 |
| 176 | done |
| 177 | [ -f $aux ] && source $aux && rm $aux |
| 178 | fi |
| 179 | |
Thomas Vachuska | 2582fc2 | 2018-07-02 14:54:18 -0700 | [diff] [blame] | 180 | export ONOS_CORES=$(env | grep 'OCC[0-9]*=' | sort | cut -d= -f2) |
Thomas Vachuska | 785f581 | 2015-03-19 01:11:00 -0700 | [diff] [blame] | 181 | export OCI=$(env | egrep "OC[0-9]+" | sort | egrep OC${1:-1} | cut -d= -f2) |
| 182 | echo $OCI |
| 183 | } |
| 184 | |
Jordan Halterman | 980a8c1 | 2017-09-22 18:01:19 -0700 | [diff] [blame] | 185 | # Sets minority (OCMI) and majority (OCMA) variables |
| 186 | function setMinorityMajority { |
| 187 | nodes=($(env | grep 'OC[0-9]*=' | sort | cut -d= -f2)) |
| 188 | middle=$(expr "${#nodes[@]}" / "2") |
| 189 | index=0 |
| 190 | min=1 |
| 191 | maj=1 |
| 192 | for node in "${nodes[@]}"; do |
| 193 | if [ "$index" -gt "$middle" ]; then |
| 194 | export OCMI${min}=${node} |
| 195 | min=$(expr $min + 1) |
| 196 | else |
| 197 | export OCMA${maj}=${node} |
| 198 | maj=$(expr $maj + 1) |
| 199 | fi |
| 200 | index=$(expr $index + 1) |
| 201 | done |
| 202 | } |
| 203 | |
Thomas Vachuska | a10137c | 2018-04-03 16:45:59 -0700 | [diff] [blame] | 204 | # Open Networking Foundation shared test cell warden address |
Thomas Vachuska | 28d4657 | 2017-12-05 13:39:27 -0800 | [diff] [blame] | 205 | export CELL_WARDEN="10.192.19.72" |
Thomas Vachuska | ca40fe4 | 2018-01-29 16:13:26 -0800 | [diff] [blame] | 206 | export CELL_SLAVE_1=$CELL_WARDEN |
| 207 | export CELL_SLAVE_2="10.192.19.71" |
| 208 | export CELL_SLAVE_3="10.192.19.70" |
Thomas Vachuska | 4b09a6f | 2018-10-29 10:34:20 -0700 | [diff] [blame] | 209 | export CELL_SLAVE_4="10.192.19.77" # disabled |
| 210 | export CELL_SLAVES="$CELL_SLAVE_1 $CELL_SLAVE_2 $CELL_SLAVE_3" |
Thomas Vachuska | 1eff3a6 | 2016-05-03 01:07:24 -0700 | [diff] [blame] | 211 | |
Thomas Vachuska | fdeda92 | 2016-05-16 11:37:00 -0700 | [diff] [blame] | 212 | # Clears cell environment |
| 213 | function clearCell { |
| 214 | unset ONOS_CELL ONOS_NIC ONOS_IP ONOS_APPS ONOS_BOOT_FEATURES |
Thomas Vachuska | 2582fc2 | 2018-07-02 14:54:18 -0700 | [diff] [blame] | 215 | unset OCI OCN OCT ONOS_INSTANCES ONOS_CORES ONOS_FEATURES |
Charles Chan | c7a60ce | 2017-05-05 13:56:27 -0700 | [diff] [blame] | 216 | unset ONOS_USER ONOS_GROUP ONOS_WEB_USER ONOS_WEB_PASS |
Thomas Vachuska | fdeda92 | 2016-05-16 11:37:00 -0700 | [diff] [blame] | 217 | unset $(env | sed -n 's:\(^OC[0-9]\{1,\}\)=.*:\1 :g p') |
Thomas Vachuska | 2582fc2 | 2018-07-02 14:54:18 -0700 | [diff] [blame] | 218 | unset $(env | sed -n 's:\(^OCC[0-9]\{1,\}\)=.*:\1 :g p') |
Jordan Halterman | 980a8c1 | 2017-09-22 18:01:19 -0700 | [diff] [blame] | 219 | unset $(env | sed -n 's:\(^OCMI[0-9]\{1,\}\)=.*:\1 :g p') |
| 220 | unset $(env | sed -n 's:\(^OCMA[0-9]\{1,\}\)=.*:\1 :g p') |
Thomas Vachuska | fdeda92 | 2016-05-16 11:37:00 -0700 | [diff] [blame] | 221 | } |
| 222 | |
Thomas Vachuska | f07ec21 | 2016-05-10 12:17:40 -0700 | [diff] [blame] | 223 | # Applies the settings in the specified cell file or lists current cell definition |
| 224 | # if no cell file is given. |
| 225 | function cell { |
Jon Hall | 7dc59d6 | 2016-05-10 14:30:16 -0700 | [diff] [blame] | 226 | cell=${1:-""} |
Thomas Vachuska | f07ec21 | 2016-05-10 12:17:40 -0700 | [diff] [blame] | 227 | case "$cell" in |
| 228 | "borrow") |
Thomas Vachuska | fdeda92 | 2016-05-16 11:37:00 -0700 | [diff] [blame] | 229 | clearCell |
Thomas Vachuska | f07ec21 | 2016-05-10 12:17:40 -0700 | [diff] [blame] | 230 | aux="/tmp/cell-$$" |
Thomas Vachuska | fdeda92 | 2016-05-16 11:37:00 -0700 | [diff] [blame] | 231 | duration=${2:-0} |
Thomas Vachuska | 8e676d9 | 2018-11-19 16:01:03 -0800 | [diff] [blame] | 232 | spec=${3:-5+3+1} |
Thomas Vachuska | 2582fc2 | 2018-07-02 14:54:18 -0700 | [diff] [blame] | 233 | spec=${spec//+/%2B} |
Thomas Vachuska | 5420ba3 | 2016-05-13 14:45:25 -0400 | [diff] [blame] | 234 | user=${4:-$(id -un)} |
Ray Milkey | 32e73d7 | 2018-03-09 09:52:29 -0800 | [diff] [blame] | 235 | hint=${5:-""} |
Thomas Vachuska | 05e47a3 | 2016-10-24 09:35:11 -0700 | [diff] [blame] | 236 | query="duration=$duration&spec=$spec&user=$user&cellNameHint=$hint" |
Thomas Vachuska | fdeda92 | 2016-05-16 11:37:00 -0700 | [diff] [blame] | 237 | curl -sS -X POST "http://$CELL_WARDEN:4321/?$query" -d "$(cat ~/.ssh/id_rsa.pub)" > $aux |
Thomas Vachuska | f07ec21 | 2016-05-10 12:17:40 -0700 | [diff] [blame] | 238 | . $aux |
| 239 | rm -f $aux |
Thomas Vachuska | f07ec21 | 2016-05-10 12:17:40 -0700 | [diff] [blame] | 240 | setPrimaryInstance 1 >/dev/null |
Jordan Halterman | 980a8c1 | 2017-09-22 18:01:19 -0700 | [diff] [blame] | 241 | setMinorityMajority >/dev/null |
Thomas Vachuska | f07ec21 | 2016-05-10 12:17:40 -0700 | [diff] [blame] | 242 | onos-verify-cell |
Thomas Vachuska | cc0b7d6 | 2016-07-12 14:03:11 -0700 | [diff] [blame] | 243 | topo default >/dev/null |
Thomas Vachuska | f07ec21 | 2016-05-10 12:17:40 -0700 | [diff] [blame] | 244 | ;; |
| 245 | "return") |
| 246 | curl -sS -X DELETE "http://$CELL_WARDEN:4321/?user=${2:-$(id -un)}" |
Thomas Vachuska | fdeda92 | 2016-05-16 11:37:00 -0700 | [diff] [blame] | 247 | clearCell |
Thomas Vachuska | f07ec21 | 2016-05-10 12:17:40 -0700 | [diff] [blame] | 248 | ;; |
| 249 | |
| 250 | "status") |
| 251 | curl -sS "http://$CELL_WARDEN:4321/" | sort |
| 252 | ;; |
| 253 | |
| 254 | "") |
Charles Chan | 9b152fc | 2016-11-21 12:06:49 -0800 | [diff] [blame] | 255 | env | egrep "^ONOS_CELL" |
Thomas Vachuska | 2582fc2 | 2018-07-02 14:54:18 -0700 | [diff] [blame] | 256 | env | egrep "^OCC[0-9]+" | sort |
Charles Chan | 9b152fc | 2016-11-21 12:06:49 -0800 | [diff] [blame] | 257 | env | egrep "^OC[0-9]+" | sort |
Thomas Vachuska | 2582fc2 | 2018-07-02 14:54:18 -0700 | [diff] [blame] | 258 | env | egrep "^OC[INT]" | sort |
| 259 | env | egrep "^ONOS_" | egrep -v 'ONOS_ROOT|ONOS_CELL|ONOS_INSTANCES|ONOS_CORES|ONOS_DEVICES|ONOS_HOSTS' | sort |
Thomas Vachuska | f07ec21 | 2016-05-10 12:17:40 -0700 | [diff] [blame] | 260 | ;; |
| 261 | |
| 262 | *) |
Thomas Vachuska | fdeda92 | 2016-05-16 11:37:00 -0700 | [diff] [blame] | 263 | [ ! -f $ONOS_ROOT/tools/test/cells/$1 ] && echo "No such cell: $1" >&2 && return 1 |
| 264 | clearCell |
Charles Chan | c7a60ce | 2017-05-05 13:56:27 -0700 | [diff] [blame] | 265 | export ONOS_USER=sdn |
| 266 | export ONOS_GROUP=sdn |
| 267 | export ONOS_WEB_USER=onos |
| 268 | export ONOS_WEB_PASS=rocks |
Thomas Vachuska | f07ec21 | 2016-05-10 12:17:40 -0700 | [diff] [blame] | 269 | export ONOS_CELL=$1 |
| 270 | . $ONOS_ROOT/tools/test/cells/$1 |
Thomas Vachuska | f07ec21 | 2016-05-10 12:17:40 -0700 | [diff] [blame] | 271 | setPrimaryInstance 1 >/dev/null |
| 272 | cell |
Thomas Vachuska | cc0b7d6 | 2016-07-12 14:03:11 -0700 | [diff] [blame] | 273 | topo default >/dev/null |
Thomas Vachuska | f07ec21 | 2016-05-10 12:17:40 -0700 | [diff] [blame] | 274 | esac |
| 275 | } |
tom | ecd0fbd | 2014-09-19 08:47:05 -0700 | [diff] [blame] | 276 | |
Thomas Vachuska | e618557 | 2016-05-04 19:26:15 -0700 | [diff] [blame] | 277 | [ -n "$ONOS_CELL" -a "$ONOS_CELL" != "borrow" ] && cell $ONOS_CELL > /dev/null |
tom | ecd0fbd | 2014-09-19 08:47:05 -0700 | [diff] [blame] | 278 | |
| 279 | # Lists available cells |
| 280 | function cells { |
tom | 2482e6f | 2014-10-01 16:51:48 -0700 | [diff] [blame] | 281 | for cell in $(ls -1 $ONOS_ROOT/tools/test/cells); do |
Thomas Vachuska | 785f581 | 2015-03-19 01:11:00 -0700 | [diff] [blame] | 282 | printf "%-16s %s\n" \ |
Yi Tseng | 7f425d5 | 2017-02-02 13:33:59 -0800 | [diff] [blame] | 283 | "$([ ! -z $ONOS_CELL ] && [ $cell = $ONOS_CELL ] && echo $cell '*' || echo $cell)" \ |
tom | 2482e6f | 2014-10-01 16:51:48 -0700 | [diff] [blame] | 284 | "$(grep '^#' $ONOS_ROOT/tools/test/cells/$cell | head -n 1)" |
| 285 | done |
tom | ecd0fbd | 2014-09-19 08:47:05 -0700 | [diff] [blame] | 286 | } |
tom | 5a18e80 | 2014-09-18 12:38:15 -0700 | [diff] [blame] | 287 | |
Thomas Vachuska | 9507d2a | 2015-12-01 20:45:57 -0800 | [diff] [blame] | 288 | # Find a process by regex |
tom | 5c25570 | 2014-09-18 06:57:39 -0700 | [diff] [blame] | 289 | function spy { |
| 290 | ps -ef | egrep "$@" | grep -v egrep |
| 291 | } |
| 292 | |
Thomas Vachuska | 9507d2a | 2015-12-01 20:45:57 -0800 | [diff] [blame] | 293 | # Kill a process by regex |
tom | 5c25570 | 2014-09-18 06:57:39 -0700 | [diff] [blame] | 294 | function nuke { |
tom | 85258ee | 2014-10-07 00:10:02 -0700 | [diff] [blame] | 295 | spy "$@" | cut -c7-11 | xargs kill |
tom | 5c25570 | 2014-09-18 06:57:39 -0700 | [diff] [blame] | 296 | } |
Ayaka Koshibe | a998513 | 2014-12-18 14:55:22 -0800 | [diff] [blame] | 297 | |
Thomas Vachuska | ea2d9fd | 2015-09-23 13:13:25 -0700 | [diff] [blame] | 298 | # Edit a cell file by providing a cell name; opens the cell file in $EDITOR. |
| 299 | function vicell { |
| 300 | local apply=false |
| 301 | local create=false |
Ayaka Koshibe | 77acdc7 | 2016-02-03 17:19:24 -0800 | [diff] [blame] | 302 | local ${cdf:=$ONOS_CELL} |
Thomas Vachuska | ea2d9fd | 2015-09-23 13:13:25 -0700 | [diff] [blame] | 303 | local cpath="${ONOS_ROOT}/tools/test/cells/" |
Ayaka Koshibe | a998513 | 2014-12-18 14:55:22 -0800 | [diff] [blame] | 304 | |
Ayaka Koshibe | 77acdc7 | 2016-02-03 17:19:24 -0800 | [diff] [blame] | 305 | if [ "$1" = "-h" ] ; then |
Thomas Vachuska | ea2d9fd | 2015-09-23 13:13:25 -0700 | [diff] [blame] | 306 | printf "usage: vicell [file] [options]\n\noptions:\n" |
Ayaka Koshibe | 77acdc7 | 2016-02-03 17:19:24 -0800 | [diff] [blame] | 307 | printf "\t[file]: cell name (default: current cell)\n" |
Thomas Vachuska | ea2d9fd | 2015-09-23 13:13:25 -0700 | [diff] [blame] | 308 | printf "\t-a: apply the cell after editing\n" |
Ayaka Koshibe | 77acdc7 | 2016-02-03 17:19:24 -0800 | [diff] [blame] | 309 | printf "\t-e: [editor] set EDITOR to [editor] (default: *vi*)\n" |
Thomas Vachuska | ea2d9fd | 2015-09-23 13:13:25 -0700 | [diff] [blame] | 310 | printf "\t-c: create cell file if none exist\n\n" |
| 311 | return 1 |
| 312 | fi |
Ayaka Koshibe | a998513 | 2014-12-18 14:55:22 -0800 | [diff] [blame] | 313 | |
Thomas Vachuska | ea2d9fd | 2015-09-23 13:13:25 -0700 | [diff] [blame] | 314 | while [ $# -gt 0 ]; do |
| 315 | case "$1" in |
| 316 | -a) apply=true ;; |
| 317 | -e) EDITOR=$2; shift ;; |
| 318 | -c) create=true ;; |
| 319 | *) cdf="$1" ;; |
| 320 | esac |
| 321 | shift |
| 322 | done |
Ayaka Koshibe | a998513 | 2014-12-18 14:55:22 -0800 | [diff] [blame] | 323 | |
Ayaka Koshibe | 77acdc7 | 2016-02-03 17:19:24 -0800 | [diff] [blame] | 324 | if [ ! -e "${cpath}${cdf}" ] && ! ($create) ; then |
Thomas Vachuska | ea2d9fd | 2015-09-23 13:13:25 -0700 | [diff] [blame] | 325 | printf "${cdf} : no such cell\n" && return 1 |
| 326 | fi |
Ayaka Koshibe | a998513 | 2014-12-18 14:55:22 -0800 | [diff] [blame] | 327 | |
Thomas Vachuska | ea2d9fd | 2015-09-23 13:13:25 -0700 | [diff] [blame] | 328 | if [ -z "${EDITOR}" ] || [ -x "$(which ${EDITOR})" ]; then |
| 329 | unset EDITOR && vi ${cpath}${cdf} |
| 330 | else |
| 331 | $EDITOR ${cpath}${cdf} |
| 332 | fi |
| 333 | ($apply) && cell ${cdf} |
Ayaka Koshibe | a998513 | 2014-12-18 14:55:22 -0800 | [diff] [blame] | 334 | } |
Ayaka Koshibe | aec62962 | 2015-01-05 20:33:29 -0800 | [diff] [blame] | 335 | |
Thomas Vachuska | 9507d2a | 2015-12-01 20:45:57 -0800 | [diff] [blame] | 336 | # Autocomplete for certain utilities |
Ayaka Koshibe | aec62962 | 2015-01-05 20:33:29 -0800 | [diff] [blame] | 337 | . ${ONOS_ROOT}/tools/test/bin/ogroup-opts |
Thomas Vachuska | 9507d2a | 2015-12-01 20:45:57 -0800 | [diff] [blame] | 338 | |
| 339 | |
| 340 | # Load AT&T MPLS topo GEO data |
Ayaka Koshibe | 77acdc7 | 2016-02-03 17:19:24 -0800 | [diff] [blame] | 341 | alias atttopo='onos-netcfg $OCI $ONOS_ROOT/tools/test/topos/attmpls-cfg.json' |
Simon Hunt | cf7e3b5 | 2016-02-29 23:26:16 -0800 | [diff] [blame] | 342 | |
| 343 | # Load UK topo GEO data |
| 344 | alias uktopo='onos-netcfg $OCI $ONOS_ROOT/tools/test/topos/uk-cfg.json' |
Carmelo Cascone | 15693a2 | 2018-12-12 19:06:57 -0800 | [diff] [blame] | 345 | |
| 346 | # Mininet command that uses BMv2 instead of OVS |
| 347 | alias mn-p4='sudo -E mn --custom $BMV2_MN_PY --switch onosbmv2 --controller remote,ip=$OC1' |