33 protected \ILIAS\ResourceStorage\Identification\ResourceIdentification
$identification;
35 protected function setUp(): void
44 $this->expectException(\InvalidArgumentException::class);
45 $this->expectExceptionMessage(
'stakeholder ids MUST be shorter or equal to than 64 characters');
46 $stakeholder = $this->getResourceStakeholder(
49 $this->stakeholder_repository->register($this->identification, $stakeholder);
54 $this->expectException(\InvalidArgumentException::class);
55 $this->expectExceptionMessage(
'stakeholder classnames MUST be shorter or equal to than 250 characters');
56 $stakeholder = $this->getResourceStakeholder(
60 $this->stakeholder_repository->register($this->identification, $stakeholder);
63 protected function getResourceStakeholder(
64 ?
string $stakeholder_id = null,
65 ?
string $stakeholder_classname = null
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';
77 public function __construct(?
string $stakeholder_id = null, ?
string $stakeholder_classname = null)
79 $this->stakeholder_id = $stakeholder_id ?? $this->stakeholder_id;
80 $this->stakeholder_classname = $stakeholder_classname ?? $this->stakeholder_classname;
83 public function getId():
string 85 return $this->stakeholder_id;
88 public function getConsumerNameForPresentation():
string 93 public function getFullyQualifiedClassName():
string 95 return $this->stakeholder_classname;
113 public function getOwnerOfNewResources():
int
ILIAS ResourceStorage Stakeholder Repository StakeholderDBRepository $stakeholder_repository
Interface StakeholderDBRepository.
Class ResourceBuilderTest.
Class StakeholderRepositoryTests.
__construct()
Constructor setup ILIAS global object public.
Class ResourceIdentification.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS ResourceStorage Identification ResourceIdentification $identification
Interface ResourceStakeholder.