2019-02-19 16:20:47 +01:00
|
|
|
require 'rails_helper'
|
2018-02-21 18:32:07 +01:00
|
|
|
|
|
|
|
feature 'The user' do
|
|
|
|
let(:password) { 'secret_password' }
|
|
|
|
let!(:user) { create(:user, password: password) }
|
|
|
|
|
|
|
|
let!(:procedure) { create(:procedure, :published, :for_individual, :with_all_champs_mandatory) }
|
|
|
|
let(:user_dossier) { user.dossiers.first }
|
|
|
|
|
|
|
|
# TODO: check
|
|
|
|
# the order
|
|
|
|
# there are no extraneous input
|
|
|
|
scenario 'fill a dossier', js: true do
|
2018-06-15 14:35:49 +02:00
|
|
|
allow(Champs::RegionChamp).to receive(:regions).and_return(['region1', 'region2']).at_least(:once)
|
2018-06-15 14:36:48 +02:00
|
|
|
allow(Champs::DepartementChamp).to receive(:departements).and_return(['dep1', 'dep2']).at_least(:once)
|
2018-02-21 18:32:07 +01:00
|
|
|
|
2019-06-03 15:45:08 +02:00
|
|
|
log_in(user, procedure)
|
2018-02-21 18:32:07 +01:00
|
|
|
|
|
|
|
fill_individual
|
|
|
|
|
|
|
|
# fill data
|
|
|
|
fill_in('text', with: 'super texte')
|
|
|
|
fill_in('textarea', with: 'super textarea')
|
2018-09-12 22:25:57 +02:00
|
|
|
fill_in('date', with: '12-12-2012')
|
2018-10-25 15:17:33 +02:00
|
|
|
select_date_and_time(Time.zone.parse('06/01/1985 7h05'), form_id_for('datetime'))
|
2018-02-21 18:32:07 +01:00
|
|
|
fill_in('number', with: '42')
|
|
|
|
check('checkbox')
|
|
|
|
choose('Madame')
|
|
|
|
fill_in('email', with: 'loulou@yopmail.com')
|
|
|
|
fill_in('phone', with: '1234567890')
|
|
|
|
choose('Non')
|
|
|
|
select('val2', from: form_id_for('simple_drop_down_list'))
|
|
|
|
select('val1', from: form_id_for('multiple_drop_down_list'))
|
|
|
|
select('val3', from: form_id_for('multiple_drop_down_list'))
|
|
|
|
select('AUSTRALIE', from: 'pays')
|
|
|
|
select('region2', from: 'regions')
|
|
|
|
select('dep2', from: 'departements')
|
|
|
|
check('engagement')
|
|
|
|
fill_in('dossier_link', with: '123')
|
2019-02-19 17:36:02 +01:00
|
|
|
find('.editable-champ-piece_justificative input[type=file]').attach_file(Rails.root + 'spec/fixtures/files/file.pdf')
|
2018-02-21 18:32:07 +01:00
|
|
|
|
|
|
|
click_on 'Enregistrer le brouillon'
|
2019-02-19 16:21:14 +01:00
|
|
|
expect(page).to have_content('Votre brouillon a bien été sauvegardé')
|
2018-02-21 18:32:07 +01:00
|
|
|
|
|
|
|
# check data on the dossier
|
|
|
|
expect(user_dossier.brouillon?).to be true
|
|
|
|
expect(champ_value_for('text')).to eq('super texte')
|
|
|
|
expect(champ_value_for('textarea')).to eq('super textarea')
|
|
|
|
expect(champ_value_for('date')).to eq('2012-12-12')
|
|
|
|
expect(champ_value_for('datetime')).to eq('06/01/1985 07:05')
|
|
|
|
expect(champ_value_for('number')).to eq('42')
|
|
|
|
expect(champ_value_for('checkbox')).to eq('on')
|
|
|
|
expect(champ_value_for('civilite')).to eq('Mme.')
|
|
|
|
expect(champ_value_for('email')).to eq('loulou@yopmail.com')
|
|
|
|
expect(champ_value_for('phone')).to eq('1234567890')
|
|
|
|
expect(champ_value_for('yes_no')).to eq('false')
|
|
|
|
expect(champ_value_for('simple_drop_down_list')).to eq('val2')
|
|
|
|
expect(JSON.parse(champ_value_for('multiple_drop_down_list'))).to match(['val1', 'val3'])
|
|
|
|
expect(champ_value_for('pays')).to eq('AUSTRALIE')
|
|
|
|
expect(champ_value_for('regions')).to eq('region2')
|
|
|
|
expect(champ_value_for('departements')).to eq('dep2')
|
|
|
|
expect(champ_value_for('engagement')).to eq('on')
|
|
|
|
expect(champ_value_for('dossier_link')).to eq('123')
|
2019-02-19 17:36:02 +01:00
|
|
|
expect(champ_value_for('piece_justificative')).to be_nil # antivirus hasn't approved the file yet
|
2018-02-21 18:32:07 +01:00
|
|
|
|
|
|
|
## check data on the gui
|
2019-02-19 17:36:02 +01:00
|
|
|
|
2018-02-21 18:32:07 +01:00
|
|
|
expect(page).to have_field('text', with: 'super texte')
|
|
|
|
expect(page).to have_field('textarea', with: 'super textarea')
|
|
|
|
expect(page).to have_field('date', with: '2012-12-12')
|
2018-10-25 15:17:33 +02:00
|
|
|
check_date_and_time(Time.zone.parse('06/01/1985 7:05'), form_id_for('datetime'))
|
2018-02-21 18:32:07 +01:00
|
|
|
expect(page).to have_field('number', with: '42')
|
|
|
|
expect(page).to have_checked_field('checkbox')
|
|
|
|
expect(page).to have_checked_field('Madame')
|
|
|
|
expect(page).to have_field('email', with: 'loulou@yopmail.com')
|
|
|
|
expect(page).to have_field('phone', with: '1234567890')
|
|
|
|
expect(page).to have_checked_field('Non')
|
|
|
|
expect(page).to have_select('simple_drop_down_list', selected: 'val2')
|
|
|
|
expect(page).to have_select('multiple_drop_down_list', selected: ['val1', 'val3'])
|
|
|
|
expect(page).to have_select('pays', selected: 'AUSTRALIE')
|
|
|
|
expect(page).to have_select('regions', selected: 'region2')
|
|
|
|
expect(page).to have_select('departement', selected: 'dep2')
|
|
|
|
expect(page).to have_checked_field('engagement')
|
|
|
|
expect(page).to have_field('dossier_link', with: '123')
|
2019-02-19 17:36:02 +01:00
|
|
|
expect(page).to have_text('file.pdf')
|
|
|
|
expect(page).to have_text('analyse antivirus en cours')
|
2018-02-21 18:32:07 +01:00
|
|
|
end
|
|
|
|
|
2019-01-30 16:14:15 +01:00
|
|
|
let(:procedure_with_repetition) do
|
|
|
|
tdc = create(:type_de_champ_repetition, libelle: 'repetition')
|
|
|
|
tdc.types_de_champ << create(:type_de_champ_text, libelle: 'text')
|
|
|
|
create(:procedure, :published, :for_individual, types_de_champ: [tdc])
|
|
|
|
end
|
|
|
|
|
|
|
|
scenario 'fill a dossier with repetition', js: true do
|
2019-06-03 15:45:08 +02:00
|
|
|
log_in(user, procedure_with_repetition)
|
2019-01-30 16:14:15 +01:00
|
|
|
|
|
|
|
fill_individual
|
|
|
|
|
|
|
|
fill_in('text', with: 'super texte')
|
|
|
|
expect(page).to have_field('text', with: 'super texte')
|
|
|
|
|
|
|
|
click_on 'Ajouter une ligne pour'
|
|
|
|
|
|
|
|
within '.row-1' do
|
|
|
|
fill_in('text', with: 'un autre texte')
|
|
|
|
end
|
|
|
|
|
|
|
|
expect(page).to have_content('Supprimer', count: 2)
|
|
|
|
|
|
|
|
click_on 'Enregistrer le brouillon'
|
|
|
|
|
|
|
|
expect(page).to have_content('Supprimer', count: 2)
|
|
|
|
|
|
|
|
within '.row-1' do
|
|
|
|
click_on 'Supprimer'
|
|
|
|
end
|
|
|
|
|
|
|
|
click_on 'Enregistrer le brouillon'
|
|
|
|
|
|
|
|
expect(page).to have_content('Supprimer', count: 1)
|
|
|
|
end
|
|
|
|
|
2018-02-21 18:32:07 +01:00
|
|
|
let(:simple_procedure) do
|
2018-07-02 12:27:01 +02:00
|
|
|
tdcs = [create(:type_de_champ, mandatory: true, libelle: 'texte obligatoire')]
|
2018-02-21 18:32:07 +01:00
|
|
|
create(:procedure, :published, :for_individual, types_de_champ: tdcs)
|
|
|
|
end
|
|
|
|
|
|
|
|
scenario 'save an incomplete dossier as draft but cannot not submit it', js: true do
|
2019-06-03 15:45:08 +02:00
|
|
|
log_in(user, simple_procedure)
|
2018-02-21 18:32:07 +01:00
|
|
|
fill_individual
|
|
|
|
|
2018-07-02 12:27:01 +02:00
|
|
|
# Check an incomplete dossier can be saved as a draft, even when mandatory fields are missing
|
2018-02-21 18:32:07 +01:00
|
|
|
click_on 'Enregistrer le brouillon'
|
2018-07-02 12:27:01 +02:00
|
|
|
expect(user_dossier.reload.brouillon?).to be(true)
|
2018-02-21 18:32:07 +01:00
|
|
|
expect(page).to have_content('Votre brouillon a bien été sauvegardé')
|
2018-09-06 10:49:26 +02:00
|
|
|
expect(page).to have_current_path(brouillon_dossier_path(user_dossier))
|
2018-02-21 18:32:07 +01:00
|
|
|
|
2018-07-02 12:27:01 +02:00
|
|
|
# Check an incomplete dossier cannot be submitted when mandatory fields are missing
|
2018-02-21 18:32:07 +01:00
|
|
|
click_on 'Soumettre le dossier'
|
|
|
|
expect(user_dossier.reload.brouillon?).to be(true)
|
2018-09-06 10:49:26 +02:00
|
|
|
expect(page).to have_current_path(brouillon_dossier_path(user_dossier))
|
2018-02-21 18:32:07 +01:00
|
|
|
|
2018-07-02 12:27:01 +02:00
|
|
|
# Check a dossier can be submitted when all mandatory fields are filled
|
|
|
|
fill_in('texte obligatoire', with: 'super texte')
|
2018-02-21 18:32:07 +01:00
|
|
|
|
|
|
|
click_on 'Soumettre le dossier'
|
|
|
|
expect(user_dossier.reload.en_construction?).to be(true)
|
2018-07-02 12:27:01 +02:00
|
|
|
expect(champ_value_for('texte obligatoire')).to eq('super texte')
|
2018-02-27 09:49:58 +01:00
|
|
|
expect(page).to have_current_path(merci_dossier_path(user_dossier))
|
2018-02-21 18:32:07 +01:00
|
|
|
end
|
|
|
|
|
2019-02-19 17:36:02 +01:00
|
|
|
let(:procedure_with_pj) do
|
|
|
|
tdcs = [create(:type_de_champ_piece_justificative, mandatory: true, libelle: 'Pièce justificative')]
|
|
|
|
create(:procedure, :published, :for_individual, types_de_champ: tdcs)
|
|
|
|
end
|
|
|
|
|
|
|
|
scenario 'adding, replacing and removing attachments', js: true do
|
2019-06-03 15:45:08 +02:00
|
|
|
log_in(user, procedure_with_pj)
|
2019-02-19 17:36:02 +01:00
|
|
|
fill_individual
|
|
|
|
|
|
|
|
# Add an attachment
|
|
|
|
find('.editable-champ-piece_justificative input[type=file]').attach_file(Rails.root + 'spec/fixtures/files/file.pdf')
|
|
|
|
click_on 'Enregistrer le brouillon'
|
|
|
|
expect(page).to have_content('Votre brouillon a bien été sauvegardé')
|
|
|
|
expect(page).to have_text('file.pdf')
|
|
|
|
expect(page).to have_text('analyse antivirus en cours')
|
|
|
|
|
|
|
|
# Mark file as scanned and clean
|
2019-05-02 11:37:35 +02:00
|
|
|
attachment = ActiveStorage::Attachment.last
|
|
|
|
attachment.blob.update(metadata: attachment.blob.metadata.merge(scanned_at: Time.zone.now, virus_scan_result: ActiveStorage::VirusScanner::SAFE))
|
2019-02-19 17:36:02 +01:00
|
|
|
within '.piece-justificative' do
|
|
|
|
click_on 'rafraichir'
|
|
|
|
end
|
|
|
|
expect(page).to have_link('file.pdf')
|
|
|
|
expect(page).to have_no_content('analyse antivirus en cours')
|
|
|
|
|
|
|
|
# Replace the attachment
|
|
|
|
within '.piece-justificative' do
|
|
|
|
click_on 'Remplacer'
|
|
|
|
end
|
|
|
|
find('.editable-champ-piece_justificative input[type=file]').attach_file(Rails.root + 'spec/fixtures/files/RIB.pdf')
|
|
|
|
click_on 'Enregistrer le brouillon'
|
|
|
|
expect(page).to have_no_text('file.pdf')
|
|
|
|
expect(page).to have_text('RIB.pdf')
|
|
|
|
|
|
|
|
# Remove the attachment
|
|
|
|
within '.piece-justificative' do
|
|
|
|
click_on 'Supprimer'
|
|
|
|
end
|
|
|
|
expect(page).to have_content('La pièce jointe a bien été supprimée')
|
|
|
|
expect(page).to have_no_text('RIB.pdf')
|
|
|
|
end
|
|
|
|
|
2018-02-21 18:32:07 +01:00
|
|
|
private
|
|
|
|
|
2019-06-03 15:45:08 +02:00
|
|
|
def log_in(user, procedure)
|
|
|
|
login_as user, scope: :user
|
2018-02-21 18:32:07 +01:00
|
|
|
|
2019-06-03 15:45:08 +02:00
|
|
|
visit "/commencer/#{procedure.path}"
|
2019-01-16 16:16:15 +01:00
|
|
|
click_on 'Commencer la démarche'
|
|
|
|
|
|
|
|
expect(page).to have_content("Données d'identité")
|
2018-02-21 18:32:07 +01:00
|
|
|
expect(page).to have_current_path(identite_dossier_path(user_dossier))
|
|
|
|
end
|
|
|
|
|
|
|
|
def form_id_for(libelle)
|
|
|
|
find(:xpath, ".//label[contains(text()[normalize-space()], '#{libelle}')]")[:for]
|
|
|
|
end
|
|
|
|
|
|
|
|
def champ_value_for(libelle)
|
|
|
|
champs = user_dossier.champs
|
|
|
|
champs.find { |c| c.libelle == libelle }.value
|
|
|
|
end
|
|
|
|
|
|
|
|
def fill_individual
|
|
|
|
fill_in('individual_prenom', with: 'prenom')
|
|
|
|
fill_in('individual_nom', with: 'nom')
|
|
|
|
click_on 'Continuer'
|
2018-09-06 09:09:23 +02:00
|
|
|
expect(page).to have_current_path(brouillon_dossier_path(user_dossier))
|
2018-02-21 18:32:07 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def select_date_and_time(date, field)
|
|
|
|
select date.strftime('%Y'), from: "#{field}_1i" # year
|
|
|
|
select I18n.l(date, format: '%B'), from: "#{field}_2i" # month
|
|
|
|
select date.strftime('%-d'), from: "#{field}_3i" # day
|
|
|
|
select date.strftime('%H'), from: "#{field}_4i" # hour
|
|
|
|
select date.strftime('%M'), from: "#{field}_5i" # minute
|
|
|
|
end
|
|
|
|
|
|
|
|
def check_date_and_time(date, field)
|
|
|
|
expect(page).to have_select("#{field}_1i", selected: date.strftime('%Y'))
|
|
|
|
expect(page).to have_select("#{field}_2i", selected: I18n.l(date, format: '%B'))
|
|
|
|
expect(page).to have_select("#{field}_3i", selected: date.strftime('%-d'))
|
|
|
|
expect(page).to have_select("#{field}_4i", selected: date.strftime('%H'))
|
|
|
|
expect(page).to have_select("#{field}_5i", selected: date.strftime('%M'))
|
|
|
|
end
|
|
|
|
end
|