Merge "INT-885: fix netopeer and update yang model"
authorMarco Platania <platania@research.att.com>
Mon, 4 Mar 2019 13:05:40 +0000 (13:05 +0000)
committerGerrit Code Review <gerrit@onap.org>
Mon, 4 Mar 2019 13:05:40 +0000 (13:05 +0000)
test/mocks/pnfsimulator/docker-compose.yml
test/mocks/pnfsimulator/netopeer_tls_cfg/building.data [deleted file]
test/mocks/pnfsimulator/netopeer_tls_cfg/building.yang [deleted file]
test/mocks/pnfsimulator/netopeer_tls_cfg/entrypoint.sh [new file with mode: 0755]
test/mocks/pnfsimulator/netopeer_tls_cfg/mynetconf.data [new file with mode: 0644]
test/mocks/pnfsimulator/netopeer_tls_cfg/mynetconf.yang [new file with mode: 0644]
test/mocks/pnfsimulator/netopeer_tls_cfg/update_tls.sh

index 0a0860d..bbb983f 100644 (file)
@@ -31,7 +31,7 @@ services:
       - sftp-server
       - ftpes-server-pure-ftpd
       - ftpes-server-vsftpd
-    command: bash -c "/netopeer_tls_cfg/update_tls.sh"
+    command: bash -c "/netopeer_tls_cfg/entrypoint.sh"
 
   sftp-server:
     container_name: sftp-server
diff --git a/test/mocks/pnfsimulator/netopeer_tls_cfg/building.data b/test/mocks/pnfsimulator/netopeer_tls_cfg/building.data
deleted file mode 100644 (file)
index 42e811b..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-{
-  "building:rooms": {
-    "room": [
-      {
-        "room-number": 3,
-        "size": 3
-      }
-    ]
-  }
-}
diff --git a/test/mocks/pnfsimulator/netopeer_tls_cfg/building.yang b/test/mocks/pnfsimulator/netopeer_tls_cfg/building.yang
deleted file mode 100644 (file)
index 9afe972..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-module building {
-  yang-version 1.1;
-  namespace "urn:building:test";
-
-  prefix bld;
-
-  organization "building";
-  contact "my buildig address";
-  description "yang model for building";
-  revision "2018-02-13"{
-    description "initial version";
-  }
-
-  container rooms{
-    list room{
-      key room-number;
-      leaf room-number{
-        type uint16;
-      }
-      leaf size {
-        type uint32;
-      }
-    }
-
-  }
-}
diff --git a/test/mocks/pnfsimulator/netopeer_tls_cfg/entrypoint.sh b/test/mocks/pnfsimulator/netopeer_tls_cfg/entrypoint.sh
new file mode 100755 (executable)
index 0000000..45b30a1
--- /dev/null
@@ -0,0 +1,2 @@
+nohup /netopeer_tls_cfg/update_tls.sh &
+exec /usr/bin/supervisord -c "/etc/supervisord.conf"
diff --git a/test/mocks/pnfsimulator/netopeer_tls_cfg/mynetconf.data b/test/mocks/pnfsimulator/netopeer_tls_cfg/mynetconf.data
new file mode 100644 (file)
index 0000000..63872ee
--- /dev/null
@@ -0,0 +1,10 @@
+{
+  "mynetconf:netconflist": {
+    "netconf": [
+      {
+        "netconf-id": 3,
+        "netconf-param": 3
+      }
+    ]
+  }
+}
diff --git a/test/mocks/pnfsimulator/netopeer_tls_cfg/mynetconf.yang b/test/mocks/pnfsimulator/netopeer_tls_cfg/mynetconf.yang
new file mode 100644 (file)
index 0000000..a0c094b
--- /dev/null
@@ -0,0 +1,26 @@
+module mynetconf {
+  yang-version 1.1;
+  namespace "urn:mynetconf:test";
+
+  prefix nft;
+
+  organization "mynetconf";
+  contact "my netconf address";
+  description "yang model for mynetconf";
+  revision "2019-03-01"{
+    description "initial version";
+  }
+
+  container netconflist{
+    list netconf{
+      key netconf-id;
+      leaf netconf-id{ 
+        type uint16;
+      }
+      leaf netconf-param {
+        type uint32;
+      }
+    }
+
+  }
+}
index 30be458..4091bea 100755 (executable)
@@ -1,5 +1,5 @@
 #!/bin/bash
-
+sleep 20
 NETOPEER_CONFIG_PATH='/opt/dev/Netopeer2/server/configuration'
 MOUNT_PATH='/netopeer_tls_cfg'
 KEY_PATH='/usr/local/etc/keystored/keys'
@@ -8,9 +8,9 @@ SUBSCRIBE_APP_PATH='/opt/dev/sysrepo/build/examples/application_changes_example'
 # This function uploads test_data and model into netopeer2 server
 upload_yang_data_model()
 {
-  sysrepoctl -i -g $MOUNT_PATH/building.yang
-  $SUBSCRIBE_APP_PATH building > /dev/null &
-  sysrepocfg --datastore=running --format=json building --import=$MOUNT_PATH/building.data
+  sysrepoctl -i -g $MOUNT_PATH/mynetconf.yang
+  $SUBSCRIBE_APP_PATH mynetconf > /dev/null &
+  sysrepocfg --datastore=running --format=json mynetconf --import=$MOUNT_PATH/mynetconf.data
 }
 
 # This function configures server/trusted certificates into Netopeer