demarches-normaliennes/spec/features/description_page/upload_piece_justificative_spec.rb

59 lines
2 KiB
Ruby
Raw Normal View History

2015-08-31 09:50:54 +02:00
require 'spec_helper'
feature 'user is on description page' do
2016-02-02 18:37:38 +01:00
let!(:procedure) { create(:procedure, :with_two_type_de_piece_justificative, cerfa_flag: true) }
let!(:dossier) { create(:dossier, :with_entreprise, procedure: procedure) }
2016-04-15 15:32:15 +02:00
2015-08-31 09:50:54 +02:00
before do
2016-04-15 15:32:15 +02:00
allow(ClamavService).to receive(:safe_file?).and_return(true)
2015-09-23 19:20:03 +02:00
visit users_dossier_description_path dossier
within('#new_user') do
page.find_by_id('user_email').set dossier.user.email
page.find_by_id('user_password').set dossier.user.password
page.click_on 'Se connecter'
end
2015-08-31 09:50:54 +02:00
end
2016-04-15 15:32:15 +02:00
2015-08-31 09:50:54 +02:00
it { expect(page).to have_css('#description_page') }
context 'he fill description fields' do
before do
find_by_id('nom_projet').set 'mon nom'
find_by_id('description').set 'ma description'
end
context 'before submit' do
it 'dossier cerfa is empty' do
expect(dossier.cerfa).to be_empty
end
it 'pieces_justificatives are empty' do
dossier.pieces_justificatives.each do |piece_justificative|
expect(piece_justificative).to be_empty
2015-08-31 09:50:54 +02:00
end
end
end
context 'he adds cerfa', vcr: { cassette_name: 'description_page_upload_piece_justificative_adds_cerfa' } do
2015-08-31 09:50:54 +02:00
before do
attach_file('cerfa_pdf', File.path('spec/support/files/dossierPDF.pdf'))
click_on("Soumettre mon dossier")
2015-08-31 09:50:54 +02:00
dossier.reload
end
it 'fills dossier cerfa' do
expect(dossier.cerfa).not_to be_empty
end
end
context 'when he adds a piece_justificative and submit form', vcr: { cassette_name: 'description_page_upload_piece_justificative_adds_cerfa_and_submit' } do
2015-08-31 09:50:54 +02:00
before do
2016-03-17 14:50:10 +01:00
file_input_id = 'piece_justificative_' + dossier.types_de_piece_justificative.first.id.to_s
2016-02-04 10:39:25 +01:00
attach_file(file_input_id, File.path('spec/support/files/dossierPDF.pdf'))
click_on('Soumettre mon dossier')
2015-08-31 09:50:54 +02:00
dossier.reload
end
scenario 'fills the given piece_justificative' do
expect(dossier.pieces_justificatives.first).not_to be_empty
2015-08-31 09:50:54 +02:00
end
end
end
end