Qualify Keywords in Genius Suite
[integration/test.git] / csit / suites / genius / ID_manager.robot
index 16f114887764e046bc6dc3438f0cc8134efb70bf..d98cc346f0aab2f7bc1a82a732cbfd60d2bd744c 100644 (file)
@@ -26,76 +26,76 @@ ${OPERATIONS_API}    /restconf/operations
 *** Test Cases ***
 Create ID pool in range 10:20
     [Documentation]    This testcase creates Id pool in range 10 to 20.
-    Post Elements To URI From File    ${OPERATIONS_API}/id-manager:createIdPool    ${genius_config_dir}/${create_json}
-    @{poolrange}    create list    ${pool-name}    10    20
-    Check For Elements At URI    ${CONFIG_API}/id-manager:id-pools/id-pool/${pool-name}/    ${poolrange}
-    @{availiable_pool}    create List    10    20    10
-    Check For Elements At URI    ${CONFIG_API}/id-manager:id-pools/id-pool/${pool-name}/available-ids-holder/    ${availiable_pool}
+    Utils.Post Elements To URI From File    ${OPERATIONS_API}/id-manager:createIdPool    ${genius_config_dir}/${create_json}
+    @{poolrange} =    BuiltIn.Create list    ${pool-name}    10    20
+    Utils.Check For Elements At URI    ${CONFIG_API}/id-manager:id-pools/id-pool/${pool-name}/    ${poolrange}
+    @{availiable_pool} =    BuiltIn.Create list    10    20    10
+    Utils.Check For Elements At URI    ${CONFIG_API}/id-manager:id-pools/id-pool/${pool-name}/available-ids-holder/    ${availiable_pool}
 
 Allocate Ids from pool created within size as 5
     [Documentation]    This testcase allocated IDs of specified size for the pool created in 1st testcase.
-    ${body}    OperatingSystem.Get File    ${genius_config_dir}/${allocaterange_json}
-    ${body}    replace string    ${body}    test-key    ${test_keys[0]}
-    log    ${body}
-    Post Elements To URI    ${OPERATIONS_API}/id-manager:allocateIdRange    ${body}
+    ${body}    OperatingSystem.Get File    ${genius_config_dir}/${allocaterange_json}
+    ${body} =    String.Replace string    ${body}    test-key    ${test_keys[0]}
+    BuiltIn.Log    ${body}
+    Utils.Post Elements To URI    ${OPERATIONS_API}/id-manager:allocateIdRange    ${body}
     get Id pool
 
 Neg_Allocate ids of size 10 from the same pool
     [Documentation]    This is a Negative testcase where when trying to allocate Id range out of the availiable IDs we have, the IDs are not allocated.
-    ${pool-name}    Set Variable    test-pool
-    ${body}    OperatingSystem.Get File    ${genius_config_dir}/${allocaterange_json}
-    ${body}    Replace String    ${body}    5    6
-    ${body}    Replace String    ${body}    test-key    ${test_keys[1]}
-    log    ${body}
-    ${resp}    RequestsLibrary.Post Request    session    ${OPERATIONS_API}/id-manager:allocateIdRange    data=${body}
-    Log    ${resp.content}
-    should be equal as strings    ${resp.status_code}    500
+    ${pool-name} =    BuiltIn.Set Variable    test-pool
+    ${body}    OperatingSystem.Get File    ${genius_config_dir}/${allocaterange_json}
+    ${body} =    String.Replace String    ${body}    5    6
+    ${body} =    String.Replace String    ${body}    test-key    ${test_keys[1]}
+    BuiltIn.Log    ${body}
+    ${resp}    RequestsLibrary.Post Request    session    ${OPERATIONS_API}/id-manager:allocateIdRange    data=${body}
+    BuiltIn.Log    ${resp.content}
+    BuiltIn.Should Be Equal As Strings    ${resp.status_code}    500
 
 Allocate IDs of size 3 from the pool
     [Documentation]    This testcase allocates 3 Ids from the created pool in test case 1
