Fix test failure by ordering leaf-lists
[cps.git] / integration-test / src / test / resources / data / bookstore / bookstore.yang
index 62ebc73..0d093ea 100644 (file)
@@ -1,17 +1,45 @@
 module stores {
     yang-version 1.1;
-    namespace "org:onap:ccsdk:sample";
+    namespace "org:onap:cps:sample";
 
     prefix book-store;
 
+    import bookstore-types {
+        prefix "types";
+        revision-date 2024-01-30;
+    }
+
+    revision "2024-02-08" {
+        description
+            "Order of book authors is preserved";
+    }
+
+    revision "2024-01-30" {
+        description
+            "Extracted bookstore types";
+    }
+
     revision "2020-09-15" {
         description
         "Sample Model";
     }
 
-    typedef year {
-        type uint16 {
-            range "1000..9999";
+    list bookstore-address {
+        key "bookstore-name";
+        leaf bookstore-name {
+            type string;
+            description
+            "Name of bookstore. Example: My Bookstore";
+        }
+        leaf address {
+            type string;
+            description
+            "Address of store";
+        }
+        leaf postal-code {
+            type string;
+            description
+            "Postal code of store";
         }
     }
 
@@ -21,6 +49,28 @@ module stores {
             type string;
         }
 
+        container webinfo {
+            leaf domain-name {
+                type string;
+            }
+            leaf contact-email {
+                type string;
+            }
+        }
+
+        container support-info {
+                    leaf support-office {
+                        type string;
+                    }
+                    container contact-emails {
+                        leaf email {
+                            type string;
+                        }
+                    }
+                }
+
+        container container-without-leaves { }
+
         container premises {
             list addresses {
                 key "house-number street";
@@ -62,10 +112,11 @@ module stores {
                     type string;
                 }
                 leaf-list authors {
+                    ordered-by user;
                     type string;
                 }
                 leaf-list editions {
-                    type year;
+                    type types:year;
                 }
                 leaf price {
                     type uint64;