2019-05-21 14:21:13 +02:00
|
|
|
|
describe 'shared/attachment/_show.html.haml', type: :view do
|
2019-05-02 11:37:27 +02:00
|
|
|
|
let(:champ) { create(:champ_piece_justificative) }
|
|
|
|
|
let(:virus_scan_result) { nil }
|
2019-02-20 14:08:53 +01:00
|
|
|
|
|
|
|
|
|
before do
|
2022-10-29 16:08:59 +02:00
|
|
|
|
champ.piece_justificative_file[0].blob.update(metadata: champ.piece_justificative_file[0].blob.metadata.merge(virus_scan_result: virus_scan_result))
|
2019-02-20 14:08:53 +01:00
|
|
|
|
end
|
|
|
|
|
|
2022-10-29 16:08:59 +02:00
|
|
|
|
subject { render Attachment::ShowComponent.new(attachment: champ.piece_justificative_file.attachments.first) }
|
2019-02-20 14:08:53 +01:00
|
|
|
|
|
|
|
|
|
context 'when there is no anti-virus scan' do
|
2019-05-02 11:37:27 +02:00
|
|
|
|
let(:virus_scan_result) { nil }
|
2019-02-20 14:08:53 +01:00
|
|
|
|
|
|
|
|
|
it 'allows to download the file' do
|
2022-10-29 16:08:59 +02:00
|
|
|
|
expect(subject).to have_link(champ.piece_justificative_file[0].filename.to_s)
|
2019-02-20 14:08:53 +01:00
|
|
|
|
expect(subject).to have_text('ce fichier n’a pas été analysé par notre antivirus')
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when the anti-virus scan is pending' do
|
2019-05-02 11:37:27 +02:00
|
|
|
|
let(:virus_scan_result) { ActiveStorage::VirusScanner::PENDING }
|
2019-02-20 14:08:53 +01:00
|
|
|
|
|
|
|
|
|
it 'displays the filename, but doesn’t allow to download the file' do
|
2022-10-29 16:08:59 +02:00
|
|
|
|
expect(subject).to have_text(champ.piece_justificative_file[0].filename.to_s)
|
|
|
|
|
expect(subject).not_to have_link(champ.piece_justificative_file[0].filename.to_s)
|
2022-11-09 12:33:20 +01:00
|
|
|
|
expect(subject).to have_text('Analyse antivirus en cours')
|
2019-02-20 14:08:53 +01:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2020-12-10 12:50:40 +01:00
|
|
|
|
context 'when watermark is pending' do
|
|
|
|
|
let(:champ) { create(:champ_titre_identite) }
|
|
|
|
|
|
|
|
|
|
it 'displays the filename, but doesn’t allow to download the file' do
|
2022-10-29 16:08:59 +02:00
|
|
|
|
expect(champ.piece_justificative_file.attachments[0].watermark_pending?).to be_truthy
|
|
|
|
|
expect(subject).to have_text(champ.piece_justificative_file[0].filename.to_s)
|
|
|
|
|
expect(subject).not_to have_link(champ.piece_justificative_file[0].filename.to_s)
|
2022-11-09 12:33:20 +01:00
|
|
|
|
expect(subject).to have_text('Traitement en cours')
|
2020-12-10 12:50:40 +01:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2019-02-20 14:08:53 +01:00
|
|
|
|
context 'when the file is scanned and safe' do
|
2019-05-02 11:37:27 +02:00
|
|
|
|
let(:virus_scan_result) { ActiveStorage::VirusScanner::SAFE }
|
2019-02-20 14:08:53 +01:00
|
|
|
|
|
|
|
|
|
it 'allows to download the file' do
|
2022-10-29 16:08:59 +02:00
|
|
|
|
expect(subject).to have_link(champ.piece_justificative_file[0].filename.to_s)
|
2019-02-20 14:08:53 +01:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when the file is scanned and infected' do
|
2019-05-02 11:37:27 +02:00
|
|
|
|
let(:virus_scan_result) { ActiveStorage::VirusScanner::INFECTED }
|
2019-02-20 14:08:53 +01:00
|
|
|
|
|
|
|
|
|
it 'displays the filename, but doesn’t allow to download the file' do
|
2022-10-29 16:08:59 +02:00
|
|
|
|
expect(subject).to have_text(champ.piece_justificative_file[0].filename.to_s)
|
|
|
|
|
expect(subject).not_to have_link(champ.piece_justificative_file[0].filename.to_s)
|
2022-11-09 12:33:20 +01:00
|
|
|
|
expect(subject).to have_text('Virus détecté')
|
2019-02-20 14:08:53 +01:00
|
|
|
|
end
|
|
|
|
|
end
|
2021-04-06 16:32:45 +02:00
|
|
|
|
|
|
|
|
|
context 'when the file is corrupted' do
|
|
|
|
|
let(:virus_scan_result) { ActiveStorage::VirusScanner::INTEGRITY_ERROR }
|
|
|
|
|
|
|
|
|
|
it 'displays the filename, but doesn’t allow to download the file' do
|
2022-10-29 16:08:59 +02:00
|
|
|
|
expect(subject).to have_text(champ.piece_justificative_file[0].filename.to_s)
|
|
|
|
|
expect(subject).not_to have_link(champ.piece_justificative_file[0].filename.to_s)
|
2021-04-06 16:32:45 +02:00
|
|
|
|
expect(subject).to have_text('corrompu')
|
|
|
|
|
end
|
|
|
|
|
end
|
2019-02-20 14:08:53 +01:00
|
|
|
|
end
|