/
home
/
sjslayjy
/
public_html
/
theweavenest
/
vendor
/
rmccue
/
requests
/
tests
/
Upload File
HOME
<?php namespace WpOrg\Requests\Tests; use Requests_Exception_Transport_cURL; use Requests_Utility_FilteredIterator; use WpOrg\Requests\Tests\TestCase; use WpOrg\Requests\Utility\FilteredIterator; final class AutoloadTest extends TestCase { const MSG = 'The PSR-0 `Requests_...` class names in the Requests library are deprecated.'; /** * Verify that a deprecation notice is thrown when the "old" Requests class is loaded. */ public function testDeprecationNoticeThrownForOldRequestsClass() { $this->expectDeprecation(); $this->expectDeprecationMessage(self::MSG); require_once dirname(__DIR__) . '/library/Requests.php'; } /** * Verify that a deprecation notice is thrown when one of the other "old" Requests classes is autoloaded. */ public function testDeprecationNoticeThrownForOtherOldRequestsClass() { $this->expectDeprecation(); $this->expectDeprecationMessage(self::MSG); echo Requests_Exception_Transport_cURL::EASY; } /** * Verify that the deprecation layer works without a fatal error for extending a final class. * * Note: this test also verifies that the PSR-0 names are handled case-insensitively by the autoloader. * * @preserveGlobalState disabled * @runInSeparateProcess */ public function testAutoloadOfOldRequestsClassDoesNotThrowAFatalForFinalClass() { define('REQUESTS_SILENCE_PSR0_DEPRECATIONS', true); $this->assertInstanceOf(FilteredIterator::class, new Requests_utility_filteredIterator([], function() {})); } /** * Verify that the constant declaration in the previous test doesn't affect other tests. * * @coversNothing */ public function testConstantDeclarationDoesntInfluenceFurtherTests() { $this->assertFalse(defined('REQUESTS_SILENCE_PSR0_DEPRECATIONS')); } }