Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.14.152.212
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
3 /
react /
socket /
tests /
Delete
Unzip
Name
Size
Permission
Date
Action
Stub
[ DIR ]
drwxr-xr-x
2018-10-01 09:00
ConnectionTest.php
1.49
KB
-rw-r--r--
2018-10-01 09:00
ConnectorTest.php
4.42
KB
-rw-r--r--
2018-10-01 09:00
DnsConnectorTest.php
12.58
KB
-rw-r--r--
2018-10-01 09:00
FixedUriConnectorTest.php
525
B
-rw-r--r--
2018-10-01 09:00
FunctionalConnectorTest.php
809
B
-rw-r--r--
2018-10-01 09:00
FunctionalSecureServerTest.php
19.72
KB
-rw-r--r--
2018-10-01 09:00
FunctionalTcpServerTest.php
8.95
KB
-rw-r--r--
2018-10-01 09:00
IntegrationTest.php
11.36
KB
-rw-r--r--
2018-10-01 09:00
LimitingServerTest.php
6.03
KB
-rw-r--r--
2018-10-01 09:00
SecureConnectorTest.php
8.72
KB
-rw-r--r--
2018-10-01 09:00
SecureIntegrationTest.php
6.67
KB
-rw-r--r--
2018-10-01 09:00
SecureServerTest.php
3.24
KB
-rw-r--r--
2018-10-01 09:00
ServerTest.php
5.74
KB
-rw-r--r--
2018-10-01 09:00
TcpConnectorTest.php
8.74
KB
-rw-r--r--
2018-10-01 09:00
TcpServerTest.php
7.72
KB
-rw-r--r--
2018-10-01 09:00
TestCase.php
2.66
KB
-rw-r--r--
2018-10-01 09:00
TimeoutConnectorTest.php
4.99
KB
-rw-r--r--
2018-10-01 09:00
UnixConnectorTest.php
1.91
KB
-rw-r--r--
2018-10-01 09:00
UnixServerTest.php
7.86
KB
-rw-r--r--
2018-10-01 09:00
Save
Rename
<?php namespace React\Tests\Socket; use React\EventLoop\Factory; use React\Socket\Server; use React\Socket\TcpConnector; use React\Socket\UnixConnector; use Clue\React\Block; use React\Socket\ConnectionInterface; class ServerTest extends TestCase { const TIMEOUT = 0.1; public function testCreateServerWithZeroPortAssignsRandomPort() { $loop = Factory::create(); $server = new Server(0, $loop); $this->assertNotEquals(0, $server->getAddress()); $server->close(); } /** * @expectedException InvalidArgumentException */ public function testConstructorThrowsForInvalidUri() { $loop = $this->getMockBuilder('React\EventLoop\LoopInterface')->getMock(); $server = new Server('invalid URI', $loop); } public function testConstructorCreatesExpectedTcpServer() { $loop = Factory::create(); $server = new Server(0, $loop); $connector = new TcpConnector($loop); $connector->connect($server->getAddress()) ->then($this->expectCallableOnce(), $this->expectCallableNever()); $connection = Block\await($connector->connect($server->getAddress()), $loop, self::TIMEOUT); $connection->close(); $server->close(); } public function testConstructorCreatesExpectedUnixServer() { if (!in_array('unix', stream_get_transports())) { $this->markTestSkipped('Unix domain sockets (UDS) not supported on your platform (Windows?)'); } $loop = Factory::create(); $server = new Server($this->getRandomSocketUri(), $loop); $connector = new UnixConnector($loop); $connector->connect($server->getAddress()) ->then($this->expectCallableOnce(), $this->expectCallableNever()); $connection = Block\await($connector->connect($server->getAddress()), $loop, self::TIMEOUT); $connection->close(); $server->close(); } public function testConstructorThrowsForExistingUnixPath() { if (!in_array('unix', stream_get_transports())) { $this->markTestSkipped('Unix domain sockets (UDS) not supported on your platform (Windows?)'); } $loop = Factory::create(); try { $server = new Server('unix://' . __FILE__, $loop); $this->fail(); } catch (\RuntimeException $e) { if ($e->getCode() === 0) { // Zend PHP does not currently report a sane error $this->assertStringEndsWith('Unknown error', $e->getMessage()); } else { $this->assertEquals(SOCKET_EADDRINUSE, $e->getCode()); $this->assertStringEndsWith('Address already in use', $e->getMessage()); } } } public function testEmitsConnectionForNewConnection() { $loop = Factory::create(); $server = new Server(0, $loop); $server->on('connection', $this->expectCallableOnce()); $client = stream_socket_client($server->getAddress()); Block\sleep(0.1, $loop); } public function testDoesNotEmitConnectionForNewConnectionToPausedServer() { $loop = Factory::create(); $server = new Server(0, $loop); $server->pause(); $server->on('connection', $this->expectCallableNever()); $client = stream_socket_client($server->getAddress()); Block\sleep(0.1, $loop); } public function testDoesEmitConnectionForNewConnectionToResumedServer() { $loop = Factory::create(); $server = new Server(0, $loop); $server->pause(); $server->on('connection', $this->expectCallableOnce()); $client = stream_socket_client($server->getAddress()); Block\sleep(0.1, $loop); $server->resume(); Block\sleep(0.1, $loop); } public function testDoesNotAllowConnectionToClosedServer() { $loop = Factory::create(); $server = new Server(0, $loop); $server->on('connection', $this->expectCallableNever()); $address = $server->getAddress(); $server->close(); $client = @stream_socket_client($address); Block\sleep(0.1, $loop); $this->assertFalse($client); } public function testEmitsConnectionWithInheritedContextOptions() { if (defined('HHVM_VERSION') && version_compare(HHVM_VERSION, '3.13', '<')) { // https://3v4l.org/hB4Tc $this->markTestSkipped('Not supported on legacy HHVM < 3.13'); } $loop = Factory::create(); $server = new Server(0, $loop, array( 'backlog' => 4 )); $all = null; $server->on('connection', function (ConnectionInterface $conn) use (&$all) { $all = stream_context_get_options($conn->stream); }); $client = stream_socket_client($server->getAddress()); Block\sleep(0.1, $loop); $this->assertEquals(array('socket' => array('backlog' => 4)), $all); } public function testDoesNotEmitSecureConnectionForNewPlainConnection() { if (!function_exists('stream_socket_enable_crypto')) { $this->markTestSkipped('Not supported on your platform (outdated HHVM?)'); } $loop = Factory::create(); $server = new Server('tls://127.0.0.1:0', $loop, array( 'tls' => array( 'local_cert' => __DIR__ . '/../examples/localhost.pem' ) )); $server->on('connection', $this->expectCallableNever()); $client = stream_socket_client(str_replace('tls://', '', $server->getAddress())); Block\sleep(0.1, $loop); } private function getRandomSocketUri() { return "unix://" . sys_get_temp_dir() . DIRECTORY_SEPARATOR . uniqid(rand(), true) . '.sock'; } }