私はしばらくの間、webmock を使用してマルチパート リクエストをスタブ化しようとしてきましたが、満足のいく解決策が見つかりませんでした。
理想的には、次のようにリクエストをスタブしたいと思います。
stub_request(:post, 'http://test.api.com').with(:body => { :file1 => File.new('filepath1'), file2 => File.new('filepath2') })
しかし、これは機能していないようで、RSpec はリクエストがスタブ化されていないと文句を言います。スタブされていないリクエストが出力されます。
stub_request(:post, "http://test.api.com").
with(:body => "--785340\r\nContent-Disposition: form-data; name=\"file1\"; filename=\"filepath1\"\r\nContent-Type: text/plain\r\n\r\nhello\r\n--785340\r\nContent-Disposition: form-data; name=\"file2\"; filename=\"filepath2\"\r\nContent-Type: text/plain\r\n\r\nhello2\r\n--785340\r\n",
:headers => {'Accept'=>'*/*; q=0.5, application/xml', 'Accept-Encoding'=>'gzip, deflate', 'Content-Length'=>'664', 'Content-Type'=>'multipart/form-data; boundary=785340', 'User-Agent'=>'Ruby'}).
to_return(:status => 200, :body => "", :headers => {})
もちろん、境界は動的に生成されるため、この提案に従うことはできません。これらのリクエストを適切にスタブする方法はありますか?
ありがとう!ブルーノ