ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilHtmlPurifierLibWrapperTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
28 {
29  private const TO_PURIFY = [
30  'phpunit1',
31  'phpunit2',
32  'phpunit3',
33  ];
34 
36  {
37  return new class () extends ilHtmlPurifierAbstractLibWrapper {
38  protected function getPurifierConfigInstance(): HTMLPurifier_Config
39  {
40  return HTMLPurifier_Config::createDefault();
41  }
42  };
43  }
44 
46  {
47  $purifier = $this->getPurifier();
48 
49  $this->assertSame('phpunit', $purifier->purify('phpunit'));
50  $this->assertSame(self::TO_PURIFY, $purifier->purifyArray(self::TO_PURIFY));
51  }
52 
56  public static function invalidHtmlDataTypeProvider(): array
57  {
58  return [
59  'integer' => [5],
60  'float' => [0.1],
61  'null' => [null],
62  'array' => [[]],
63  'object' => [new stdClass()],
64  'bool' => [false],
65  'resource' => [fopen('php://memory', 'rb')],
66  ];
67  }
68 
73  {
74  $this->expectException(InvalidArgumentException::class);
75 
76  $purifier = $this->getPurifier();
77  $purifier->purifyArray([$element]);
78  }
79 }
testExceptionIsRaisedIfNonStringElementsArePassedForHtmlBatchProcessing($element)
invalidHtmlDataTypeProvider
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Class ilHtmlPurifierLibWrapperTest.