View source
<?php
namespace Drupal\KernelTests\Core\Render\Element;
use Drupal\KernelTests\KernelTestBase;
class TableTest extends KernelTestBase {
protected static $modules = [
'system',
'form_test',
];
public function testThemeTableStickyHeaders() {
$header = [
'one',
'two',
'three',
];
$rows = [
[
1,
2,
3,
],
[
4,
5,
6,
],
[
7,
8,
9,
],
];
$table = [
'#type' => 'table',
'#header' => $header,
'#rows' => $rows,
'#sticky' => TRUE,
];
$this
->render($table);
$tableheader = $this
->xpath("//script[contains(@src, 'tableheader.js')]");
$this
->assertCount(1, $tableheader);
$this
->assertRaw('sticky-enabled');
}
public function testThemeTableNoStickyHeaders() {
$header = [
'one',
'two',
'three',
];
$rows = [
[
1,
2,
3,
],
[
4,
5,
6,
],
[
7,
8,
9,
],
];
$attributes = [];
$caption = NULL;
$colgroups = [];
$table = [
'#type' => 'table',
'#header' => $header,
'#rows' => $rows,
'#attributes' => $attributes,
'#caption' => $caption,
'#colgroups' => $colgroups,
'#sticky' => FALSE,
];
$this
->render($table);
$tableheader = $this
->xpath("//script[contains(@src, 'tableheader.js')]");
$this
->assertCount(0, $tableheader);
$this
->assertNoRaw('sticky-enabled');
}
public function testThemeTableWithEmptyMessage() {
$header = [
'Header 1',
[
'data' => 'Header 2',
'colspan' => 2,
],
];
$table = [
'#type' => 'table',
'#header' => $header,
'#rows' => [],
'#empty' => 'Empty row.',
];
\Drupal::service('theme_installer')
->install([
'classy',
]);
$this
->config('system.theme')
->set('default', 'classy')
->save();
$this
->render($table);
$this
->removeWhiteSpace();
$this
->assertRaw('<thead><tr><th>Header 1</th><th colspan="2">Header 2</th></tr>', 'Table header found.');
$this
->assertRaw('<tr class="odd"><td colspan="3" class="empty message">Empty row.</td>', 'Colspan on #empty row found.');
}
public function testThemeTableWithNoStriping() {
$rows = [
[
'data' => [
1,
],
'no_striping' => TRUE,
],
];
$table = [
'#type' => 'table',
'#rows' => $rows,
];
$this
->render($table);
$this
->assertNoRaw('class="odd"', 'Odd/even classes were not added because $no_striping = TRUE.');
$this
->assertNoRaw('no_striping', 'No invalid no_striping HTML attribute was printed.');
}
public function testThemeTableFooter() {
$footer = [
[
'data' => [
1,
],
],
[
'Foo',
],
];
$table = [
'#type' => 'table',
'#rows' => [],
'#footer' => $footer,
];
$this
->render($table);
$this
->removeWhiteSpace();
$this
->assertRaw('<tfoot><tr><td>1</td></tr><tr><td>Foo</td></tr></tfoot>', 'Table footer found.');
}
public function testThemeTableHeaderCellOption() {
$rows = [
[
[
'data' => 1,
'header' => TRUE,
],
[
'data' => 1,
'header' => FALSE,
],
[
'data' => 1,
],
],
];
$table = [
'#type' => 'table',
'#rows' => $rows,
];
$this
->render($table);
$this
->removeWhiteSpace();
$this
->assertRaw('<th>1</th><td>1</td><td>1</td>', 'The th and td tags was printed correctly.');
}
public function testThemeTableResponsive() {
$header = [
'one',
'two',
'three',
];
$rows = [
[
1,
2,
3,
],
[
4,
5,
6,
],
[
7,
8,
9,
],
];
$table = [
'#type' => 'table',
'#header' => $header,
'#rows' => $rows,
'#responsive' => TRUE,
];
$this
->render($table);
$this
->assertRaw('responsive-enabled', 'The responsive-enabled class was printed correctly.');
}
public function testThemeTableNotResponsiveHeaders() {
$rows = [
[
1,
2,
3,
],
[
4,
5,
6,
],
[
7,
8,
9,
],
];
$table = [
'#type' => 'table',
'#rows' => $rows,
'#responsive' => TRUE,
];
$this
->render($table);
$this
->assertNoRaw('responsive-enabled', 'The responsive-enabled class is not applied without table headers.');
}
public function testThemeTableNotResponsiveProperty() {
$header = [
'one',
'two',
'three',
];
$rows = [
[
1,
2,
3,
],
[
4,
5,
6,
],
[
7,
8,
9,
],
];
$table = [
'#type' => 'table',
'#header' => $header,
'#rows' => $rows,
'#responsive' => FALSE,
];
$this
->render($table);
$this
->assertNoRaw('responsive-enabled', 'The responsive-enabled class is not applied without the "responsive" property set to TRUE.');
}
public function testThemeTableResponsivePriority() {
$header = [
'associative_key' => [
'data' => 1,
'class' => [
RESPONSIVE_PRIORITY_MEDIUM,
],
],
[
'data' => 2,
'class' => [
RESPONSIVE_PRIORITY_LOW,
],
],
[
'data' => 3,
],
];
$rows = [
[
4,
5,
6,
],
];
$table = [
'#type' => 'table',
'#header' => $header,
'#rows' => $rows,
'#responsive' => TRUE,
];
$this
->render($table);
$this
->assertRaw('<th class="priority-medium">1</th>', 'Header 1: the priority-medium class was applied correctly.');
$this
->assertRaw('<th class="priority-low">2</th>', 'Header 2: the priority-low class was applied correctly.');
$this
->assertRaw('<th>3</th>', 'Header 3: no priority classes were applied.');
$this
->assertRaw('<td class="priority-medium">4</td>', 'Cell 1: the priority-medium class was applied correctly.');
$this
->assertRaw('<td class="priority-low">5</td>', 'Cell 2: the priority-low class was applied correctly.');
$this
->assertRaw('<td>6</td>', 'Cell 3: no priority classes were applied.');
}
public function testThemeTableHeaderRenderArray() {
$header = [
[
'data' => [
'#markup' => 'one',
],
],
'two',
[
'data' => [
'#type' => 'html_tag',
'#tag' => 'b',
'#value' => 'three',
],
],
];
$rows = [
[
1,
2,
3,
],
[
4,
5,
6,
],
[
7,
8,
9,
],
];
$table = [
'#type' => 'table',
'#header' => $header,
'#rows' => $rows,
'#responsive' => FALSE,
];
$this
->render($table);
$this
->removeWhiteSpace();
$this
->assertRaw('<thead><tr><th>one</th><th>two</th><th><b>three</b></th></tr>', 'Table header found.');
}
public function testThemeTableRowRenderArray() {
$header = [
'one',
'two',
'three',
];
$rows = [
[
'1-one',
[
'data' => '1-two',
],
'1-three',
],
[
[
'data' => [
'#markup' => '2-one',
],
],
'2-two',
[
'data' => [
'#type' => 'html_tag',
'#tag' => 'b',
'#value' => '2-three',
],
],
],
];
$table = [
'#type' => 'table',
'#header' => $header,
'#rows' => $rows,
'#responsive' => FALSE,
];
$this
->render($table);
$this
->removeWhiteSpace();
$this
->assertRaw('<tbody><tr><td>1-one</td><td>1-two</td><td>1-three</td></tr>', 'Table row 1 found.');
$this
->assertRaw('<tr><td>2-one</td><td>2-two</td><td><b>2-three</b></td></tr></tbody>', 'Table row 2 found.');
}
public function testThemeTableTitle() {
$form = \Drupal::formBuilder()
->getForm('\\Drupal\\form_test\\Form\\FormTestTableForm');
$this
->render($form);
$this
->assertEscaped('Update <em>kitten</em>');
$this
->assertRaw('Update my favorite fruit is <strong>bananas</strong>');
}
}