Ho problemi a provare a verificare se il caricamento dell'immagine funziona con paperclip utilizzando il metodo attach_file di Capybara.con problemi durante il test del file di caricamento con il metodo Capybara attach_file
rspec restituisce questi errori di seguito: Fallimenti:
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)>'
mio test è elencato di seguito. Ho dato per scontato che il pulsante scegli file fosse il selettore per attach_file, quindi ho usato l'id del selettore '#artist_background_page'.
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:'[email protected]', 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: '[email protected]'
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
Tuttavia, quando cambio il selettore su "artist_background_page" senza il simbolo "#". RSpec mi dà errore differente:
...."================="
[]
"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: "[email protected]", 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)>'
In questo caso, il modello è stato creato, ma gli errori dice che non riesce a trovare per qualche motivo ... C'è qualche altro metodo che può essere utilizzato per allegare file in capibara e prova con successo i caricamenti?
Possibilità di fallimento:
- percorso errato per file di caricamento
- metodo sbagliato usare o l'uso non valide di metodo
- qualcosa di sbagliato con il server