使用rspec测试文件上传-Rails


142

我想测试Rails中的文件上传,但不确定如何执行此操作。

这是控制器代码:

def uploadLicense
    #Create the license object
    @license = License.create(params[:license]) 


    #Get Session ID
    sessid = session[:session_id]

    puts "\n\nSession_id:\n#{sessid}\n"

    #Generate a random string
    chars = ("a".."z").to_a + ("A".."Z").to_a + ("0".."9").to_a
    newpass = ""
    1.upto(5) { |i| newpass << chars[rand(chars.size-1)] }

    #Get the original file name
    upload=params[:upload]
    name =  upload['datafile'].original_filename 

    @license.format = File.extname(name)

    #calculate license ID and location
    @license.location = './public/licenses/' + sessid + newpass + name 

    #Save the license file
    #Fileupload.save(params[:upload], @license.location) 
    File.open(@license.location, "wb") { |f| f.write(upload['datafile'].read) }

     #Set license ID
    @license.license_id = sessid + newpass

    #Save the license
    @license.save

    redirect_to :action => 'show', :id => @license.id 
end

我已经尝试过此规范,但是它不起作用:

it "can upload a license and download a license" do
    file = File.new(Rails.root + 'app/controllers/lic.xml')
    license = HashWithIndifferentAccess.new
    license[:datafile] = file
    info = {:id => 4}
    post :uploadLicense, {:license => info, :upload => license}
end

如何使用rspec模拟文件上传?

Answers:


291

您可以使用fixture_file_upload方法来测试文件上传:将测试文件放在“ {Rails.root} / spec / fixtures / files”目录中

before :each do
  @file = fixture_file_upload('files/test_lic.xml', 'text/xml')
end

it "can upload a license" do
  post :uploadLicense, :upload => @file
  response.should be_success
end

如果您希望使用params ['upload'] ['datafile']形式的文件

it "can upload a license" do
  file = Hash.new
  file['datafile'] = @file
  post :uploadLicense, :upload => file
  response.should be_success
end

8
这应该被标记为答案,因为它是正确的。谢啦!
埃米尔·艾尔贝克(EmilAhlbäck)2012年

30
如果获取的文件不存在错误,请参阅bit.ly/OSrL7R(堆栈溢出问题3966263)。在Rails 3.2中需要另一种形式:@file = Rack :: Test :: UploadedFile.new(Rails.root.join('spec / fixtures / files / test.csv'),'text / csv')
Mike Blyth

3
如果您指定文件的完整路径,fixture_file_upload也将起作用:“ Rails.root.join('spec / fixtures / files / test.csv”
jmanrubia 2013年

1
fixture_file_upload被视为params中的字符串,有人知道为什么吗?
安倍·佩特里罗

3
@AbePetrillo(或看到评论并有相同问题的人)我遇到了相同的问题。就我而言,第一个参数post是路径帮助程序方法,我没有将其唯一的预期参数括在括号中,因此以下标记被解释为帮助程序的附加args,而不是帖子本身的args。例如,我用post order_documents_path @order, document: file代替post order_documents_path(@order), document: file
汤狗

54

我不确定是否可以单独使用RSpec测试文件上传。你试过水豚吗?

attach_file从请求规范中使用capybara的方法测试文件上传很容易。

例如(此代码仅是一个演示):

it "can upload a license" do
  visit upload_license_path
  attach_file "uploadLicense", /path/to/file/to/upload
  click_button "Upload License"
end

it "can download an uploaded license" do
  visit license_path
  click_link "Download Uploaded License"
  page.should have_content("Uploaded License")
end

6
当然,这在集成规范中有效。OP的问题与控制器单元规格有关,考虑到他只是发布控制器代码。只是说如果有人感到困惑。在功能规格中执行此操作,在单位规格中执行ebsbk的回答。
Starkers 2014年

2
文件路径需要用引号引起来
sixty4bit 2015年

32

如果包含Rack :: Test *,则只需包含测试方法

describe "my test set" do
  include Rack::Test::Methods

那么您可以使用UploadedFile方法:

post "/upload/", "file" => Rack::Test::UploadedFile.new("path/to/file.ext", "mime/type")

*注意:我的示例基于Sinatra,它扩展了Rack,但应该与Rails一起使用,Rails也使用Rack,TTBOMK


3
仅供参考:您不必include Rack::Test::Methods使用Rack :: Test :: UploadedFile。require 'rack/test足够。
xentek

3
我什至不必require 'rack/test'。如果您使用的Rack::Test::UploadedFile是足够使用它。只要您的Rails应用设置良好即可。PS:我在Rails 4ruby 2.1
Vishnu Narang 2014年

Vishnu的评论是最准确的,因为他明确要求使用该方法。包括rack/test将包含测试中的所有内容,其中包括test/methods,还包括测试中的所有内容,因此可能超出了您的需要。
zedd45 '16

18

我还没有使用RSpec做到这一点,但是我确实有一个Test :: Unit测试,它对上传照片具有类似的功能。我将上载的文件设置为ActionDispatch :: Http :: UploadedFile的实例,如下所示:

test "should create photo" do
  setup_file_upload
  assert_difference('Photo.count') do
    post :create, :photo => @photo.attributes
  end
  assert_redirected_to photo_path(assigns(:photo))
end


def setup_file_upload
  test_photo = ActionDispatch::Http::UploadedFile.new({
    :filename => 'test_photo_1.jpg',
    :type => 'image/jpeg',
    :tempfile => File.new("#{Rails.root}/test/fixtures/files/test_photo_1.jpg")
  })
  @photo = Photo.new(
    :title => 'Uploaded photo', 
    :description => 'Uploaded photo description', 
    :filename => test_photo, 
    :public => true)
end

类似的事情也可能对您有用。


6

这就是我使用的方式Rails 6RSpec以及Rack::Test::UploadedFile

describe 'POST /create' do
  it 'responds with success' do
    post :create, params: {
      license: {
        picture: Rack::Test::UploadedFile.new("#{Rails.root}/spec/fixtures/test-pic.png"),
        name: 'test'
      }
    }

    expect(response).to be_successful
  end
end

ActionDispatch::TestProcess除非您确定要包含的内容,否则请勿包含或任何其他代码。


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.