View source
<?php
namespace Drupal\Tests\views_ui\Unit;
use Drupal\Component\Utility\SafeMarkup;
use Drupal\Core\DependencyInjection\ContainerBuilder;
use Drupal\Core\Entity\EntityInterface;
use Drupal\Tests\UnitTestCase;
use Drupal\views\Entity\View;
use Drupal\views\ViewExecutableFactory;
use Drupal\views_ui\ViewListBuilder;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\RequestStack;
class ViewListBuilderTest extends UnitTestCase {
public function testBuildRowEntityList() {
$storage = $this
->getMockBuilder('Drupal\\Core\\Config\\Entity\\ConfigEntityStorage')
->disableOriginalConstructor()
->getMock();
$display_manager = $this
->getMockBuilder('\\Drupal\\views\\Plugin\\ViewsPluginManager')
->disableOriginalConstructor()
->getMock();
$display_manager
->expects($this
->any())
->method('getDefinition')
->will($this
->returnValueMap(array(
array(
'default',
TRUE,
array(
'id' => 'default',
'title' => 'Master',
'theme' => 'views_view',
'no_ui' => TRUE,
'admin' => '',
),
),
array(
'page',
TRUE,
array(
'id' => 'page',
'title' => 'Page',
'uses_menu_links' => TRUE,
'uses_route' => TRUE,
'contextual_links_locations' => array(
'page',
),
'theme' => 'views_view',
'admin' => 'Page admin label',
),
),
array(
'embed',
TRUE,
array(
'id' => 'embed',
'title' => 'embed',
'theme' => 'views_view',
'admin' => 'Embed admin label',
),
),
)));
$default_display = $this
->getMock('Drupal\\views\\Plugin\\views\\display\\DefaultDisplay', array(
'initDisplay',
), array(
array(),
'default',
$display_manager
->getDefinition('default'),
));
$route_provider = $this
->getMock('Drupal\\Core\\Routing\\RouteProviderInterface');
$state = $this
->getMock('\\Drupal\\Core\\State\\StateInterface');
$menu_storage = $this
->getMock('\\Drupal\\Core\\Entity\\EntityStorageInterface');
$page_display = $this
->getMock('Drupal\\views\\Plugin\\views\\display\\Page', array(
'initDisplay',
'getPath',
), array(
array(),
'default',
$display_manager
->getDefinition('page'),
$route_provider,
$state,
$menu_storage,
));
$page_display
->expects($this
->any())
->method('getPath')
->will($this
->onConsecutiveCalls($this
->returnValue('test_page'), $this
->returnValue('<object>malformed_path</object>'), $this
->returnValue('<script>alert("placeholder_page/%")</script>')));
$embed_display = $this
->getMock('Drupal\\views\\Plugin\\views\\display\\Embed', array(
'initDisplay',
), array(
array(),
'default',
$display_manager
->getDefinition('embed'),
));
$values = array();
$values['status'] = FALSE;
$values['display']['default']['id'] = 'default';
$values['display']['default']['display_title'] = 'Display';
$values['display']['default']['display_plugin'] = 'default';
$values['display']['page_1']['id'] = 'page_1';
$values['display']['page_1']['display_title'] = 'Page 1';
$values['display']['page_1']['display_plugin'] = 'page';
$values['display']['page_1']['display_options']['path'] = 'test_page';
$values['display']['page_2']['id'] = 'page_2';
$values['display']['page_2']['display_title'] = 'Page 2';
$values['display']['page_2']['display_plugin'] = 'page';
$values['display']['page_2']['display_options']['path'] = '<object>malformed_path</object>';
$values['display']['page_3']['id'] = 'page_3';
$values['display']['page_3']['display_title'] = 'Page 3';
$values['display']['page_3']['display_plugin'] = 'page';
$values['display']['page_3']['display_options']['path'] = '<script>alert("placeholder_page/%")</script>';
$values['display']['embed']['id'] = 'embed';
$values['display']['embed']['display_title'] = 'Embedded';
$values['display']['embed']['display_plugin'] = 'embed';
$display_manager
->expects($this
->any())
->method('createInstance')
->will($this
->returnValueMap(array(
array(
'default',
$values['display']['default'],
$default_display,
),
array(
'page',
$values['display']['page_1'],
$page_display,
),
array(
'page',
$values['display']['page_2'],
$page_display,
),
array(
'page',
$values['display']['page_3'],
$page_display,
),
array(
'embed',
$values['display']['embed'],
$embed_display,
),
)));
$container = new ContainerBuilder();
$user = $this
->getMock('Drupal\\Core\\Session\\AccountInterface');
$request_stack = new RequestStack();
$request_stack
->push(new Request());
$views_data = $this
->getMockBuilder('Drupal\\views\\ViewsData')
->disableOriginalConstructor()
->getMock();
$route_provider = $this
->getMock('Drupal\\Core\\Routing\\RouteProviderInterface');
$executable_factory = new ViewExecutableFactory($user, $request_stack, $views_data, $route_provider);
$container
->set('views.executable', $executable_factory);
$container
->set('plugin.manager.views.display', $display_manager);
\Drupal::setContainer($container);
$entity_type = $this
->getMock('Drupal\\Core\\Entity\\EntityTypeInterface');
$view_list_builder = new TestViewListBuilder($entity_type, $storage, $display_manager);
$view_list_builder
->setStringTranslation($this
->getStringTranslationStub());
$view = new View($values, 'view');
$row = $view_list_builder
->buildRow($view);
$expected_displays = array(
'Embed admin label',
'Page admin label',
'Page admin label',
'Page admin label',
);
$this
->assertEquals($expected_displays, $row['data']['view_name']['data']['#displays']);
$display_paths = $row['data']['path']['data']['#items'];
$this
->assertEquals('/test_page, /<object>malformed_path</object>, /<script>alert("placeholder_page/%")</script>', implode(', ', $display_paths));
$this
->assertFalse(SafeMarkup::isSafe('/<object>malformed_path</object>'), '/<script>alert("/<object>malformed_path</object> is not marked safe.');
$this
->assertFalse(SafeMarkup::isSafe('/<script>alert("placeholder_page/%")'), '/<script>alert("/<script>alert("placeholder_page/%") is not marked safe.');
}
}
class TestViewListBuilder extends ViewListBuilder {
public function buildOperations(EntityInterface $entity) {
return array();
}
}