File: list.test

package info (click to toggle)
libyang 5.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 11,212 kB
  • sloc: ansic: 131,170; xml: 671; sh: 448; tcl: 325; makefile: 19
file content (26 lines) | stat: -rw-r--r-- 778 bytes parent folder | download | duplicates (2)
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
source [expr {[info exists ::env(TESTS_DIR)] ? "$env(TESTS_DIR)/non-interactive/ly.tcl" : "ly.tcl"}]
namespace import uti::regex_xml_elements uti::regex_json_pairs

set modules {ietf-inet-types ietf-yang-library}

test list_basic {} {
    ly_cmd "-l" "ietf-yang-types"
} {}

test list_format_xml {list --format xml} {
    ly_cmd "-y -f xml -l" [regex_xml_elements $modules "name"]
} {}

test list_format_json {list --format json} {
    ly_cmd "-y -f json -l" [regex_json_pairs $modules "name"]
} {}

test list_ietf_yang_library {Error due to missing ietf-yang-library} {
    ly_cmd_err "-f xml -l" "Module \"ietf-yang-library\" is not implemented."
} {}

test list_bad_format {Error due to bad format} {
    ly_cmd_err "-f csv -l" "Unknown output format csv"
} {}

cleanupTests