1
0
Fork 0

Adding upstream version 3.1.0+dfsg.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-05 08:00:08 +01:00
parent 64dbec996d
commit cfcebb1a7d
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
569 changed files with 205393 additions and 0 deletions

View 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