2021-10-26 11:44:53 +02:00
|
|
|
|
describe 'The user' do
|
2023-03-03 14:16:15 +01:00
|
|
|
|
let(:password) { SECURE_PASSWORD }
|
2018-02-21 18:32:07 +01:00
|
|
|
|
let!(:user) { create(:user, password: password) }
|
|
|
|
|
|
|
|
|
|
let!(:procedure) { create(:procedure, :published, :for_individual, :with_all_champs_mandatory) }
|
|
|
|
|
let(:user_dossier) { user.dossiers.first }
|
2022-08-03 15:56:32 +02:00
|
|
|
|
let!(:dossier_to_link) { create(:dossier) }
|
2018-02-21 18:32:07 +01:00
|
|
|
|
|
2022-10-10 09:41:33 +02:00
|
|
|
|
scenario 'fill a dossier', js: true, retry: 3 do
|
2019-06-03 15:45:08 +02:00
|
|
|
|
log_in(user, procedure)
|
2018-02-21 18:32:07 +01:00
|
|
|
|
|
|
|
|
|
fill_individual
|
|
|
|
|
# fill data
|
2023-05-15 14:54:07 +02:00
|
|
|
|
fill_in('text', with: 'super texte', match: :first)
|
2018-02-21 18:32:07 +01:00
|
|
|
|
fill_in('textarea', with: 'super textarea')
|
2023-05-15 14:54:07 +02:00
|
|
|
|
fill_in('date', with: '12-12-2012', match: :first)
|
2023-02-09 15:18:38 +01:00
|
|
|
|
fill_in('datetime', with: Time.zone.parse('2023-01-06T07:05'))
|
|
|
|
|
find("input[type=datetime-local]").send_keys(:arrow_up).send_keys(:arrow_down) # triggers onChange
|
2018-02-21 18:32:07 +01:00
|
|
|
|
fill_in('number', with: '42')
|
2021-11-09 15:22:20 +01:00
|
|
|
|
fill_in('decimal_number', with: '17')
|
|
|
|
|
fill_in('integer_number', with: '12')
|
2021-11-09 15:01:22 +01:00
|
|
|
|
scroll_to(find_field('checkbox'), align: :center)
|
2023-08-21 16:18:31 +02:00
|
|
|
|
find('label', text: 'checkbox').click
|
2023-09-05 14:42:56 +02:00
|
|
|
|
find('label', text: 'Madame').click
|
2018-02-21 18:32:07 +01:00
|
|
|
|
fill_in('email', with: 'loulou@yopmail.com')
|
2020-07-29 15:45:25 +02:00
|
|
|
|
fill_in('phone', with: '0123456789')
|
2022-02-15 15:04:41 +01:00
|
|
|
|
scroll_to(find_field('Non'), align: :center)
|
2023-08-21 16:18:31 +02:00
|
|
|
|
find('label', text: 'Non').click
|
|
|
|
|
find('.fr-radio-group label', text: 'val2').click
|
|
|
|
|
find('.fr-checkbox-group label', text: 'val1').click
|
|
|
|
|
find('.fr-checkbox-group label', text: 'val3').click
|
2020-06-24 10:55:53 +02:00
|
|
|
|
select('bravo', from: form_id_for('simple_choice_drop_down_list_long'))
|
2023-03-29 23:31:13 +02:00
|
|
|
|
select('alpha', from: form_id_for('multiple_choice_drop_down_list_long'))
|
|
|
|
|
select('charly', from: form_id_for('multiple_choice_drop_down_list_long'))
|
2021-02-11 15:27:39 +01:00
|
|
|
|
|
2022-12-20 21:29:53 +01:00
|
|
|
|
select('Australie', from: form_id_for('pays'))
|
|
|
|
|
select('Martinique', from: form_id_for('regions'))
|
|
|
|
|
select('02 – Aisne', from: form_id_for('departements'))
|
2023-08-21 16:18:31 +02:00
|
|
|
|
fill_in('Renseignez le code postal', with: '60400')
|
|
|
|
|
# wait_until { all('label', text: 'Sélectionnez la commune dans la liste').size == 1 }
|
|
|
|
|
select('Brétigny (60400)', from: form_id_for('commune'))
|
2020-01-14 18:46:07 +01:00
|
|
|
|
|
2023-04-26 16:49:50 +02:00
|
|
|
|
# communes needs more time to be updated
|
|
|
|
|
wait_until { champ_value_for('communes') == "Brétigny" }
|
|
|
|
|
|
2022-07-25 10:24:17 +02:00
|
|
|
|
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
|
|
|
|
|
2022-08-03 16:02:22 +02:00
|
|
|
|
expect(page).to have_css('span', text: 'Votre brouillon est automatiquement enregistré', visible: true)
|
2022-10-04 12:27:03 +02:00
|
|
|
|
wait_for_autosave
|
2018-02-21 18:32:07 +01:00
|
|
|
|
|
2022-07-25 10:24:17 +02: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')
|
2023-07-06 02:53:57 +02:00
|
|
|
|
expect(champ_value_for('datetime')).to eq(Time.zone.parse('2023-01-06T07:05:00').iso8601)
|
2022-07-25 10:24:17 +02:00
|
|
|
|
expect(champ_value_for('number')).to eq('42')
|
|
|
|
|
expect(champ_value_for('decimal_number')).to eq('17')
|
|
|
|
|
expect(champ_value_for('integer_number')).to eq('12')
|
2023-01-05 12:18:27 +01:00
|
|
|
|
expect(champ_value_for('checkbox')).to eq('true')
|
2022-07-25 10:24:17 +02:00
|
|
|
|
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('0123456789')
|
|
|
|
|
expect(champ_value_for('yes_no')).to eq('false')
|
|
|
|
|
expect(champ_value_for('simple_drop_down_list')).to eq('val2')
|
|
|
|
|
expect(champ_value_for('simple_choice_drop_down_list_long')).to eq('bravo')
|
|
|
|
|
expect(JSON.parse(champ_value_for('multiple_choice_drop_down_list_long'))).to match(['alpha', 'charly'])
|
|
|
|
|
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('Martinique')
|
2022-12-20 21:29:53 +01:00
|
|
|
|
expect(champ_value_for('departements')).to eq('Aisne')
|
2023-03-21 14:47:31 +01:00
|
|
|
|
expect(champ_value_for('communes')).to eq('Brétigny')
|
2022-07-25 10:24:17 +02:00
|
|
|
|
expect(champ_value_for('dossier_link')).to eq('123')
|
|
|
|
|
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')
|
2023-02-09 15:18:38 +01:00
|
|
|
|
expect(page).to have_field('datetime', with: '2023-01-06T07:05')
|
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')
|
2020-07-29 15:45:25 +02:00
|
|
|
|
expect(page).to have_field('phone', with: '0123456789')
|
2018-02-21 18:32:07 +01:00
|
|
|
|
expect(page).to have_checked_field('Non')
|
2020-06-24 10:55:53 +02:00
|
|
|
|
expect(page).to have_checked_field('val2')
|
|
|
|
|
expect(page).to have_checked_field('val1')
|
|
|
|
|
expect(page).to have_checked_field('val3')
|
|
|
|
|
expect(page).to have_selected_value('simple_choice_drop_down_list_long', selected: 'bravo')
|
2022-12-20 21:29:53 +01:00
|
|
|
|
expect(page).to have_selected_value('pays', selected: 'Australie')
|
|
|
|
|
expect(page).to have_selected_value('regions', selected: 'Martinique')
|
|
|
|
|
expect(page).to have_selected_value('departements', selected: '02 – Aisne')
|
2023-03-29 23:31:13 +02:00
|
|
|
|
within("##{champ_for('multiple_choice_drop_down_list_long').input_group_id}") do
|
|
|
|
|
expect(page).to have_button('alpha')
|
|
|
|
|
expect(page).to have_button('charly')
|
|
|
|
|
end
|
2023-08-21 16:18:31 +02:00
|
|
|
|
expect(page).to have_selected_value('commune', selected: 'Brétigny (60400)')
|
2023-03-21 14:47:31 +01:00
|
|
|
|
expect(page).to have_selected_value('pays', selected: 'Australie')
|
2022-07-25 10:24:17 +02:00
|
|
|
|
expect(page).to have_field('dossier_link', with: '123')
|
2019-02-19 17:36:02 +01:00
|
|
|
|
expect(page).to have_text('file.pdf')
|
2022-11-09 12:33:20 +01:00
|
|
|
|
expect(page).to have_text('Analyse antivirus en cours')
|
2018-02-21 18:32:07 +01:00
|
|
|
|
end
|
|
|
|
|
|
2023-08-31 09:59:18 +02:00
|
|
|
|
scenario 'fill nothing and every error anchor links points to an existing element', js: true, retry: 3 do
|
2023-05-13 06:44:58 +02:00
|
|
|
|
log_in(user, procedure)
|
|
|
|
|
fill_individual
|
|
|
|
|
click_on 'Déposer le dossier'
|
|
|
|
|
|
|
|
|
|
expect(page).to have_selector("#flash_message")
|
|
|
|
|
all('.error-anchor').map do |link_element|
|
|
|
|
|
error_anchor = URI(link_element['href'])
|
|
|
|
|
expect(page).to have_selector("##{error_anchor.fragment}")
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2019-01-30 16:14:15 +01:00
|
|
|
|
let(:procedure_with_repetition) do
|
2023-02-02 09:59:03 +01:00
|
|
|
|
create(:procedure, :published, :for_individual, types_de_champ_public: [{ type: :repetition, mandatory: true, children: [{ libelle: 'sub type de champ' }] }])
|
2019-01-30 16:14:15 +01:00
|
|
|
|
end
|
|
|
|
|
|
2023-08-31 09:59:18 +02:00
|
|
|
|
scenario 'fill a dossier with repetition', js: true, retry: 3 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
|
|
|
|
|
|
2020-08-27 19:56:34 +02:00
|
|
|
|
fill_in('sub type de champ', with: 'super texte')
|
|
|
|
|
expect(page).to have_field('sub type de champ', with: 'super texte')
|
2019-01-30 16:14:15 +01:00
|
|
|
|
|
2020-02-10 15:43:21 +01:00
|
|
|
|
click_on 'Ajouter un élément pour'
|
2019-01-30 16:14:15 +01:00
|
|
|
|
|
2022-04-28 15:06:40 +02:00
|
|
|
|
within '.repetition .row:first-child' do
|
2020-08-27 19:56:34 +02:00
|
|
|
|
fill_in('sub type de champ', with: 'un autre texte')
|
2019-01-30 16:14:15 +01:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
expect(page).to have_content('Supprimer', count: 2)
|
|
|
|
|
|
2023-01-19 10:48:01 +01:00
|
|
|
|
expect do
|
|
|
|
|
within '.repetition .row:first-child' do
|
|
|
|
|
click_on 'Supprimer l’élément'
|
|
|
|
|
end
|
|
|
|
|
expect(page).to have_content('Supprimer', count: 1)
|
|
|
|
|
end.to change { Champ.count }
|
2019-01-30 16:14:15 +01:00
|
|
|
|
end
|
|
|
|
|
|
2022-08-04 11:39:07 +02:00
|
|
|
|
let(:simple_procedure) { create(:procedure, :published, :for_individual, types_de_champ_public: [{ mandatory: true, libelle: 'texte obligatoire' }, { mandatory: false, libelle: 'texte optionnel' }]) }
|
2018-02-21 18:32:07 +01:00
|
|
|
|
|
2023-08-31 09:59:18 +02:00
|
|
|
|
scenario 'save an incomplete dossier as draft but cannot not submit it', js: true, retry: 3 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
|
2020-09-15 13:38:45 +02:00
|
|
|
|
fill_in('texte optionnel', with: 'ça ne suffira pas')
|
2022-10-04 12:27:03 +02:00
|
|
|
|
wait_for_autosave
|
|
|
|
|
|
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
|
2019-07-15 16:10:34 +02:00
|
|
|
|
click_on 'Déposer le dossier'
|
2018-02-21 18:32:07 +01:00
|
|
|
|
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
|
|
|
|
|
2019-07-15 16:10:34 +02:00
|
|
|
|
click_on 'Déposer le dossier'
|
2022-11-23 11:56:35 +01:00
|
|
|
|
wait_until { user_dossier.reload.en_construction? }
|
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
|
|
|
|
|
|
2023-08-31 09:59:18 +02:00
|
|
|
|
scenario 'extends dossier experation date more than one time, ', js: true, retry: 3 do
|
2021-12-03 16:09:51 +01:00
|
|
|
|
simple_procedure.update(procedure_expires_when_termine_enabled: true)
|
2021-11-22 14:51:52 +01:00
|
|
|
|
user_old_dossier = create(:dossier,
|
|
|
|
|
procedure: simple_procedure,
|
|
|
|
|
created_at: simple_procedure.duree_conservation_dossiers_dans_ds.month.ago,
|
|
|
|
|
user: user)
|
|
|
|
|
login_as(user, scope: :user)
|
|
|
|
|
visit brouillon_dossier_path(user_old_dossier)
|
|
|
|
|
|
2023-01-03 17:03:30 +01:00
|
|
|
|
expect(page).to have_css('.fr-callout__title', text: 'Votre dossier va expirer', visible: true)
|
2021-12-03 16:09:51 +01:00
|
|
|
|
find('#test-user-repousser-expiration').click
|
2022-08-03 15:57:48 +02:00
|
|
|
|
expect(page).to have_no_selector('#test-user-repousser-expiration')
|
2021-11-22 14:51:52 +01:00
|
|
|
|
|
2021-12-03 16:09:51 +01:00
|
|
|
|
Timecop.freeze(simple_procedure.duree_conservation_dossiers_dans_ds.month.from_now) do
|
2021-11-22 14:51:52 +01:00
|
|
|
|
visit brouillon_dossier_path(user_old_dossier)
|
2023-01-03 17:03:30 +01:00
|
|
|
|
expect(page).to have_css('.fr-callout__title', text: 'Votre dossier va expirer', visible: true)
|
2021-12-03 16:09:51 +01:00
|
|
|
|
find('#test-user-repousser-expiration').click
|
2022-08-03 15:57:48 +02:00
|
|
|
|
expect(page).to have_no_selector('#test-user-repousser-expiration')
|
2021-11-22 14:51:52 +01:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2022-08-04 11:39:07 +02:00
|
|
|
|
let(:procedure_with_pj) { create(:procedure, :published, :for_individual, types_de_champ_public: [{ type: :piece_justificative, mandatory: true, libelle: 'Pièce justificative' }]) }
|
|
|
|
|
let(:procedure_with_pjs) { create(:procedure, :published, :for_individual, types_de_champ_public: [{ type: :piece_justificative, mandatory: true, libelle: 'Pièce justificative 1' }, { type: :piece_justificative, mandatory: true, libelle: 'Pièce justificative 2' }]) }
|
|
|
|
|
let(:old_procedure_with_disabled_pj_validation) { create(:procedure, :published, :for_individual, types_de_champ_public: [{ type: :piece_justificative, mandatory: true, libelle: 'Pièce justificative 1', skip_pj_validation: true }]) }
|
2020-07-15 16:06:24 +02:00
|
|
|
|
|
2023-08-31 09:59:18 +02:00
|
|
|
|
scenario 'add an attachment', js: true, retry: 3 do
|
2020-05-14 17:39:07 +02:00
|
|
|
|
log_in(user, procedure_with_pjs)
|
2019-02-19 17:36:02 +01:00
|
|
|
|
fill_individual
|
|
|
|
|
|
2020-05-14 17:39:07 +02:00
|
|
|
|
# Add attachments
|
|
|
|
|
find_field('Pièce justificative 1').attach_file(Rails.root + 'spec/fixtures/files/file.pdf')
|
|
|
|
|
find_field('Pièce justificative 2').attach_file(Rails.root + 'spec/fixtures/files/RIB.pdf')
|
2019-02-19 17:36:02 +01:00
|
|
|
|
|
2020-05-14 17:39:07 +02:00
|
|
|
|
# Expect the files to be uploaded immediately
|
2022-11-09 12:33:20 +01:00
|
|
|
|
expect(page).to have_text('Analyse antivirus en cours', count: 2, wait: 5)
|
2020-05-14 17:39:07 +02:00
|
|
|
|
expect(page).to have_text('file.pdf')
|
2019-02-19 17:36:02 +01:00
|
|
|
|
expect(page).to have_text('RIB.pdf')
|
|
|
|
|
|
2020-05-14 17:39:07 +02:00
|
|
|
|
# Expect the submit buttons to be enabled
|
|
|
|
|
expect(page).to have_button('Déposer le dossier', disabled: false)
|
2019-02-19 17:36:02 +01:00
|
|
|
|
|
2020-05-14 17:39:07 +02:00
|
|
|
|
# Reload the current page
|
|
|
|
|
visit current_path
|
2020-03-30 15:34:56 +02:00
|
|
|
|
|
2020-05-14 17:39:07 +02:00
|
|
|
|
# Expect the files to have been saved on the dossier
|
|
|
|
|
expect(page).to have_text('file.pdf')
|
|
|
|
|
expect(page).to have_text('RIB.pdf')
|
|
|
|
|
end
|
2020-03-30 15:34:56 +02:00
|
|
|
|
|
2023-08-31 09:59:18 +02:00
|
|
|
|
scenario 'add an invalid attachment on an old procedure where pj validation is disabled', js: true, retry: 3 do
|
2020-07-15 16:06:24 +02:00
|
|
|
|
log_in(user, old_procedure_with_disabled_pj_validation)
|
|
|
|
|
fill_individual
|
|
|
|
|
|
|
|
|
|
# Test invalid file type
|
|
|
|
|
attach_file('Pièce justificative 1', Rails.root + 'spec/fixtures/files/invalid_file_format.json')
|
|
|
|
|
expect(page).to have_no_text('La pièce justificative n’est pas d’un type accepté')
|
2022-11-09 12:33:20 +01:00
|
|
|
|
expect(page).to have_text('Analyse antivirus en cours', count: 1, wait: 5)
|
2020-07-15 16:06:24 +02:00
|
|
|
|
end
|
|
|
|
|
|
2023-08-31 09:59:18 +02:00
|
|
|
|
scenario 'retry on transcient upload error', js: true, retry: 3 do
|
2020-05-14 17:39:07 +02:00
|
|
|
|
log_in(user, procedure_with_pjs)
|
|
|
|
|
fill_individual
|
2020-03-30 15:34:56 +02:00
|
|
|
|
|
2020-05-14 17:39:07 +02:00
|
|
|
|
# Test auto-upload failure
|
2022-05-06 19:52:55 +02:00
|
|
|
|
# Make the subsequent auto-upload request fail
|
|
|
|
|
allow_any_instance_of(Champs::PieceJustificativeController).to receive(:update) do |instance|
|
2022-11-09 12:33:20 +01:00
|
|
|
|
instance.render json: { errors: ["Une erreur est survenue"] }, status: :bad_request
|
2022-05-06 19:52:55 +02:00
|
|
|
|
end
|
2020-05-14 17:39:07 +02:00
|
|
|
|
attach_file('Pièce justificative 1', Rails.root + 'spec/fixtures/files/file.pdf')
|
2022-11-09 12:33:20 +01:00
|
|
|
|
expect(page).to have_css('p', text: "Une erreur est survenue", visible: :visible, wait: 5)
|
2022-11-24 14:05:53 +01:00
|
|
|
|
expect(page).to have_button('Réessayer', visible: true)
|
2020-05-14 17:39:07 +02:00
|
|
|
|
expect(page).to have_button('Déposer le dossier', disabled: false)
|
|
|
|
|
|
2022-05-06 19:52:55 +02:00
|
|
|
|
allow_any_instance_of(Champs::PieceJustificativeController).to receive(:update).and_call_original
|
|
|
|
|
|
2020-05-14 17:39:07 +02:00
|
|
|
|
# Test that retrying after a failure works
|
2022-11-24 14:05:53 +01:00
|
|
|
|
click_on('Réessayer', visible: true, wait: 5)
|
2022-11-09 12:33:20 +01:00
|
|
|
|
expect(page).to have_text('Analyse antivirus en cours', wait: 5)
|
2020-05-14 17:39:07 +02:00
|
|
|
|
expect(page).to have_text('file.pdf')
|
|
|
|
|
expect(page).to have_button('Déposer le dossier', disabled: false)
|
2020-03-30 15:34:56 +02:00
|
|
|
|
|
2020-05-14 17:39:07 +02:00
|
|
|
|
# Reload the current page
|
|
|
|
|
visit current_path
|
2020-03-30 15:34:56 +02:00
|
|
|
|
|
2020-05-14 17:39:07 +02:00
|
|
|
|
# Expect the file to have been saved on the dossier
|
|
|
|
|
expect(page).to have_text('file.pdf')
|
2020-03-30 15:34:56 +02:00
|
|
|
|
end
|
|
|
|
|
|
2023-08-31 09:59:18 +02:00
|
|
|
|
scenario "upload multiple pieces justificatives on same champ", js: true, retry: 3 do
|
2022-11-24 16:55:08 +01:00
|
|
|
|
log_in(user, procedure_with_pjs)
|
|
|
|
|
fill_individual
|
|
|
|
|
|
|
|
|
|
attach_file('Pièce justificative 1', Rails.root + 'spec/fixtures/files/file.pdf')
|
|
|
|
|
expect(page).to have_text('file.pdf')
|
|
|
|
|
expect(page).to have_text('Analyse antivirus en cours')
|
|
|
|
|
|
|
|
|
|
attach_file('Pièce justificative 1', Rails.root + 'spec/fixtures/files/white.png')
|
|
|
|
|
expect(page).to have_text('white.png')
|
|
|
|
|
|
|
|
|
|
click_on("Supprimer le fichier file.pdf")
|
2022-12-06 16:32:50 +01:00
|
|
|
|
expect(page).not_to have_text('file.pdf')
|
2022-11-24 16:55:08 +01:00
|
|
|
|
expect(page).to have_text("La pièce jointe a bien été supprimée")
|
|
|
|
|
|
|
|
|
|
attach_file('Pièce justificative 1', Rails.root + 'spec/fixtures/files/black.png')
|
|
|
|
|
|
|
|
|
|
# Mark all attachments as safe to test turbo poll
|
|
|
|
|
# They are not immediately attached in db, so we have to wait a bit before continuing
|
2022-12-06 16:32:50 +01:00
|
|
|
|
# NOTE: we're using files not used in other tests to avoid conflicts with concurrent tests
|
2022-11-24 16:55:08 +01:00
|
|
|
|
attachments = Timeout.timeout(5) do
|
|
|
|
|
filenames = ['white.png', 'black.png']
|
|
|
|
|
attachments = ActiveStorage::Attachment.where(name: "piece_justificative_file").includes(:blob).filter do |attachment|
|
|
|
|
|
filenames.include?(attachment.filename.to_s)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
fail ActiveRecord::RecordNotFound, "Not all attachments where found yet" unless attachments.count == filenames.count
|
|
|
|
|
|
|
|
|
|
attachments
|
|
|
|
|
rescue ActiveRecord::RecordNotFound
|
|
|
|
|
sleep 0.2
|
|
|
|
|
retry
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
attachments.each {
|
2022-12-22 18:20:58 +01:00
|
|
|
|
_1.blob.virus_scan_result = ActiveStorage::VirusScanner::SAFE
|
2022-11-24 16:55:08 +01:00
|
|
|
|
_1.save!
|
|
|
|
|
}
|
|
|
|
|
expect(page).not_to have_text('Analyse antivirus en cours', wait: 10)
|
|
|
|
|
|
|
|
|
|
visit current_path
|
|
|
|
|
|
2022-12-06 16:32:50 +01:00
|
|
|
|
expect(page).not_to have_text('file.pdf')
|
2022-11-24 16:55:08 +01:00
|
|
|
|
expect(page).to have_text('white.png')
|
|
|
|
|
expect(page).to have_text('black.png')
|
|
|
|
|
end
|
|
|
|
|
|
2022-06-23 12:12:17 +02:00
|
|
|
|
context 'with condition' do
|
|
|
|
|
include Logic
|
|
|
|
|
|
2022-08-23 18:39:18 +02:00
|
|
|
|
context 'with a repetition' do
|
2022-12-14 13:14:10 +01:00
|
|
|
|
let(:stable_id) { 999 }
|
|
|
|
|
let(:condition) { greater_than_eq(champ_value(stable_id), constant(18)) }
|
2022-08-23 18:39:18 +02:00
|
|
|
|
let(:procedure) do
|
2022-12-14 13:14:10 +01:00
|
|
|
|
create(:procedure, :published, :for_individual,
|
|
|
|
|
types_de_champ_public: [
|
|
|
|
|
{ type: :integer_number, libelle: 'age', stable_id: },
|
|
|
|
|
{
|
|
|
|
|
type: :repetition, libelle: 'repetition', condition:, children: [
|
|
|
|
|
{ type: :text, libelle: 'nom', mandatory: true }
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
])
|
2022-08-23 18:39:18 +02:00
|
|
|
|
end
|
|
|
|
|
|
2023-08-31 09:59:18 +02:00
|
|
|
|
scenario 'submit a dossier with an hidden mandatory champ within a repetition', js: true, retry: 3 do
|
2022-08-23 18:39:18 +02:00
|
|
|
|
log_in(user, procedure)
|
|
|
|
|
|
|
|
|
|
fill_individual
|
2022-12-14 13:14:10 +01:00
|
|
|
|
|
2023-05-15 14:54:07 +02:00
|
|
|
|
fill_in('age (facultatif)', with: 10)
|
2022-08-23 18:39:18 +02:00
|
|
|
|
click_on 'Déposer le dossier'
|
|
|
|
|
expect(page).to have_current_path(merci_dossier_path(user_dossier))
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2022-12-14 13:14:10 +01:00
|
|
|
|
context 'with a condition inside repetition' do
|
|
|
|
|
let(:a_stable_id) { 999 }
|
|
|
|
|
let(:b_stable_id) { 9999 }
|
|
|
|
|
let(:a_condition) { ds_eq(champ_value(a_stable_id), constant(true)) }
|
|
|
|
|
let(:b_condition) { ds_eq(champ_value(b_stable_id), constant(true)) }
|
|
|
|
|
let(:condition) { ds_or([a_condition, b_condition]) }
|
2022-08-08 17:11:20 +02:00
|
|
|
|
let(:procedure) do
|
2022-12-14 13:14:10 +01:00
|
|
|
|
create(:procedure, :published, :for_individual,
|
|
|
|
|
types_de_champ_public: [
|
|
|
|
|
{ type: :checkbox, libelle: 'champ_a', stable_id: a_stable_id },
|
|
|
|
|
{
|
2023-02-02 09:59:03 +01:00
|
|
|
|
type: :repetition, libelle: 'repetition', mandatory: true, children: [
|
2022-12-14 13:14:10 +01:00
|
|
|
|
{ type: :checkbox, libelle: 'champ_b', stable_id: b_stable_id },
|
|
|
|
|
{ type: :text, libelle: 'champ_c', condition: }
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
])
|
|
|
|
|
end
|
2022-08-08 17:11:20 +02:00
|
|
|
|
|
2023-08-31 09:59:18 +02:00
|
|
|
|
scenario 'fill a dossier', js: true, retry: 3 do
|
2022-12-14 13:14:10 +01:00
|
|
|
|
log_in(user, procedure)
|
2022-08-08 17:11:20 +02:00
|
|
|
|
|
2022-12-14 13:14:10 +01:00
|
|
|
|
fill_individual
|
|
|
|
|
|
|
|
|
|
expect(page).to have_no_css('label', text: 'champ_c', visible: true)
|
2023-08-21 16:18:31 +02:00
|
|
|
|
find('label', text: 'champ_a').click # check
|
2022-12-14 13:14:10 +01:00
|
|
|
|
wait_for_autosave
|
|
|
|
|
|
|
|
|
|
expect(page).to have_css('label', text: 'champ_c', visible: true)
|
2023-08-21 16:18:31 +02:00
|
|
|
|
find('label', text: 'champ_a').click # uncheck
|
2022-12-14 13:14:10 +01:00
|
|
|
|
wait_for_autosave
|
|
|
|
|
|
|
|
|
|
expect(page).to have_no_css('label', text: 'champ_c', visible: true)
|
2023-08-21 16:18:31 +02:00
|
|
|
|
find('label', text: 'champ_b').click # check
|
2022-12-14 13:14:10 +01:00
|
|
|
|
wait_for_autosave
|
|
|
|
|
|
|
|
|
|
expect(page).to have_css('label', text: 'champ_c', visible: true)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'with a required conditionnal champ' do
|
|
|
|
|
let(:stable_id) { 999 }
|
|
|
|
|
let(:condition) { greater_than_eq(champ_value(stable_id), constant(18)) }
|
|
|
|
|
let(:procedure) do
|
|
|
|
|
create(:procedure, :published, :for_individual,
|
|
|
|
|
types_de_champ_public: [
|
|
|
|
|
{ type: :integer_number, libelle: 'age', stable_id: },
|
|
|
|
|
{ type: :text, libelle: 'nom', mandatory: true, condition: }
|
|
|
|
|
])
|
2022-08-08 17:11:20 +02:00
|
|
|
|
end
|
|
|
|
|
|
2023-08-31 09:59:18 +02:00
|
|
|
|
scenario 'submit a dossier with an hidden mandatory champ ', js: true, retry: 3 do
|
2022-08-08 17:11:20 +02:00
|
|
|
|
log_in(user, procedure)
|
|
|
|
|
|
|
|
|
|
fill_individual
|
2022-12-14 13:14:10 +01:00
|
|
|
|
|
2022-08-08 17:11:20 +02:00
|
|
|
|
click_on 'Déposer le dossier'
|
|
|
|
|
expect(page).to have_current_path(merci_dossier_path(user_dossier))
|
|
|
|
|
end
|
2022-08-08 17:17:52 +02:00
|
|
|
|
|
2023-08-31 09:59:18 +02:00
|
|
|
|
scenario 'cannot submit a reveal dossier with a revealed mandatory champ ', js: true, retry: 3 do
|
2022-08-08 17:17:52 +02:00
|
|
|
|
log_in(user, procedure)
|
|
|
|
|
|
|
|
|
|
fill_individual
|
|
|
|
|
|
2023-05-15 14:54:07 +02:00
|
|
|
|
fill_in('age (facultatif)', with: '18')
|
|
|
|
|
expect(page).to have_css('label', text: 'nom', visible: :visible)
|
|
|
|
|
expect(page).to have_css('.icon.mandatory')
|
2022-08-08 17:17:52 +02:00
|
|
|
|
click_on 'Déposer le dossier'
|
|
|
|
|
expect(page).to have_current_path(brouillon_dossier_path(user_dossier))
|
|
|
|
|
end
|
2022-08-08 17:11:20 +02:00
|
|
|
|
end
|
|
|
|
|
|
2022-08-08 16:27:02 +02:00
|
|
|
|
context 'with a visibilite in cascade' do
|
2022-12-14 13:14:10 +01:00
|
|
|
|
let(:age_stable_id) { 999 }
|
|
|
|
|
let(:permis_stable_id) { 9999 }
|
|
|
|
|
let(:tonnage_stable_id) { 99999 }
|
|
|
|
|
let(:permis_condition) { greater_than_eq(champ_value(age_stable_id), constant(18)) }
|
|
|
|
|
let(:tonnage_condition) { ds_eq(champ_value(permis_stable_id), constant(true)) }
|
|
|
|
|
let(:parking_condition) { less_than_eq(champ_value(tonnage_stable_id), constant(20)) }
|
2022-12-14 11:25:45 +01:00
|
|
|
|
|
2022-12-14 13:14:10 +01:00
|
|
|
|
let(:procedure) do
|
|
|
|
|
create(:procedure, :published, :for_individual,
|
|
|
|
|
types_de_champ_public: [
|
2023-06-26 11:47:20 +02:00
|
|
|
|
{ type: :integer_number, libelle: 'age du candidat', stable_id: age_stable_id },
|
2022-12-14 13:14:10 +01:00
|
|
|
|
{ type: :yes_no, libelle: 'permis de conduire', stable_id: permis_stable_id, condition: permis_condition },
|
2023-04-24 10:38:17 +02:00
|
|
|
|
{ type: :header_section, libelle: 'info voiture', condition: permis_condition },
|
2022-12-14 13:14:10 +01:00
|
|
|
|
{ type: :integer_number, libelle: 'tonnage', stable_id: tonnage_stable_id, condition: tonnage_condition },
|
|
|
|
|
{ type: :text, libelle: 'parking', condition: parking_condition }
|
|
|
|
|
])
|
2022-08-08 16:27:02 +02:00
|
|
|
|
end
|
2022-06-23 12:12:17 +02:00
|
|
|
|
|
2023-08-31 09:59:18 +02:00
|
|
|
|
scenario 'fill a dossier', js: true, retry: 3 do
|
2022-08-08 16:27:02 +02:00
|
|
|
|
log_in(user, procedure)
|
2022-06-23 12:12:17 +02:00
|
|
|
|
|
2022-08-08 16:27:02 +02:00
|
|
|
|
fill_individual
|
2022-06-23 12:12:17 +02:00
|
|
|
|
|
2023-06-26 11:47:20 +02:00
|
|
|
|
expect(page).to have_css('label', text: 'age du candidat', visible: true)
|
2023-08-14 15:20:27 +02:00
|
|
|
|
expect(page).to have_no_css('legend', text: 'permis de conduire', visible: true)
|
|
|
|
|
expect(page).to have_no_css('legend', text: 'info voiture', visible: true)
|
2022-08-08 16:27:02 +02:00
|
|
|
|
expect(page).to have_no_css('label', text: 'tonnage', visible: true)
|
2022-07-20 10:58:03 +02:00
|
|
|
|
|
2023-06-26 11:47:20 +02:00
|
|
|
|
fill_in('age du candidat (facultatif)', with: '18')
|
2023-08-14 15:20:27 +02:00
|
|
|
|
expect(page).to have_css('legend', text: 'permis de conduire', visible: true)
|
|
|
|
|
expect(page).to have_css('legend', text: 'info voiture', visible: true)
|
2022-08-08 16:27:02 +02:00
|
|
|
|
expect(page).to have_no_css('label', text: 'tonnage', visible: true)
|
2022-07-20 10:58:03 +02:00
|
|
|
|
|
2023-08-14 15:20:27 +02:00
|
|
|
|
page.find('label', text: 'Oui').click
|
|
|
|
|
expect(page).to have_css('legend', text: 'permis de conduire', visible: true)
|
2022-08-08 16:27:02 +02:00
|
|
|
|
expect(page).to have_css('label', text: 'tonnage', visible: true)
|
2022-07-20 10:58:03 +02:00
|
|
|
|
|
2022-08-08 16:27:02 +02:00
|
|
|
|
fill_in('tonnage', with: '1')
|
|
|
|
|
expect(page).to have_css('label', text: 'parking', visible: true)
|
2022-07-21 15:48:37 +02:00
|
|
|
|
|
2022-08-08 16:27:02 +02:00
|
|
|
|
# try to fill with invalid data
|
2023-05-15 14:54:07 +02:00
|
|
|
|
fill_in('tonnage (facultatif)', with: 'a')
|
2022-08-08 16:27:02 +02:00
|
|
|
|
expect(page).to have_no_css('label', text: 'parking', visible: true)
|
2022-07-21 15:48:37 +02:00
|
|
|
|
|
2023-06-26 11:47:20 +02:00
|
|
|
|
fill_in('age du candidat (facultatif)', with: '2')
|
2023-08-14 15:20:27 +02:00
|
|
|
|
expect(page).to have_no_css('legend', text: 'permis de conduire', visible: true)
|
2022-08-08 16:27:02 +02:00
|
|
|
|
expect(page).to have_no_css('label', text: 'tonnage', visible: true)
|
2022-07-12 18:32:03 +02:00
|
|
|
|
|
2022-08-08 16:27:02 +02:00
|
|
|
|
click_on 'Déposer le dossier'
|
|
|
|
|
click_on 'Accéder à votre dossier'
|
|
|
|
|
click_on 'Modifier mon dossier'
|
2022-07-12 18:32:03 +02:00
|
|
|
|
|
2023-06-26 11:47:20 +02:00
|
|
|
|
expect(page).to have_css('label', text: 'age du candidat', visible: true)
|
2023-08-14 15:20:27 +02:00
|
|
|
|
expect(page).to have_no_css('legend', text: 'permis de conduire', visible: true)
|
2022-08-08 16:27:02 +02:00
|
|
|
|
expect(page).to have_no_css('label', text: 'tonnage', visible: true)
|
2022-07-20 10:58:03 +02:00
|
|
|
|
|
2023-06-26 11:47:20 +02:00
|
|
|
|
fill_in('age du candidat (facultatif)', with: '18')
|
2023-08-29 15:47:28 +02:00
|
|
|
|
wait_for_autosave
|
2022-09-08 11:26:18 +02:00
|
|
|
|
|
2022-08-08 16:27:02 +02:00
|
|
|
|
# the champ keeps their previous value so they are all displayed
|
2023-08-14 15:20:27 +02:00
|
|
|
|
expect(page).to have_css('legend', text: 'permis de conduire', visible: true)
|
2022-08-08 16:27:02 +02:00
|
|
|
|
expect(page).to have_css('label', text: 'tonnage', visible: true)
|
|
|
|
|
end
|
2022-06-23 12:12:17 +02:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2020-09-14 22:40:43 +02:00
|
|
|
|
context 'draft autosave' do
|
2023-08-31 09:59:18 +02:00
|
|
|
|
scenario 'autosave a draft', js: true, retry: 3 do
|
2019-11-19 14:40:28 +01:00
|
|
|
|
log_in(user, simple_procedure)
|
|
|
|
|
fill_individual
|
|
|
|
|
|
2022-08-03 15:57:48 +02:00
|
|
|
|
expect(page).to have_no_button('Enregistrer le brouillon')
|
2019-11-19 14:40:28 +01:00
|
|
|
|
expect(page).to have_content('Votre brouillon est automatiquement enregistré')
|
|
|
|
|
|
|
|
|
|
fill_in('texte obligatoire', with: 'a valid user input')
|
2022-10-04 12:27:03 +02:00
|
|
|
|
wait_for_autosave
|
2023-05-10 13:54:12 +02:00
|
|
|
|
wait_until { champ_value_for('texte obligatoire') == 'a valid user input' }
|
2019-11-19 14:40:28 +01:00
|
|
|
|
|
|
|
|
|
visit current_path
|
|
|
|
|
expect(page).to have_field('texte obligatoire', with: 'a valid user input')
|
|
|
|
|
end
|
|
|
|
|
|
2023-08-31 09:59:18 +02:00
|
|
|
|
scenario 'retry on autosave error', :capybara_ignore_server_errors, js: true, retry: 3 do
|
2019-11-19 14:40:28 +01:00
|
|
|
|
log_in(user, simple_procedure)
|
|
|
|
|
fill_individual
|
|
|
|
|
|
|
|
|
|
# Test autosave failure
|
2023-03-21 18:24:39 +01:00
|
|
|
|
allow_any_instance_of(Users::DossiersController).to receive(:update).and_raise("Server is busy")
|
2019-11-19 14:40:28 +01:00
|
|
|
|
fill_in('texte obligatoire', with: 'a valid user input')
|
|
|
|
|
blur
|
|
|
|
|
expect(page).to have_css('span', text: 'Impossible d’enregistrer le brouillon', visible: true)
|
|
|
|
|
|
|
|
|
|
# Test that retrying after a failure works
|
2023-03-21 18:24:39 +01:00
|
|
|
|
allow_any_instance_of(Users::DossiersController).to receive(:update).and_call_original
|
2023-04-21 18:38:00 +02:00
|
|
|
|
click_on 'Réessayer'
|
2022-10-04 12:27:03 +02:00
|
|
|
|
wait_for_autosave
|
2023-05-10 13:54:12 +02:00
|
|
|
|
wait_until { champ_value_for('texte obligatoire') == 'a valid user input' }
|
2019-11-19 14:40:28 +01:00
|
|
|
|
|
|
|
|
|
visit current_path
|
|
|
|
|
expect(page).to have_field('texte obligatoire', with: 'a valid user input')
|
|
|
|
|
end
|
2021-07-22 10:31:13 +02:00
|
|
|
|
|
2023-08-31 09:59:18 +02:00
|
|
|
|
scenario 'autosave redirects to sign-in after being disconnected', js: true, retry: 3 do
|
2021-07-22 10:31:13 +02:00
|
|
|
|
log_in(user, simple_procedure)
|
|
|
|
|
fill_individual
|
|
|
|
|
|
|
|
|
|
# When the user is disconnected
|
|
|
|
|
# (either because signing-out in another tab, or because the session cookie expired)
|
|
|
|
|
logout(:user)
|
|
|
|
|
fill_in('texte obligatoire', with: 'a valid user input')
|
|
|
|
|
blur
|
|
|
|
|
|
|
|
|
|
# … they are redirected to the sign-in page.
|
|
|
|
|
expect(page).to have_current_path(new_user_session_path)
|
|
|
|
|
|
|
|
|
|
# After sign-in, they are redirected back to their brouillon
|
|
|
|
|
sign_in_with(user.email, password)
|
|
|
|
|
expect(page).to have_current_path(brouillon_dossier_path(user_dossier))
|
|
|
|
|
|
|
|
|
|
fill_in('texte obligatoire', with: 'a valid user input')
|
2022-10-04 12:27:03 +02:00
|
|
|
|
wait_for_autosave
|
2021-07-22 10:31:13 +02:00
|
|
|
|
end
|
2019-11-19 14:40:28 +01:00
|
|
|
|
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'
|
|
|
|
|
|
2021-05-26 15:16:30 +02:00
|
|
|
|
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 champ_value_for(libelle)
|
2023-03-29 23:31:13 +02:00
|
|
|
|
champ_for(libelle).value
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def champ_for(libelle)
|
2022-11-10 22:21:14 +01:00
|
|
|
|
champs = user_dossier.reload.champs_public
|
2023-03-29 23:31:13 +02:00
|
|
|
|
champs.find { |c| c.libelle == libelle }
|
2018-02-21 18:32:07 +01:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def fill_individual
|
2023-08-21 16:18:31 +02:00
|
|
|
|
find('label', text: 'Monsieur').click
|
2023-09-05 14:42:56 +02:00
|
|
|
|
fill_in('identite_champ_first_name', with: 'prenom')
|
|
|
|
|
fill_in('identite_champ_last_name', with: 'nom')
|
2018-02-21 18:32:07 +01:00
|
|
|
|
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
|
|
|
|
|
end
|