我正在尝试测试使用RSpec上传文件的api。api请求是一个简单的POST请求,带有一个文件以及一些参数和一个头字段。
我尝试用以下代码发出POST请求:
post "media.upload", { client_id: @client.id, token: @client.token, type: @type, name: @name, format: 'json' },
{ 'HTTP_PROXY_SSL' => 'true' }, :upload => @file
但是我得到以下错误:
Failure/Error: post "cm/media.upload", { client_id: @client.id, token: @client.token, type: @type, name: @name, format: 'json' },
ArgumentError:
wrong number of arguments (4 for 1..3)
@file
变量定义为:
@file = fixture_file_upload(Rails.root + 'spec/fixtures/images/abc.jpg', 'image/jpeg')
所以我的问题是如何做一个POST请求在RSpec与文件,参数和一些头?
将upload
参数与其他请求参数一起移动:
params = {upload: @file, client_id: @client.id, token: @client.token, type: @type, name: @name, format: 'json'}
headers = {'HTTP_PROXY_SSL' => 'true'}
post 'media.upload', params, headers