blob: e253d1ae72c3a3772aacf8d9ec3f67fbe4bf57cb (
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
59
60
61
62
63
|
source [expr {[info exists ::env(TESTS_DIR)] ? "$env(TESTS_DIR)/interactive/ly.tcl" : "ly.tcl"}]
set mdir "$::env(YANG_MODULES_DIR)"
set ddir "$::env(TESTS_DIR)/data"
test extdata_set_clear {Set and clear extdata file} {
-setup $ly_setup -cleanup $ly_cleanup -body {
ly_cmd "extdata" "No file set"
ly_cmd "extdata $ddir/modsm_ctx_ext.xml"
ly_cmd "extdata" "$ddir/modsm_ctx_ext.xml"
ly_cmd "extdata -c"
ly_cmd "extdata" "No file set"
}}
test extdata_clear_cmd {Clear extdata file by 'clear' command} {
-setup $ly_setup -cleanup $ly_cleanup -body {
ly_cmd "extdata $ddir/modsm_ctx_ext.xml"
ly_cmd "clear"
ly_cmd "extdata" "No file set"
}}
test extdata_one_only {Only one file for extdata} {
-setup $ly_setup -cleanup $ly_cleanup -body {
ly_cmd_err "extdata $ddir/modsm_ctx_ext.xml $ddir/modsm_ctx_ext.xml" "Only one file must be entered"
}}
test extdata_schema_mount_tree {Print tree output of a model with Schema Mount} {
-setup $ly_setup -cleanup $ly_cleanup -body {
ly_cmd "clear -y"
ly_cmd "searchpath $mdir"
ly_cmd "load modsm"
ly_cmd "extdata $ddir/modsm_ctx_ext.xml"
ly_cmd "print -f tree modsm" "--mp root.*--rw lfl/"
}}
test ext_data_schema_mount_tree_yanglibfile {Print tree output of a model with Schema Mount and --yang-library-file} {
-setup $ly_setup -cleanup $ly_cleanup -body {
ly_cmd "clear -Y $ddir/modsm_ctx_main.xml"
ly_cmd "searchpath $mdir"
ly_cmd "load modsm"
ly_cmd "extdata $ddir/modsm_ctx_ext.xml"
ly_cmd "print -f tree modsm" "--mp root.*--rw lfl/.*--rw msa:alf?"
}}
test ext_data_schema_mount_xml {Validating and printing mounted data} {
-setup $ly_setup -cleanup $ly_cleanup -body {
ly_cmd "clear -y"
ly_cmd "searchpath $mdir"
ly_cmd "load modsm"
ly_cmd "extdata $ddir/modsm_ctx_ext.xml"
ly_cmd "data -f xml -t config $ddir/modsm.xml" "</lfl>"
}}
test ext_data_schema_mount_xml_yanglibfile {Validating and printing mounted data with --yang-library-file} {
-setup $ly_setup -cleanup $ly_cleanup -body {
ly_cmd "clear -Y $ddir/modsm_ctx_main.xml"
ly_cmd "searchpath $mdir"
ly_cmd "load modsm"
ly_cmd "extdata $ddir/modsm_ctx_ext.xml"
ly_cmd "data -f xml -t config $ddir/modsm2.xml" "</lfl>.*</alf>"
}}
cleanupTests
|