web-dev-qa-db-ja.com

rspecを使用してファイルのアップロードをテストする-rails

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を使用して、ファイルのアップロードをシミュレートするにはどうすればよいですか?

136
user727403

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
284
ebsbk

RSpecのみを使用してファイルのアップロードをテストできるかどうかはわかりません。 カピバラ を試しましたか?

要求仕様からcapybaraのattach_fileメソッドを使用して、ファイルのアップロードを簡単にテストできます。

例(このコードはデモのみです):

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
53
Ken

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に基づいていますが、Railsでも機能するはずです。

32
zedd45

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

同様の何かがあなたにも役立つかもしれません。

16
Dave Isaacs

動作させるには、これらのインクルードの両方を追加する必要がありました。

describe "my test set" do
  include Rack::Test::Methods
  include ActionDispatch::TestProcess
5
nfriend21