source [expr {[info exists ::env(TESTS_DIR)] ? "$env(TESTS_DIR)/non-interactive/ly.tcl" : "ly.tcl"}] set mdir $::env(YANG_MODULES_DIR) set ddir $::env(TESTS_DIR)/data set ipv6_path "/ietf-interfaces:interfaces/interface/ietf-ip:ipv6/address" test format_yang {} { ly_cmd "-f yang $mdir/modleaf.yang" "leaf lfl" } {} test format_yang_submodule {Print submodule in yang format} { ly_cmd "-s modsub -f yang $mdir/modinclude.yang" "submodule modsub" } {} test format_yin {} { ly_cmd "-f yin $mdir/modleaf.yang" "" } {} test format_yin_submodule {Print submodule in yin format} { ly_cmd "-s modsub -f yin $mdir/modinclude.yang" "7" } {} test format_data_json {Print data in json format} { ly_cmd "-f json $mdir/modleaf.yang $ddir/modleaf.xml" "{\n \"modleaf:lfl\": 7\n}" } {} test format_data_lyb_err {Printing in LYB format: expect error due to missing parameter} { ly_cmd_err "-f lyb $mdir/modleaf.yang $ddir/modleaf.xml" "The LYB format requires the -o" } {} test format_tree_submodule {Print submodule in tree format} { ly_cmd "-s modsub -f tree $mdir/modinclude.yang" "submodule: modsub" } {} test format_tree_path {Print subtree in tree format} { ly_cmd "-f tree -P $ipv6_path $mdir/ietf-ip.yang" "\\+--rw address.*\\+--rw prefix-length" } {} test format_tree_path_single_node {Print node in tree format} { ly_cmd "-f tree -q -P $ipv6_path $mdir/ietf-ip.yang" "\\+--rw address\\* \\\[ip\\\]$" } {} test format_tree_path_single_node_line_length {Print node in the tree format and limit row size} { ly_cmd "-f tree -L 20 -q -P $ipv6_path $mdir/ietf-ip.yang" "\\+--rw address\\*\n *\\\[ip\\\]$" } {} test format_feature_param_one_module {Show features for one module} { ly_cmd "-f feature-param $mdir/ietf-ip.yang" " -F ietf-ip:ipv4-non-contiguous-netmasks,ipv6-privacy-autoconf" -ex } {} test format_feature_param_more_modules {Show a mix of modules with and without features} { set features " -F modfeature:ftr1,ftr2\ -F modleaf:\ -F ietf-ip:ipv4-non-contiguous-netmasks,ipv6-privacy-autoconf" ly_cmd "-f feature-param $mdir/modfeature.yang $mdir/modleaf.yang $mdir/ietf-ip.yang" $features -ex } {} cleanupTests