public function ArgumentDefaultTest::testArgumentDefaultPlugin

Tests the argument default test plugin.

See also

Drupal\views_test_data\Plugin\views\argument_default\ArgumentDefaultTest

File

drupal/core/modules/views/lib/Drupal/views/Tests/Plugin/ArgumentDefaultTest.php, line 51
Definition of Drupal\views\Tests\Plugin\ArgumentDefaultTest.

Class

ArgumentDefaultTest
Basic test for pluggable argument default.

Namespace

Drupal\views\Tests\Plugin

Code

public function testArgumentDefaultPlugin() {
  $view = views_get_view('test_view');

  // Add a new argument and set the test plugin for the argument_default.
  $options = array(
    'default_argument_type' => 'argument_default_test',
    'default_argument_options' => array(
      'value' => 'John',
    ),
    'default_action' => 'default',
  );
  $id = $view
    ->addItem('default', 'argument', 'views_test_data', 'name', $options);
  $view
    ->initHandlers();
  $plugin = $view->argument[$id]
    ->get_plugin('argument_default');
  $this
    ->assertTrue($plugin instanceof ArgumentDefaultTestPlugin, 'The correct argument default plugin is used.');

  // Check that the value of the default argument is as expected.
  $this
    ->assertEqual($view->argument[$id]
    ->get_default_argument(), 'John', 'The correct argument default value is returned.');

  // Don't pass in a value for the default argument and make sure the query
  // just returns John.
  $this
    ->executeView($view);
  $this
    ->assertEqual($view->argument[$id]
    ->get_value(), 'John', 'The correct argument value is used.');
  $expected_result = array(
    array(
      'name' => 'John',
    ),
  );
  $this
    ->assertIdenticalResultset($view, $expected_result, array(
    'views_test_data_name' => 'name',
  ));

  // Pass in value as argument to be sure that not the default value is used.
  $view
    ->destroy();
  $this
    ->executeView($view, array(
    'George',
  ));
  $this
    ->assertEqual($view->argument[$id]
    ->get_value(), 'George', 'The correct argument value is used.');
  $expected_result = array(
    array(
      'name' => 'George',
    ),
  );
  $this
    ->assertIdenticalResultset($view, $expected_result, array(
    'views_test_data_name' => 'name',
  ));
}