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