From 8a0f885e82afdccaac4e2de27c6d6ff115f255ee Mon Sep 17 00:00:00 2001 From: Vishal Thapar Date: Mon, 19 Feb 2018 14:33:25 +0530 Subject: [PATCH] GENIUS-111 Genius CSIT - IdManager Failure Child pool name logic converts host IP to String and appends it to parent pool name. This can result in a negative number if IP is 128.x.x.x+ Fixing it in IdManager can have upgradabuility impact. So modifying CSIT to allow -ve numbers too. Refer: 67332 Change-Id: I908b775f007f0f2a9496c6fc3d8ff0faf2a24690 Signed-off-by: Vishal Thapar --- csit/suites/genius/ID_manager.robot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csit/suites/genius/ID_manager.robot b/csit/suites/genius/ID_manager.robot index 30f18a344c..91773b7bbf 100644 --- a/csit/suites/genius/ID_manager.robot +++ b/csit/suites/genius/ID_manager.robot @@ -73,7 +73,7 @@ Release a block of IDs allocated using releaseIds RPC ${respjson} RequestsLibrary.To Json ${get_resp.content} pretty_print=True Log ${respjson} Should Be Equal As Strings ${get_resp.status_code} 200 - ${child-pool-name} Should Match Regexp ${get_resp.content} ${pool-name}\.[0-9]+ + ${child-pool-name} Should Match Regexp ${get_resp.content} ${pool-name}\.[-]?[0-9]+ log ${child-pool-name} ${get_releasedIds} RequestsLibrary.Get Request session ${CONFIG_API}/id-manager:id-pools/id-pool/${child-pool-name}/released-ids-holder/ ${respjson} RequestsLibrary.To Json ${get_releasedIds.content} pretty_print=True -- 2.36.6