If ClamavService fails then raise an error

This commit is contained in:
Mathieu Magnin 2019-02-05 14:23:43 +01:00
parent 2a5250b62c
commit f6714cd9a3
2 changed files with 25 additions and 9 deletions

View file

@ -4,17 +4,27 @@ describe ClamavService do
describe '.safe_file?' do
let(:path_file) { '/tmp/plop.txt' }
subject { ClamavService.safe_file? path_file }
subject { ClamavService.safe_file?(path_file) }
before do
client = instance_double("ClamAV::Client", :execute => [ClamAV::SuccessResponse])
client = double("ClamAV::Client", execute: [response])
allow(ClamAV::Client).to receive(:new).and_return(client)
allow(FileUtils).to receive(:chmod).with(0666, path_file).and_return(true)
end
it 'change permission of file path' do
allow(FileUtils).to receive(:chmod).with(0666, path_file).and_return(true)
context 'When response type is ClamAV::SuccessResponse' do
let(:response) { ClamAV::SuccessResponse.new("OK") }
it { expect(subject).to eq(true) }
end
subject
context 'When response type is ClamAV::VirusResponse' do
let(:response) { ClamAV::VirusResponse.new("KO", "VirusN4ame") }
it { expect(subject).to eq(false) }
end
context 'When response type is ClamAV::ErrorResponse' do
let(:response) { ClamAV::ErrorResponse.new("File not found") }
it { expect { subject }.to raise_error("ClamAV ErrorResponse : File not found") }
end
end
end