ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ViewControlContainerTest Class Reference
+ Inheritance diagram for ViewControlContainerTest:
+ Collaboration diagram for ViewControlContainerTest:

Public Member Functions

 testViewControlContainerConstruct ()
 
 testViewControlContainerWithControls ()
 
 testViewControlContainerWithRequest ()
 
 testViewControlContainerRenderWithoutRequest ()
 
 testViewControlContainerTransforms ()
 
 testExtractCurrentValues ()
 

Protected Member Functions

 buildDataFactory ()
 
 buildRefinery ()
 
 buildContainerFactory ()
 
 buildFieldFactory ()
 
 buildVCFactory ()
 

Detailed Description

Definition at line 35 of file ViewControlContainerTest.php.

Member Function Documentation

◆ buildContainerFactory()

ViewControlContainerTest::buildContainerFactory ( )
protected

Definition at line 48 of file ViewControlContainerTest.php.

References buildVCFactory().

Referenced by testExtractCurrentValues(), testViewControlContainerConstruct(), testViewControlContainerRenderWithoutRequest(), testViewControlContainerTransforms(), testViewControlContainerWithControls(), and testViewControlContainerWithRequest().

48  : VC\Factory
49  {
50  return new VC\Factory(
51  new I\SignalGenerator(),
52  $this->buildVCFactory(),
53  );
54  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ buildDataFactory()

ViewControlContainerTest::buildDataFactory ( )
protected

Definition at line 37 of file ViewControlContainerTest.php.

Referenced by buildFieldFactory(), buildRefinery(), buildVCFactory(), and testViewControlContainerWithRequest().

37  : Data\Factory
38  {
39  return new Data\Factory();
40  }
+ Here is the caller graph for this function:

◆ buildFieldFactory()

ViewControlContainerTest::buildFieldFactory ( )
protected

Definition at line 55 of file ViewControlContainerTest.php.

References buildDataFactory(), buildRefinery(), and getLanguage().

Referenced by buildVCFactory().

55  : 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  }
getLanguage()
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ buildRefinery()

ViewControlContainerTest::buildRefinery ( )
protected

Definition at line 41 of file ViewControlContainerTest.php.

References buildDataFactory().

Referenced by buildFieldFactory(), buildVCFactory(), and testViewControlContainerTransforms().

41  : Refinery
42  {
43  return new Refinery(
44  $this->buildDataFactory(),
45  $this->createMock(ILIAS\Language\Language::class)
46  );
47  }
Interface Observer Contains several chained tasks and infos about them.
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ buildVCFactory()

ViewControlContainerTest::buildVCFactory ( )
protected

Definition at line 66 of file ViewControlContainerTest.php.

References buildDataFactory(), buildFieldFactory(), buildRefinery(), and getLanguage().

Referenced by buildContainerFactory(), testExtractCurrentValues(), testViewControlContainerRenderWithoutRequest(), testViewControlContainerTransforms(), testViewControlContainerWithControls(), and testViewControlContainerWithRequest().

66  : 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  }
getLanguage()
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ testExtractCurrentValues()

ViewControlContainerTest::testExtractCurrentValues ( )

Definition at line 175 of file ViewControlContainerTest.php.

References $data, buildContainerFactory(), and buildVCFactory().

175  : 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  }
Both the subject and the direction need to be specified when expressing an order. ...
Definition: Order.php:28
+ Here is the call graph for this function:

◆ testViewControlContainerConstruct()

ViewControlContainerTest::testViewControlContainerConstruct ( )

Definition at line 77 of file ViewControlContainerTest.php.

References buildContainerFactory().

77  : void
78  {
79  $vc = $this->buildContainerFactory()->standard([]);
80  $this->assertInstanceOf(VC\ViewControl::class, $vc);
81  $this->assertInstanceOf(I\Signal::class, $vc->getSubmissionSignal());
82  }
+ Here is the call graph for this function:

◆ testViewControlContainerRenderWithoutRequest()

ViewControlContainerTest::testViewControlContainerRenderWithoutRequest ( )

Definition at line 140 of file ViewControlContainerTest.php.

References buildContainerFactory(), and buildVCFactory().

140  : void
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  }
+ Here is the call graph for this function:

◆ testViewControlContainerTransforms()

ViewControlContainerTest::testViewControlContainerTransforms ( )

Definition at line 152 of file ViewControlContainerTest.php.

References buildContainerFactory(), buildRefinery(), and buildVCFactory().

152  : 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  }
+ Here is the call graph for this function:

◆ testViewControlContainerWithControls()

ViewControlContainerTest::testViewControlContainerWithControls ( )

Definition at line 84 of file ViewControlContainerTest.php.

References buildContainerFactory(), and buildVCFactory().

84  : 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  }
FormInputNameSource is responsible for generating continuous form input names.
+ Here is the call graph for this function:

◆ testViewControlContainerWithRequest()

ViewControlContainerTest::testViewControlContainerWithRequest ( )

Definition at line 105 of file ViewControlContainerTest.php.

References $data, buildContainerFactory(), buildDataFactory(), and buildVCFactory().

105  : 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  }
Both the subject and the direction need to be specified when expressing an order. ...
Definition: Order.php:28
+ Here is the call graph for this function:

The documentation for this class was generated from the following file: