OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
3-31-025chanakya
/
assets
/
payment
/
vendor
/
rmccue
/
requests
/
tests
/
Transport
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
03/26/2025 04:28:23 AM
rwxr-xr-x
📄
BaseTestCase.php
35.96 KB
03/26/2025 04:24:37 AM
rw-r--r--
📄
CurlTest.php
3.74 KB
03/26/2025 04:24:37 AM
rw-r--r--
📄
FsockopenTest.php
2.42 KB
03/26/2025 04:24:37 AM
rw-r--r--
Editing: CurlTest.php
Close
<?php namespace WpOrg\Requests\Tests\Transport; use WpOrg\Requests\Exception; use WpOrg\Requests\Requests; use WpOrg\Requests\Tests\Transport\BaseTestCase; use WpOrg\Requests\Transport\Curl; final class CurlTest extends BaseTestCase { protected $transport = Curl::class; public function testBadIP() { $this->expectException(Exception::class); $this->expectExceptionMessage('t resolve host'); parent::testBadIP(); } public function testExpiredHTTPS() { $this->expectException(Exception::class); $this->expectExceptionMessage('certificate subject name'); parent::testExpiredHTTPS(); } public function testRevokedHTTPS() { $this->expectException(Exception::class); $this->expectExceptionMessage('certificate subject name'); parent::testRevokedHTTPS(); } /** * Test that SSL fails with a bad certificate */ public function testBadDomain() { $this->expectException(Exception::class); $this->expectExceptionMessage('certificate subject name'); parent::testBadDomain(); } /** * @small */ public function testDoesntOverwriteExpectHeaderIfManuallySet() { $headers = [ 'Expect' => 'foo', ]; $request = Requests::post($this->httpbin('/post'), $headers, [], $this->getOptions()); $result = json_decode($request->body, true); $this->assertSame($headers['Expect'], $result['headers']['Expect']); } /** * @small */ public function testDoesntSetExpectHeaderIfBodyExactly1MbButProtocolIsnt11() { $options = [ 'protocol_version' => 1.0, ]; $request = Requests::post($this->httpbin('/post'), [], str_repeat('x', 1048576), $this->getOptions($options)); $result = json_decode($request->body, true); $this->assertFalse(isset($result['headers']['Expect'])); } /** * @small */ public function testSetsEmptyExpectHeaderWithDefaultSettings() { $request = Requests::post($this->httpbin('/post'), [], [], $this->getOptions()); $result = json_decode($request->body, true); $this->assertFalse(isset($result['headers']['Expect'])); } /** * @small */ public function testSetsEmptyExpectHeaderIfBodyIsANestedArrayLessThan1Mb() { $data = [ str_repeat('x', 148576), [ str_repeat('x', 548576), ], ]; $request = Requests::post($this->httpbin('/post'), [], $data, $this->getOptions()); $result = json_decode($request->body, true); $this->assertFalse(isset($result['headers']['Expect'])); } public function testSetsExpectHeaderIfBodyIsExactlyA1MbString() { $request = Requests::post($this->httpbin('/post'), [], str_repeat('x', 1048576), $this->getOptions()); $result = json_decode($request->body, true); $this->assertSame('100-Continue', $result['headers']['Expect']); } public function testSetsExpectHeaderIfBodyIsANestedArrayGreaterThan1Mb() { $data = [ str_repeat('x', 148576), [ str_repeat('x', 548576), [ str_repeat('x', 648576), ], ], ]; $request = Requests::post($this->httpbin('/post'), [], $data, $this->getOptions()); $result = json_decode($request->body, true); $this->assertSame('100-Continue', $result['headers']['Expect']); } public function testSetsExpectHeaderIfBodyExactly1Mb() { $request = Requests::post($this->httpbin('/post'), [], str_repeat('x', 1048576), $this->getOptions()); $result = json_decode($request->body, true); $this->assertSame('100-Continue', $result['headers']['Expect']); } /** * @small */ public function testSetsEmptyExpectHeaderIfBodySmallerThan1Mb() { $request = Requests::post($this->httpbin('/post'), [], str_repeat('x', 1048575), $this->getOptions()); $result = json_decode($request->body, true); $this->assertFalse(isset($result['headers']['Expect'])); } }