1、 上传单个文件
上传单个文件
[Argument] ${filepath}
${data} create dictionary currentDate=20190415 #除了文件还需要其他参数时可另外创建data,不需要时可不写
${files} evaluate open('${filepath}','rb')
${file_data} create dictionary files=${files} # files作为dictionary的key,根据实际接口定义修改
${addr} Post Request api ${接口路径} data=${data} files=${files}
# 上面代码完成上传,后面验证省略
2 、上传多个文件
- 需要先知道python对多个文件上传时的支持,一般使dict、list和tuple
针对每个文件都有一个唯一的参数名时,可使用Dict。
{
"field1" : ("filename1", open("filePath1", "rb")),
"field2" : ("filename2", open("filePath2", "rb"), "image/jpeg"),
"field3" : ("filename3", open("filePath3", "rb"), "image/jpeg", {"refer":"localhost"})
}
都是同一个参数名时不能使用dict。key不能重复
故选用dict或者tuple,此处举一个例子用列表和元祖,更多格式借鉴:https://blog.csdn.net/five3/article/details/74913742
[
("files" , ( open("filePath1", "rb"))),
("files" , (open("filePath2", "rb"),)),
("files" , open("filePath3", "rb")),
("files" , open("filePath4", "rb"))
]
以上面这个形式,先写个方法封装,如下:
def create_files_date(*items):
list=[]
for item in items:
list.append(('files',open(item,'rb'))) # 此处关键字是files
return list
结合单个上传形式,批量上传robotframework脚本如下:
批量上传文件
[Document] 批量上传同样支持单个上传
${data} create dictionary currentDate=20190415
${files_data} create files data @{filesPath} # 此处写成列表形式
${addr} Post Request api ${接口路径} data=${files_data} files=${files}
# 省略验证步骤
3、解决中文文件上传失败问题(最新版本的request包已经解决)
-
上传使用发现中文文件都不能被成功上传,Fiddler抓包结果如下:
Fiddler.png
文件的参数显示都是乱码。
查询资料和尝试,找到解决方案,Urllib3中的fields.py 中处理这部分逻辑默认使用ascii编码,修改为utf-8即可。
文件路径此处给出:
python安装目录/Lib/site-packages/urllib3/fields.py 第38行左右,具体以实际情况为定,在方法名为format_header_param中
# result.encode('ascii')
result.encode('utf-8')
# result.encode('utf-8').decode('utf-8') 此处解释一下,网上有人说第一种直接改成utf-8不生效,本人亲测有效。第二种也有效,不过我还是直接写成第一种,如有人还是不行可使用这条
最后修改如下:
修改方法.png
网友评论