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; use Drupal\views\Tests\Wizard\WizardTestBase; /** * Tests the wizard. * * @group views_ui * @see \Drupal\views\Plugin\views\display\DisplayPluginBase * @see \Drupal\views\Plugin\views\display\PathPluginBase * @see \Drupal\views\Plugin\views\wizard\WizardPluginBase */ class WizardTest extends WizardTestBase { /** * Tests filling in the wizard with really long strings. */ public function testWizardFieldLength() { $view = []; $view['label'] = $this->randomMachineName(256); $view['id'] = strtolower($this->randomMachineName(129)); $view['page[create]'] = TRUE; $view['page[path]'] = $this->randomMachineName(255); $view['page[title]'] = $this->randomMachineName(256); $view['page[feed]'] = TRUE; $view['page[feed_properties][path]'] = $this->randomMachineName(255); $view['block[create]'] = TRUE; $view['block[title]'] = $this->randomMachineName(256); $view['rest_export[create]'] = TRUE; $view['rest_export[path]'] = $this->randomMachineName(255); $this->drupalPostForm('admin/structure/views/add', $view, t('Save and edit')); $this->assertText('Machine-readable name cannot be longer than 128 characters but is currently 129 characters long.'); $this->assertText('Path cannot be longer than 254 characters but is currently 255 characters long.'); $this->assertText('Page title cannot be longer than 255 characters but is currently 256 characters long.'); $this->assertText('View name cannot be longer than 255 characters but is currently 256 characters long.'); $this->assertText('Feed path cannot be longer than 254 characters but is currently 255 characters long.'); $this->assertText('Block title cannot be longer than 255 characters but is currently 256 characters long.'); $this->assertText('REST export path cannot be longer than 254 characters but is currently 255 characters long.'); $view['label'] = $this->randomMachineName(255); $view['id'] = strtolower($this->randomMachineName(128)); $view['page[create]'] = TRUE; $view['page[path]'] = $this->randomMachineName(254); $view['page[title]'] = $this->randomMachineName(255); $view['page[feed]'] = TRUE; $view['page[feed_properties][path]'] = $this->randomMachineName(254); $view['block[create]'] = TRUE; $view['block[title]'] = $this->randomMachineName(255); $view['rest_export[create]'] = TRUE; $view['rest_export[path]'] = $this->randomMachineName(254); $this->drupalPostForm('admin/structure/views/add', $view, t('Save and edit')); $this->assertUrl('admin/structure/views/view/' . $view['id'], [], 'Make sure the view saving was successful and the browser got redirected to the edit page.'); // Assert that the page title is correctly truncated. $this->assertText(views_ui_truncate($view['page[title]'], 32)); } }