19 declare(strict_types=1);
25 protected function setUp(): void
29 $lng = $this->getMockBuilder(ilLanguage::class)->disableOriginalConstructor()->getMock();
30 $lng->method(
'txt')->willReturnCallback(
static fn(
string $keyword):
string => $keyword);
38 $this->assertInstanceOf(
39 ilBuddySystemUnlinkedRelationState::class,
40 $this->stateFactory->getInitialState()
46 $validStates = $this->stateFactory->getValidStates();
47 $this->assertThat(count($validStates), $this->greaterThan(0));
49 foreach ($this->stateFactory->getValidStates() as $state) {
50 $tableFilterStateMapper = $this->stateFactory->getTableFilterStateMapper($state);
52 $otions = $tableFilterStateMapper->optionsForState();
53 $this->assertThat(count($otions), $this->greaterThan(0));
55 array_walk($otions,
function (
string $value,
string $key):
void {
56 $this->assertNotEmpty($value,
'Option value for table filter must not be empty');
57 $this->assertNotEmpty($key,
'Option key for table filter must not be empty');
64 $validStates = $this->stateFactory->getValidStates();
65 $this->assertThat(count($validStates), $this->greaterThan(0));
67 foreach ($this->stateFactory->getValidStates() as $state) {
68 $tableFilterStateMapper = $this->stateFactory->getTableFilterStateMapper($state);
70 $otions = $tableFilterStateMapper->optionsForState();
71 $this->assertThat(count($otions), $this->greaterThan(0));
73 array_walk($otions,
function (
string $value,
string $key) use ($tableFilterStateMapper, $state):
void {
75 if ($key === $state::class .
'_a') {
76 $relation = $this->getMockBuilder(ilBuddySystemRelation::class)->disableOriginalConstructor()->getMock();
77 $relation->method(
'isOwnedByActor')->willReturn(
false);
79 $this->assertFalse($tableFilterStateMapper->filterMatchesRelation($key,
$relation));
81 $relation = $this->getMockBuilder(ilBuddySystemRelation::class)->disableOriginalConstructor()->getMock();
82 $relation->method(
'isOwnedByActor')->willReturn(
true);
83 $this->assertTrue($tableFilterStateMapper->filterMatchesRelation($key, $relation));
84 } elseif ($key === $state::class .
'_p') {
85 $relation = $this->getMockBuilder(ilBuddySystemRelation::class)->disableOriginalConstructor()->getMock();
86 $relation->method(
'isOwnedByActor')->willReturn(
true);
88 $this->assertFalse($tableFilterStateMapper->filterMatchesRelation($key,
$relation));
90 $relation = $this->getMockBuilder(ilBuddySystemRelation::class)->disableOriginalConstructor()->getMock();
91 $relation->method(
'isOwnedByActor')->willReturn(
false);
94 $relation = $this->getMockBuilder(ilBuddySystemRelation::class)->disableOriginalConstructor()->getMock();
95 $this->assertTrue($tableFilterStateMapper->filterMatchesRelation($key,
$relation));
static getInstance(?ilLanguage $lng=null)
Class ilBuddySystemRelationStateFactory.
testInitialStateEqualsUnlinkedRelation()
Class ilBuddySystemRequestedRelationState.
testStatesCanBeReceivedAsOptionMap()
testRelationsCanBeFilteredByState()
ilBuddySystemRelationStateFactory $stateFactory