aboutsummaryrefslogtreecommitdiffstats
path: root/tests/dcaegen2/prh-testcases/resources/simulator/AAI.py
diff options
context:
space:
mode:
authorkurczews <krzysztof.kurczewski@nokia.com>2019-04-18 14:56:41 +0200
committerkurczews <krzysztof.kurczewski@nokia.com>2019-04-26 13:49:12 +0200
commitcd057060c750914f9a1ca3578edc9f0223c73bd9 (patch)
tree6f266528ec132cf5406fb3fe6a3610759d600a22 /tests/dcaegen2/prh-testcases/resources/simulator/AAI.py
parent5f6b56855f325efb70212b3949d844f3a5c2856b (diff)
PRH BBS tests - part 2
Issue-ID: INT-989 Change-Id: Ifa55723579d763e4bede7dbc373c7605dccb9b0e Signed-off-by: kurczews <krzysztof.kurczewski@nokia.com>
Diffstat (limited to 'tests/dcaegen2/prh-testcases/resources/simulator/AAI.py')
-rw-r--r--tests/dcaegen2/prh-testcases/resources/simulator/AAI.py12
1 files changed, 7 insertions, 5 deletions
diff --git a/tests/dcaegen2/prh-testcases/resources/simulator/AAI.py b/tests/dcaegen2/prh-testcases/resources/simulator/AAI.py
index 55b2d1f6..4457ef15 100644
--- a/tests/dcaegen2/prh-testcases/resources/simulator/AAI.py
+++ b/tests/dcaegen2/prh-testcases/resources/simulator/AAI.py
@@ -27,12 +27,12 @@ class AAISetup(BaseHTTPRequestHandler):
def do_GET(self):
try:
- if re.search('/setup/get_patched_pnf', self.path):
+ if re.search('/setup/patched_pnf', self.path):
httpServerLib.set_response_200_ok(self, payload = patched_pnf)
- logger.debug('AAISetup GET /setup/get_patched_pnf -> 200 OK')
- elif re.search('/setup/get_created_logical_link', self.path):
+ logger.debug('AAISetup GET /setup/patched_pnf -> 200 OK')
+ elif re.search('/setup/created_logical_link', self.path):
httpServerLib.set_response_200_ok(self, payload = created_logical_link)
- logger.debug('AAISetup GET /setup/get_created_logical_link -> 200 OK')
+ logger.debug('AAISetup GET /setup/created_logical_link -> 200 OK')
else:
httpServerLib.set_response_404_not_found(self)
logger.info('AAISetup GET ' + self.path + ' -> 404 Not found')
@@ -129,7 +129,9 @@ class AAIHandler(BaseHTTPRequestHandler):
created_logical_link = httpServerLib.get_payload(self)
httpServerLib.set_response_200_ok(self)
- logger.debug('AAIHandler PUT /aai/v12/network/logical-links/logical-link/' + created_logical_link + ' -> 200 OK')
+
+ logical_link_name = basename(self.path)
+ logger.debug('AAIHandler PUT /aai/v12/network/logical-links/logical-link/' + logical_link_name + ' -> 200 OK')
else:
httpServerLib.set_response_404_not_found(self)
logger.info('AAIHandler PUT ' + self.path + ' -> 404 Not found')