19 declare(strict_types=1);
29 require_once(
'ViewControlTestBase.php');
36 'A' =>
new Order(
'opt',
'ASC'),
37 'B' =>
new Order(
'opt',
'DESC')
40 $r = ILIAS\UI\Implementation\Component\Input\ViewControl\Renderer::class;
42 $this->assertInstanceOf(Signal::class, $vc->getInternalSignal());
43 $this->assertEquals($options, $vc->getOptions());
48 $this->expectException(\InvalidArgumentException::class);
50 'A' =>
new Order(
'opt',
'ASC'),
51 'B' =>
new Order(
'opt',
'DESC')
54 ->withValue(
'notokvalue:DESC');
60 'A' =>
new Order(
'opt',
'ASC'),
61 'B' =>
new Order(
'opt',
'DESC')
65 $input = $this->createMock(InputData::class);
66 $input->expects($this->exactly(2))
69 $this->onConsecutiveCalls($v[0], $v[1])
78 $df->ok($df->order(
'opt',
'DESC')),
81 $this->assertEquals($v, $vc->getValue());
86 $r = $this->getDefaultRenderer();
88 'A' =>
new Order(
'opt',
'ASC'),
89 'B' =>
new Order(
'opt',
'DESC')
94 $expected = $this->brutallyTrimHTML(
' 95 <div class="dropdown il-viewcontrol il-viewcontrol-sortation l-bar__element" id="id_3"> 96 <button class="btn btn-ctrl dropdown-toggle" type="button" data-toggle="dropdown" aria-label="label_sortation" aria-haspopup="true" aria-expanded="false" aria-controls="id_3_ctrl"><span class="glyphicon-sort"></span></button> 97 <ul id="id_3_ctrl" class="dropdown-menu"> 98 <li><button class="btn btn-link" id="id_1">A</button></li> 99 <li><button class="btn btn-link" id="id_2">B</button></li> 101 <div class="il-viewcontrol-value" role="none"> 102 <input id="id_4" type="hidden" value="" /> 103 <input id="id_5" type="hidden" value="" /> 107 $html = $this->brutallyTrimHTML(
$r->render($vc));
108 $this->assertEquals($expected, $html);
113 $options = [
'A' =>
new Order(
'opt',
'ASC')];
114 $this->expectException(\LogicException::class);
115 $this->
buildVCFactory()->sortation($options)->getOnChangeSignal();
121 $r = $this->getDefaultRenderer();
123 'A' =>
new Order(
'opt',
'ASC'),
124 'B' =>
new Order(
'opt',
'DESC')
129 $expected = $this->brutallyTrimHTML(
' 130 <div class="dropdown il-viewcontrol il-viewcontrol-sortation l-bar__element" id="id_3"> 131 <button class="btn btn-ctrl dropdown-toggle" type="button" data-toggle="dropdown" aria-label="label_sortation" aria-haspopup="true" aria-expanded="false" aria-controls="id_3_ctrl"><span class="glyphicon-sort"></span></button> 132 <ul id="id_3_ctrl" class="dropdown-menu"> 133 <li><button class="btn btn-link" id="id_1">A</button></li> 134 <li><button class="btn btn-link" id="id_2">B</button></li> 136 <div class="il-viewcontrol-value" role="none"> 137 <input id="id_4" type="hidden" value="" /> 138 <input id="id_5" type="hidden" value="" /> 142 $html = $this->brutallyTrimHTML(
$r->render($vc));
143 $this->assertEquals($expected, $html);
testViewControlSortationWithWrongValue()
testViewControlFieldWithSignalsRendering()
Both the subject and the direction need to be specified when expressing an order. ...
testViewControlSortationConstruct()
testViewControlSortationRenderingOutsideContainer()
testViewControlFieldSortationRendering()
testViewControlSortationWithInput()