Add CSIT for vfc-resmanagement

Change-Id: I3faacad9d00c7242312bb8fe7cad5046c25b55a6
Issue-Id:VFC-424
Signed-off-by: luxin <luxin7@huawei.com>
diff --git a/test/csit/tests/vfc/nfvo-resmanagement/test.robot b/test/csit/tests/vfc/nfvo-resmanagement/test.robot
index 996cf58..526fb30 100644
--- a/test/csit/tests/vfc/nfvo-resmanagement/test.robot
+++ b/test/csit/tests/vfc/nfvo-resmanagement/test.robot
@@ -13,4 +13,11 @@
 *** Test Cases ***
 SwaggerFuncTest
     [Documentation]    query swagger info rest test
-    Should Be Equal    2.0    2.0
+    ${headers}    Create Dictionary    Content-Type=application/json    Accept=application/json
+    Create Session    web_session    http://${RESMGR_IP}:8480    headers=${headers}
+    ${resp}=  Get Request    web_session    ${queryswagger_url}
+    ${responese_code}=     Convert To String      ${resp.status_code}
+    List Should Contain Value    ${return_ok_list}   ${responese_code}
+    ${response_json}    json.loads    ${resp.content}
+    ${swagger_version}=    Convert To String      ${response_json['swagger']}
+    Should Be Equal    ${swagger_version}    2.0