You are here

ViewsSqlExceptionTest.php in Zircon Profile 8.0

Same filename and directory in other branches
  1. 8 core/modules/views/src/Tests/Plugin/ViewsSqlExceptionTest.php

File

core/modules/views/src/Tests/Plugin/ViewsSqlExceptionTest.php
View source
<?php

/**
 * @file
 * Contains \Drupal\views\Tests\Plugin\ViewsSqlExceptionTest.
 */
namespace Drupal\views\Tests\Plugin;

use Drupal\views\Views;
use Drupal\Core\Database\DatabaseExceptionWrapper;

/**
 * Tests the views exception handling.
 *
 * @group views
 */
class ViewsSqlExceptionTest extends PluginTestBase {

  /**
   * Views used by this test.
   *
   * @var array
   */
  public static $testViews = array(
    'test_filter',
  );

  /**
   * {@inheritdoc}
   */
  protected function setUp() {
    parent::setUp();
    $this
      ->enableViewsTestModule();
  }

  /**
   * {@inheritdoc}
   */
  protected function viewsData() {
    $data = parent::viewsData();
    $data['views_test_data']['name']['filter']['id'] = 'test_exception_filter';
    return $data;
  }

  /**
   * Test for the SQL exception.
   */
  public function testSqlException() {
    $view = Views::getView('test_filter');
    $view
      ->initDisplay();

    // Adding a filter that will result in an invalid query.
    $view->displayHandlers
      ->get('default')
      ->overrideOption('filters', array(
      'test_filter' => array(
        'id' => 'test_exception_filter',
        'table' => 'views_test_data',
        'field' => 'name',
        'operator' => '=',
        'value' => 'John',
        'group' => 0,
      ),
    ));
    try {
      $this
        ->executeView($view);
      $this
        ->fail('Expected exception not thrown.');
    } catch (DatabaseExceptionWrapper $e) {
      $exception_assert_message = "Exception in {$view->storage->label()}[{$view->storage->id()}]";
      $this
        ->assertEqual(strstr($e
        ->getMessage(), ':', TRUE), $exception_assert_message);
    }
  }

}

Classes

Namesort descending Description
ViewsSqlExceptionTest Tests the views exception handling.