You are here

class ViewListBuilderTest in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/views_ui/tests/src/Unit/ViewListBuilderTest.php \Drupal\Tests\views_ui\Unit\ViewListBuilderTest

@coversDefaultClass \Drupal\views_ui\ViewListBuilder @group views_ui

Hierarchy

Expanded class hierarchy of ViewListBuilderTest

File

core/modules/views_ui/tests/src/Unit/ViewListBuilderTest.php, line 24
Contains \Drupal\Tests\views_ui\Unit\ViewListBuilderTest.

Namespace

Drupal\Tests\views_ui\Unit
View source
class ViewListBuilderTest extends UnitTestCase {

  /**
   * Tests the listing of displays on a views list builder.
   *
   * @see \Drupal\views_ui\ViewListBuilder::getDisplaysList()
   * @covers ::buildRow
   */
  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);

    // Setup a view list builder with a mocked buildOperations method,
    // because t() is called on there.
    $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'];

    // These values will be escaped by Twig when rendered.
    $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.');
  }

}

Members

Namesort descending Modifiers Type Description Overrides
UnitTestCase::$randomGenerator protected property The random generator.
UnitTestCase::$root protected property The app root.
UnitTestCase::assertArrayEquals protected function Asserts if two arrays are equal by sorting them first.
UnitTestCase::getBlockMockWithMachineName protected function Mocks a block with a block plugin.
UnitTestCase::getClassResolverStub protected function Returns a stub class resolver.
UnitTestCase::getConfigFactoryStub public function Returns a stub config factory that behaves according to the passed in array.
UnitTestCase::getConfigStorageStub public function Returns a stub config storage that returns the supplied configuration.
UnitTestCase::getContainerWithCacheTagsInvalidator protected function Sets up a container with a cache tags invalidator.
UnitTestCase::getRandomGenerator protected function Gets the random generator for the utility methods.
UnitTestCase::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::randomMachineName public function Generates a unique random string containing letters and numbers.
UnitTestCase::setUp protected function 259
ViewListBuilderTest::testBuildRowEntityList public function Tests the listing of displays on a views list builder.