1 #Robot functions that will be shared also with other tests
3 Library OperatingSystem
4 Library HttpLibrary.HTTP
8 #Robot function to extract the json object from a file
9 [Arguments] ${file_path}
10 ${json_file}= Get File ${file_path}
11 ${json_object}= Evaluate json.loads('''${json_file}''') json
12 [Return] ${json_object}
15 #Robot function to transform the json object to a string
16 [Arguments] ${json_value}
17 ${json_string}= Stringify Json ${json_value}
18 [Return] ${json_string}
21 #Robot function to generate a random IP
23 ${numbers}= Evaluate random.sample([x for x in range(1, 256)], 4) random
24 ${generated_ip}= Catenate ${numbers[0]}.${numbers[1]}.${numbers[2]}.${numbers[3]}
25 [Return] ${generated_ip}
29 ${data}= Get File ${file}