20 $ff = $this->createMock(FieldFactory::class);
21 $refinery =
new Refinery($this->createMock(DataFactory::class), $this->createMock(\ilLanguage::class));
23 $c1 = $this->newAgent();
24 $c2 = $this->newAgent();
25 $c3 = $this->newAgent();
26 $c4 = $this->newAgent();
28 $c1->method(
"hasConfig")->willReturn(
true);
29 $c2->method(
"hasConfig")->willReturn(
true);
30 $c3->method(
"hasConfig")->willReturn(
false);
31 $c4->method(
"hasConfig")->willReturn(
false);
39 $this->assertTrue($col1->hasConfig());
40 $this->assertTrue($col2->hasConfig());
41 $this->assertTrue($col3->hasConfig());
42 $this->assertFalse($col4->hasConfig());
43 $this->assertFalse($col5->hasConfig());
48 $ff = $this->createMock(FieldFactory::class);
49 $refinery =
new Refinery($this->createMock(DataFactory::class), $this->createMock(\ilLanguage::class));
51 $c1 = $this->newAgent();
52 $c2 = $this->newAgent();
53 $c3 = $this->newAgent();
55 $inp1 = $this->newInput();
56 $inp3 = $this->newInput();
57 $group = $this->newInput();
59 foreach ([$c1,$c3] as
$c) {
61 ->expects($this->once())
66 ->expects($this->once())
70 ->expects($this->once())
71 ->method(
"getConfigInput")
74 ->expects($this->never())
75 ->method(
"getConfigInput");
77 ->expects($this->once())
78 ->method(
"getConfigInput")
84 ->expects($this->once())
86 ->with([
"c1" => $inp1,
"c3" => $inp3])
90 ->expects($this->once())
91 ->method(
"withAdditionalTransformation")
93 $conf1 = $this->newConfig();
94 $conf3 = $this->newConfig();
96 $this->assertInstanceOf(Setup\ConfigCollection::class,
$res);
97 $this->assertEquals([
"c1",
"c3"],
$res->getKeys());
98 $this->assertEquals($conf1,
$res->getConfig(
"c1"));
99 $this->assertEquals($conf3,
$res->getConfig(
"c3"));
102 ->willReturn($group);
104 $res = $col->getConfigInput();
106 $this->assertEquals($group,
$res);
111 $ff = $this->createMock(FieldFactory::class);
112 $refinery =
new Refinery($this->createMock(DataFactory::class), $this->createMock(\ilLanguage::class));
114 $c1 = $this->newAgent();
115 $c2 = $this->newAgent();
116 $c3 = $this->newAgent();
118 $inp = $this->newInput();
120 $conf1 = $this->newConfig();
121 $conf3 = $this->newConfig();
123 foreach ([$c1,$c3] as
$c) {
125 ->method(
"hasConfig")
129 ->method(
"hasConfig")
132 ->expects($this->once())
133 ->method(
"getConfigInput")
137 ->expects($this->never())
138 ->method(
"getConfigInput");
140 ->expects($this->once())
141 ->method(
"getConfigInput")
152 ->method(
"withAdditionalTransformation")
157 $col->getConfigInput($conf);
162 $ff = $this->createMock(FieldFactory::class);
163 $refinery =
new Refinery($this->createMock(DataFactory::class), $this->createMock(\ilLanguage::class));
165 $c1 = $this->newAgent();
166 $c2 = $this->newAgent();
167 $c3 = $this->newAgent();
169 $conf1 = $this->newConfig();
170 $conf3 = $this->newConfig();
172 foreach ([$c1,$c3] as
$c) {
174 ->method(
"hasConfig")
178 ->method(
"hasConfig")
181 $arr = [
"c1" => [
"c1_data"],
"c3" => [
"c3_data"]];
184 ->expects($this->once())
185 ->method(
"getArrayToConfigTransformation")
187 ->willReturn($refinery->custom()->transformation(
function ($v) use ($conf1) {
188 $this->assertEquals($v, [
"c1_data"]);
192 ->expects($this->never())
193 ->method(
"getArrayToConfigTransformation");
195 ->expects($this->once())
196 ->method(
"getArrayToConfigTransformation")
198 ->willReturn($refinery->custom()->transformation(
function ($v) use ($conf3) {
199 $this->assertEquals($v, [
"c3_data"]);
204 $trafo = $col->getArrayToConfigTransformation();
205 $conf = $trafo($arr);
207 $this->assertInstanceOf(Setup\ConfigCollection::class, $conf);
208 $this->assertEquals([
"c1",
"c3"], $conf->getKeys());
209 $this->assertEquals($conf1, $conf->getConfig(
"c1"));
210 $this->assertEquals($conf3, $conf->getConfig(
"c3"));
215 $ff = $this->createMock(FieldFactory::class);
216 $refinery =
new Refinery($this->createMock(DataFactory::class), $this->createMock(\ilLanguage::class));
218 $c1 = $this->newAgent();
219 $c2 = $this->newAgent();
220 $c3 = $this->newAgent();
222 $conf1 = $this->newConfig();
223 $conf3 = $this->newConfig();
225 foreach ([$c1,$c3] as
$c) {
227 ->method(
"hasConfig")
231 ->method(
"hasConfig")
234 $arr = [
"c1" => [
"c1_data"]];
237 ->expects($this->once())
238 ->method(
"getArrayToConfigTransformation")
240 ->willReturn($refinery->custom()->transformation(
function ($v) use ($conf1) {
241 $this->assertEquals($v, [
"c1_data"]);
245 ->expects($this->never())
246 ->method(
"getArrayToConfigTransformation");
248 ->expects($this->once())
249 ->method(
"getArrayToConfigTransformation")
251 ->willReturn($refinery->custom()->transformation(
function ($v) use ($conf3) {
252 $this->assertEquals($v, null);
257 $trafo = $col->getArrayToConfigTransformation();
258 $conf = $trafo($arr);
260 $this->assertInstanceOf(Setup\ConfigCollection::class, $conf);
261 $this->assertEquals([
"c1",
"c3"], $conf->getKeys());
262 $this->assertEquals($conf1, $conf->getConfig(
"c1"));
263 $this->assertEquals($conf3, $conf->getConfig(
"c3"));
269 $ff = $this->createMock(FieldFactory::class);
270 $refinery =
new Refinery($this->createMock(DataFactory::class), $this->createMock(\ilLanguage::class));
272 $c1 = $this->newAgent();
273 $c2 = $this->newAgent();
275 $g1 = $this->newObjective();
276 $g2 = $this->newObjective();
278 $conf1 = $this->newConfig();
281 ->expects($this->once())
282 ->method(
"hasConfig")
285 ->expects($this->once())
286 ->method(
"hasConfig")
290 ->expects($this->once())
291 ->method(
"getInstallObjective")
295 ->expects($this->once())
296 ->method(
"getInstallObjective")
303 $g = $col->getInstallObjective($conf);
305 $this->assertInstanceOf(Setup\ObjectiveCollection::class, $g);
306 $this->assertEquals([$g1, $g2], $g->getObjectives());
311 $ff = $this->createMock(FieldFactory::class);
312 $refinery =
new Refinery($this->createMock(DataFactory::class), $this->createMock(\ilLanguage::class));
314 $c1 = $this->newAgent();
315 $c2 = $this->newAgent();
317 $g1 = $this->newObjective();
318 $g2 = $this->newObjective();
320 $conf1 = $this->newConfig();
323 ->expects($this->once())
324 ->method(
"hasConfig")
327 ->expects($this->once())
328 ->method(
"hasConfig")
332 ->expects($this->once())
333 ->method(
"getUpdateObjective")
337 ->expects($this->once())
338 ->method(
"getUpdateObjective")
345 $g = $col->getUpdateObjective($conf);
347 $this->assertInstanceOf(Setup\ObjectiveCollection::class, $g);
348 $this->assertEquals([$g1, $g2], $g->getObjectives());
testGetInstallObjective()
testGetConfigInputUsesSuppliedConfig()
An agent that is just a collection of some other agents.
testArrayToConfigTransformationAllowsUnsetFields()
testGetArrayToConfigTransformation()
foreach($_POST as $key=> $value) $res
A collection of some configurations.