-    ${body}    OperatingSystem.Get File    ${genius_config_dir}/${allocaterange_json}
-    ${body}    replace string    ${body}    test-key    ${test_keys[2]}
-    ${body}    replace string    ${body}    5    3
-    log    ${body}
-    Post Elements To URI    ${OPERATIONS_API}/id-manager:allocateIdRange    ${body}
-    ${get_resp}    RequestsLibrary.Get Request    session    ${CONFIG_API}/id-manager:id-pools/id-pool/${pool-name}/available-ids-holder/
-    ${respjson}    RequestsLibrary.To Json    ${get_resp.content}    pretty_print=True
-    Log    ${respjson}
-    Should Contain    ${get_resp.content}    17
-    Should Be Equal As Strings    ${get_resp.status_code}    200
+    ${body}=    OperatingSystem.Get File    ${genius_config_dir}/${allocaterange_json}
+    ${body} =    String.Replace string    ${body}    test-key    ${test_keys[2]}
+    ${body} =    String.Replace string    ${body}    5    3
+    BuiltIn.Log    ${body}
+    Utils.Post Elements To URI    ${OPERATIONS_API}/id-manager:allocateIdRange    ${body}
+    ${get_resp}    RequestsLibrary.Get Request    session    ${CONFIG_API}/id-manager:id-pools/id-pool/${pool-name}/available-ids-holder/
+    ${respjson}    RequestsLibrary.To Json    ${get_resp.content}    pretty_print=True
+    BuiltIn.Log    ${respjson}
+    BuiltIn.Should Contain    ${get_resp.content}    17
+    BuiltIn.Should Be Equal As Strings    ${get_resp.status_code}    200
 
 Release a block of IDs allocated using releaseIds RPC
     [Documentation]    This testcase Releases the block of Ids by using the key which is sent in json.
-    ${body}    OperatingSystem.Get File    ${genius_config_dir}/releaseIds.json
-    log    ${body}
-    ${body}    replace string    ${body}    test-key    ${test_keys[2]}
-    Post Elements To URI    ${OPERATIONS_API}/id-manager:releaseId    ${body}
-    ${get_resp}    RequestsLibrary.Get Request    session    ${CONFIG_API}/id-manager:id-pools/id-pool/${pool-name}/
-    ${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]+
-    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
-    log    ${respjson}
+    ${body}    OperatingSystem.Get File    ${genius_config_dir}/releaseIds.json
+    BuiltIn.Log    ${body}
+    ${body} =    String.Replace String    ${body}    test-key    ${test_keys[2]}
+    Utils.Post Elements To URI    ${OPERATIONS_API}/id-manager:releaseId    ${body}
+    ${get_resp}    RequestsLibrary.Get Request    session    ${CONFIG_API}/id-manager:id-pools/id-pool/${pool-name}/
+    ${respjson}    RequestsLibrary.To Json    ${get_resp.content}    pretty_print=True
+    BuiltIn.Log    ${respjson}
+    BuiltIn.Should Be Equal As Strings    ${get_resp.status_code}    200
+    ${child-pool-name} =    BuiltIn.Should Match Regexp    ${get_resp.content}    ${pool-name}\.[-]?[0-9]+
+    BuiltIn.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
+    BuiltIn.Log    ${respjson}
     Should Be Equal As Strings    ${get_releasedIds.status_code}    200
-    @{released_ids}    re.findall    <id>[0-9]+    ${get_releasedIds.content}
-    log    ${released_ids}
+    @{released_ids} =    re.Findall    <id>[0-9]+    ${get_releasedIds.content}
+    BuiltIn.Log    ${released_ids}
 
 Delete the ID Pool using deleteIdPool RPC
     [Documentation]    This testcase deletes the ID pool craeted in the 1st testcase.
-    ${body}    OperatingSystem.Get File    ${genius_config_dir}/deleteIdPool.json
-    ${body}    replace string    ${body}    poolname    ${pool-name}
-    log    ${body}
-    Post Elements To URI    ${OPERATIONS_API}/id-manager:deleteIdPool    ${body}
-    No Content From URI    session    ${CONFIG_API}/id-manager:id-pools/id-pool/${pool-name}/
+    ${body}    OperatingSystem.Get File    ${genius_config_dir}/deleteIdPool.json
+    ${body} =    String.Replace String    ${body}    poolname    ${pool-name}
+    BuiltIn.Log    ${body}
+    Utils.Post Elements To URI    ${OPERATIONS_API}/id-manager:deleteIdPool    ${body}
+    Utils.No Content From URI    session    ${CONFIG_API}/id-manager:id-pools/id-pool/${pool-name}/
 
 *** Keywords ***
 get Id pool
     [Documentation]    This keyword checks the created ID pool by doing GET.
-    ${get_resp}    RequestsLibrary.Get Request    session    ${CONFIG_API}/id-manager:id-pools/id-pool/${pool-name}/available-ids-holder/
-    ${respjson}    RequestsLibrary.To Json    ${get_resp.content}    pretty_print=True
-    Log    ${respjson}
-    Should Contain    ${get_resp.content}    14
-    Should Be Equal As Strings    ${get_resp.status_code}    200
+    ${get_resp}    RequestsLibrary.Get Request    session    ${CONFIG_API}/id-manager:id-pools/id-pool/${pool-name}/available-ids-holder/
+    ${respjson}    RequestsLibrary.To Json    ${get_resp.content}    pretty_print=True
+    BuiltIn.Log    ${respjson}
+    BuiltIn.Should Contain    ${get_resp.content}    14
+    BuiltIn.Should Be Equal As Strings    ${get_resp.status_code}    200