19 declare(strict_types=1);
34 return new class () extends
NullPath {
35 public function steps(): \Generator
45 $basic_clause = $factory->getBasicClause($this->
getNonEmptyPath(), Mode::CONTAINS,
'value');
47 $this->assertFalse($basic_clause->isJoin());
48 $this->assertNull($basic_clause->joinProperties());
49 $this->assertNotNull($basic_clause->basicProperties());
56 $this->expectException(\ilMDRepositoryException::class);
57 $basic_clause = $factory->getBasicClause(
new NullPath(), Mode::CONTAINS,
'value');
63 $basic_clause = $factory->getBasicClause($this->
getNonEmptyPath(), Mode::CONTAINS,
'value');
65 $this->assertFalse($basic_clause->isNegated());
72 $basic_clause = $factory->getBasicClause(
$path, Mode::CONTAINS,
'value');
73 $this->assertSame(
$path, $basic_clause->basicProperties()->path());
79 $basic_clause = $factory->getBasicClause($this->
getNonEmptyPath(), Mode::CONTAINS,
'value');
80 $this->assertSame(Mode::CONTAINS, $basic_clause->basicProperties()->mode());
86 $basic_clause = $factory->getBasicClause(
92 $this->assertTrue($basic_clause->basicProperties()->isModeNegated());
98 $basic_clause = $factory->getBasicClause(
103 $this->assertFalse($basic_clause->basicProperties()->isModeNegated());
109 $basic_clause = $factory->getBasicClause($this->
getNonEmptyPath(), Mode::CONTAINS,
'value');
110 $this->assertSame(
'value', $basic_clause->basicProperties()->value());
123 $clause =
new Clause(
false,
true, $join_props, $basic_props);
125 $negated = $factory->getNegatedClause($clause);
127 $this->assertTrue($negated->isNegated());
128 $this->assertTrue($negated->isJoin());
129 $this->assertSame($basic_props, $negated->basicProperties());
130 $this->assertSame($join_props, $negated->joinProperties());
143 $clause =
new Clause(
true,
true, $join_props, $basic_props);
145 $negated = $factory->getNegatedClause($clause);
147 $this->assertFalse($negated->isNegated());
148 $this->assertTrue($negated->isJoin());
149 $this->assertSame($basic_props, $negated->basicProperties());
150 $this->assertSame($join_props, $negated->joinProperties());
158 $joined_clause = $factory->getJoinedClauses(
Operator::OR, $clause_1, $clause_2);
160 $this->assertTrue($joined_clause->isJoin());
161 $this->assertNull($joined_clause->basicProperties());
162 $this->assertNotNull($joined_clause->joinProperties());
169 $joined_clause = $factory->getJoinedClauses(
Operator::OR, $clause_1);
171 $this->assertSame($clause_1, $joined_clause);
180 $joined_clause = $factory->getJoinedClauses(
Operator::OR, $clause_1, $clause_2);
182 $this->assertFalse($joined_clause->isNegated());
190 $joined_clause = $factory->getJoinedClauses(
Operator::OR, $clause_1, $clause_2);
192 $this->assertSame(
Operator::OR, $joined_clause->joinProperties()->operator());
200 $joined_clause = $factory->getJoinedClauses(
Operator::OR, $clause_1, $clause_2);
202 $sub_clauses = iterator_to_array($joined_clause->joinProperties()->subClauses());
203 $this->assertSame([$clause_1, $clause_2], $sub_clauses);
213 $joined_clause = $factory->getJoinedClauses(
221 $sub_clauses = iterator_to_array($joined_clause->joinProperties()->subClauses());
223 [$clause_1, $clause_2, $clause_3, $clause_4],