rails 本身就有內建的 helper 可以很快的建造假的檔案,然後就可以測試上傳的功能了。
建立資料夾
spec/fixtures/files
在資料夾裡放入用來測試的檔案
Rack::Test::UploadedFile.new
Rack::Test::UploadedFile.new('path','mime-type')
1 2 |
|
fixture_file_upload
上面的簡短版本 fixture_file_upload('path','mime-type')
1 2 3 4 5 |
|
以上兩個擇一,這樣就可以在 create
將 @file
帶入到 params
官方文件:
Class: Rack::Test::UploadedFile
fixture_file_upload
參考文件:
How do I test a file upload in rails?
[求助] 文件上传的测试代码怎么写