49 lines
1.8 KiB
Ruby
49 lines
1.8 KiB
Ruby
require 'rails_helper'
|
||
|
||
describe 'shared/attachment/_show.html.haml', type: :view do
|
||
let(:champ) { create(:champ_piece_justificative) }
|
||
let(:virus_scan_result) { nil }
|
||
|
||
before do
|
||
champ.piece_justificative_file.blob.update(metadata: champ.piece_justificative_file.blob.metadata.merge(virus_scan_result: virus_scan_result))
|
||
end
|
||
|
||
subject { render 'shared/attachment/show', attachment: champ.piece_justificative_file.attachment }
|
||
|
||
context 'when there is no anti-virus scan' do
|
||
let(:virus_scan_result) { nil }
|
||
|
||
it 'allows to download the file' do
|
||
expect(subject).to have_link(champ.piece_justificative_file.filename.to_s)
|
||
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
|
||
let(:virus_scan_result) { ActiveStorage::VirusScanner::PENDING }
|
||
|
||
it 'displays the filename, but doesn’t allow to download the file' do
|
||
expect(subject).to have_text(champ.piece_justificative_file.filename.to_s)
|
||
expect(subject).not_to have_link(champ.piece_justificative_file.filename.to_s)
|
||
expect(subject).to have_text('analyse antivirus en cours')
|
||
end
|
||
end
|
||
|
||
context 'when the file is scanned and safe' do
|
||
let(:virus_scan_result) { ActiveStorage::VirusScanner::SAFE }
|
||
|
||
it 'allows to download the file' do
|
||
expect(subject).to have_link(champ.piece_justificative_file.filename.to_s)
|
||
end
|
||
end
|
||
|
||
context 'when the file is scanned and infected' do
|
||
let(:virus_scan_result) { ActiveStorage::VirusScanner::INFECTED }
|
||
|
||
it 'displays the filename, but doesn’t allow to download the file' do
|
||
expect(subject).to have_text(champ.piece_justificative_file.filename.to_s)
|
||
expect(subject).not_to have_link(champ.piece_justificative_file.filename.to_s)
|
||
expect(subject).to have_text('virus détecté')
|
||
end
|
||
end
|
||
end
|