aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/onos/tools/test/bin/ogroup-opts
blob: f02b7a8fea752032dfd9d5f2707b03df715eb56e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# Options read by onos-group for help message formatting and sanity checks.
GOPTS='install kill patch-vm push-keys uninstall'

# Tab completion settings for onos-group.
function _ogroup-opts () {
  local cur=${COMP_WORDS[COMP_CWORD]}
  if [ $COMP_CWORD -eq 1 ]; then
    COMPREPLY=( $( compgen -W "${GOPTS} help" -- $cur ) )
  fi
}

complete -F _ogroup-opts onos-group


# Tab completion settings for stc
function _stc-opts () {
  local cur=${COMP_WORDS[COMP_CWORD]}
  if [ $COMP_CWORD -eq 1 ]; then
    COMPREPLY=( $( compgen -W "$(cd $ONOS_ROOT/tools/test/scenarios && ls -1 | sed 's/.xml//g')" -- $cur ) )
  fi
}

complete -F _stc-opts stc


# Tab completion settings for stl
function _stl-opts () {
  local cur=${COMP_WORDS[COMP_CWORD]}
  if [ $COMP_CWORD -eq 1 ]; then
    COMPREPLY=( $( compgen -W "$(cd /tmp/stc && ls -1)" -- $cur ) )
  elif [ $COMP_CWORD -eq 2 ]; then
    COMPREPLY=( $( compgen -W "$(cd /tmp/stc/$3 && ls -1)" -- $cur ) )
  fi
}

complete -F _stl-opts stl


# Tab completion settings for cell
function _cell-opts () {
  local cur=${COMP_WORDS[COMP_CWORD]}
  if [ $COMP_CWORD -eq 1 ]; then
    COMPREPLY=( $( compgen -W "$(cd $ONOS_ROOT/tools/test/cells && ls -1)" -- $cur ) )
  fi
}

complete -F _cell-opts cell vicell


# Tab completion settings for onos-create-app.
function _ocapp-opts () {
  local cur=${COMP_WORDS[COMP_CWORD]}
  if [ $COMP_CWORD -eq 1 ]; then
    COMPREPLY=( $( compgen -W "bundle ui cli" -- $cur ) )
  fi
}

complete -F _ocapp-opts onos-create-app