function FieldCounterTest::testSimple in Views (for Drupal 7) 8.3
File
- lib/
Drupal/ views/ Tests/ Handler/ FieldCounterTest.php, line 29 - Definition of Drupal\views\Tests\Handler\FieldCounterTest.
Class
- FieldCounterTest
- Tests the Drupal\views\Plugin\views\field\Counter handler.
Namespace
Drupal\views\Tests\HandlerCode
function testSimple() {
$view = $this
->getView();
$view->displayHandlers['default']
->overrideOption('fields', array(
'counter' => array(
'id' => 'counter',
'table' => 'views',
'field' => 'counter',
'relationship' => 'none',
),
'name' => array(
'id' => 'name',
'table' => 'views_test_data',
'field' => 'name',
'relationship' => 'none',
),
));
$view
->preview();
$counter = $view->style_plugin->rendered_fields[0]['counter'];
$this
->assertEqual($counter, 1, format_string('Make sure the expected number (@expected) patches with the rendered number (@counter)', array(
'@expected' => 1,
'@counter' => $counter,
)));
$counter = $view->style_plugin->rendered_fields[1]['counter'];
$this
->assertEqual($counter, 2, format_string('Make sure the expected number (@expected) patches with the rendered number (@counter)', array(
'@expected' => 2,
'@counter' => $counter,
)));
$counter = $view->style_plugin->rendered_fields[2]['counter'];
$this
->assertEqual($counter, 3, format_string('Make sure the expected number (@expected) patches with the rendered number (@counter)', array(
'@expected' => 3,
'@counter' => $counter,
)));
$view
->destroy();
$view = $this
->getView();
$rand_start = rand(5, 10);
$view->displayHandlers['default']
->overrideOption('fields', array(
'counter' => array(
'id' => 'counter',
'table' => 'views',
'field' => 'counter',
'relationship' => 'none',
'counter_start' => $rand_start,
),
'name' => array(
'id' => 'name',
'table' => 'views_test_data',
'field' => 'name',
'relationship' => 'none',
),
));
$view
->preview();
$counter = $view->style_plugin->rendered_fields[0]['counter'];
$expected_number = 0 + $rand_start;
$this
->assertEqual($counter, $expected_number, format_string('Make sure the expected number (@expected) patches with the rendered number (@counter)', array(
'@expected' => $expected_number,
'@counter' => $counter,
)));
$counter = $view->style_plugin->rendered_fields[1]['counter'];
$expected_number = 1 + $rand_start;
$this
->assertEqual($counter, $expected_number, format_string('Make sure the expected number (@expected) patches with the rendered number (@counter)', array(
'@expected' => $expected_number,
'@counter' => $counter,
)));
$counter = $view->style_plugin->rendered_fields[2]['counter'];
$expected_number = 2 + $rand_start;
$this
->assertEqual($counter, $expected_number, format_string('Make sure the expected number (@expected) patches with the rendered number (@counter)', array(
'@expected' => $expected_number,
'@counter' => $counter,
)));
}