ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
InfosTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
27 use ILIAS\MetaData\Vocabularies\Standard\NullRepository as NullStandardRepository;
33 
34 class InfosTest extends TestCase
35 {
36  protected function getVocabulary(
37  Type $type,
38  bool $active = true,
39  SlotIdentifier $slot = SlotIdentifier::NULL
41  return new class ($type, $active, $slot) extends NullVocabulary {
42  public function __construct(
43  protected Type $type,
44  protected bool $active,
45  protected SlotIdentifier $slot
46  ) {
47  }
48 
49  public function slot(): SlotIdentifier
50  {
51  return $this->slot;
52  }
53 
54  public function type(): Type
55  {
56  return $this->type;
57  }
58 
59  public function isActive(): bool
60  {
61  return $this->active;
62  }
63  };
64  }
65 
66  protected function getControlledRepo(
67  SlotIdentifier $slot = SlotIdentifier::NULL,
68  int $active_count = 0
69  ): ControlledRepository {
70  return new class ($slot, $active_count) extends NullControlledRepository {
71  public function __construct(
72  protected SlotIdentifier $slot,
73  protected int $active_count
74  ) {
75  }
76 
77  public function countActiveVocabulariesForSlot(SlotIdentifier $slot): int
78  {
79  if ($slot === $this->slot) {
80  return $this->active_count;
81  }
82  return 0;
83  }
84  };
85  }
86 
87  protected function getStandardRepo(
88  SlotIdentifier $slot = SlotIdentifier::NULL,
89  bool $active = false
90  ): StandardRepository {
91  return new class ($slot, $active) extends NullStandardRepository {
92  public function __construct(
93  protected SlotIdentifier $slot,
94  protected bool $active
95  ) {
96  }
97 
98  public function isVocabularyActive(SlotIdentifier $slot): bool
99  {
100  if ($slot === $this->slot) {
101  return $this->active;
102  }
103  return false;
104  }
105  };
106  }
107 
108  public static function activeCountProvider(): array
109  {
110  return [
111  [5, true, true, true],
112  [5, true, false, true],
113  [1, false, true, false],
114  [1, false, false, true],
115  [0, true, true, false],
116  [0, true, false, true],
117  [0, false, false, false]
118  ];
119  }
120 
125  int $active_controlled_vocabs,
126  bool $is_standard_vocab_active,
127  bool $is_vocab_active,
128  bool $are_other_vocabs_active
129  ): void {
130  $infos = new Infos(
131  $this->getControlledRepo(SlotIdentifier::TECHNICAL_FORMAT, $active_controlled_vocabs),
132  $this->getStandardRepo(SlotIdentifier::TECHNICAL_FORMAT, $is_standard_vocab_active)
133  );
134  $vocab = $this->getVocabulary(
135  Type::STANDARD,
136  $is_vocab_active,
137  SlotIdentifier::TECHNICAL_FORMAT
138  );
139 
140  $this->assertSame(
141  $are_other_vocabs_active,
142  $infos->isDeactivatable($vocab)
143  );
144  }
145 
146  public function testIsDeactivatableControlledString(): void
147  {
148  $infos = new Infos($this->getControlledRepo(), $this->getStandardRepo());
149  $vocab = $this->getVocabulary(Type::CONTROLLED_STRING);
150 
151  $this->assertTrue($infos->isDeactivatable($vocab));
152  }
153 
158  int $active_controlled_vocabs,
159  bool $is_standard_vocab_active,
160  bool $is_vocab_active,
161  bool $are_other_vocabs_active
162  ): void {
163  $infos = new Infos(
164  $this->getControlledRepo(SlotIdentifier::TECHNICAL_FORMAT, $active_controlled_vocabs),
165  $this->getStandardRepo(SlotIdentifier::TECHNICAL_FORMAT, $is_standard_vocab_active)
166  );
167  $vocab = $this->getVocabulary(
168  Type::CONTROLLED_VOCAB_VALUE,
169  $is_vocab_active,
170  SlotIdentifier::TECHNICAL_FORMAT
171  );
172 
173  $this->assertSame(
174  $are_other_vocabs_active,
175  $infos->isDeactivatable($vocab)
176  );
177  }
178 
179  public function testIsDeactivatableCopyright(): void
180  {
181  $infos = new Infos($this->getControlledRepo(), $this->getStandardRepo());
183 
184  $this->assertFalse($infos->isDeactivatable($vocab));
185  }
186 
187  public function testCanDisallowCustomInputStandard(): void
188  {
189  $infos = new Infos($this->getControlledRepo(), $this->getStandardRepo());
190  $vocab = $this->getVocabulary(Type::STANDARD);
191 
192  $this->assertFalse($infos->canDisallowCustomInput($vocab));
193  }
194 
196  {
197  $infos = new Infos($this->getControlledRepo(), $this->getStandardRepo());
198  $vocab = $this->getVocabulary(Type::CONTROLLED_STRING);
199 
200  $this->assertTrue($infos->canDisallowCustomInput($vocab));
201  }
202 
204  {
205  $infos = new Infos($this->getControlledRepo(), $this->getStandardRepo());
206  $vocab = $this->getVocabulary(Type::CONTROLLED_VOCAB_VALUE);
207 
208  $this->assertFalse($infos->canDisallowCustomInput($vocab));
209  }
210 
211  public function testCanDisallowCustomInputCopyright(): void
212  {
213  $infos = new Infos($this->getControlledRepo(), $this->getStandardRepo());
215 
216  $this->assertFalse($infos->canDisallowCustomInput($vocab));
217  }
218 
219  public function testIsCustomInputApplicableStandard(): void
220  {
221  $infos = new Infos($this->getControlledRepo(), $this->getStandardRepo());
222  $vocab = $this->getVocabulary(Type::STANDARD);
223 
224  $this->assertFalse($infos->isCustomInputApplicable($vocab));
225  }
226 
228  {
229  $infos = new Infos($this->getControlledRepo(), $this->getStandardRepo());
230  $vocab = $this->getVocabulary(Type::CONTROLLED_STRING);
231 
232  $this->assertTrue($infos->isCustomInputApplicable($vocab));
233  }
234 
236  {
237  $infos = new Infos($this->getControlledRepo(), $this->getStandardRepo());
238  $vocab = $this->getVocabulary(Type::CONTROLLED_VOCAB_VALUE);
239 
240  $this->assertFalse($infos->isCustomInputApplicable($vocab));
241  }
242 
243  public function testIsCustomInputApplicableCopyright(): void
244  {
245  $infos = new Infos($this->getControlledRepo(), $this->getStandardRepo());
247 
248  $this->assertTrue($infos->isCustomInputApplicable($vocab));
249  }
250 
251  public function testCanBeDeletedStandard(): void
252  {
253  $infos = new Infos($this->getControlledRepo(), $this->getStandardRepo());
254  $vocab = $this->getVocabulary(Type::STANDARD);
255 
256  $this->assertFalse($infos->canBeDeleted($vocab));
257  }
258 
259  public function testCanBeDeletedControlledString(): void
260  {
261  $infos = new Infos($this->getControlledRepo(), $this->getStandardRepo());
262  $vocab = $this->getVocabulary(Type::CONTROLLED_STRING);
263 
264  $this->assertTrue($infos->canBeDeleted($vocab));
265  }
266 
271  int $active_controlled_vocabs,
272  bool $is_standard_vocab_active,
273  bool $is_vocab_active,
274  bool $are_other_vocabs_active
275  ): void {
276  $infos = new Infos(
277  $this->getControlledRepo(SlotIdentifier::TECHNICAL_FORMAT, $active_controlled_vocabs),
278  $this->getStandardRepo(SlotIdentifier::TECHNICAL_FORMAT, $is_standard_vocab_active)
279  );
280  $vocab = $this->getVocabulary(
281  Type::CONTROLLED_VOCAB_VALUE,
282  $is_vocab_active,
283  SlotIdentifier::TECHNICAL_FORMAT
284  );
285 
286  $this->assertSame(
287  $are_other_vocabs_active,
288  $infos->canBeDeleted($vocab)
289  );
290  }
291 
292  public function testCanBeDeletedCopyright(): void
293  {
294  $infos = new Infos($this->getControlledRepo(), $this->getStandardRepo());
296 
297  $this->assertFalse($infos->canBeDeleted($vocab));
298  }
299 }
getStandardRepo(SlotIdentifier $slot=SlotIdentifier::NULL, bool $active=false)
Definition: InfosTest.php:87
testIsDeactivatableControlledVocabValue(int $active_controlled_vocabs, bool $is_standard_vocab_active, bool $is_vocab_active, bool $are_other_vocabs_active)
activeCountProvider
Definition: InfosTest.php:157
getControlledRepo(SlotIdentifier $slot=SlotIdentifier::NULL, int $active_count=0)
Definition: InfosTest.php:66
__construct()
Constructor setup ILIAS global object public.
Definition: class.ilias.php:76
$vocab
testCanBeDeletedControlledVocabValue(int $active_controlled_vocabs, bool $is_standard_vocab_active, bool $is_vocab_active, bool $are_other_vocabs_active)
activeCountProvider
Definition: InfosTest.php:270
getVocabulary(Type $type, bool $active=true, SlotIdentifier $slot=SlotIdentifier::NULL)
Definition: InfosTest.php:36
testIsDeactivatableStandard(int $active_controlled_vocabs, bool $is_standard_vocab_active, bool $is_vocab_active, bool $are_other_vocabs_active)
activeCountProvider
Definition: InfosTest.php:124