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 : 216.73.216.148
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
3 /
cboden /
ratchet /
tests /
unit /
Http /
Delete
Unzip
Name
Size
Permission
Date
Action
HttpRequestParserTest.php
1.6
KB
-rw-r--r--
2017-12-12 09:00
HttpServerTest.php
2.08
KB
-rw-r--r--
2017-12-12 09:00
OriginCheckTest.php
1.24
KB
-rw-r--r--
2017-12-12 09:00
RouterTest.php
7.08
KB
-rw-r--r--
2017-12-12 09:00
Save
Rename
<?php namespace Ratchet\Http; use Ratchet\AbstractMessageComponentTestCase; /** * @covers Ratchet\Http\HttpServer */ class HttpServerTest extends AbstractMessageComponentTestCase { public function setUp() { parent::setUp(); $this->_conn->httpHeadersReceived = true; } public function getConnectionClassString() { return '\Ratchet\ConnectionInterface'; } public function getDecoratorClassString() { return '\Ratchet\Http\HttpServer'; } public function getComponentClassString() { return '\Ratchet\Http\HttpServerInterface'; } public function testOpen() { $headers = "GET / HTTP/1.1\r\nHost: socketo.me\r\n\r\n"; $this->_conn->httpHeadersReceived = false; $this->_app->expects($this->once())->method('onOpen')->with($this->isExpectedConnection()); $this->_serv->onMessage($this->_conn, $headers); } public function testOnMessageAfterHeaders() { $headers = "GET / HTTP/1.1\r\nHost: socketo.me\r\n\r\n"; $this->_conn->httpHeadersReceived = false; $this->_serv->onMessage($this->_conn, $headers); $message = "Hello World!"; $this->_app->expects($this->once())->method('onMessage')->with($this->isExpectedConnection(), $message); $this->_serv->onMessage($this->_conn, $message); } public function testBufferOverflow() { $this->_conn->expects($this->once())->method('close'); $this->_conn->httpHeadersReceived = false; $this->_serv->onMessage($this->_conn, str_repeat('a', 5000)); } public function testCloseIfNotEstablished() { $this->_conn->httpHeadersReceived = false; $this->_conn->expects($this->once())->method('close'); $this->_serv->onError($this->_conn, new \Exception('Whoops!')); } public function testBufferHeaders() { $this->_conn->httpHeadersReceived = false; $this->_app->expects($this->never())->method('onOpen'); $this->_app->expects($this->never())->method('onMessage'); $this->_serv->onMessage($this->_conn, "GET / HTTP/1.1"); } }