<?php
namespace Drupal\views\Tests;
class ViewElementTest extends ViewTestBase {
public static $testViews = array(
'test_view',
);
protected $render;
public static function getInfo() {
return array(
'name' => 'View element',
'description' => 'Tests the view render element.',
'group' => 'Views',
);
}
protected function setUp() {
parent::setUp();
$this
->enableViewsTestModule();
$this->render = array(
'view' => array(
'#type' => 'view',
'#name' => 'test_view',
'#display_id' => 'default',
'#arguments' => array(
25,
),
),
);
}
public function testViewElement() {
$view = views_get_view('test_view');
$view
->setDisplay();
$render = $this->render;
$this
->drupalSetContent(drupal_render($render));
$xpath = $this
->xpath('//div[@class="views-element-container"]');
$this
->assertTrue($xpath, 'The view container has been found in the rendered output.');
$xpath = $this
->xpath('//div[@class="view-content"]');
$this
->assertTrue($xpath, 'The view content has been found in the rendered output.');
$xpath = $this
->xpath('//div[@class="view-content"]/div');
$this
->assertEqual(count($xpath), 5);
$this
->drupalGet('views_test_data_element_form');
$xpath = $this
->xpath('//div[@class="views-element-container form-wrapper"]');
$this
->assertTrue($xpath, 'The view container has been found on the form.');
$xpath = $this
->xpath('//div[@class="view-content"]');
$this
->assertTrue($xpath, 'The view content has been found on the form.');
$xpath = $this
->xpath('//div[@class="view-content"]/div');
$this
->assertEqual(count($xpath), 5);
$view->displayHandlers
->get('default')
->overrideOption('arguments', array(
'age' => array(
'default_action' => 'ignore',
'style_plugin' => 'default_summary',
'style_options' => array(),
'wildcard' => 'all',
'wildcard_substitution' => 'All',
'title' => '',
'breadcrumb' => '',
'default_argument_type' => 'fixed',
'default_argument' => '',
'validate' => array(
'type' => 'none',
'fail' => 'not found',
),
'break_phrase' => 0,
'not' => 0,
'id' => 'age',
'table' => 'views_test_data',
'field' => 'age',
'validate_user_argument_type' => 'uid',
),
));
$view
->save();
$render = $this->render;
$this
->drupalSetContent(drupal_render($render));
$xpath = $this
->xpath('//div[@class="view-content"]/div');
$this
->assertEqual(count($xpath), 1);
$this
->drupalGet('views_test_data_element_form');
$xpath = $this
->xpath('//div[@class="view-content"]/div');
$this
->assertEqual(count($xpath), 1);
}
}