X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=csit%2Fsuites%2Fnetconf%2FCRUD%2FCRUD.robot;h=9d1e485f0f078ac46791bb81f0e59cc13fc073ed;hb=a8c66a4b1afe2423aa709c8bc0b0d66d634ba657;hp=305a73645ab24f4c8ab60594f30b248238b9c89c;hpb=bee0fca724dab130cc5c23757c26381f36148ff9;p=integration%2Ftest.git diff --git a/csit/suites/netconf/CRUD/CRUD.robot b/csit/suites/netconf/CRUD/CRUD.robot index 305a73645a..9d1e485f0f 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.Set_Variable {'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.Set_Variable {'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.Set_Variable {'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.Set_Variable {'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.Set_Variable {'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.Set_Variable {'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.Set_Variable {'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.Set_Variable {'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}