View source
<?php
namespace Drupal\Tests\views_ui\Functional;
use Drupal\Component\Render\FormattableMarkup;
use Drupal\views\Views;
class CustomBooleanTest extends UITestBase {
public static $testViews = [
'test_view',
];
protected $defaultTheme = 'stark';
public function viewsData() {
$data = parent::viewsData();
$data['views_test_data']['age']['field']['id'] = 'boolean';
return $data;
}
public function dataSet() {
$data = parent::dataSet();
$data[0]['age'] = 0;
$data[3]['age'] = 0;
return $data;
}
public function testCustomOption() {
$view = Views::getView('test_view');
$view
->setDisplay();
$view->displayHandlers
->get('default')
->overrideOption('fields', [
'age' => [
'id' => 'age',
'table' => 'views_test_data',
'field' => 'age',
'relationship' => 'none',
'plugin_id' => 'boolean',
],
]);
$view
->save();
$this
->executeView($view);
$custom_true = 'Yay';
$custom_false = 'Nay';
$custom_values = [
'plain' => [
'true' => $custom_true,
'false' => $custom_false,
'test' => 'assertStringContainsString',
],
'allowed tag' => [
'true' => '<p>' . $custom_true . '</p>',
'false' => '<p>' . $custom_false . '</p>',
'test' => 'assertStringContainsString',
],
'disallowed tag' => [
'true' => '<script>' . $custom_true . '</script>',
'false' => '<script>' . $custom_false . '</script>',
'test' => 'assertStringNotContainsString',
],
];
foreach ($custom_values as $type => $values) {
$options = [
'options[type]' => 'custom',
'options[type_custom_true]' => $values['true'],
'options[type_custom_false]' => $values['false'],
];
$this
->drupalGet('admin/structure/views/nojs/handler/test_view/default/field/age');
$this
->submitForm($options, 'Apply');
$this
->drupalGet('admin/structure/views/view/test_view');
$this
->submitForm([], 'Save');
$view = Views::getView('test_view');
$output = $view
->preview();
$output = \Drupal::service('renderer')
->renderRoot($output);
$this
->{$values['test']}($values['true'], (string) $output, new FormattableMarkup('Expected custom boolean TRUE value %value in output for %type', [
'%value' => $values['true'],
'%type' => $type,
]));
$this
->{$values['test']}($values['false'], (string) $output, new FormattableMarkup('Expected custom boolean FALSE value %value in output for %type', [
'%value' => $values['false'],
'%type' => $type,
]));
}
}
public function testCustomOptionTemplate() {
\Drupal::service('theme_installer')
->install([
'views_test_theme',
]);
$this
->config('system.theme')
->set('default', 'views_test_theme')
->save();
$this
->assertEquals('views_test_theme', $this
->config('system.theme')
->get('default'));
$view = Views::getView('test_view');
$view
->setDisplay();
$view->displayHandlers
->get('default')
->overrideOption('fields', [
'age' => [
'id' => 'age',
'table' => 'views_test_data',
'field' => 'age',
'relationship' => 'none',
'plugin_id' => 'boolean',
],
]);
$view
->save();
$this
->executeView($view);
$custom_true = 'Yay';
$custom_false = 'Nay';
$custom_values = [
'plain' => [
'true' => $custom_true,
'false' => $custom_false,
'test' => 'assertStringContainsString',
],
'allowed tag' => [
'true' => '<p>' . $custom_true . '</p>',
'false' => '<p>' . $custom_false . '</p>',
'test' => 'assertStringContainsString',
],
'disallowed tag' => [
'true' => '<script>' . $custom_true . '</script>',
'false' => '<script>' . $custom_false . '</script>',
'test' => 'assertStringNotContainsString',
],
];
foreach ($custom_values as $type => $values) {
$options = [
'options[type]' => 'custom',
'options[type_custom_true]' => $values['true'],
'options[type_custom_false]' => $values['false'],
];
$this
->drupalGet('admin/structure/views/nojs/handler/test_view/default/field/age');
$this
->submitForm($options, 'Apply');
$this
->drupalGet('admin/structure/views/view/test_view');
$this
->submitForm([], 'Save');
$view = Views::getView('test_view');
$output = $view
->preview();
$output = \Drupal::service('renderer')
->renderRoot($output);
$this
->{$values['test']}($values['true'], (string) $output, new FormattableMarkup('Expected custom boolean TRUE value %value in output for %type', [
'%value' => $values['true'],
'%type' => $type,
]));
$this
->{$values['test']}($values['false'], (string) $output, new FormattableMarkup('Expected custom boolean FALSE value %value in output for %type', [
'%value' => $values['false'],
'%type' => $type,
]));
$this
->assertStringContainsString('llama', (string) $output);
}
}
}