X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fconfig%2Fyang-test%2Fsrc%2Fmain%2Fyang%2Fconfig-test-impl.yang;h=f772a26898b1765ee833866a61688055c76128a2;hp=6ee379623bf128216a8328e5533918b9d543fb27;hb=3f130bc99b874e917fe397c4835f22229f60842a;hpb=2c7c9ef5e517de98e0d740f938762cc746dbcde1 diff --git a/opendaylight/config/yang-test/src/main/yang/config-test-impl.yang b/opendaylight/config/yang-test/src/main/yang/config-test-impl.yang index 6ee379623b..f772a26898 100644 --- a/opendaylight/config/yang-test/src/main/yang/config-test-impl.yang +++ b/opendaylight/config/yang-test/src/main/yang/config-test-impl.yang @@ -8,6 +8,7 @@ module config-test-impl { import ietf-inet-types { prefix inet; revision-date 2010-09-24;} import rpc-context { prefix rpcx; revision-date 2013-06-17; } import test-types { prefix tt; revision-date 2013-11-27; } + import test-groups { prefix tg; revision-date 2014-12-08; } description "Testing IMPL"; @@ -41,12 +42,10 @@ module config-test-impl { config:java-name-prefix IdentityTest; } - identity test-identity1 { - - } - - identity test-identity2 { - base test-identity1; + identity multiple-dependencies { + base config:module-type; + config:provided-service test:testing; + config:java-name-prefix MultipleDependencies; } augment "/config:modules/config:module/config:configuration" { @@ -55,14 +54,14 @@ module config-test-impl { leaf afi { type identityref { - base test-identity1; + base tt:test-identity1; } } container identities-container { leaf afi { type identityref { - base test-identity1; + base tt:test-identity1; } } } @@ -70,19 +69,19 @@ module config-test-impl { list identities { leaf afi { type identityref { - base test-identity1; + base tt:test-identity1; } } leaf safi { type identityref { - base test-identity1; + base tt:test-identity1; } } container identities-inner { leaf afi { type identityref { - base test-identity1; + base tt:test-identity1; } } } @@ -170,284 +169,342 @@ module config-test-impl { augment "/config:modules/config:module/config:configuration" { case impl-netconf { when "/config:modules/config:module/config:type = 'impl-netconf'"; - leaf binaryLeaf { - type binary; - default ZGVmYXVsdEJpbg==; - } - - leaf type { - type string; - default "default-string"; - } + container impl-netconf { + leaf binaryLeaf { + type binary; + default ZGVmYXVsdEJpbg==; + } - leaf extended { - type tt:extend-once; - default 1; - } + leaf type { + type string; + default "default-string"; + } - leaf extended-twice { - type tt:extend-twice; - default 2; - } + leaf extended { + type tt:extend-once; + default 1; + } - leaf extended-enum { - type tt:extend-enum; - default ONE; - } + leaf extended-twice { + type tt:extend-twice; + default 2; + } - leaf ip { - type inet:ip-address; - default 0:0:0:0:0:0:0:1; - } + leaf extended-enum { + type tt:extend-enum; + default ONE; + } - leaf union-test-attr { - type tt:unionTest; - default 456; - } + leaf ip { + type inet:ip-address; + default 0:0:0:0:0:0:0:1; + } - leaf sleep-factor { - type decimal64 { - fraction-digits 2; + leaf union-test-attr { + type tt:unionTest; + default 456; } - default 2.00; - } - container dto-c { - leaf simple-arg { - type uint32; + leaf sleep-factor { + type decimal64 { + fraction-digits 2; + } + default 2.00; } - container dto-a-inner { + container dto-c { leaf simple-arg { type uint32; } - container dto-a-inner-inner { + container dto-a-inner { leaf simple-arg { type uint32; } + + container dto-a-inner-inner { + leaf simple-arg { + type uint32; + } + } } } - } - - leaf simpleInt { - type uint32; - } - - leaf simpleBoolean { - type boolean; - default false; - } - - leaf simple-long { - type int64; - default -45; - } - - leaf simple-long-2 { - type uint32; - default 445; - } - leaf simple-BigInteger { - type uint64; - default 545454; - } + leaf simpleInt { + type uint32; + } - leaf simple-byte { - type int8; - default -4; - } + leaf simpleBoolean { + type boolean; + default false; + } - leaf simple-short { - type uint8; - default 45; - } + leaf simple-long { + type int64; + default -45; + } - leaf simple-test { - type uint16; - default 99; - } + leaf simple-long-2 { + type uint32; + default 445; + } - leaf-list simple-list { - type uint16; - } + leaf simple-BigInteger { + type uint64; + default 545454; + } - container dto_d { - leaf simple-int1 { - type uint32; + leaf simple-byte { + type int8; + default -4; } - leaf simple-int2 { - type uint32; + leaf simple-short { + type uint8; + default 45; } - leaf simple-int3 { + leaf simple-test { type uint16; + default 99; } leaf-list simple-list { type uint16; } - list complex-dto-bInner { - leaf-list simple-list { - type uint16; + container dto_d { + leaf simple-int1 { + type uint32; } + + leaf simple-int2 { + type uint32; + } + leaf simple-int3 { type uint16; } - container deep { + leaf-list simple-list { + type uint16; + } + + list complex-dto-bInner { + leaf-list simple-list { + type uint16; + } leaf simple-int3 { type uint16; - default 0; + } + + container deep { + leaf simple-int3 { + type uint16; + default 0; + } } } } - } - list complex-list { - list simple-list { - leaf simple-int3 { - type uint16; + list complex-list { + list simple-list { + leaf simple-int3 { + type uint16; + } } } - } - list peers { - leaf port { - type string; - } - leaf core-size { - type uint32; - } - leaf simple-int3 { - type uint16; - } - } + list peers { + leaf port { + type string; + } + leaf core-size { + type uint32; + } + leaf simple-int3 { + type uint16; + } + } - container testing-dep { - uses config:service-ref { - refine type { - mandatory true; - config:required-identity test:testing; + container testing-dep { + uses config:service-ref { + refine type { + mandatory true; + config:required-identity test:testing; + } } } - } - list testing-deps { - uses config:service-ref { - refine type { - mandatory true; - config:required-identity test:testing; + list testing-deps { + uses config:service-ref { + refine type { + mandatory true; + config:required-identity test:testing; + } } } } } } - augment "/config:modules/config:module/config:state" { - case impl-netconf { - when "/config:modules/config:module/config:type = 'impl-netconf'"; - // rpc - rpcx:rpc-context-instance "test-rpc"; - - // root runtime bean - leaf created-sessions { - type uint32; - } + grouping netconf-impl-rpc { + rpcx:rpc-context-instance netconf-impl-rpc-ctx; + } - container asdf { - leaf simpleInt { - type uint16; - } + identity netconf-impl-rpc-ctx; - leaf simpleString { - type string; + rpc netconf-impl-rpc-from-grouping { + input { + uses rpcx:rpc-context-ref { + refine context-instance { + rpcx:rpc-context-instance "netconf-impl-rpc-ctx"; } } + } + } - - list inner-running-data-additional { - config:inner-state-bean; - + augment "/config:modules/config:module/config:state" { + case impl-netconf { + when "/config:modules/config:module/config:type = 'impl-netconf'"; + container impl-netconf { // rpc - rpcx:rpc-context-instance "inner-test-rpc"; + rpcx:rpc-context-instance "test-rpc"; - key "simpleString"; + // add some stats + rpc from groupings outside this module + uses tt:common-operational; + uses tg:common-operational-rpc; + uses netconf-impl-rpc; - leaf simple-int3 { - type uint16; + // root runtime bean + leaf created-sessions { + type uint32; } - leaf simpleString { - type string; - } + container asdf { + leaf simpleInt { + type uint16; + } - container deep4 { - leaf boool { - type boolean; + leaf simpleString { + type string; } } - } - list inner-running-data { - config:inner-state-bean; - key "simple-int3"; + list inner-running-data-additional { + config:inner-state-bean; + + // rpc + rpcx:rpc-context-instance "inner-test-rpc"; - leaf simple-int3 { - type uint16; + key "simpleString"; + + leaf simple-int3 { + type uint16; } - container deep2 { - leaf boool { - type boolean; + leaf simpleString { + type string; } - } - list inner-inner-running-data { - config:inner-state-bean; + container deep4 { + leaf boool { + type boolean; + } + } + } - rpcx:rpc-context-instance "inner-inner-test-rpc"; - rpcx:rpc-context-instance "complex-output-rpc"; + list inner-running-data { + config:inner-state-bean; key "simple-int3"; leaf simple-int3 { - type uint16; - } + type uint16; + } - leaf-list list-of-strings { - type string; - } + container deep2 { + leaf boool { + type boolean; + } + } - list not-state-bean { - leaf element { - type string; + list inner-inner-running-data { + config:inner-state-bean; + + rpcx:rpc-context-instance "inner-inner-test-rpc"; + rpcx:rpc-context-instance "complex-output-rpc"; + + key "simple-int3"; + + leaf simple-int3 { + type uint16; } - list not-state-bean-internal { - // This should be ignored - config:inner-state-bean; + leaf-list list-of-strings { + type string; + } - leaf element2 { + list not-state-bean { + leaf element { type string; } + + list not-state-bean-internal { + // This should be ignored + config:inner-state-bean; + + leaf element2 { + type string; + } + } + } + + container deep3 { + leaf boool { + type boolean; + } } } + } - container deep3 { - leaf boool { - type boolean; + } + + } + } + + + augment "/config:modules/config:module/config:configuration" { + case multiple-dependencies { + when "/config:modules/config:module/config:type = 'multiple-dependencies'"; + container multiple-dependencies { + list testing-deps { + uses config:service-ref { + refine type { + mandatory true; + config:required-identity test:testing; } } } + container single { + uses config:service-ref { + refine type { + mandatory false; + config:required-identity test:testing; + } + } + } + + leaf simple { + type boolean; + default false; + } } } } + identity test-rpc; identity inner-test-rpc; identity inner-inner-test-rpc;