ヤミRoot VoidGate
User / IP
:
216.73.216.137
Host / Server
:
146.88.233.70 / dev.loger.cm
System
:
Linux hybrid1120.fr.ns.planethoster.net 3.10.0-957.21.2.el7.x86_64 #1 SMP Wed Jun 5 14:26:44 UTC 2019 x86_64
Command
|
Upload
|
Create
Mass Deface
|
Jumping
|
Symlink
|
Reverse Shell
Ping
|
Port Scan
|
DNS Lookup
|
Whois
|
Header
|
cURL
:
/
home
/
itrave
/
php
/
tests
/
HTTP_Request2
/
Request2
/
Adapter
/
Viewing: CurlTest.php
<?php /** * Unit tests for HTTP_Request2 package * * PHP version 5 * * LICENSE * * This source file is subject to BSD 3-Clause License that is bundled * with this package in the file LICENSE and available at the URL * https://raw.github.com/pear/HTTP_Request2/trunk/docs/LICENSE * * @category HTTP * @package HTTP_Request2 * @author Alexey Borzov <avb@php.net> * @copyright 2008-2016 Alexey Borzov <avb@php.net> * @license http://opensource.org/licenses/BSD-3-Clause BSD 3-Clause License * @link http://pear.php.net/package/HTTP_Request2 */ /** Tests for HTTP_Request2 package that require a working webserver */ require_once dirname(__FILE__) . '/CommonNetworkTest.php'; class UploadSizeObserver implements SplObserver { public $size; public function update(SplSubject $subject) { /* @var $subject HTTP_Request2 */ $event = $subject->getLastEvent(); if ('sentBody' == $event['name']) { $this->size = $event['data']; } } } /** * Unit test for Curl Adapter of HTTP_Request2 */ class HTTP_Request2_Adapter_CurlTest extends HTTP_Request2_Adapter_CommonNetworkTest { /** * Configuration for HTTP Request object * @var array */ protected $config = array( 'adapter' => 'HTTP_Request2_Adapter_Curl' ); /** * Checks whether redirect support in cURL is disabled by safe_mode or open_basedir * @return bool */ protected function isRedirectSupportDisabled() { return ini_get('safe_mode') || ini_get('open_basedir'); } public function testRedirectsDefault() { if ($this->isRedirectSupportDisabled()) { $this->markTestSkipped('Redirect support in cURL is disabled by safe_mode or open_basedir setting'); } else { parent::testRedirectsDefault(); } } public function testRedirectsStrict() { if ($this->isRedirectSupportDisabled()) { $this->markTestSkipped('Redirect support in cURL is disabled by safe_mode or open_basedir setting'); } elseif (version_compare(phpversion(), '5.3.2', '<')) { $this->markTestSkipped('CURLOPT_POSTREDIR required for strict redirects, available in PHP 5.3.2+'); } else { parent::testRedirectsStrict(); } } public function testRedirectsLimit() { if ($this->isRedirectSupportDisabled()) { $this->markTestSkipped('Redirect support in cURL is disabled by safe_mode or open_basedir setting'); } else { parent::testRedirectsLimit(); } } public function testRedirectsRelative() { if ($this->isRedirectSupportDisabled()) { $this->markTestSkipped('Redirect support in cURL is disabled by safe_mode or open_basedir setting'); } else { parent::testRedirectsRelative(); } } public function testRedirectsNonHTTP() { if ($this->isRedirectSupportDisabled()) { $this->markTestSkipped('Redirect support in cURL is disabled by safe_mode or open_basedir setting'); } else { parent::testRedirectsNonHTTP(); } } public function testCookieJarAndRedirect() { if ($this->isRedirectSupportDisabled()) { $this->markTestSkipped('Redirect support in cURL is disabled by safe_mode or open_basedir setting'); } else { parent::testCookieJarAndRedirect(); } } public function testBug17450() { if (!$this->isRedirectSupportDisabled()) { $this->markTestSkipped('Neither safe_mode nor open_basedir is enabled'); } $this->request->setUrl($this->baseUrl . 'redirects.php') ->setConfig(array('follow_redirects' => true)); try { $this->request->send(); $this->fail('Expected HTTP_Request2_Exception was not thrown'); } catch (HTTP_Request2_LogicException $e) { $this->assertEquals(HTTP_Request2_Exception::MISCONFIGURATION, $e->getCode()); } } public function testBug20440() { $this->request->setUrl($this->baseUrl . 'rawpostdata.php') ->setMethod(HTTP_Request2::METHOD_PUT) ->setHeader('Expect', '') ->setBody('This is a test'); $noredirects = clone $this->request; $noredirects->setConfig('follow_redirects', false) ->attach($observer = new UploadSizeObserver()); $noredirects->send(); // Curl sends body with Transfer-encoding: chunked, so size can be larger $this->assertGreaterThanOrEqual(14, $observer->size); $redirects = clone $this->request; $redirects->setConfig('follow_redirects', true) ->attach($observer = new UploadSizeObserver()); $redirects->send(); $this->assertGreaterThanOrEqual(14, $observer->size); } /** * An URL performing a redirect was used for storing cookies in a jar rather than target URL * * @link http://pear.php.net/bugs/bug.php?id=20561 */ public function testBug20561() { if ($this->isRedirectSupportDisabled()) { $this->markTestSkipped('Redirect support in cURL is disabled by safe_mode or open_basedir setting'); } else { $this->request->setUrl($this->baseUrl . 'redirects.php?special=youtube') ->setConfig(array( 'follow_redirects' => true, 'ssl_verify_peer' => false )) ->setCookieJar(true); $this->request->send(); $this->assertGreaterThan(0, count($this->request->getCookieJar()->getAll())); } } } ?>
Coded With 💗 by
0x6ick