ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
BlacklistFileHeaderPreProcessorTest.php
Go to the documentation of this file.
1 <?php
2 
20 
27 
28 require_once('./vendor/composer/vendor/autoload.php');
29 
34 
40 #[BackupGlobals(false)]
41 #[BackupStaticProperties(false)]
42 #[PreserveGlobalState(false)]
43 #[RunTestsInSeparateProcesses]
45 {
46  #[Test]
47 
48  public function testProcessWhichShouldSucceed(): void
49  {
50  $fileHeaderBlacklist = hex2bin('FFD8FF'); //jpg header start
51  $fileHeaderStart = hex2bin('FFD8FB'); //jpg header start
52  $trailer = hex2bin('FFD9'); //jpg trailer
53  $subject = new BlacklistFileHeaderPreProcessor($fileHeaderBlacklist);
54  $stream = Streams::ofString("$fileHeaderStart bla bla bla $trailer");
55  $stream->rewind();
56 
57  $result = $subject->process($stream, new Metadata('hello.jpg', $stream->getSize(), 'image/jpg'));
58 
59  $this->assertSame(ProcessingStatus::OK, $result->getCode());
60  $this->assertSame('File header does not match blacklist.', $result->getMessage());
61  }
62 
63  #[Test]
64 
66  {
67  $fileHeaderStart = hex2bin('FFD8FF'); //jpg header start
68  $trailer = hex2bin('FFD9'); //jpg trailer
69  $subject = new BlacklistFileHeaderPreProcessor($fileHeaderStart);
70  $stream = Streams::ofString("$fileHeaderStart bla bla bla $trailer");
71  $stream->rewind();
72 
73  $result = $subject->process($stream, new Metadata('hello.jpg', $stream->getSize(), 'image/jpg'));
74 
75  $this->assertSame(ProcessingStatus::REJECTED, $result->getCode());
76  $this->assertSame('File header matches blacklist.', $result->getMessage());
77  }
78 }
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.
Definition: Streams.php:41