blob: 4228fa69a45772616a2c857e2551803b8612e943 [file] [log] [blame]
aPiecekaa285692023-04-05 13:36:25 +02001source [expr {[info exists ::env(TESTS_DIR)] ? "$env(TESTS_DIR)/interactive/ly.tcl" : "ly.tcl"}]
2
3set ddir "$::env(TESTS_DIR)/data"
4
5test data_present_via_mandatory {validation of mandatory-stmt will pass only with the --present} {
6-setup $ly_setup -cleanup $ly_cleanup -body {
7 ly_cmd "load modleaf modmandatory"
8 ly_cmd_err "data $ddir/modleaf.xml" "Mandatory node \"lft\" instance does not exist."
9 ly_cmd "data -e $ddir/modleaf.xml"
10}}
11
12test data_present_merge_invalid {using --present and --merge but data are invalid} {
13-setup $ly_setup -cleanup $ly_cleanup -body {
14 ly_cmd "load modleaf modmandatory"
15 ly_cmd_err "data -e -m $ddir/modleaf.xml $ddir/modmandatory_invalid.xml" "Mandatory node \"lft\" instance does not exist."
16}}
17
18cleanupTests