X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=csit%2Fsuites%2Fnetconf%2FCRUD%2FCRUD.robot;h=4551ec10059d944fb4dbbdb84c9b250e0c98c8a5;hb=c78951947995a7a1e6df298e4efab4082e8fb014;hp=9d1e485f0f078ac46791bb81f0e59cc13fc073ed;hpb=a8c66a4b1afe2423aa709c8bc0b0d66d634ba657;p=integration%2Ftest.git diff --git a/csit/suites/netconf/CRUD/CRUD.robot b/csit/suites/netconf/CRUD/CRUD.robot index 9d1e485f0f..4551ec1005 100644 --- a/csit/suites/netconf/CRUD/CRUD.robot +++ b/csit/suites/netconf/CRUD/CRUD.robot @@ -69,7 +69,7 @@ Check_Device_Data_Is_Empty Create_Device_Data_Label_Via_Xml [Documentation] Send a sample test data label into the device and check that the request went OK. - ${template_as_string}= BuiltIn.Create_Dictionary DEVICE_NAME=${device_name}'} + ${template_as_string}= BuiltIn.Create_Dictionary DEVICE_NAME=${device_name} TemplatedRequests.Post_As_Xml_Templated ${directory_with_template_folders}${/}dataorig ${template_as_string} Check_Device_Data_Label_Is_Created @@ -78,7 +78,7 @@ Check_Device_Data_Label_Is_Created Modify_Device_Data_Label_Via_Xml [Documentation] Send a request to change the sample test data label and check that the request went OK. - ${template_as_string}= BuiltIn.Create_Dictionary DEVICE_NAME=${device_name}'} + ${template_as_string}= BuiltIn.Create_Dictionary DEVICE_NAME=${device_name} TemplatedRequests.Put_As_Xml_Templated ${directory_with_template_folders}${/}datamod1 ${template_as_string} Check_Device_Data_Label_Is_Modified @@ -114,7 +114,7 @@ Check_Modified_Device_Data_Is_Still_There Modify_Device_Data_Again [Documentation] Send a request to change the sample test data and check that the request went OK. - ${template_as_string}= BuiltIn.Create_Dictionary DEVICE_NAME=${device_name}'} + ${template_as_string}= BuiltIn.Create_Dictionary DEVICE_NAME=${device_name} TemplatedRequests.Put_As_Xml_Templated ${DIRECTORY_WITH_TEMPLATE_FOLDERS}${/}datamod2 ${template_as_string} Check_Device_Data_Is_Modified_Again @@ -123,7 +123,7 @@ Check_Device_Data_Is_Modified_Again Modify_Device_Data_Label_Via_Json [Documentation] Send a JSON request to change the sample test data label and check that the request went OK. - ${template_as_string}= BuiltIn.Create_Dictionary DEVICE_NAME=${device_name}'} + ${template_as_string}= BuiltIn.Create_Dictionary DEVICE_NAME=${device_name} TemplatedRequests.Put_As_Json_Templated ${directory_with_template_folders}${/}datamodjson ${template_as_string} Check_Device_Data_Label_Is_Modified_Via_Json @@ -132,7 +132,7 @@ Check_Device_Data_Label_Is_Modified_Via_Json Create_Car_List [Documentation] Send a request to create a list of cars in the sample test data label and check that the request went OK. - ${template_as_string}= BuiltIn.Create_Dictionary DEVICE_NAME=${device_name}'} + ${template_as_string}= BuiltIn.Create_Dictionary DEVICE_NAME=${device_name} TemplatedRequests.Post_As_Xml_Templated ${directory_with_template_folders}${/}cars ${template_as_string} Check_Car_List_Created @@ -152,7 +152,7 @@ Check_Car_List_Created Add_Device_Data_Item_1_Via_XML_Post [Documentation] Send a request to create a data item in the test list and check that the request went OK. - ${template_as_string}= BuiltIn.Create_Dictionary DEVICE_NAME=${device_name}'} + ${template_as_string}= BuiltIn.Create_Dictionary DEVICE_NAME=${device_name} TemplatedRequests.Post_As_Xml_Templated ${directory_with_template_folders}${/}item1 ${template_as_string} Check_Item1_Is_Created @@ -171,7 +171,7 @@ Check_Item1_Is_Created Add_Device_Data_Item_2_Via_JSON_Post [Documentation] Send a JSON request to change the sample test data and check that the request went OK. - ${template_as_string}= BuiltIn.Create_Dictionary DEVICE_NAME=${device_name}'} + ${template_as_string}= BuiltIn.Create_Dictionary DEVICE_NAME=${device_name} TemplatedRequests.Post_As_Json_Templated ${directory_with_template_folders}${/}item2 ${template_as_string} Check_Item2_Is_Created @@ -190,7 +190,7 @@ Check_Item2_Is_Created Delete_Device_Data [Documentation] Send a request to delete the sample test data on the device and check that the request went OK. - ${template_as_string}= BuiltIn.Create_Dictionary DEVICE_NAME=${device_name}'} + ${template_as_string}= BuiltIn.Create_Dictionary DEVICE_NAME=${device_name} TemplatedRequests.Delete_Templated ${directory_with_template_folders}${/}datamod1 ${template_as_string} TemplatedRequests.Delete_Templated ${directory_with_template_folders}${/}item1 ${template_as_string} @@ -222,7 +222,7 @@ Setup_Everything [Documentation] Initialize SetupUtils. Setup everything needed for the test cases. # Setup resources used by the suite. SetupUtils.Setup_Utils_For_Setup_And_Teardown - RequestsLibrary.Create_Session operational http://${ODL_SYSTEM_IP}:${RESTCONFPORT}${OPERATIONAL_API} auth=${AUTH} + RequestsLibrary.Create_Session operational http://${ODL_SYSTEM_IP}:${RESTCONFPORT}${REST_API} auth=${AUTH} NetconfKeywords.Setup_Netconf_Keywords ${device_type}= BuiltIn.Set_Variable_If """${USE_NETCONF_CONNECTOR}""" == """True""" default ${device_type} BuiltIn.Set_Suite_Variable ${device_type} @@ -234,7 +234,7 @@ Teardown_Everything Get_Config_Data [Documentation] Get and return the config data from the device. - ${url}= Builtin.Set_Variable ${CONFIG_API}/network-topology:network-topology/topology/topology-netconf/node/${device_name}/yang-ext:mount + ${url}= Builtin.Set_Variable ${REST_API}/network-topology:network-topology/topology=topology-netconf/node=${device_name}/yang-ext:mount?content=config ${data}= TemplatedRequests.Get_As_Xml_From_Uri ${url} [Return] ${data}