Skip to content

Commit

Permalink
Merge pull request #253 from mnapoli/fix-216-better
Browse files Browse the repository at this point in the history
Fix #216 with a proper fix by upgrading hoa/fastcgi
  • Loading branch information
mnapoli committed Feb 24, 2019
2 parents 7b8c87b + e34c361 commit 2ad8984
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 25 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"symfony/filesystem": "^3.1|^4.0",
"symfony/process": "^3.3|^4.0",
"aws/aws-sdk-php": "^3.44",
"hoa/fastcgi": "3.17.01.10",
"hoa/fastcgi": "^3.19.02.19",
"hoa/socket": "1.17.05.16",
"psr/http-message": "^1.0"
},
Expand Down
18 changes: 1 addition & 17 deletions src/Runtime/PhpFpm.php
Original file line number Diff line number Diff line change
Expand Up @@ -105,22 +105,6 @@ public function proxy($event): LambdaResponse

$responseHeaders = array_change_key_case($responseHeaders, CASE_LOWER);

/**
* In some cases PHP-FPM sends logs into the FastCGI connection. That isn't valid and isn't supported
* by our FastCGI client library, so those logs end up mangled in the HTTP headers.
* We can't return them to the client as:
* - the response is broken
* - it contains internal logs
* Until we find a better solution we simply return an empty 500 response, because since there were logs sent
* through FastCGI something wrong must have happened anyway. Those logs will also be sent to CloudWatch
* so debugging is possible.
*
* @see https://github.com/mnapoli/bref/pull/216
*/
if (isset($responseHeaders['php message'])) {
return new LambdaResponse(500, [], '');
}

// Extract the status code
if (isset($responseHeaders['status'])) {
[$status] = explode(' ', $responseHeaders['status']);
Expand All @@ -129,7 +113,7 @@ public function proxy($event): LambdaResponse
}
unset($responseHeaders['status']);

$responseBody = $responder->getResponseContent();
$responseBody = (string) $responder->getResponseContent();

return new LambdaResponse((int) $status, $responseHeaders, $responseBody);
}
Expand Down
8 changes: 6 additions & 2 deletions tests/Runtime/PhpFpmTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -691,9 +691,13 @@ public function test response with cookies()

public function test response with error_log()
{
$headers = $this->get('error.php')->toApiGatewayFormat()['headers'];
$response = $this->get('error.php')->toApiGatewayFormat();

self::assertEquals([], (array) $headers);
self::assertStringStartsWith('PHP/', $response['headers']['x-powered-by'] ?? '');
unset($response['headers']['x-powered-by']);
self::assertEquals([
'content-type' => 'text/html; charset=UTF-8',
], $response['headers']);
}

private function assertGlobalVariables(array $event, array $expectedGlobalVariables): void
Expand Down
9 changes: 4 additions & 5 deletions tests/Sam/PhpFpmRuntimeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public function test error_log function()
{
$response = $this->invoke('/?error_log=1');

self::assertSame(500, $response->getStatusCode(), $this->logs);
$this->assertResponseSuccessful($response);
self::assertNotContains('This is a test log from error_log', $this->responseAsString($response));
self::assertContains('This is a test log from error_log', $this->logs);
}
Expand Down Expand Up @@ -84,10 +84,9 @@ public function test warnings are logged()
{
$response = $this->invoke('/?warning=1');

self::assertSame(500, $response->getStatusCode(), $this->logs);
// Unfortunately with the temporary fix in https://github.com/mnapoli/bref/pull/216
// we must settle for an empty 500 response for now
// self::assertEquals('Hello world!', $this->getBody($response), $this->logs);
$this->assertResponseSuccessful($response);
self::assertEquals('Hello world!', $this->getBody($response), $this->logs);
self::assertNotContains('This is a test warning', $this->responseAsString($response));
self::assertContains('Warning: This is a test warning in /var/task/tests/Sam', $this->logs);
}

Expand Down

0 comments on commit 2ad8984

Please sign in to comment.