2010-11-23 20:38:15 +01:00
|
|
|
<?php
|
2016-08-19 00:51:35 +02:00
|
|
|
|
2016-10-14 03:30:05 +02:00
|
|
|
namespace SilverStripe\Control\Tests;
|
|
|
|
|
2016-08-19 00:51:35 +02:00
|
|
|
use SilverStripe\Dev\SapphireTest;
|
2016-09-09 08:43:05 +02:00
|
|
|
use SilverStripe\Control\HTTPResponse;
|
|
|
|
use SilverStripe\Control\HTTPResponse_Exception;
|
2016-08-19 00:51:35 +02:00
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
class HTTPResponseTest extends SapphireTest
|
|
|
|
{
|
|
|
|
|
|
|
|
public function testStatusDescriptionStripsNewlines()
|
|
|
|
{
|
|
|
|
$r = new HTTPResponse('my body', 200, "my description \nwith newlines \rand carriage returns");
|
|
|
|
$this->assertEquals(
|
|
|
|
"my description with newlines and carriage returns",
|
|
|
|
$r->getStatusDescription()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testHTTPResponseException()
|
|
|
|
{
|
|
|
|
$response = new HTTPResponse("Test", 200, 'OK');
|
|
|
|
|
|
|
|
// Confirm that the exception's statusCode and statusDescription take precedence
|
|
|
|
try {
|
|
|
|
throw new HTTPResponse_Exception($response, 404, 'not even found');
|
|
|
|
} catch (HTTPResponse_Exception $e) {
|
|
|
|
$this->assertEquals(404, $e->getResponse()->getStatusCode());
|
|
|
|
$this->assertEquals('not even found', $e->getResponse()->getStatusDescription());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Fail if we get to here
|
|
|
|
$this->assertFalse(true, 'Something went wrong with our test exception');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testExceptionContentPlainByDefault()
|
|
|
|
{
|
|
|
|
|
|
|
|
// Confirm that the exception's statusCode and statusDescription take precedence
|
|
|
|
try {
|
|
|
|
throw new HTTPResponse_Exception("Some content that may be from a hacker", 404, 'not even found');
|
|
|
|
} catch (HTTPResponse_Exception $e) {
|
|
|
|
$this->assertEquals("text/plain", $e->getResponse()->getHeader("Content-Type"));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Fail if we get to here
|
|
|
|
$this->assertFalse(true, 'Something went wrong with our test exception');
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
}
|