* Made a separate Clixon datastore XML/JSON top-level symbol
* Replaces the hardcoded "config" keyword. * Implemented by a compile-time option called `DATASTORE_TOP_SYMBOL` option in clixon_custom.h * Tests: added endtest to all tests. Removed all premature exits if BE=0
This commit is contained in:
parent
2ab90d847b
commit
b7991d9b39
132 changed files with 939 additions and 628 deletions
|
|
@ -47,7 +47,9 @@ module ietf-ip{
|
|||
}
|
||||
EOF
|
||||
|
||||
xml='<config><x xmlns="urn:example:clixon"><y><a>1</a><b>2</b><c>first-entry</c></y><y><a>1</a><b>3</b><c>second-entry</c></y><y><a>2</a><b>3</b><c>third-entry</c></y><d/><f><e>a</e><e>b</e><e>c</e></f><g>astring</g></x></config>'
|
||||
xml="<x xmlns=\"urn:example:clixon\"><y><a>1</a><b>2</b><c>first-entry</c></y><y><a>1</a><b>3</b><c>second-entry</c></y><y><a>2</a><b>3</b><c>third-entry</c></y><d/><f><e>a</e><e>b</e><e>c</e></f><g>astring</g></x>"
|
||||
|
||||
xml2="<${DATASTORE_TOP}><x xmlns=\"urn:example:clixon\"><y><a>1</a><b>2</b><c>first-entry</c></y><y><a>1</a><b>3</b><c>second-entry</c></y><y><a>2</a><b>3</b><c>third-entry</c></y><d/><f><e>a</e><e>b</e><e>c</e></f><g>astring</g></x></${DATASTORE_TOP}>"
|
||||
|
||||
name=text
|
||||
|
||||
|
|
@ -68,13 +70,13 @@ ret=$($clixon_util_datastore $conf put replace "$xml")
|
|||
expectmatch "$ret" $? "0" ""
|
||||
|
||||
new "datastore get"
|
||||
expectpart "$($clixon_util_datastore $conf get /)" 0 "^$xml$"
|
||||
expectpart "$($clixon_util_datastore $conf get /)" 0 "^$xml2$"
|
||||
|
||||
new "datastore put all remove"
|
||||
expectpart "$($clixon_util_datastore $conf put remove "<config/>")" 0 ""
|
||||
expectpart "$($clixon_util_datastore $conf put remove "")" 0 ""
|
||||
|
||||
new "datastore get"
|
||||
expectpart "$($clixon_util_datastore $conf get /)" 0 "^<config/>$"
|
||||
expectpart "$($clixon_util_datastore $conf get /)" 0 "^<${DATASTORE_TOP}/>$"
|
||||
|
||||
new "datastore put all merge"
|
||||
ret=$($clixon_util_datastore $conf put merge "$xml")
|
||||
|
|
@ -83,23 +85,23 @@ expectmatch "$ret" $? "0" ""
|
|||
# expectpart "$($clixon_util_datastore $conf put merge $xml)" 0 ""
|
||||
|
||||
new "datastore get"
|
||||
expectpart "$($clixon_util_datastore $conf get /)" 0 "^$xml$"
|
||||
expectpart "$($clixon_util_datastore $conf get /)" 0 "^$xml2$"
|
||||
|
||||
new "datastore put all delete"
|
||||
expectpart "$($clixon_util_datastore $conf put remove "<config/>")" 0 ""
|
||||
expectpart "$($clixon_util_datastore $conf put remove "")" 0 ""
|
||||
|
||||
new "datastore get"
|
||||
expectpart "$($clixon_util_datastore $conf get /)" 0 "^<config/>$"
|
||||
expectpart "$($clixon_util_datastore $conf get /)" 0 "^<${DATASTORE_TOP}/>$"
|
||||
|
||||
new "datastore put all create"
|
||||
ret=$($clixon_util_datastore $conf put create "$xml")
|
||||
expectmatch "$ret" $? "0" ""
|
||||
|
||||
new "datastore get"
|
||||
expectpart "$($clixon_util_datastore $conf get /)" 0 "^$xml$"
|
||||
expectpart "$($clixon_util_datastore $conf get /)" 0 "^$xml2$"
|
||||
|
||||
new "datastore put top create"
|
||||
expectpart "$($clixon_util_datastore $conf put create "<config><x/></config>")" 0 "" # error
|
||||
expectpart "$($clixon_util_datastore $conf put create '<x xmlns="urn:example:clixon"/>')" 0 "" # error
|
||||
|
||||
# Single key operations
|
||||
# leaf
|
||||
|
|
@ -110,43 +112,43 @@ new "datastore init"
|
|||
expectpart "$($clixon_util_datastore $conf init)" 0 ""
|
||||
|
||||
new "datastore create leaf"
|
||||
expectpart "$($clixon_util_datastore $conf put create "<config><x><y><a>1</a><b>3</b><c>newentry</c></y></x></config>")" 0 ""
|
||||
expectpart "$($clixon_util_datastore $conf put create '<x xmlns="urn:example:clixon"><y><a>1</a><b>3</b><c>newentry</c></y></x>')" 0 ""
|
||||
|
||||
new "datastore create leaf"
|
||||
expectpart "$($clixon_util_datastore $conf put create '<config><x><y><a>1</a><b>3</b><c>newentry</c></y></x></config>')" 0 ""
|
||||
expectpart "$($clixon_util_datastore $conf put create '<x xmlns="urn:example:clixon"><y><a>1</a><b>3</b><c>newentry</c></y></x>')" 0 ""
|
||||
|
||||
new "datastore delete leaf"
|
||||
expectpart "$($clixon_util_datastore $conf put delete '<config><x><y><a>1</a><b>3</b></y></x></config>')" 0 ""
|
||||
expectpart "$($clixon_util_datastore $conf put delete '<x xmlns="urn:example:clixon"><y><a>1</a><b>3</b></y></x>')" 0 ""
|
||||
|
||||
new "datastore replace leaf"
|
||||
expectpart "$($clixon_util_datastore $conf put create '<config><x><y><a>1</a><b>3</b><c>newentry</c></y></x></config>')" 0 ""
|
||||
expectpart "$($clixon_util_datastore $conf put create '<x xmlns="urn:example:clixon"><y><a>1</a><b>3</b><c>newentry</c></y></x>')" 0 ""
|
||||
|
||||
new "datastore remove leaf"
|
||||
expectpart "$($clixon_util_datastore $conf put remove '<config><x><g/></x></config>')" 0 ""
|
||||
expectpart "$($clixon_util_datastore $conf put remove '<x xmlns="urn:example:clixon"><g/></x>')" 0 ""
|
||||
|
||||
new "datastore remove leaf"
|
||||
expectpart "$($clixon_util_datastore $conf put remove '<config><x><y><a>1</a><b>3</b><c/></y></x></config>')" 0 ""
|
||||
expectpart "$($clixon_util_datastore $conf put remove '<x xmlns="urn:example:clixon"><y><a>1</a><b>3</b><c/></y></x>')" 0 ""
|
||||
|
||||
new "datastore delete leaf"
|
||||
expectpart "$($clixon_util_datastore $conf put delete '<config><x><g/></x></config>')" 0 ""
|
||||
expectpart "$($clixon_util_datastore $conf put delete '<x xmlns="urn:example:clixon"><g/></x>')" 0 ""
|
||||
|
||||
new "datastore merge leaf"
|
||||
expectpart "$($clixon_util_datastore $conf put merge '<config><x><g>nalle</g></x></config>')" 0 ""
|
||||
expectpart "$($clixon_util_datastore $conf put merge '<x xmlns="urn:example:clixon"><g>nalle</g></x>')" 0 ""
|
||||
|
||||
new "datastore replace leaf"
|
||||
expectpart "$($clixon_util_datastore $conf put replace '<config><x><g>nalle</g></x></config>')" 0 ""
|
||||
expectpart "$($clixon_util_datastore $conf put replace '<x xmlns="urn:example:clixon"><g>nalle</g></x>')" 0 ""
|
||||
|
||||
new "datastore merge leaf"
|
||||
expectpart "$($clixon_util_datastore $conf put merge '<config><x><y><a>1</a><b>3</b><c>newentry</c></y></x></config>')" 0 ""
|
||||
expectpart "$($clixon_util_datastore $conf put merge '<x xmlns="urn:example:clixon"><y><a>1</a><b>3</b><c>newentry</c></y></x>')" 0 ""
|
||||
|
||||
new "datastore replace leaf"
|
||||
expectpart "$($clixon_util_datastore $conf put replace '<config><x><y><a>1</a><b>3</b><c>newentry</c></y></x></config>')" 0 ""
|
||||
expectpart "$($clixon_util_datastore $conf put replace '<x xmlns="urn:example:clixon"><y><a>1</a><b>3</b><c>newentry</c></y></x>')" 0 ""
|
||||
|
||||
new "datastore create leaf"
|
||||
expectpart "$($clixon_util_datastore $conf put create '<config><x><h><j>aaa</j></h></x></config>')" 0 ""
|
||||
expectpart "$($clixon_util_datastore $conf put create '<x xmlns="urn:example:clixon"><h><j>aaa</j></h></x>')" 0 ""
|
||||
|
||||
new "datastore create leaf"
|
||||
expectpart "$($clixon_util_datastore $conf put create '<config><x><y><a>1</a><b>3</b><c>newentry</c></y></x></config>')" 0 ""
|
||||
expectpart "$($clixon_util_datastore $conf put create '<x xmlns="urn:example:clixon"><y><a>1</a><b>3</b><c>newentry</c></y></x>')" 0 ""
|
||||
|
||||
new "datastore other db init"
|
||||
expectpart "$($clixon_util_datastore -d kalle -b $mydir -y $dir/ietf-ip.yang init)" 0 ""
|
||||
|
|
@ -166,3 +168,6 @@ rm -rf $mydir
|
|||
|
||||
rm -rf $dir
|
||||
|
||||
new "endtest"
|
||||
endtest
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue