使用Capybara attach_file方法测试上传文件时遇到问题

时间:2014-07-20 17:28:58

标签: ruby-on-rails rspec capybara rails-activerecord

我在使用Capybara的attach_file方法测试图片上传是否与回形针配合使用时遇到了问题。

rspec返回以下错误:     故障:

1) Upload Background Image cannot upload a background image
 Failure/Error: page.attach_file('#artist_background_image', Rails.root +         'spec/Fixtures/Snow.jpg')
 Capybara::ElementNotFound:
   Unable to find file field "#artist_background_image"
 # ./spec/models/artist_spec.rb:65:in `block (2 levels) in <top (required)>'

我的测试列在下面。我假设选择文件按钮是attach_file的选择器,所以我使用了选择器的id&#39;#artist_background_page&#39;。

describe 'Upload Background Image', js: true do
  before :each do
    p '================='
    pp Artist.all
    @artist = Artist.first || Artist.create(artist_name:'Double Stuff Oreos', email:'i@love.oreos', password:'letmein')
    visit "/artists/" + @artist.id.to_s
    pp @artist.id
    pp @artist.artist_name
    p @artist.errors.full_messages
    click_button 'Log in'
    fill_in 'Email', with: 'i@love.oreos'
    fill_in 'Password', with: 'letmein'
    page.find('#loginButtonModal').click
    page.find('#addBackgroundImagePrompt').click
    page.attach_file('#artist_background_image', Rails.root + 'spec/Fixtures/Snow.jpg')
    p Rails.root + 'spec/Fixtures/Snow.jpg'
    click_button 'upload'
  end

  it "cannot upload a background image", js: true do
    backgroundURL = @artist.background_image.url.include?('Snow.jpg')
    p @artist.background_image.url
    expect(backgroundURL).to be_truthy
  end
end

但是当我将选择器更改为&#39; artist_background_page&#39;没有身份证#&#39;#&#39;符号。 rspec给了我不同的错误:

...."================="
[]
"is_active_session is called"
#<Artist id: 1, artist_name: "Double Stuff Oreos", route_name: "double-stuff-oreos",       created_at: "2014-07-20 17:20:48", updated_at: "2014-07-20 17:20:48", password_digest:    "$2a$04$vgozdgieklXPjJ9Ri4Cv1e1d/hme0ybNnSEGXrmob5z...", remember_token: nil, email: "i@love.oreos", description: nil, youtube: nil, twitter: nil, facebook: nil, instagram: nil, hometown: nil, confirmation_code: nil, is_confirmed: nil, background_image_file_name: nil, background_image_content_type: nil, background_image_file_size: nil, background_image_updated_at:   nil>
1
"Double Stuff Oreos"
[]
"is_active_session is called"
#<Pathname:/Users/bob/rails_projects/audience/spec/Fixtures/Snow.jpg>
"/background_images/original/missing.png"
"Hello from update"
"Logged in!"

An error occurred in an after hook
ActiveRecord::RecordNotFound: Couldn't find Artist with 'id'=1
occurred at /Users/shuo/.rvm/gems/ruby-2.1.2/gems/activerecord- 4.1.4/lib/active_record/relation/finder_methods.rb:320:in `raise_record_not_found_exception!'

F....

Failures:

1) Upload Background Image cannot upload a background image
   Failure/Error: expect(backgroundURL).to be_truthy
   expected: truthy value
        got: false
 # ./spec/models/artist_spec.rb:74:in `block (2 levels) in <top (required)>'

在这种情况下,模型已创建,但错误表示由于某种原因无法找到它... 有没有其他方法可以用来附加capybara中的文件并测试成功上传?

失败的可能性:

  1. 文件上传路径错误
  2. 使用方法错误或使用方法无效
  3. 服务器出错了

1 个答案:

答案 0 :(得分:13)

此错误:

Capybara::ElementNotFound:
   Unable to find file field "#artist_background_image"

表明,水豚无法找到名为#artist_background_image的字段。您需要做的是按名称引用文件上载字段。

假设你有

<input id="artist_background_image" name="file_upload" type="file">

然后你可以参考像:

这样的字段
page.attach_file('file_upload', Rails.root + 'spec/Fixtures/Snow.jpg')

有了这个,capybara将知道要上传的字段。

我知道这是一个迟到的回复,但我认为这将有助于其他人面对这个问题。