function testSimple() {
$view = views_get_view('test_view');
$view
->setDisplay();
$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
->setDisplay();
$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,
)));
}