ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
StakeholderRepositoryTests.php
Go to the documentation of this file.
1 <?php
2 
20 
25 
31 {
32  protected \ILIAS\ResourceStorage\Stakeholder\Repository\StakeholderDBRepository $stakeholder_repository;
33  protected \ILIAS\ResourceStorage\Identification\ResourceIdentification $identification;
34 
35  protected function setUp(): void
36  {
37  parent::setUp();
38  $this->stakeholder_repository = new StakeholderDBRepository($this->db_mock);
39  $this->identification = new ResourceIdentification('test_identification');
40  }
41 
42  public function testIdTooLong(): void
43  {
44  $this->expectException(\InvalidArgumentException::class);
45  $this->expectExceptionMessage('stakeholder ids MUST be shorter or equal to than 64 characters');
46  $stakeholder = $this->getResourceStakeholder(
47  str_repeat('A', 65)
48  );
49  $this->stakeholder_repository->register($this->identification, $stakeholder);
50  }
51 
52  public function testNameTooLong(): void
53  {
54  $this->expectException(\InvalidArgumentException::class);
55  $this->expectExceptionMessage('stakeholder classnames MUST be shorter or equal to than 250 characters');
56  $stakeholder = $this->getResourceStakeholder(
57  str_repeat('A', 64),
58  str_repeat('B', 251)
59  );
60  $this->stakeholder_repository->register($this->identification, $stakeholder);
61  }
62 
63  protected function getResourceStakeholder(
64  ?string $stakeholder_id = null,
65  ?string $stakeholder_classname = null
67  return new class ($stakeholder_id, $stakeholder_classname) implements ResourceStakeholder {
71  protected string $stakeholder_id = 'the_ludicrous_long_identification_string_of_a_resource_stakeholder';
75  protected string $stakeholder_classname = 'This\Is\A\Very\Long\Class\Name\Which\Can\Not\Be\Handled\As\A\Propper\Stakeholder\In\The\ILIAS\Resource\Storage\Service';
76 
77  public function __construct(?string $stakeholder_id = null, ?string $stakeholder_classname = null)
78  {
79  $this->stakeholder_id = $stakeholder_id ?? $this->stakeholder_id;
80  $this->stakeholder_classname = $stakeholder_classname ?? $this->stakeholder_classname;
81  }
82 
83  public function getId(): string
84  {
85  return $this->stakeholder_id;
86  }
87 
88  public function getConsumerNameForPresentation(): string
89  {
90  return 'VeryLong';
91  }
92 
93  public function getFullyQualifiedClassName(): string
94  {
95  return $this->stakeholder_classname;
96  }
97 
98  public function isResourceInUse(ResourceIdentification $identification): bool
99  {
100  return true;
101  }
102 
103  public function resourceHasBeenDeleted(ResourceIdentification $identification): bool
104  {
105  return false;
106  }
107 
108  public function getOwnerOfResource(ResourceIdentification $identification): int
109  {
110  return 0;
111  }
112 
113  public function getOwnerOfNewResources(): int
114  {
115  return 0;
116  }
117  };
118  }
119 }
ILIAS ResourceStorage Stakeholder Repository StakeholderDBRepository $stakeholder_repository
__construct()
Constructor setup ILIAS global object public.
Definition: class.ilias.php:62
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS ResourceStorage Identification ResourceIdentification $identification