blob: 3f95dafe7aea2b0979e3419c84ab5f131d8cd75e [file] [log] [blame]
aPiecek8858de02023-04-26 14:27:24 +02001source [expr {[info exists ::env(TESTS_DIR)] ? "$env(TESTS_DIR)/interactive/ly.tcl" : "ly.tcl"}]
2
3set ddir "$::env(TESTS_DIR)/data"
4set err1 "Operational datastore takes effect only with RPCs/Actions/Replies/Notifications input data types"
5
6test data_operational_twice {it is not allowed to specify more than one --operational parameter} {
7-setup $ly_setup -cleanup $ly_cleanup -body {
8 ly_cmd "load modoper-leafref"
9 ly_cmd "data -t notif -O $ddir/modconfig.xml -O $ddir/modleaf.xml" "cannot be set multiple times"
10}}
11
12test data_operational_no_type {--operational should be with parameter --type} {
13-setup $ly_setup -cleanup $ly_cleanup -body {
14 ly_cmd "load modoper-leafref"
15 ly_cmd_wrn "data -O $ddir/modconfig.xml $ddir/modoper_leafref_notif.xml" $err1
16}}
17
18test data_operational_missing {--operational is omitted and the datastore contents is in the data file} {
19-setup $ly_setup -cleanup $ly_cleanup -body {
20 ly_cmd "load modoper-leafref"
21 ly_cmd_err "data $ddir/modoper_leafref_notif_err.xml" "Failed to parse input data file"
22}}
23
24cleanupTests