libosmocore/tests/vty/vty_transcript_test.vty

125 lines
2.5 KiB
Plaintext

vty_transcript_test> list
...
multi0 (one|two|three)
multi1 ([one]|[two]|[three])
multi2 [(one|two|three)]
vty_transcript_test> multi0 ?
one 1
two 2
three 3
vty_transcript_test> multi0 one
ok argc=1 one
vty_transcript_test> multi0 two
ok argc=1 two
vty_transcript_test> multi0 o
ok argc=1 one
vty_transcript_test> multi0 t
% Ambiguous command.
vty_transcript_test> multi0 th
ok argc=1 three
vty_transcript_test> multi0
% Command incomplete.
vty_transcript_test> multi1 ?
[one] 1
[two] 2
[three] 3
vty_transcript_test> multi1 one
ok argc=1 one
vty_transcript_test> multi1 two
ok argc=1 two
vty_transcript_test> multi1 o
ok argc=1 one
vty_transcript_test> multi1 t
% Ambiguous command.
vty_transcript_test> multi1 th
ok argc=1 three
vty_transcript_test> multi1
ok argc=0
vty_transcript_test> multi1 [one]
% Unknown command.
vty_transcript_test> multi2 ?
[one] 1
[two] 2
[three] 3
vty_transcript_test> multi2 one
ok argc=1 one
vty_transcript_test> multi2 two
ok argc=1 two
vty_transcript_test> multi2
ok argc=0
vty_transcript_test> multi0 thr
ok argc=1 three
vty_transcript_test> multi1 on
ok argc=1 one
vty_transcript_test> multi2 t
% Ambiguous command.
vty_transcript_test> single0 one
ok argc=1 one
vty_transcript_test> single0 on
ok argc=1 one
vty_transcript_test> single0
ok argc=0
vty_transcript_test> show vty-attributes
Global attributes:
! This command applies immediately
@ This command applies on VTY node exit
Library specific attributes:
A This command applies on ASP restart
I This command applies on IPA link establishment
L This command applies on E1 line update
Application specific attributes:
u Unbelievable: not able to be believed; unlikely to be true
m Magnificent: impressively beautiful, elaborate, or extravagant
w Wonderful: inspiring delight, pleasure, or admiration
n Intentionally unused attribute, ignore me
vty_transcript_test> en
vty_transcript_test# configure terminal
vty_transcript_test(config)# attribute-test
vty_transcript_test(config-attr-test)# list
...
foo-immediate
foo-node-exit
app-unbelievable
app-magnificent
app-wonderful
app-unbelievable-magnificent
app-unbelievable-wonderful
vty_transcript_test(config-attr-test)# list with-flags
...
! ... foo-immediate
@ ... foo-node-exit
. u.. app-unbelievable
. .m. app-magnificent
. ..w app-wonderful
. um. app-unbelievable-magnificent
. u.w app-unbelievable-wonderful