Adding upstream version 3.1.0+dfsg.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
64dbec996d
commit
cfcebb1a7d
569 changed files with 205393 additions and 0 deletions
33
tests/yanglint/interactive/data_merge.test
Normal file
33
tests/yanglint/interactive/data_merge.test
Normal file
|
@ -0,0 +1,33 @@
|
|||
source [expr {[info exists ::env(TESTS_DIR)] ? "$env(TESTS_DIR)/interactive/ly.tcl" : "ly.tcl"}]
|
||||
|
||||
set ddir "$::env(TESTS_DIR)/data"
|
||||
|
||||
test data_merge_basic {Data is merged and the node is added} {
|
||||
-setup $ly_setup -cleanup $ly_cleanup -body {
|
||||
ly_cmd "load modmerge"
|
||||
ly_cmd "data -m -f xml $ddir/modmerge.xml $ddir/modmerge3.xml" "<en>.*<lm>.*<lf>"
|
||||
}}
|
||||
|
||||
test data_merge_validation_failed {Data is merged but validation failed.} {
|
||||
-setup $ly_setup -cleanup $ly_cleanup -body {
|
||||
ly_cmd "load modmerge"
|
||||
ly_cmd "data $ddir/modmerge.xml"
|
||||
ly_cmd "data $ddir/modmerge2.xml"
|
||||
ly_cmd "data -m $ddir/modmerge2.xml $ddir/modmerge.xml"
|
||||
ly_cmd_err "data -m $ddir/modmerge.xml $ddir/modmerge2.xml" "Merged data are not valid"
|
||||
}}
|
||||
|
||||
test data_merge_dataconfig {The merge option has effect only for 'data' and 'config' TYPEs} {
|
||||
-setup $ly_setup -cleanup $ly_cleanup -body {
|
||||
ly_cmd "load modrpc modnotif modconfig modleaf"
|
||||
set wrn1 "option has effect only for"
|
||||
ly_cmd_wrn "data -m -t rpc $ddir/modrpc.xml $ddir/modrpc.xml" $wrn1
|
||||
ly_cmd_wrn "data -m -t notif $ddir/modnotif2.xml $ddir/modnotif2.xml" $wrn1
|
||||
ly_cmd_wrn "data -m -t get $ddir/modleaf.xml $ddir/modconfig.xml" $wrn1
|
||||
ly_cmd_wrn "data -m -t getconfig $ddir/modleaf.xml $ddir/modconfig2.xml" $wrn1
|
||||
ly_cmd_wrn "data -m -t edit $ddir/modleaf.xml $ddir/modconfig2.xml" $wrn1
|
||||
ly_cmd "data -m -t config $ddir/modleaf.xml $ddir/modconfig2.xml"
|
||||
ly_cmd "data -m -t data $ddir/modleaf.xml $ddir/modconfig.xml"
|
||||
}}
|
||||
|
||||
cleanupTests
|
Loading…
Add table
Add a link
Reference in a new issue