28 require_once(
'./vendor/composer/vendor/autoload.php');
40 #[BackupGlobals(false)] 41 #[BackupStaticProperties(false)] 42 #[PreserveGlobalState(false)] 43 #[RunTestsInSeparateProcesses] 50 $fileHeaderBlacklist = hex2bin(
'FFD8FF');
51 $fileHeaderStart = hex2bin(
'FFD8FB');
52 $trailer = hex2bin(
'FFD9');
57 $result = $subject->process($stream,
new Metadata(
'hello.jpg', $stream->getSize(),
'image/jpg'));
60 $this->assertSame(
'File header does not match blacklist.', $result->getMessage());
67 $fileHeaderStart = hex2bin(
'FFD8FF');
68 $trailer = hex2bin(
'FFD9');
73 $result = $subject->process($stream,
new Metadata(
'hello.jpg', $stream->getSize(),
'image/jpg'));
76 $this->assertSame(
'File header matches blacklist.', $result->getMessage());
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static ofString(string $string)
Creates a new stream with an initial value.