我尝试为以下curl请求编写等效的空手道脚本
curl -X PUT \
'http://localhost:8055/uploadfile' \
-H 'content-type: multipart/form-data;' \
-F code=@/Users/test/Downloads/Next.zip
尝试空手道脚本
Given path 'uploadfile'
#Given header Content-Type = 'multipart/form-data'
And form field code = '/Users/test/Downloads/Next.zip'
#And multipart file code = { read: '/Users/test/Downloads/Next.zip' , contentType: 'application/zip' }
When method PUT
Then status 200
我在这里做错什么吗(尝试了不同的事情)?仍未获得预期的API响应。
仅供参考:我已经从邮递员那里收到了curl命令,它运行正常。
答案 0 :(得分:2)
很难提供您提供的有限信息。试试这个:
Given url 'http://localhost:8055/uploadfile'
And multipart file code = { read: 'file:/Users/test/Downloads/Next.zip', filename: 'Next.zip', contentType: 'application/zip' }
When method put
如果您仍然遇到问题,请执行以下过程:https://github.com/intuit/karate/wiki/How-to-Submit-an-Issue(或使用邮递员;)