Definition of ViewsHandlerTestXss.

File

tests/handlers/views_handler_field_xss.test
View source
<?php

/**
 * @file
 * Definition of ViewsHandlerTestXss.
 */

/**
 * Tests the core views_handler_field_css handler.
 *
 * @see CommonXssUnitTest
 */
class ViewsHandlerTestXss extends ViewsSqlTest {
  public static function getInfo() {
    return array(
      'name' => 'Field: Xss',
      'description' => 'Test the core views_handler_field_css handler.',
      'group' => 'Views Handlers',
    );
  }
  function dataHelper() {
    $map = array(
      'John' => 'John',
      "" => '',
      'Fooÿñ' => 'Fooÿñ',
    );
    return $map;
  }
  function viewsData() {
    $data = parent::viewsData();
    $data['views_test']['name']['field']['handler'] = 'views_handler_field_xss';
    return $data;
  }
  public function testFieldXss() {
    $view = $this
      ->getBasicView();
    $view->display['default']->handler
      ->override_option('fields', array(
      'name' => array(
        'id' => 'name',
        'table' => 'views_test',
        'field' => 'name',
      ),
    ));
    $this
      ->executeView($view);
    $counter = 0;
    foreach ($this
      ->dataHelper() as $input => $expected_result) {
      $view->result[$counter]->views_test_name = $input;
      $this
        ->assertEqual($view->field['name']
        ->advanced_render($view->result[$counter]), $expected_result);
      $counter++;
    }
  }

}

Classes

Namesort descending Description
ViewsHandlerTestXss Tests the core views_handler_field_css handler.