5 require_once(
'./libs/composer/vendor/autoload.php');
31 $mock = Mockery::mock(\ilVirusScanner::class);
33 $mock->shouldReceive(
"scanFile")->once()->withArgs(array( $stream->getMetadata(
'uri') ))->andReturn(
"Virus found!!!");
36 $result = $subject->process($stream,
new Metadata(
"MyVirus.exe", $stream->getSize(),
'application/vnd.microsoft.portable-executable'));
38 $this->assertSame(
'Virus detected.',
$result->getMessage());
45 $mock = Mockery::mock(\ilVirusScanner::class);
47 $mock->shouldReceive(
"scanFile")->once()->withArgs(array( $stream->getMetadata(
'uri') ))->andReturn(
"");
50 $result = $subject->process($stream,
new Metadata(
"MyVirus.exe", $stream->getSize(),
'application/vnd.microsoft.portable-executable'));
const REJECTED
Upload got rejected by a processor.
Class VirusScannerPreProcessor.
Class VirusScannerPreProcessorTest.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static ofString($string)
Creates a new stream with an initial value.