ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
DirectoryNestingTest.php
Go to the documentation of this file.
1 <?php
2 
20 
22 
23 require_once(__DIR__ . "/../AbstractTestBase.php");
24 
30 
36 {
40  private const NESTING_256 = 256; // 16^2
44  private const NESTING_4096 = 4096; // 16^3
48  private const NESTING_65536 = 65536; // 16^4
52  private const NESTING_4294967296 = 4_294_967_296; // 16^8
56  private const NESTING_281474976710656 = 281_474_976_710_656; // 16^12
60  private const MAX_NESTING = self::NESTING_65536;
64  private const MIN_NESTING = self::NESTING_256;
68  private const COMBINATIONS = 16; // 0-9a-f
72  protected MockObject $file_system_mock;
73 
74  #[\Override]
75  protected function setUp(): void
76  {
77  parent::setUp();
78  $this->file_system_mock = $this->createMock(Filesystem::class);
79  }
80 
81  private function withImplementation(StorageHandler $h, int $min, int $max): void
82  {
84 
85  for ($x = 0; $x < 100; $x++) {
87  $path = $h->getContainerPathWithoutBase($random_id);
88  $path_elements = explode("/", $h->getContainerPathWithoutBase($random_id));
89  $first_element = end($path_elements);
90  $last_path_element = end($path_elements);
91  foreach ($path_elements as $path_element) {
92  $characters = strlen($path_element);
93  $possible_combinations = self::COMBINATIONS ** $characters;
94  if ($path_element !== $last_path_element) {
95  $this->assertLessThanOrEqual($max, $possible_combinations);
96  $this->assertGreaterThan($min, $possible_combinations);
97  }
98  }
99  }
100  }
101 
102  public function testMaxNestingV1(): void
103  {
104  $storage_handler = new FileSystemStorageHandler($this->file_system_mock, 2);
105  $this->withImplementation($storage_handler, self::NESTING_256, self::NESTING_281474976710656);
106  }
107 
108  public function testMaxNestingV2(): void
109  {
110  $storage_handler = new MaxNestingFileSystemStorageHandler($this->file_system_mock, 2);
111  $this->withImplementation($storage_handler, self::NESTING_4096 - 1, self::NESTING_4096);
112  }
113 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getContainerPathWithoutBase(ResourceIdentification $identification)
This is only the path of a ResourceIdentification inside the StorageLocation base path...
$path
Definition: ltiservices.php:29
withImplementation(StorageHandler $h, int $min, int $max)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...