Add pnf_entry endpoints
[integration/csit.git] / tests / dcaegen2 / prh-testcases / resources / simulator / AAI.py
index bacd106..bd76c61 100644 (file)
@@ -1,40 +1,83 @@
+import logging
+import json
+import sys
 import re
 import time
 from http.server import BaseHTTPRequestHandler
 import httpServerLib
 
+ch = logging.StreamHandler(sys.stdout)
+handlers = [ch]
+logging.basicConfig(
+    level=logging.DEBUG,
+    format='[%(asctime)s] {%(filename)s:%(lineno)d} %(levelname)s - %(message)s',
+    handlers=handlers
+)
+
+logger = logging.getLogger('AAI-simulator-logger')
+
 pnfs = 'Empty'
+pnf_entry = {}
+
+
+def _mark_response_as_http_ok(http_endpoint):
+    logger.info('Execution status 200')
+    httpServerLib.header_200_and_json(http_endpoint)
 
 
 class AAISetup(BaseHTTPRequestHandler):
 
     def do_PUT(self):
-        if re.search('/set_pnfs', self.path):
+        logger.info('AAI SIM Setup Put execution')
+        if re.search('/set_pnf$', self.path):
             global pnfs
-            content_length = int(self.headers['Content-Length'])
+            content_length = self._get_content_length()
             pnfs = self.rfile.read(content_length)
-            httpServerLib.header_200_and_json(self)
+            _mark_response_as_http_ok(self)
+
+        if re.search('/set_pnf_entry',self.path):
+            global pnf_entry
+            content_length = self._get_content_length()
+            pnf_entry = json.loads(self.rfile.read(content_length))
+            _mark_response_as_http_ok(self)
 
         return
 
     def do_POST(self):
+        logger.info('AAI SIM Setup Post execution')
         if re.search('/reset', self.path):
             global pnfs
             pnfs = 'Empty'
-            httpServerLib.header_200_and_json(self)
+            _mark_response_as_http_ok(self)
 
         return
 
+    def _get_content_length(self):
+        return int(self.headers['Content-Length'])
+
 
 class AAIHandler(BaseHTTPRequestHandler):
 
+    def do_GET(self):
+        logger.info('AAI SIM Get execution')
+        if re.search('/get_pnf_entry', self.path):
+            _mark_response_as_http_ok(self)
+            body = json.dumps(pnf_entry)
+            self.wfile.write(body.encode())
+
+        return
+
+
     def do_PATCH(self):
+        logger.info('AAI SIM Patch execution')
         pnfs_name = '/aai/v12/network/pnfs/pnf/' + pnfs.decode()
         if re.search('wrong_aai_record', self.path):
             self.send_response(400)
+            logger.info('Execution status 400')
             self.end_headers()
         elif re.search(pnfs_name, self.path):
             self.send_response(200)
+            logger.info('Execution status 200')
             self.end_headers()
             
         return