ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
FileNamePolicyTest.php
Go to the documentation of this file.
1 <?php
2 
20 
24 
30 {
31  protected function getResourceBuilder(string $denied_ending): ResourceBuilder
32  {
33  $policy = $this->getFileNamePolicy($denied_ending);
34  return new ResourceBuilder(
35  $this->storage_handler_factory,
36  $this->repositories,
37  $this->locking,
38  $this->stream_access,
39  $policy
40  );
41  }
42 
43  protected function getFileNamePolicy(string $denied_ending): \ILIAS\ResourceStorage\Policy\FileNamePolicy
44  {
45  return new class ($denied_ending) implements FileNamePolicy {
46  public function __construct(string $denied_ending)
47  {
48  $this->denied_ending = $denied_ending;
49  }
50 
51  public function check(string $extension): bool
52  {
53  if ($this->denied_ending === $extension) {
54  throw new FileNamePolicyException('ERROR');
55  }
56  return true;
57  }
58 
59  public function isValidExtension(string $extension): bool
60  {
61  return $this->denied_ending !== $extension;
62  }
63 
64  public function isBlockedExtension(string $extension): bool
65  {
66  return $this->denied_ending === $extension;
67  }
68 
69  public function prepareFileNameForConsumer(string $filename_with_extension): string
70  {
71  return $filename_with_extension;
72  }
73  };
74  }
75 
76  public function testDeniedFileEnding(): void
77  {
78  $denied_ending = 'xml';
79  $resource_builder = $this->getResourceBuilder($denied_ending);
80 
81  // EXPECTED VALUES
82  $expected_file_name = 'info.' . $denied_ending;
83 
84  // MOCK
85  [$upload_result, $info_resolver, $identification] = $this->mockResourceAndRevision(
86  $expected_file_name,
87  "",
88  0,
89  1,
90  0
91  );
92 
93  // RUN
94  $resource = $resource_builder->new(
96  $info_resolver
97  );
98 
99  $this->expectException(FileNamePolicyException::class);
100  $resource_builder->store($resource);
101  }
102 
103  public function testValidFileEnding(): void
104  {
105  $denied_ending = 'xml';
106  $resource_builder = $this->getResourceBuilder($denied_ending);
107 
108  // EXPECTED VALUES
109  $expected_file_name = 'info.pdf';
110 
111  // MOCK
112  [$upload_result, $info_resolver, $identification] = $this->mockResourceAndRevision(
113  $expected_file_name,
114  "",
115  0,
116  1,
117  0
118  );
119 
120  // RUN
121  $resource = $resource_builder->new(
123  $info_resolver
124  );
125 
126  $resource_builder->store($resource);
127  }
128 }
ILIAS ResourceStorage Resource ResourceBuilder $resource_builder
Class ChatMainBarProvider .
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct()
Constructor setup ILIAS global object public.
Definition: class.ilias.php:62
mockResourceAndRevision(string $expected_file_name, string $expected_mime_type, int $expected_size, int $expected_version_number, int $expected_owner_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...