ILIAS  trunk Revision v11.0_alpha-1713-gd8962da2f67
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
CopyrightTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
37 
38 class CopyrightTest extends TestCase
39 {
40  protected function getLegacyComponent(): MockObject|Content
41  {
42  return $this->getMockBuilder(ILegacy::class)
43  ->disableOriginalConstructor()
44  ->addMethods(['exposeData'])
45  ->getMock();
46  }
47 
48  protected function getRenderer(): RendererInterface
49  {
50  $legacy_component = $this->getLegacyComponent();
51  return new class ($legacy_component, $this->any()) extends NullRenderer {
52  public function __construct(
53  protected MockObject|Content $legacy,
54  protected AnyInvokedCount $any
55  ) {
56  }
57 
58  public function toUIComponents(CopyrightDataInterface $copyright): array
59  {
60  $legacy_clone = clone $this->legacy;
61  $legacy_clone->expects($this->any)
62  ->method('exposeData')
63  ->willReturn($copyright->exposed_data);
64  return [$legacy_clone];
65  }
66 
67  public function toString(CopyrightDataInterface $copyright): string
68  {
69  return $copyright->exposed_data;
70  }
71  };
72  }
73 
75  {
76  return new class () extends NullHandler {
77  public function buildIdentifierFromEntryID(int $entry_id): string
78  {
79  return 'identifier_' . $entry_id;
80  }
81  };
82  }
83 
84  protected function getEntry(
85  bool $is_default,
86  bool $is_outdated,
87  int $id,
88  string $title,
89  string $description,
90  string $cp_data
91  ): EntryInterface {
92  return new class ($is_default, $is_outdated, $id, $title, $description, $cp_data) extends NullEntry {
93  public function __construct(
94  protected bool $is_default,
95  protected bool $is_outdated,
96  protected int $id,
97  protected string $title,
98  protected string $description,
99  protected string $cp_data
100  ) {
101  }
102 
103  public function id(): int
104  {
105  return $this->id;
106  }
107 
108  public function title(): string
109  {
110  return $this->title;
111  }
112 
113  public function description(): string
114  {
115  return $this->description;
116  }
117 
118  public function isDefault(): bool
119  {
120  return $this->is_default;
121  }
122 
123  public function isOutdated(): bool
124  {
125  return $this->is_outdated;
126  }
127 
128  public function copyrightData(): CopyrightDataInterface
129  {
130  return new class ($this->cp_data) extends NullCopyrightData {
131  public function __construct(public string $exposed_data)
132  {
133  }
134  };
135  }
136  };
137  }
138 
139  public function testIsDefaultTrue(): void
140  {
141  $copyright = new Copyright(
142  $this->getRenderer(),
143  $this->getIdentifierHandler(),
144  $this->getEntry(
145  true,
146  false,
147  35,
148  'cp title',
149  'cp description',
150  'data of copyright'
151  )
152  );
153 
154  $this->assertTrue($copyright->isDefault());
155  }
156 
157  public function testIsDefaultFalse(): void
158  {
159  $copyright = new Copyright(
160  $this->getRenderer(),
161  $this->getIdentifierHandler(),
162  $this->getEntry(
163  false,
164  false,
165  35,
166  'cp title',
167  'cp description',
168  'data of copyright'
169  )
170  );
171 
172  $this->assertFalse($copyright->isDefault());
173  }
174 
175  public function testIsOutdatedTrue(): void
176  {
177  $copyright = new Copyright(
178  $this->getRenderer(),
179  $this->getIdentifierHandler(),
180  $this->getEntry(
181  false,
182  true,
183  35,
184  'cp title',
185  'cp description',
186  'data of copyright'
187  )
188  );
189 
190  $this->assertTrue($copyright->isOutdated());
191  }
192 
193  public function testIsOutdatedFalse(): void
194  {
195  $copyright = new Copyright(
196  $this->getRenderer(),
197  $this->getIdentifierHandler(),
198  $this->getEntry(
199  false,
200  false,
201  35,
202  'cp title',
203  'cp description',
204  'data of copyright'
205  )
206  );
207 
208  $this->assertFalse($copyright->isOutdated());
209  }
210 
211  public function testIdentifier(): void
212  {
213  $copyright = new Copyright(
214  $this->getRenderer(),
215  $this->getIdentifierHandler(),
216  $this->getEntry(
217  false,
218  false,
219  35,
220  'cp title',
221  'cp description',
222  'data of copyright'
223  )
224  );
225 
226  $this->assertSame('identifier_35', $copyright->identifier());
227  }
228 
229  public function testTitle(): void
230  {
231  $copyright = new Copyright(
232  $this->getRenderer(),
233  $this->getIdentifierHandler(),
234  $this->getEntry(
235  false,
236  false,
237  35,
238  'cp title',
239  'cp description',
240  'data of copyright'
241  )
242  );
243 
244  $this->assertSame('cp title', $copyright->title());
245  }
246 
247  public function testDescription(): void
248  {
249  $copyright = new Copyright(
250  $this->getRenderer(),
251  $this->getIdentifierHandler(),
252  $this->getEntry(
253  false,
254  false,
255  35,
256  'cp title',
257  'cp description',
258  'data of copyright'
259  )
260  );
261 
262  $this->assertSame('cp description', $copyright->description());
263  }
264 
265  public function testPresentAsUIComponents(): void
266  {
267  $copyright = new Copyright(
268  $this->getRenderer(),
269  $this->getIdentifierHandler(),
270  $this->getEntry(
271  false,
272  false,
273  35,
274  'cp title',
275  'cp description',
276  'data of copyright'
277  )
278  );
279 
280  $components = $copyright->presentAsUIComponents();
281 
282  $this->assertCount(1, $components);
284  $this->assertSame('data of copyright', $components[0]->exposeData());
285  }
286 
287  public function testPresentAsString(): void
288  {
289  $copyright = new Copyright(
290  $this->getRenderer(),
291  $this->getIdentifierHandler(),
292  $this->getEntry(
293  false,
294  false,
295  35,
296  'cp title',
297  'cp description',
298  'data of copyright'
299  )
300  );
301 
302  $this->assertSame('data of copyright', $copyright->presentAsString());
303  }
304 }
__construct(SettingsInterface $settings, PathFactory $path_factory, CopyrightRepository $copyright_repo, IdentifierHandler $identifier_handler, RendererInterface $renderer, SearchClauseFactory $search_clause_factory)
$components
getEntry(bool $is_default, bool $is_outdated, int $id, string $title, string $description, string $cp_data)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23