ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
VirusScannerPreProcessorTestTBD.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\VirusScanner\tests;
22 
28 use Mockery;
29 
36 class VirusScannerPreProcessorTest extends TestCase
37 {
39 
40  public function testVirusDetected(): void
41  {
42  $stream = Streams::ofString('Awesome stuff');
43  $mock = $this->getMockBuilder(\ilVirusScanner::class)
44  ->disableOriginalConstructor()
45  ->getMock();
46  $mock->expects($this->once())->method('scanFile')->with($stream->getMetadata('uri'))->willReturn(
47  'Virus found!!!'
48  );
49 
50  $subject = new ilVirusScannerPreProcessor($mock);
51  $result = $subject->process(
52  $stream,
53  new Metadata('MyVirus.exe', $stream->getSize(), 'application/vnd.microsoft.portable-executable')
54  );
55  $this->assertSame(ProcessingStatus::DENIED, $result->getCode());
56  $this->assertSame('Virus detected.', $result->getMessage());
57  }
58 
59  public function testNoVirusDetected(): void
60  {
61  $stream = Streams::ofString('Awesome stuff');
62 
63  $mock = $this->getMockBuilder(\ilVirusScanner::class)
64  ->disableOriginalConstructor()
65  ->getMock();
66  $mock->expects($this->once())->method('scanFile')->with($stream->getMetadata('uri'))->willReturn('');
67 
68  $subject = new ilVirusScannerPreProcessor($mock);
69  $result = $subject->process(
70  $stream,
71  new Metadata('MyVirus.exe', $stream->getSize(), 'application/vnd.microsoft.portable-executable')
72  );
73  $this->assertSame(ProcessingStatus::OK, $result->getCode());
74  }
75 }