function ArgumentDefaultTest::testArgumentDefaultNoOptions in Views (for Drupal 7) 8.3
Tests the use of a default argument plugin that provides no options.
File
- lib/
Drupal/ views/ Tests/ Plugin/ ArgumentDefaultTest.php, line 90 - Definition of Drupal\views\Tests\Plugin\ArgumentDefaultTest.
Class
- ArgumentDefaultTest
- Basic test for pluggable argument default.
Namespace
Drupal\views\Tests\PluginCode
function testArgumentDefaultNoOptions() {
$admin_user = $this
->drupalCreateUser(array(
'administer views',
'administer site configuration',
));
$this
->drupalLogin($admin_user);
// The current_user plugin has no options form, and should pass validation.
$argument_type = 'current_user';
$edit = array(
'options[default_argument_type]' => $argument_type,
);
$this
->drupalPost('admin/structure/views/nojs/config-item/test_argument_default_current_user/default/argument/uid', $edit, t('Apply'));
// Note, the undefined index error has two spaces after it.
$error = array(
'%type' => 'Notice',
'!message' => 'Undefined index: ' . $argument_type,
'%function' => 'views_handler_argument->validateOptionsForm()',
);
$message = t('%type: !message in %function', $error);
$this
->assertNoRaw($message, t('Did not find error message: !message.', array(
'!message' => $message,
)));
}