View source
<?php
namespace Drupal\Tests\views_aggregator\Kernel\Plugin;
use Drupal\views\Views;
use Drupal\views\ViewExecutable;
use Drupal\Tests\views\Kernel\Plugin\PluginKernelTestBase;
use Drupal\views\Tests\ViewTestData;
use Symfony\Component\HttpFoundation\Request;
class ViewsAggregatorStyleTableUnitTest extends PluginKernelTestBase {
public static $testViews = [
'va_test_style_table',
];
public static $modules = [
'views',
'views_aggregator',
'views_aggregator_test_config',
];
protected $strictConfigSchema = FALSE;
protected function setUp($import_test_views = TRUE) {
parent::setUp($import_test_views);
ViewTestData::createTestViews(get_class($this), [
'views_aggregator_test_config',
]);
}
public function testViewsAggregatorTable() {
$view = Views::getView('va_test_style_table');
$view
->setDisplay('default');
$view
->initStyle();
$view
->initHandlers();
$view
->initQuery();
$style_plugin = $view->style_plugin;
$request = new Request();
$view
->setRequest($request);
$style_plugin->options['override'] = FALSE;
$style_plugin->options['default'] = '';
$this
->assertTrue($style_plugin
->buildSort(), 'If no order and no default order is specified, the normal sort should be used.');
$style_plugin->options['default'] = 'id';
$this
->assertTrue($style_plugin
->buildSort(), 'If no order but a default order is specified, the normal sort should be used.');
$request->attributes
->set('order', $this
->randomMachineName());
$this
->assertTrue($style_plugin
->buildSort(), 'If no valid field is chosen for order, the normal sort should be used.');
$request->attributes
->set('order', 'id');
$this
->assertTrue($style_plugin
->buildSort(), 'If a valid order is specified but the table is configured to not override, the normal sort should be used.');
$style_plugin->options['override'] = TRUE;
$this
->assertFalse($style_plugin
->buildSort(), 'If a valid order is specified and the table is configured to override, the normal sort should not be used.');
$request = new Request();
$view
->setRequest($request);
$this
->prepareView($view);
$style_plugin = $view->style_plugin;
$style_plugin->options['default'] = '';
$style_plugin
->buildSortPost();
$this
->assertIdentical($style_plugin->order, NULL, 'No sort order was set, when no order was specified and no default column was selected.');
$this
->assertIdentical($style_plugin->active, NULL, 'No sort field was set, when no order was specified and no default column was selected.');
$view
->destroy();
$this
->prepareView($view);
$style_plugin = $view->style_plugin;
$style_plugin->options['default'] = 'id';
$style_plugin->options['info']['id']['default_sort_order'] = 'desc';
$style_plugin
->buildSortPost();
$this
->assertIdentical($style_plugin->order, 'desc', 'Fallback to the right default sort order.');
$this
->assertIdentical($style_plugin->active, 'id', 'Fallback to the right default sort field.');
$view
->destroy();
$this
->prepareView($view);
$style_plugin = $view->style_plugin;
$style_plugin->options['default'] = 'id';
$style_plugin->options['info']['id']['default_sort_order'] = NULL;
$style_plugin->options['order'] = 'asc';
$style_plugin
->buildSortPost();
$this
->assertIdentical($style_plugin->order, 'asc', 'Fallback to the right default sort order.');
$this
->assertIdentical($style_plugin->active, 'id', 'Fallback to the right default sort field.');
$view
->destroy();
$this
->prepareView($view);
$style_plugin = $view->style_plugin;
$request->query
->set('sort', 'asc');
$random_name = $this
->randomMachineName();
$request->query
->set('order', $random_name);
$style_plugin
->buildSortPost();
$this
->assertIdentical($style_plugin->order, 'asc', 'No sort order was set, when invalid sort order was specified.');
$this
->assertIdentical($style_plugin->active, NULL, 'No sort field was set, when invalid sort order was specified.');
$view
->destroy();
foreach ([
'asc',
'desc',
] as $order) {
$this
->prepareView($view);
$style_plugin = $view->style_plugin;
$request->query
->set('sort', $order);
$request->query
->set('order', 'id');
$style_plugin
->buildSortPost();
$this
->assertIdentical($style_plugin->order, $order, 'Ensure the right sort order was set.');
$this
->assertIdentical($style_plugin->active, 'id', 'Ensure the right order was set.');
$view
->destroy();
}
$view
->destroy();
$this
->prepareView($view);
$view->field['name']->options['exclude'] = TRUE;
$output = $view
->preview();
$output = \Drupal::service('renderer')
->renderRoot($output);
$this
->assertFalse(strpos($output, 'views-field-name') !== FALSE, "Excluded field's wrapper was not rendered.");
$view
->destroy();
$this
->executeView($view);
$output = $view
->preview();
$output = \Drupal::service('renderer')
->renderRoot($output);
$this
->assertFalse(strpos($output, 'custom text') !== FALSE, 'Empty handler was not rendered on a non empty table.');
$view
->setDisplay('default');
$view->executed = TRUE;
$view->result = [];
$output = $view
->preview();
$output = \Drupal::service('renderer')
->renderRoot($output);
$this
->assertTrue(strpos($output, 'custom text') !== FALSE, 'Empty handler got rendered on an empty table.');
}
protected function prepareView(ViewExecutable $view) {
$view
->setDisplay();
$view
->initStyle();
$view
->initHandlers();
$view
->initQuery();
}
}