ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ViewControlContainerTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 require_once './vendor/composer/vendor/autoload.php';
22 require_once './components/ILIAS/UI/tests/Base.php';
23 
29 use ILIAS\Data;
34 
36 {
37  protected function buildDataFactory(): Data\Factory
38  {
39  return new Data\Factory();
40  }
41  protected function buildRefinery(): Refinery
42  {
43  return new Refinery(
44  $this->buildDataFactory(),
45  $this->createMock(ILIAS\Language\Language::class)
46  );
47  }
48  protected function buildContainerFactory(): VC\Factory
49  {
50  return new VC\Factory(
51  new I\SignalGenerator(),
52  $this->buildVCFactory(),
53  );
54  }
55  protected function buildFieldFactory(): FieldFactory
56  {
57  return new FieldFactory(
58  $this->createMock(UploadLimitResolver::class),
59  new I\SignalGenerator(),
60  $this->buildDataFactory(),
61  $this->buildRefinery(),
62  $this->getLanguage()
63  );
64  }
65 
66  protected function buildVCFactory(): Control\Factory
67  {
68  return new Control\Factory(
69  $this->buildFieldFactory(),
70  $this->buildDataFactory(),
71  $this->buildRefinery(),
72  new I\SignalGenerator(),
73  $this->getLanguage(),
74  );
75  }
76 
77  public function testViewControlContainerConstruct(): void
78  {
79  $vc = $this->buildContainerFactory()->standard([]);
80  $this->assertInstanceOf(VC\ViewControl::class, $vc);
81  $this->assertInstanceOf(I\Signal::class, $vc->getSubmissionSignal());
82  }
83 
84  public function testViewControlContainerWithControls(): void
85  {
86  $c_factory = $this->buildVCFactory();
87  $controls = [
88  $c_factory->fieldSelection([]),
89  $c_factory->sortation([]),
90  $c_factory->pagination()
91  ];
92 
93  $name_source = new FormInputNameSource();
94  $vc = $this->buildContainerFactory()->standard($controls);
95  $this->assertSameSize($controls, $vc->getInputs());
96 
97  $named = array_map(
98  fn($input) => $input->withNameFrom($name_source, 'view_control'),
99  $vc->getInputs()
100  );
101 
102  $this->assertEquals($named, $vc->getInputs());
103  }
104 
105  public function testViewControlContainerWithRequest(): void
106  {
107  $request = $this->createMock(ServerRequestInterface::class);
108  $request
109  ->expects($this->once())
110  ->method("getQueryParams")
111  ->willReturn([
112  'view_control/input_0' => ['a1', 'a3'],
113  'view_control/input_1/input_2' => 'a2',
114  'view_control/input_1/input_3' => 'DESC'
115  ]);
116 
117  $c_factory = $this->buildVCFactory();
118  $controls = [
119  $c_factory->fieldSelection(['a1' => 'A','a2' => 'B','a3' => 'C']),
120  $c_factory->sortation([
121  '2up' => new Data\Order('a2', 'ASC'),
122  '2down' => new Data\Order('a2', 'DESC')
123  ]),
124  ];
125 
126  $vc = $this->buildContainerFactory()->standard($controls);
127  $vc2 = $vc->withRequest($request);
128  $this->assertNotSame($vc2, $vc);
129 
130  $data = $vc2->getData();
131  $this->assertSameSize($controls, $data);
132 
133  $expected = [
134  ['a1','a3'],
135  $this->buildDataFactory()->order('a2', 'DESC')
136  ];
137  $this->assertEquals($expected, array_values($data));
138  }
139 
141  {
142  $this->expectException(\LogicException::class);
143 
144  $c_factory = $this->buildVCFactory();
145  $controls = [
146  $c_factory->fieldSelection(['a1' => 'A','a2' => 'B','a3' => 'C'])
147  ];
148  $vc = $this->buildContainerFactory()->standard($controls);
149  $this->getDefaultRenderer()->render($vc);
150  }
151 
152  public function testViewControlContainerTransforms(): void
153  {
154  $transform = $this->buildRefinery()->custom()->transformation(
155  fn($v) => ['modified' => 'transformed']
156  );
157 
158  $request = $this->createMock(ServerRequestInterface::class);
159  $request->expects($this->once())
160  ->method("getQueryParams")
161  ->willReturn(['some' => 'data']);
162 
163  $controls = [
164  $this->buildVCFactory()->fieldSelection(['a1' => 'A'])
165  ];
166  $vc = $this->buildContainerFactory()->standard($controls)
167  ->withAdditionalTransformation($transform)
168  ->withRequest($request);
169 
170 
171  $expected = ['modified' => 'transformed'];
172  $this->assertEquals($expected, $vc->getData());
173  }
174 
175  public function testExtractCurrentValues(): void
176  {
177  $c_factory = $this->buildVCFactory();
178  $controls = [
179  $c_factory->fieldSelection(['a1' => 'A','a2' => 'B','a3' => 'C'])
180  ->withValue(['a1', 'a3']),
181  $c_factory->sortation([
182  '2up' => new Data\Order('a2', 'ASC'),
183  '2down' => new Data\Order('a2', 'DESC')
184  ])->withValue(['a2', 'DESC']),
185  ];
186 
187  $vc = $this->buildContainerFactory()->standard($controls);
188  $data = $vc->getComponentInternalValues();
189 
190  $this->assertEquals(
191  [
192  'view_control/input_0' => ['a1', 'a3'],
193  'view_control/input_1/input_2' => 'a2',
194  'view_control/input_1/input_3' => 'DESC'
195  ],
196  $data
197  );
198  }
199 }
Interface Observer Contains several chained tasks and infos about them.
Both the subject and the direction need to be specified when expressing an order. ...
Definition: Order.php:28
getLanguage()
Builds data types.
Definition: Factory.php:35
FormInputNameSource is responsible for generating continuous form input names.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Factory.php:21