DisplayFeedTest.php

Same filename in this branch
  1. 11.x core/modules/views/tests/src/Functional/Plugin/DisplayFeedTest.php
Same filename and directory in other branches
  1. 9 core/modules/views/tests/src/Functional/Plugin/DisplayFeedTest.php
  2. 9 core/modules/views_ui/tests/src/Functional/DisplayFeedTest.php
  3. 8.9.x core/modules/views/tests/src/Functional/Plugin/DisplayFeedTest.php
  4. 8.9.x core/modules/views_ui/tests/src/Functional/DisplayFeedTest.php
  5. 10 core/modules/views/tests/src/Functional/Plugin/DisplayFeedTest.php
  6. 10 core/modules/views_ui/tests/src/Functional/DisplayFeedTest.php

Namespace

Drupal\Tests\views_ui\Functional

File

core/modules/views_ui/tests/src/Functional/DisplayFeedTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\views_ui\Functional;


/**
 * Tests the UI for feed display plugin.
 *
 * @group views_ui
 * @see \Drupal\views\Plugin\views\display\Feed
 */
class DisplayFeedTest extends UITestBase {
  
  /**
   * Views used by this test.
   *
   * @var array
   */
  public static $testViews = [
    'test_display_feed',
  ];
  
  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'views_ui',
  ];
  
  /**
   * {@inheritdoc}
   */
  protected $defaultTheme = 'stark';
  
  /**
   * Tests feed display admin UI.
   */
  public function testFeedUI() : void {
    // Test the RSS feed.
    foreach (self::$testViews as $view_name) {
      $this->checkFeedViewUi($view_name);
    }
  }
  
  /**
   * Checks views UI for a specific feed view.
   *
   * @param string $view_name
   *   The view name to check against.
   */
  protected function checkFeedViewUi($view_name) : void {
    $this->drupalGet('admin/structure/views');
    // Verify that the page lists the $view_name view.
    // Regression test: ViewListBuilder::getDisplayPaths() did not properly
    // check whether a DisplayPluginCollection was returned in iterating over
    // all displays.
    $this->assertSession()
      ->pageTextContains($view_name);
    // Check the attach TO interface.
    $this->drupalGet('admin/structure/views/nojs/display/' . $view_name . '/feed_1/displays');
    // Display labels should be escaped.
    $this->assertSession()
      ->assertEscaped('<em>Page</em>');
    // Load all the options of the checkbox.
    $result = $this->xpath('//div[@id="edit-displays"]/div');
    $options = [];
    foreach ($result as $item) {
      $input_node = $item->find('css', 'input');
      if ($input_node->hasAttribute('value')) {
        $options[] = $input_node->getAttribute('value');
      }
    }
    $this->assertEquals([
      'default',
      'page',
    ], $options, 'Make sure all displays appears as expected.');
    // Post and save this and check the output.
    $this->drupalGet('admin/structure/views/nojs/display/' . $view_name . '/feed_1/displays');
    $this->submitForm([
      'displays[page]' => 'page',
    ], 'Apply');
    // Options summary should be escaped.
    $this->assertSession()
      ->assertEscaped('<em>Page</em>');
    $this->assertSession()
      ->responseNotContains('<em>Page</em>');
    $this->drupalGet('admin/structure/views/view/' . $view_name . '/edit/feed_1');
    $this->assertSession()
      ->elementTextContains('xpath', '//*[@id="views-feed-1-displays"]', 'Page');
    // Add the default display, so there should now be multiple displays.
    $this->drupalGet('admin/structure/views/nojs/display/' . $view_name . '/feed_1/displays');
    $this->submitForm([
      'displays[default]' => 'default',
    ], 'Apply');
    $this->drupalGet('admin/structure/views/view/' . $view_name . '/edit/feed_1');
    $this->assertSession()
      ->elementTextContains('xpath', '//*[@id="views-feed-1-displays"]', 'Multiple displays');
  }

}

Classes

Title Deprecated Summary
DisplayFeedTest Tests the UI for feed display plugin.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.