Skip to content

Commit

Permalink
Add ChunkedDecoder to Server
Browse files Browse the repository at this point in the history
Add ServerTest

Fix

Order
  • Loading branch information
legionth committed Feb 19, 2017
1 parent 1a1b0aa commit 61d7b69
Show file tree
Hide file tree
Showing 2 changed files with 186 additions and 3 deletions.
16 changes: 13 additions & 3 deletions src/Server.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public function handleConnection(ConnectionInterface $conn)
$that->handleRequest($conn, $request);

if ($bodyBuffer !== '') {
$request->emit('data', array($bodyBuffer));
$conn->emit('data', array($bodyBuffer));
}
});

Expand Down Expand Up @@ -122,6 +122,15 @@ public function handleRequest(ConnectionInterface $conn, Request $request)
'[]'
);

$stream = $conn;
if ($request->hasHeader('Transfer-Encoding')) {
$transferEncodingHeader = $request->getHeader('Transfer-Encoding');
// 'chunked' must always be the final value of 'Transfer-Encoding' according to: https://tools.ietf.org/html/rfc7230#section-3.3.1
if (strtolower(end($transferEncodingHeader)) === 'chunked') {
$stream = new ChunkedDecoder($conn);
}
}

// forward pause/resume calls to underlying connection
$request->on('pause', array($conn, 'pause'));
$request->on('resume', array($conn, 'resume'));
Expand All @@ -133,10 +142,11 @@ public function handleRequest(ConnectionInterface $conn, Request $request)
});

