/** * @file test_validation.c * @author: Radek Krejci * @brief unit tests for functions from validation.c * * Copyright (c) 2020 CESNET, z.s.p.o. * * This source code is licensed under BSD 3-Clause License (the "License"). * You may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://opensource.org/licenses/BSD-3-Clause */ #define _UTEST_MAIN_ #include "utests.h" #include #include #include "context.h" #include "in.h" #include "out.h" #include "parser_data.h" #include "printer_data.h" #include "tests_config.h" #include "tree_data_internal.h" #include "tree_schema.h" #define LYD_TREE_CREATE(INPUT, MODEL) \ CHECK_PARSE_LYD_PARAM(INPUT, LYD_XML, 0, LYD_VALIDATE_PRESENT, LY_SUCCESS, MODEL) static void test_when(void **state) { struct lyd_node *tree; const char *schema = "module a {\n" " namespace urn:tests:a;\n" " prefix a;\n" " yang-version 1.1;\n" "\n" " container cont {\n" " leaf a {\n" " when \"../../c = 'val_c'\";\n" " type string;\n" " }\n" " leaf b {\n" " type string;\n" " }\n" " }\n" " leaf c {\n" " when \"/cont/b = 'val_b'\";\n" " type string;\n" " }\n" "}"; UTEST_ADD_MODULE(schema, LYS_IN_YANG, NULL, NULL); CHECK_PARSE_LYD_PARAM("hey", LYD_XML, 0, LYD_VALIDATE_PRESENT, LY_EVALID, tree); CHECK_LOG_CTX("When condition \"/cont/b = 'val_b'\" not satisfied.", "Data location \"/a:c\"."); LYD_TREE_CREATE("val_bhey", tree); CHECK_LYSC_NODE(tree->next->schema, NULL, 0, LYS_CONFIG_W | LYS_STATUS_CURR, 1, "c", 0, LYS_LEAF, 0, 0, NULL, 1); assert_int_equal(LYD_WHEN_TRUE, tree->next->flags); lyd_free_all(tree); LYD_TREE_CREATE("valval_bval_c", tree); CHECK_LYSC_NODE(lyd_child(tree)->schema, NULL, 0, LYS_CONFIG_W | LYS_STATUS_CURR, 1, "a", 1, LYS_LEAF, 1, 0, NULL, 1); assert_int_equal(LYD_WHEN_TRUE, lyd_child(tree)->flags); CHECK_LYSC_NODE(tree->next->schema, NULL, 0, LYS_CONFIG_W | LYS_STATUS_CURR, 1, "c", 0, LYS_LEAF, 0, 0, NULL, 1); assert_int_equal(LYD_WHEN_TRUE, tree->next->flags); lyd_free_all(tree); } static void test_mandatory_when(void **state) { struct lyd_node *tree; const char *schema = "module a {\n" " namespace urn:tests:a;\n" " prefix a;\n" " yang-version 1.1;\n" "\n" " container cont {\n" " leaf a {\n" " type string;\n" " }\n" " leaf b {\n" " when \"../a = 'val_a'\";\n" " mandatory true;\n" " type string;\n" " }\n" " }\n" " leaf c {\n" " type string;\n" " }\n" " leaf d {\n" " when \"../c = 'val_c'\";\n" " mandatory true;\n" " type string;\n" " }\n" "}"; UTEST_ADD_MODULE(schema, LYS_IN_YANG, NULL, NULL); CHECK_PARSE_LYD_PARAM("hey", LYD_XML, 0, LYD_VALIDATE_PRESENT, LY_EVALID, tree); CHECK_LOG_CTX("When condition \"../c = 'val_c'\" not satisfied.", "Data location \"/a:d\"."); CHECK_PARSE_LYD_PARAM("hey", LYD_XML, 0, LYD_VALIDATE_PRESENT, LY_EVALID, tree); CHECK_LOG_CTX("When condition \"../a = 'val_a'\" not satisfied.", "Data location \"/a:cont/b\"."); LYD_TREE_CREATE("val_chey", tree); CHECK_LYSC_NODE(tree->next->next->schema, NULL, 0, LYS_CONFIG_W | LYS_STATUS_CURR | LYS_MAND_TRUE, 1, "d", 0, LYS_LEAF, 0, 0, NULL, 1); assert_int_equal(LYD_WHEN_TRUE, tree->next->next->flags); lyd_free_all(tree); LYD_TREE_CREATE("val_ahey", tree); CHECK_LYSC_NODE(lyd_child(tree)->next->schema, NULL, 0, LYS_CONFIG_W | LYS_STATUS_CURR | LYS_MAND_TRUE, 1, "b", 0, LYS_LEAF, tree->schema, 0, NULL, 1); assert_int_equal(LYD_WHEN_TRUE, lyd_child(tree)->next->flags); lyd_free_all(tree); } static void test_type_incomplete_when(void **state) { struct lys_module *mod; struct lyd_node *tree; const char *schema = "module a {\n" " namespace urn:tests:a;\n" " prefix a;\n" " yang-version 1.1;\n" "\n" " container cont {\n" " when \"../c = 'val_c'\";\n" " leaf a {\n" " type leafref {\n" " path \"/a:c\";\n" " }\n" " }\n" " leaf b {\n" " type string;\n" " }\n" " }\n" " leaf c {\n" " type string;\n" " }\n" "}"; UTEST_ADD_MODULE(schema, LYS_IN_YANG, NULL, &mod); LYD_TREE_CREATE("val_cvalval_c", tree); /* make the when false */ assert_int_equal(LY_SUCCESS, lyd_change_term(tree->next, "wrong-val")); /* autodelete when with a leafref */ assert_int_equal(LY_SUCCESS, lyd_validate_module(&tree, mod, 0, NULL)); assert_string_equal(LYD_NAME(tree), "c"); assert_null(tree->next); lyd_free_all(tree); } static void test_mandatory(void **state) { struct lyd_node *tree; const char *schema = "module b {\n" " namespace urn:tests:b;\n" " prefix b;\n" " yang-version 1.1;\n" "\n" " choice choic {\n" " mandatory true;\n" " leaf a {\n" " type string;\n" " }\n" " case b {\n" " leaf l {\n" " type string;\n" " }\n" " }\n" " }\n" " leaf c {\n" " mandatory true;\n" " type string;\n" " }\n" " leaf d {\n" " type empty;\n" " }\n" "}"; UTEST_ADD_MODULE(schema, LYS_IN_YANG, NULL, NULL); CHECK_PARSE_LYD_PARAM("", LYD_XML, 0, LYD_VALIDATE_PRESENT, LY_EVALID, tree); CHECK_LOG_CTX_APPTAG("Mandatory choice \"choic\" data do not exist.", "Schema location \"/b:choic\".", "missing-choice"); CHECK_PARSE_LYD_PARAM("string", LYD_XML, 0, LYD_VALIDATE_PRESENT, LY_EVALID, tree); CHECK_LOG_CTX("Mandatory node \"c\" instance does not exist.", "Schema location \"/b:c\"."); CHECK_PARSE_LYD_PARAM("string", LYD_XML, 0, LYD_VALIDATE_PRESENT, LY_EVALID, tree); CHECK_LOG_CTX("Mandatory node \"c\" instance does not exist.", "Schema location \"/b:c\"."); LYD_TREE_CREATE("stringstring2", tree); lyd_free_siblings(tree); } static void test_minmax(void **state) { struct lyd_node *tree; const char *schema = "module c {\n" " namespace urn:tests:c;\n" " prefix c;\n" " yang-version 1.1;\n" "\n" " choice choic {\n" " leaf a {\n" " type string;\n" " }\n" " case b {\n" " leaf-list l {\n" " min-elements 3;\n" " type string;\n" " }\n" " }\n" " }\n" " list lt {\n" " max-elements 4;\n" " key \"k\";\n" " leaf k {\n" " type string;\n" " }\n" " }\n" " leaf d {\n" " type empty;\n" " }\n" "}"; UTEST_ADD_MODULE(schema, LYS_IN_YANG, NULL, NULL); CHECK_PARSE_LYD_PARAM("mate" "", LYD_XML, 0, LYD_VALIDATE_PRESENT, LY_EVALID, tree); CHECK_LOG_CTX_APPTAG("Too few \"l\" instances.", "Schema location \"/c:choic/b/l\".", "too-few-elements"); CHECK_PARSE_LYD_PARAM("val1" "val2", LYD_XML, 0, LYD_VALIDATE_PRESENT, LY_EVALID, tree); CHECK_LOG_CTX_APPTAG("Too few \"l\" instances.", "Schema location \"/c:choic/b/l\".", "too-few-elements"); LYD_TREE_CREATE("val1" "val2" "val3", tree); lyd_free_all(tree); CHECK_PARSE_LYD_PARAM("val1" "val2" "val3" "val1" "val2" "val3" "val4" "val5" "val6", LYD_XML, 0, LYD_VALIDATE_PRESENT, LY_EVALID, tree); CHECK_LOG_CTX_APPTAG("Too many \"lt\" instances.", "Data location \"/c:lt[k='val5']\".", "too-many-elements"); } const char *schema_d = "module d {\n" " namespace urn:tests:d;\n" " prefix d;\n" " yang-version 1.1;\n" "\n" " list lt {\n" " key \"k\";\n" " unique \"l1\";\n" " leaf k {\n" " type string;\n" " }\n" " leaf l1 {\n" " type string;\n" " }\n" " }\n" " list lt2 {\n" " key \"k\";\n" " unique \"cont/l2 l4\";\n" " unique \"l5 l6\";\n" " leaf k {\n" " type string;\n" " }\n" " container cont {\n" " leaf l2 {\n" " type string;\n" " }\n" " }\n" " leaf l4 {\n" " type string;\n" " }\n" " leaf l5 {\n" " type string;\n" " }\n" " leaf l6 {\n" " type string;\n" " }\n" " list lt3 {\n" " key \"kk\";\n" " unique \"l3\";\n" " leaf kk {\n" " type string;\n" " }\n" " leaf l3 {\n" " type string;\n" " }\n" " }\n" " }\n" "}"; static void test_unique(void **state) { struct lyd_node *tree; UTEST_ADD_MODULE(schema_d, LYS_IN_YANG, NULL, NULL); LYD_TREE_CREATE("\n" " val1\n" " same\n" "\n" "\n" " val2\n" "", tree); lyd_free_all(tree); LYD_TREE_CREATE("\n" " val1\n" " same\n" "\n" "\n" " val2\n" " not-same\n" "", tree); lyd_free_all(tree); CHECK_PARSE_LYD_PARAM("\n" " val1\n" " same\n" "\n" "\n" " val2\n" " same\n" "", LYD_XML, 0, LYD_VALIDATE_PRESENT, LY_EVALID, tree); CHECK_LOG_CTX_APPTAG("Unique data leaf(s) \"l1\" not satisfied in \"/d:lt[k='val1']\" and \"/d:lt[k='val2']\".", "Data location \"/d:lt[k='val2']\".", "data-not-unique"); /* now try with more instances */ LYD_TREE_CREATE("\n" " val1\n" " 1\n" "\n" "\n" " val2\n" " 2\n" "\n" "\n" " val3\n" " 3\n" "\n" "\n" " val4\n" " 4\n" "\n" "\n" " val5\n" " 5\n" "\n" "\n" " val6\n" " 6\n" "\n" "\n" " val7\n" " 7\n" "\n" "\n" " val8\n" " 8\n" "", tree); lyd_free_all(tree); LYD_TREE_CREATE("\n" " val1\n" " 1\n" "\n" "\n" " val2\n" " 2\n" "\n" "\n" " val3\n" " 3\n" "\n" "\n" " val4\n" "\n" "\n" " val5\n" " 5\n" "\n" "\n" " val6\n" " 6\n" "\n" "\n" " val7\n" "\n" "\n" " val8\n" "", tree); lyd_free_all(tree); CHECK_PARSE_LYD_PARAM("\n" " val1\n" " 1\n" "\n" "\n" " val2\n" " 2\n" "\n" "\n" " val3\n" "\n" "\n" " val4\n" " 4\n" "\n" "\n" " val5\n" "\n" "\n" " val6\n" "\n" "\n" " val7\n" " 2\n" "\n" "\n" " val8\n" " 8\n" "", LYD_XML, 0, LYD_VALIDATE_PRESENT, LY_EVALID, tree); CHECK_LOG_CTX_APPTAG("Unique data leaf(s) \"l1\" not satisfied in \"/d:lt[k='val7']\" and \"/d:lt[k='val2']\".", "Data location \"/d:lt[k='val2']\".", "data-not-unique"); } static void test_unique_nested(void **state) { struct lyd_node *tree; UTEST_ADD_MODULE(schema_d, LYS_IN_YANG, NULL, NULL); /* nested list uniquest are compared only with instances in the same parent list instance */ LYD_TREE_CREATE("\n" " val1\n" " \n" " 1\n" " \n" " 1\n" "\n" "\n" " val2\n" " \n" " 2\n" " \n" " 2\n" " \n" " val1\n" " 1\n" " \n" " \n" " val2\n" " 2\n" " \n" "\n" "\n" " val3\n" " \n" " 3\n" " \n" " 3\n" " \n" " val1\n" " 2\n" " \n" "\n" "\n" " val4\n" " \n" " 4\n" " \n" " 4\n" " \n" " val1\n" " 3\n" " \n" "\n" "\n" " val5\n" " \n" " 5\n" " \n" " 5\n" " \n" " val1\n" " 3\n" " \n" "", tree); lyd_free_all(tree); CHECK_PARSE_LYD_PARAM("\n" " val1\n" " \n" " 1\n" " \n" " 1\n" "\n" "\n" " val2\n" " \n" " 2\n" " \n" " \n" " val1\n" " 1\n" " \n" " \n" " val2\n" " 2\n" " \n" " \n" " val3\n" " 1\n" " \n" "\n" "\n" " val3\n" " \n" " 3\n" " \n" " 1\n" " \n" " val1\n" " 2\n" " \n" "\n" "\n" " val4\n" " \n" " 4\n" " \n" " \n" " val1\n" " 3\n" " \n" "\n" "\n" " val5\n" " \n" " 5\n" " \n" " \n" " val1\n" " 3\n" " \n" "", LYD_XML, 0, LYD_VALIDATE_PRESENT, LY_EVALID, tree); CHECK_LOG_CTX_APPTAG("Unique data leaf(s) \"l3\" not satisfied in \"/d:lt2[k='val2']/lt3[kk='val3']\" and " "\"/d:lt2[k='val2']/lt3[kk='val1']\".", "Data location \"/d:lt2[k='val2']/lt3[kk='val1']\".", "data-not-unique"); CHECK_PARSE_LYD_PARAM("\n" " val1\n" " \n" " 1\n" " \n" " 1\n" "\n" "\n" " val2\n" " \n" " 2\n" " \n" " 2\n" "\n" "\n" " val3\n" " \n" " 3\n" " \n" " 3\n" "\n" "\n" " val4\n" " \n" " 2\n" " \n" " 2\n" "\n" "\n" " val5\n" " \n" " 5\n" " \n" " 5\n" "", LYD_XML, 0, LYD_VALIDATE_PRESENT, LY_EVALID, tree); CHECK_LOG_CTX_APPTAG("Unique data leaf(s) \"cont/l2 l4\" not satisfied in \"/d:lt2[k='val4']\" and \"/d:lt2[k='val2']\".", "Data location \"/d:lt2[k='val2']\".", "data-not-unique"); CHECK_PARSE_LYD_PARAM("\n" " val1\n" " \n" " 1\n" " \n" " 1\n" " 1\n" " 1\n" "\n" "\n" " val2\n" " \n" " 2\n" " \n" " 1\n" " 1\n" "\n" "\n" " val3\n" " \n" " 3\n" " \n" " 1\n" " 3\n" " 3\n" "\n" "\n" " val4\n" " \n" " 4\n" " \n" " 1\n" " 1\n" "\n" "\n" " val5\n" " \n" " 5\n" " \n" " 1\n" " 3\n" " 3\n" "", LYD_XML, 0, LYD_VALIDATE_PRESENT, LY_EVALID, tree); CHECK_LOG_CTX_APPTAG("Unique data leaf(s) \"l5 l6\" not satisfied in \"/d:lt2[k='val5']\" and \"/d:lt2[k='val3']\".", "Data location \"/d:lt2[k='val3']\".", "data-not-unique"); } static void test_dup(void **state) { struct lyd_node *tree; const char *schema = "module e {\n" " namespace urn:tests:e;\n" " prefix e;\n" " yang-version 1.1;\n" "\n" " choice choic {\n" " leaf a {\n" " type string;\n" " }\n" " case b {\n" " leaf-list l {\n" " type string;\n" " }\n" " }\n" " }\n" " list lt {\n" " key \"k\";\n" " leaf k {\n" " type string;\n" " }\n" " }\n" " leaf d {\n" " type uint32;\n" " }\n" " leaf-list ll {\n" " type string;\n" " }\n" " container cont {\n" " list lt {\n" " key \"k\";\n" " leaf k {\n" " type string;\n" " }\n" " }\n" " leaf d {\n" " type uint32;\n" " }\n" " leaf-list ll {\n" " type string;\n" " }\n" " leaf-list ll2 {\n" " type enumeration {\n" " enum one;\n" " enum two;\n" " }\n" " }\n" " }\n" "}"; UTEST_ADD_MODULE(schema, LYS_IN_YANG, NULL, NULL); CHECK_PARSE_LYD_PARAM("2550", LYD_XML, 0, LYD_VALIDATE_PRESENT, LY_EVALID, tree); CHECK_LOG_CTX("Duplicate instance of \"d\".", "Data location \"/e:d\"."); CHECK_PARSE_LYD_PARAM("A" "B" "A", LYD_XML, 0, LYD_VALIDATE_PRESENT, LY_EVALID, tree); CHECK_LOG_CTX("Duplicate instance of \"lt\".", "Data location \"/e:lt[k='A']\"."); CHECK_PARSE_LYD_PARAM("A" "B" "B", LYD_XML, 0, LYD_VALIDATE_PRESENT, LY_EVALID, tree); CHECK_LOG_CTX("Duplicate instance of \"ll\".", "Data location \"/e:ll[.='B']\"."); CHECK_PARSE_LYD_PARAM("", LYD_XML, 0, LYD_VALIDATE_PRESENT, LY_EVALID, tree); CHECK_LOG_CTX("Duplicate instance of \"cont\".", "Data location \"/e:cont\"."); /* same tests again but using hashes */ CHECK_PARSE_LYD_PARAM("25501234", LYD_XML, 0, LYD_VALIDATE_PRESENT, LY_EVALID, tree); CHECK_LOG_CTX("Duplicate instance of \"d\".", "Data location \"/e:cont/d\", line number 1."); CHECK_PARSE_LYD_PARAM("1234" "a" "b" "c" "d" "c", LYD_XML, 0, LYD_VALIDATE_PRESENT, LY_EVALID, tree); CHECK_LOG_CTX("Duplicate instance of \"lt\".", "Data location \"/e:cont/lt[k='c']\", line number 1."); CHECK_PARSE_LYD_PARAM("1234" "abcdd", LYD_XML, 0, LYD_VALIDATE_PRESENT, LY_EVALID, tree); CHECK_LOG_CTX("Duplicate instance of \"ll\".", "Data location \"/e:cont/ll[.='d']\", line number 1."); /* cases */ CHECK_PARSE_LYD_PARAM("a" "b" "c" "b", LYD_XML, 0, LYD_VALIDATE_PRESENT, LY_EVALID, tree); CHECK_LOG_CTX("Duplicate instance of \"l\".", "Data location \"/e:l[.='b']\"."); CHECK_PARSE_LYD_PARAM("ab" "c" "aa", LYD_XML, 0, LYD_VALIDATE_PRESENT, LY_EVALID, tree); CHECK_LOG_CTX("Data for both cases \"a\" and \"b\" exist.", "Schema location \"/e:choic\"."); } static void test_defaults(void **state) { struct lyd_node *tree, *node, *diff; struct lys_module *mod; const char *schema = "module f {\n" " namespace urn:tests:f;\n" " prefix f;\n" " yang-version 1.1;\n" "\n" " choice choic {\n" " default \"c\";\n" " leaf a {\n" " type string;\n" " }\n" " case b {\n" " leaf l {\n" " type string;\n" " }\n" " }\n" " case c {\n" " leaf-list ll1 {\n" " type string;\n" " default \"def1\";\n" " default \"def2\";\n" " default \"def3\";\n" " }\n" " }\n" " }\n" " leaf d {\n" " type uint32;\n" " default 15;\n" " }\n" " leaf dd {\n" " type uint32;\n" " when '../d = 666';\n" " default 15;\n" " }\n" " leaf-list ll2 {\n" " type string;\n" " default \"dflt1\";\n" " default \"dflt2\";\n" " }\n" " container cont {\n" " choice choic {\n" " default \"c\";\n" " leaf a {\n" " type string;\n" " }\n" " case b {\n" " leaf l {\n" " type string;\n" " }\n" " }\n" " case c {\n" " leaf-list ll1 {\n" " type string;\n" " default \"def1\";\n" " default \"def2\";\n" " default \"def3\";\n" " }\n" " }\n" " }\n" " leaf d {\n" " type uint32;\n" " default 15;\n" " }\n" " leaf dd {\n" " type uint32;\n" " when '../d = 666';\n" " default 15;\n" " }\n" " leaf-list ll2 {\n" " type string;\n" " default \"dflt1\";\n" " default \"dflt2\";\n" " }\n" " }\n" "}"; UTEST_ADD_MODULE(schema, LYS_IN_YANG, NULL, &mod); assert_int_equal(LY_SUCCESS, ly_ctx_set_searchdir(UTEST_LYCTX, TESTS_DIR_MODULES_YANG)); assert_non_null(ly_ctx_load_module(UTEST_LYCTX, "ietf-netconf-with-defaults", "2011-06-01", NULL));\ /* get defaults */ tree = NULL; assert_int_equal(lyd_validate_module(&tree, mod, 0, &diff), LY_SUCCESS); assert_non_null(tree); assert_non_null(diff); /* check all defaults exist */ CHECK_LYD_STRING_PARAM(tree, "def1\n" "def2\n" "def3\n" "15\n" "dflt1\n" "dflt2\n" "\n" " def1\n" " def2\n" " def3\n" " 15\n" " dflt1\n" " dflt2\n" "\n", LYD_XML, LYD_PRINT_WD_IMPL_TAG | LYD_PRINT_WITHSIBLINGS); /* check diff */ CHECK_LYD_STRING_PARAM(diff, "def1\n" "def2\n" "def3\n" "15\n" "dflt1\n" "dflt2\n" "\n" " def1\n" " def2\n" " def3\n" " 15\n" " dflt1\n" " dflt2\n" "\n", LYD_XML, LYD_PRINT_WD_ALL | LYD_PRINT_WITHSIBLINGS); lyd_free_all(diff); /* create another explicit case and validate */ assert_int_equal(lyd_new_term(NULL, mod, "l", "value", 0, &node), LY_SUCCESS); assert_int_equal(lyd_insert_sibling(tree, node, &tree), LY_SUCCESS); assert_int_equal(lyd_validate_all(&tree, UTEST_LYCTX, LYD_VALIDATE_PRESENT, &diff), LY_SUCCESS); /* check data tree */ CHECK_LYD_STRING_PARAM(tree, "value\n" "15\n" "dflt1\n" "dflt2\n" "\n" " def1\n" " def2\n" " def3\n" " 15\n" " dflt1\n" " dflt2\n" "\n", LYD_XML, LYD_PRINT_WD_IMPL_TAG | LYD_PRINT_WITHSIBLINGS); /* check diff */ CHECK_LYD_STRING_PARAM(diff, "def1\n" "def2\n" "def3\n", LYD_XML, LYD_PRINT_WD_ALL | LYD_PRINT_WITHSIBLINGS); lyd_free_all(diff); /* create explicit leaf-list and leaf and validate */ assert_int_equal(lyd_new_term(NULL, mod, "d", "15", 0, &node), LY_SUCCESS); assert_int_equal(lyd_insert_sibling(tree, node, &tree), LY_SUCCESS); assert_int_equal(lyd_new_term(NULL, mod, "ll2", "dflt2", 0, &node), LY_SUCCESS); assert_int_equal(lyd_insert_sibling(tree, node, &tree), LY_SUCCESS); assert_int_equal(lyd_validate_all(&tree, UTEST_LYCTX, LYD_VALIDATE_PRESENT, &diff), LY_SUCCESS); /* check data tree */ CHECK_LYD_STRING_PARAM(tree, "value\n" "15\n" "dflt2\n" "\n" " def1\n" " def2\n" " def3\n" " 15\n" " dflt1\n" " dflt2\n" "\n", LYD_XML, LYD_PRINT_WD_IMPL_TAG | LYD_PRINT_WITHSIBLINGS); /* check diff */ CHECK_LYD_STRING_PARAM(diff, "15\n" "dflt1\n" "dflt2\n", LYD_XML, LYD_PRINT_WD_ALL | LYD_PRINT_WITHSIBLINGS); lyd_free_all(diff); /* create first explicit container, which should become implicit */ assert_int_equal(lyd_new_inner(NULL, mod, "cont", 0, &node), LY_SUCCESS); assert_int_equal(lyd_insert_sibling(tree, node, &tree), LY_SUCCESS); assert_int_equal(lyd_validate_all(&tree, UTEST_LYCTX, LYD_VALIDATE_PRESENT, &diff), LY_SUCCESS); /* check data tree */ CHECK_LYD_STRING_PARAM(tree, "value\n" "15\n" "dflt2\n" "\n" " def1\n" " def2\n" " def3\n" " 15\n" " dflt1\n" " dflt2\n" "\n", LYD_XML, LYD_PRINT_WD_IMPL_TAG | LYD_PRINT_WITHSIBLINGS); /* check diff */ assert_null(diff); /* create second explicit container, which should become implicit, so the first tree node should be removed */ assert_int_equal(lyd_new_inner(NULL, mod, "cont", 0, &node), LY_SUCCESS); assert_int_equal(lyd_insert_sibling(tree, node, &tree), LY_SUCCESS); assert_int_equal(lyd_validate_all(&tree, UTEST_LYCTX, LYD_VALIDATE_PRESENT, &diff), LY_SUCCESS); /* check data tree */ CHECK_LYD_STRING_PARAM(tree, "value\n" "15\n" "dflt2\n" "\n" " def1\n" " def2\n" " def3\n" " 15\n" " dflt1\n" " dflt2\n" "\n", LYD_XML, LYD_PRINT_WD_IMPL_TAG | LYD_PRINT_WITHSIBLINGS); /* check diff */ assert_null(diff); /* similar changes for nested defaults */ assert_int_equal(lyd_new_term(tree->prev, NULL, "ll1", "def3", 0, NULL), LY_SUCCESS); assert_int_equal(lyd_new_term(tree->prev, NULL, "d", "5", 0, NULL), LY_SUCCESS); assert_int_equal(lyd_new_term(tree->prev, NULL, "ll2", "non-dflt", 0, NULL), LY_SUCCESS); assert_int_equal(lyd_validate_all(&tree, UTEST_LYCTX, LYD_VALIDATE_PRESENT, &diff), LY_SUCCESS); /* check data tree */ CHECK_LYD_STRING_PARAM(tree, "value\n" "15\n" "dflt2\n" "\n" " def3\n" " 5\n" " non-dflt\n" "\n", LYD_XML, LYD_PRINT_WITHSIBLINGS); /* check diff */ CHECK_LYD_STRING_PARAM(diff, "\n" " def1\n" " def2\n" " def3\n" " 15\n" " dflt1\n" " dflt2\n" "\n", LYD_XML, LYD_PRINT_WD_ALL | LYD_PRINT_WITHSIBLINGS); lyd_free_all(diff); lyd_free_all(tree); /* check data tree - when enabled node */ CHECK_PARSE_LYD_PARAM("666666", LYD_XML, 0, LYD_VALIDATE_PRESENT, LY_SUCCESS, tree); CHECK_LYD_STRING_PARAM(tree, "def1\n" "def2\n" "def3\n" "666\n" "
15
\n" "dflt1\n" "dflt2\n" "\n" " def1\n" " def2\n" " def3\n" " 666\n" "
15
\n" " dflt1\n" " dflt2\n" "
\n", LYD_XML, LYD_PRINT_WD_ALL | LYD_PRINT_WITHSIBLINGS); lyd_free_all(tree); } static void test_state(void **state) { const char *data; struct lyd_node *tree; const char *schema = "module h {\n" " namespace urn:tests:h;\n" " prefix h;\n" " yang-version 1.1;\n" "\n" " container cont {\n" " container cont2 {\n" " config false;\n" " leaf l {\n" " type string;\n" " }\n" " }\n" " }\n" "}"; UTEST_ADD_MODULE(schema, LYS_IN_YANG, NULL, NULL); data = "\n" " \n" " val\n" " \n" "\n"; CHECK_PARSE_LYD_PARAM(data, LYD_XML, LYD_PARSE_ONLY | LYD_PARSE_NO_STATE, 0, LY_EVALID, tree); CHECK_LOG_CTX("Unexpected data state node \"cont2\" found.", "Data location \"/h:cont/cont2\", line number 3."); CHECK_PARSE_LYD_PARAM(data, LYD_XML, LYD_PARSE_ONLY, 0, LY_SUCCESS, tree); assert_int_equal(LY_EVALID, lyd_validate_all(&tree, NULL, LYD_VALIDATE_PRESENT | LYD_VALIDATE_NO_STATE, NULL)); CHECK_LOG_CTX("Unexpected data state node \"cont2\" found.", "Data location \"/h:cont/cont2\"."); lyd_free_all(tree); } static void test_must(void **state) { struct lyd_node *tree; const char *schema = "module i {\n" " namespace urn:tests:i;\n" " prefix i;\n" " yang-version 1.1;\n" "\n" " container cont {\n" " leaf l {\n" " type string;\n" " }\n" " leaf l2 {\n" " must \"../l = 'right'\";\n" " type string;\n" " }\n" " leaf l3 {\n" " must \"../l = 'left'\" {\n" " error-app-tag \"not-left\";\n" " error-message \"l leaf is not left\";\n" " }\n" " type string;\n" " }\n" " }\n" "}"; UTEST_ADD_MODULE(schema, LYS_IN_YANG, NULL, NULL); CHECK_PARSE_LYD_PARAM("\n" " wrong\n" " val\n" "\n", LYD_XML, 0, LYD_VALIDATE_PRESENT, LY_EVALID, tree); CHECK_LOG_CTX_APPTAG("Must condition \"../l = 'right'\" not satisfied.", "Data location \"/i:cont/l2\".", "must-violation"); LYD_TREE_CREATE("\n" " right\n" " val\n" "\n", tree); lyd_free_all(tree); CHECK_PARSE_LYD_PARAM("\n" " wrong\n" " val\n" "\n", LYD_XML, 0, LYD_VALIDATE_PRESENT, LY_EVALID, tree); CHECK_LOG_CTX_APPTAG("l leaf is not left", "Data location \"/i:cont/l3\".", "not-left"); } const char *schema_j = "module j {\n" " namespace urn:tests:j;\n" " prefix j;\n" " yang-version 1.1;\n" "\n" " feature feat1;\n" "\n" " container cont {\n" " must \"false()\";\n" " list l1 {\n" " key \"k\";\n" " leaf k {\n" " type string;\n" " }\n" " action act {\n" " if-feature feat1;\n" " input {\n" " must \"../../lf1 = 'true'\";\n" " leaf lf2 {\n" " type leafref {\n" " path /lf3;\n" " }\n" " }\n" " }\n" " output {\n" " must \"../../lf1 = 'true2'\";\n" " leaf lf2 {\n" " type leafref {\n" " path /lf4;\n" " }\n" " }\n" " }\n" " }\n" " }\n" "\n" " leaf lf1 {\n" " type string;\n" " }\n" " }\n" "\n" " leaf lf3 {\n" " type string;\n" " }\n" "\n" " leaf lf4 {\n" " type string;\n" " }\n" "}"; const char *feats_j[] = {"feat1", NULL}; static void test_action(void **state) { struct ly_in *in; struct lyd_node *tree, *op_tree; UTEST_ADD_MODULE(schema_j, LYS_IN_YANG, feats_j, NULL); assert_int_equal(LY_SUCCESS, ly_in_new_memory( "\n" " \n" " val1\n" " \n" " target\n" " \n" " \n" "\n", &in)); assert_int_equal(LY_SUCCESS, lyd_parse_op(UTEST_LYCTX, NULL, in, LYD_XML, LYD_TYPE_RPC_YANG, &op_tree, NULL)); assert_non_null(op_tree); /* missing leafref */ assert_int_equal(LY_EVALID, lyd_validate_op(op_tree, NULL, LYD_TYPE_RPC_YANG, NULL)); CHECK_LOG_CTX("Invalid leafref value \"target\" - no target instance \"/lf3\" with the same value.", "Data location \"/j:cont/l1[k='val1']/act/lf2\"."); ly_in_free(in, 0); CHECK_PARSE_LYD_PARAM("\n" " not true\n" "\n" "target\n", LYD_XML, LYD_PARSE_ONLY, 0, LY_SUCCESS, tree); /* input must false */ assert_int_equal(LY_EVALID, lyd_validate_op(op_tree, tree, LYD_TYPE_RPC_YANG, NULL)); CHECK_LOG_CTX("Must condition \"../../lf1 = 'true'\" not satisfied.", "Data location \"/j:cont/l1[k='val1']/act\"."); lyd_free_all(tree); CHECK_PARSE_LYD_PARAM("\n" " true\n" "\n" "target\n", LYD_XML, LYD_PARSE_ONLY, 0, LY_SUCCESS, tree); /* success */ assert_int_equal(LY_SUCCESS, lyd_validate_op(op_tree, tree, LYD_TYPE_RPC_YANG, NULL)); lyd_free_tree(op_tree); lyd_free_siblings(tree); } static void test_rpc(void **state) { const char *schema, *data; struct ly_in *in; struct lyd_node *tree; /* Testing constraint violation in RPC. */ schema = "module val-str {\n" " namespace \"urn:vstr\";\n" " prefix v;\n" "\n" " rpc modify-user-password {\n" " input {\n" " leaf old-password {\n" " type string {\n" " length \"4..8\";\n" " }\n" " }\n" " leaf new-password {\n" " type string {\n" " length \"4..8\";\n" " }\n" " }\n" " }\n" " }\n" "}\n"; UTEST_ADD_MODULE(schema, LYS_IN_YANG, NULL, NULL); data = "\n" " 12345\n" " 123\n" ""; assert_int_equal(LY_SUCCESS, ly_in_new_memory(data, &in)); assert_int_equal(LY_EVALID, lyd_parse_op(UTEST_LYCTX, NULL, in, LYD_XML, LYD_TYPE_RPC_YANG, &tree, NULL)); CHECK_LOG_CTX("Unsatisfied length - string \"123\" length is not allowed.", "Data location \"/val-str:modify-user-password/new-password\", line number 3."); ly_in_free(in, 0); } static void test_reply(void **state) { struct ly_in *in; struct lyd_node *tree, *op_tree; UTEST_ADD_MODULE(schema_j, LYS_IN_YANG, feats_j, NULL); assert_int_equal(LY_SUCCESS, ly_in_new_memory( "\n" " \n" " val1\n" " \n" " target\n" " \n" " \n" "\n", &in)); assert_int_equal(LY_SUCCESS, lyd_parse_op(UTEST_LYCTX, NULL, in, LYD_XML, LYD_TYPE_REPLY_YANG, &op_tree, NULL)); assert_non_null(op_tree); ly_in_free(in, 0); /* missing leafref */ assert_int_equal(LY_EVALID, lyd_validate_op(op_tree, NULL, LYD_TYPE_REPLY_YANG, NULL)); CHECK_LOG_CTX("Invalid leafref value \"target\" - no target instance \"/lf4\" with the same value.", "Data location \"/j:cont/l1[k='val1']/act/lf2\"."); CHECK_PARSE_LYD_PARAM("\n" " not true\n" "\n" "target\n", LYD_XML, LYD_PARSE_ONLY, 0, LY_SUCCESS, tree); /* input must false */ assert_int_equal(LY_EVALID, lyd_validate_op(op_tree, tree, LYD_TYPE_REPLY_YANG, NULL)); CHECK_LOG_CTX("Must condition \"../../lf1 = 'true2'\" not satisfied.", "Data location \"/j:cont/l1[k='val1']/act\"."); lyd_free_all(tree); CHECK_PARSE_LYD_PARAM("\n" " true2\n" "\n" "target\n", LYD_XML, LYD_PARSE_ONLY, 0, LY_SUCCESS, tree); /* success */ assert_int_equal(LY_SUCCESS, lyd_validate_op(op_tree, tree, LYD_TYPE_REPLY_YANG, NULL)); lyd_free_tree(op_tree); lyd_free_all(tree); } static void test_case(void **state) { struct lyd_node *tree; const char *schema = "module k {\n" " namespace urn:tests:k;\n" " prefix k;\n" " yang-version 1.1;\n" "\n" " container ch {\n" " choice a0 {\n" " case v0 {\n" " leaf g0 {\n" " type string;\n" " }\n" " }\n" " case v1 {\n" " choice a1 {\n" " case r0 {\n" " leaf g1 {\n" " type string;\n" " }\n" " }\n" " case r1 {\n" " leaf g2 {\n" " type string;\n" " }\n" " leaf g3 {\n" " type string;\n" " }\n" " }\n" " case r2 {\n" " leaf g4 {\n" " type string;\n" " }\n" " }\n" " }\n" " }\n" " case v2 {\n" " choice a2 {\n" " case y0 {\n" " leaf g5 {\n" " type string;\n" " }\n" " }\n" " case y1 {\n" " leaf g6 {\n" " type string;\n" " }\n" " leaf g7 {\n" " type string;\n" " }\n" " }\n" " case y2 {\n" " leaf g8 {\n" " type string;\n" " }\n" " }\n" " }\n" " }\n" " }\n" " }\n" "}"; UTEST_ADD_MODULE(schema, LYS_IN_YANG, NULL, NULL); CHECK_PARSE_LYD_PARAM( "{\n" " \"k:ch\": {\n" " \"g0\": \"value_g0\",\n" " \"g7\": \"value_g7\"\n" " }\n" "}\n", LYD_JSON, 0, LYD_VALIDATE_PRESENT, LY_EVALID, tree); CHECK_LOG_CTX("Data for both cases \"v0\" and \"v2\" exist.", "Data location \"/k:ch\", line number 5."); CHECK_PARSE_LYD_PARAM( "{\n" " \"k:ch\": {\n" " \"g7\": \"value_g7\",\n" " \"g0\": \"value_g0\"\n" " }\n" "}\n", LYD_JSON, 0, LYD_VALIDATE_PRESENT, LY_EVALID, tree); CHECK_LOG_CTX("Data for both cases \"v0\" and \"v2\" exist.", "Data location \"/k:ch\", line number 5."); } int main(void) { const struct CMUnitTest tests[] = { UTEST(test_when), UTEST(test_mandatory), UTEST(test_mandatory_when), UTEST(test_type_incomplete_when), UTEST(test_minmax), UTEST(test_unique), UTEST(test_unique_nested), UTEST(test_dup), UTEST(test_defaults), UTEST(test_state), UTEST(test_must), UTEST(test_action), UTEST(test_rpc), UTEST(test_reply), UTEST(test_case), }; return cmocka_run_group_tests(tests, NULL, NULL); }