19 declare(strict_types=1);
21 require_once(
"libs/composer/vendor/autoload.php");
22 require_once(__DIR__ .
"/TableTestBase.php");
40 public function getRows(
41 I\Table\DataRowBuilder $row_builder,
42 array $visible_column_ids,
46 ?array $additional_parameters
48 yield $row_builder->buildStandardRow(
'', []);
50 public function getTotalRowCount(
52 ?array $additional_parameters
64 $this->assertEquals(800, $table->getNumberOfRows());
65 $this->assertInstanceOf(Order::class, $table->getOrder());
66 $this->assertInstanceOf(Range::class, $table->getRange());
67 $this->assertInstanceOf(
I\Signal::class, $table->getAsyncActionSignal());
68 $this->assertInstanceOf(
I\Signal::class, $table->getMultiActionSignal());
69 $this->assertInstanceOf(
I\Signal::class, $table->getSelectionSignal());
70 $this->assertFalse($table->hasSingleActions());
71 $this->assertFalse($table->hasMultiActions());
72 $this->assertEquals(
$data, $table->getDataRetrieval());
77 $this->expectException(\InvalidArgumentException::class);
79 $cols = [
'f0' =>
"col1"];
85 $this->expectException(\InvalidArgumentException::class);
95 'f0' =>
$f->text(
"col1"),
96 'f1' =>
$f->text(
"col2")
100 $this->assertEquals(2, $table->getColumnCount());
102 'f0' =>
$f->text(
"col1")->withIndex(0),
103 'f1' =>
$f->text(
"col2")->withIndex(1)
105 $this->assertEquals($check, $table->getColumns());
106 $this->assertEquals($check, $table->getVisibleColumns());
112 $df = new \ILIAS\Data\Factory();
113 $target = $df->uri(
'http://wwww.ilias.de?ref_id=1');
115 list($builder,
$token) = $url_builder->acquireParameter([
'namespace'],
'rowids');
117 $f->single(
'act1', $builder,
$token),
118 $f->multi(
'act2', $builder,
$token),
119 $f->standard(
'act0', $builder,
$token)
123 ->withActions($actions);
125 $this->assertEquals($actions, $table->getAllActions());
126 $this->assertEqualsCanonicalizing([$actions[0], $actions[2]], $table->getSingleActions());
127 $this->assertEqualsCanonicalizing([$actions[1], $actions[2]], $table->getMultiActions());
141 $request = $this->createMock(ServerRequestInterface::class);
142 $this->assertEquals($request, $table->withRequest($request)->getRequest());
149 $this->assertEquals($nor, $table->withNumberOfRows($nor)->getNumberOfRows());
155 $order =
new Order(
'aspect',
'DESC');
156 $this->assertEquals($order, $table->withOrder($order)->getOrder());
162 $range =
new Range(17, 53);
163 $this->assertEquals($range, $table->withRange($range)->getRange());
170 'aspect' => [
'values']
172 $this->assertEquals($filter, $table->withFilter($filter)->getFilter());
181 $this->assertEquals(
$params, $table->withAdditionalParameters(
$params)->getAdditionalParameters());
190 ->withIsOptional(
true,
false),
194 $this->assertEquals(3, $table->getColumnCount());
195 $this->assertEquals([
'f0',
'f2'], array_keys($table->getVisibleColumns()));
196 $this->assertEquals(0, $table->getVisibleColumns()[
'f0']->getIndex());
197 $this->assertEquals(2, $table->getVisibleColumns()[
'f2']->getIndex());
202 $table =
new class () extends
C\Table\Data {
206 public function mockGetStorageId(): ?
string 208 return $this->getStorageId();
210 public function mockGetId(): ?
string 212 return $this->
getId();
216 $this->assertNull($table->mockGetId());
217 $this->assertNull($table->mockGetStorageId());
219 $table_id =
'some_id';
220 $internal_table_id = C\Table\Data::STORAGE_ID_PREFIX . $table_id;
221 $table = $table->withId($table_id);
222 $this->assertEquals($table_id, $table->mockGetId());
223 $this->assertEquals($internal_table_id, $table->mockGetStorageId());
228 $table_id =
'some_id';
229 $internal_table_id = C\Table\Data::STORAGE_ID_PREFIX . $table_id;
230 $table_data = [
'a' =>
'b'];
232 $storage[$internal_table_id] = $table_data;
234 $table =
new class ($storage) extends
C\Table\Data {
235 protected \ArrayAccess $storage;
239 $this->storage = $storage;
241 public function mockGetStorageData(): ?array
243 return $this->getStorageData();
247 $table = $table->withId($table_id);
248 $this->assertEquals($table_data, $table->mockGetStorageData());
testDataTableWithAdditionalParams()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
testDataTableConstructionWithErrorColumns()
if(! $DIC->user() ->getId()||!ilLTIConsumerAccess::hasCustomProviderCreationAccess()) $params
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
testDataTableBasicConstruction()
testDataTableConstructionWithoutColumns()
Both the subject and the direction need to be specified when expressing an order. ...
testDataTableWithSelectedOptionalCols()
testDataTableWithFilter()
testDataTableWithNumberOfRows()
testDataTableWithIdAndStorage()
testDataTableWithRequest()
Tests for the Data Table.
__construct(Container $dic, ilPlugin $plugin)
A simple class to express a range of whole positive numbers.
Basic Tests for all Tables.