// forward connection events to request
$conn->on('end', function () use ($request) {
$stream->on('end', function () use ($request) {
$request->emit('end');
});
$conn->on('data', function ($data) use ($request) {

$stream->on('data', function ($data) use ($request) {
$request->emit('data', array($data));
});

Expand Down
173 changes: 173 additions & 0 deletions tests/ServerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,179 @@ function ($data) use (&$buffer) {
$this->assertContains("\r\n\r\nError 400: Bad Request", $buffer);
}

public function testBodyDataWillBeSendViaRequestEvent()
{
$server = new Server($this->socket);

$dataEvent = $this->expectCallableOnceWith('hello');
$endEvent = $this->expectCallableNever();
$closeEvent = $this->expectCallableNever();
$errorEvent = $this->expectCallableNever();

$server->on('request', function (Request $request, Response $response) use ($dataEvent, $endEvent, $closeEvent, $errorEvent) {
$request->on('data', $dataEvent);
$request->on('end', $endEvent);
$request->on('close', $closeEvent);
$request->on('error', $errorEvent);
});

$this->socket->emit('connection', array($this->connection));

$data = "GET / HTTP/1.1\r\n";
$data .= "Host: example.com:80\r\n";
$data .= "Connection: close\r\n";
$data .= "Content-Length: 5\r\n";
$data .= "\r\n";
$data .= "hello";

$this->connection->emit('data', array($data));
}

public function testChunkedEncodedRequestWillBeParsedForRequestEvent()
{
$server = new Server($this->socket);

$dataEvent = $this->expectCallableOnceWith('hello');
$endEvent = $this->expectCallableOnce();
$closeEvent = $this->expectCallableNever();
$errorEvent = $this->expectCallableNever();

$server->on('request', function (Request $request, Response $response) use ($dataEvent, $endEvent, $closeEvent, $errorEvent) {
$request->on('data', $dataEvent);
$request->on('end', $endEvent);
$request->on('close', $closeEvent);
$request->on('error', $errorEvent);
});

$this->socket->emit('connection', array($this->connection));

$data = "GET / HTTP/1.1\r\n";
$data .= "Host: example.com:80\r\n";
$data .= "Connection: close\r\n";
$data .= "Transfer-Encoding: chunked\r\n";
$data .= "\r\n";
$data .= "5\r\nhello\r\n";
$data .= "0\r\n\r\n";

$this->connection->emit('data', array($data));
}

public function testChunkedEncodedRequestAdditionalDataWontBeEmitted()
{
$server = new Server($this->socket);

$dataEvent = $this->expectCallableOnceWith('hello');
$endEvent = $this->expectCallableOnce();
$closeEvent = $this->expectCallableNever();
$errorEvent = $this->expectCallableNever();

$server->on('request', function (Request $request, Response $response) use ($dataEvent, $endEvent, $closeEvent, $errorEvent) {
$request->on('data', $dataEvent);
$request->on('end', $endEvent);
$request->on('close', $closeEvent);
$request->on('error', $errorEvent);
});

$this->socket->emit('connection', array($this->connection));

$data = "GET / HTTP/1.1\r\n";
$data .= "Host: example.com:80\r\n";
$data .= "Connection: close\r\n";
$data .= "Transfer-Encoding: chunked\r\n";
$data .= "\r\n";
$data .= "5\r\nhello\r\n";
$data .= "0\r\n\r\n";
$data .= "2\r\nhi\r\n";

$this->connection->emit('data', array($data));
}

public function testEmptyChunkedEncodedRequest()
{
$server = new Server($this->socket);

$dataEvent = $this->expectCallableNever();
$endEvent = $this->expectCallableOnce();
$closeEvent = $this->expectCallableNever();
$errorEvent = $this->expectCallableNever();

$server->on('request', function (Request $request, Response $response) use ($dataEvent, $endEvent, $closeEvent, $errorEvent) {
$request->on('data', $dataEvent);
$request->on('end', $endEvent);
$request->on('close', $closeEvent);
$request->on('error', $errorEvent);
});

$this->socket->emit('connection', array($this->connection));

$data = "GET / HTTP/1.1\r\n";
$data .= "Host: example.com:80\r\n";
$data .= "Connection: close\r\n";
$data .= "Transfer-Encoding: chunked\r\n";
$data .= "\r\n";
$data .= "0\r\n\r\n";

$this->connection->emit('data', array($data));
}

public function testChunkedIsUpperCase()
{
$server = new Server($this->socket);

$dataEvent = $this->expectCallableOnceWith('hello');
$endEvent = $this->expectCallableOnce();
$closeEvent = $this->expectCallableNever();
$errorEvent = $this->expectCallableNever();

$server->on('request', function (Request $request, Response $response) use ($dataEvent, $endEvent, $closeEvent, $errorEvent) {
$request->on('data', $dataEvent);
$request->on('end', $endEvent);
$request->on('close', $closeEvent);
$request->on('error', $errorEvent);
});

$this->socket->emit('connection', array($this->connection));

$data = "GET / HTTP/1.1\r\n";
$data .= "Host: example.com:80\r\n";
$data .= "Connection: close\r\n";
$data .= "Transfer-Encoding: CHUNKED\r\n";
$data .= "\r\n";
$data .= "5\r\nhello\r\n";
$data .= "0\r\n\r\n";

$this->connection->emit('data', array($data));
}

public function testChunkedIsMixedUpperAndLowerCase()
{
$server = new Server($this->socket);

$dataEvent = $this->expectCallableOnceWith('hello');
$endEvent = $this->expectCallableOnce();
$closeEvent = $this->expectCallableNever();
$errorEvent = $this->expectCallableNever();

$server->on('request', function (Request $request, Response $response) use ($dataEvent, $endEvent, $closeEvent, $errorEvent) {
$request->on('data', $dataEvent);
$request->on('end', $endEvent);
$request->on('close', $closeEvent);
$request->on('error', $errorEvent);
});

$this->socket->emit('connection', array($this->connection));

$data = "GET / HTTP/1.1\r\n";
$data .= "Host: example.com:80\r\n";
$data .= "Connection: close\r\n";
$data .= "Transfer-Encoding: CHunKeD\r\n";
$data .= "\r\n";
$data .= "5\r\nhello\r\n";
$data .= "0\r\n\r\n";

$this->connection->emit('data', array($data));
}

private function createGetRequest()
{
$data = "GET / HTTP/1.1\r\n";
Expand Down

0 comments on commit 61d7b69

Please sign in to comment.