2009-01-08 00:00:54 +01:00
|
|
|
<?php
|
2016-08-19 00:51:35 +02:00
|
|
|
|
2016-10-14 03:30:05 +02:00
|
|
|
namespace SilverStripe\Control\Tests;
|
|
|
|
|
2017-06-22 12:50:45 +02:00
|
|
|
use SilverStripe\Control\Controller;
|
2016-08-19 00:51:35 +02:00
|
|
|
use SilverStripe\Control\Director;
|
|
|
|
use SilverStripe\Control\HTTP;
|
2017-06-22 12:50:45 +02:00
|
|
|
use SilverStripe\Control\HTTPRequest;
|
|
|
|
use SilverStripe\Control\HTTPResponse;
|
2018-06-12 15:26:19 +02:00
|
|
|
use SilverStripe\Control\Middleware\HTTPCacheControlMiddleware;
|
2018-06-14 01:46:28 +02:00
|
|
|
use SilverStripe\Control\Session;
|
2018-07-19 02:25:27 +02:00
|
|
|
use SilverStripe\Core\Config\Config;
|
2017-06-22 12:50:45 +02:00
|
|
|
use SilverStripe\Dev\FunctionalTest;
|
2016-08-19 00:51:35 +02:00
|
|
|
|
2009-01-08 00:00:54 +01:00
|
|
|
/**
|
|
|
|
* Tests the {@link HTTP} class
|
|
|
|
*
|
|
|
|
*/
|
2016-12-16 05:34:21 +01:00
|
|
|
class HTTPTest extends FunctionalTest
|
|
|
|
{
|
2021-10-27 04:39:47 +02:00
|
|
|
protected function setUp(): void
|
2018-06-12 15:26:19 +02:00
|
|
|
{
|
|
|
|
parent::setUp();
|
2018-06-13 07:56:47 +02:00
|
|
|
// Set to disabled at null forcing level
|
|
|
|
HTTPCacheControlMiddleware::config()
|
|
|
|
->set('defaultState', 'disabled')
|
|
|
|
->set('defaultForcingLevel', 0);
|
2018-06-12 15:26:19 +02:00
|
|
|
HTTPCacheControlMiddleware::reset();
|
|
|
|
}
|
2016-12-16 05:34:21 +01:00
|
|
|
|
|
|
|
public function testAddCacheHeaders()
|
|
|
|
{
|
|
|
|
$body = "<html><head></head><body><h1>Mysite</h1></body></html>";
|
|
|
|
$response = new HTTPResponse($body, 200);
|
2018-06-12 15:26:19 +02:00
|
|
|
HTTPCacheControlMiddleware::singleton()->publicCache();
|
2018-06-13 03:56:47 +02:00
|
|
|
HTTPCacheControlMiddleware::singleton()->setMaxAge(30);
|
2016-12-16 05:34:21 +01:00
|
|
|
|
2018-06-14 01:46:28 +02:00
|
|
|
$this->addCacheHeaders($response);
|
2016-12-16 05:34:21 +01:00
|
|
|
$this->assertNotEmpty($response->getHeader('Cache-Control'));
|
|
|
|
|
2018-06-12 15:26:19 +02:00
|
|
|
// Ensure cache headers are set correctly when disabled via config (e.g. when dev)
|
2018-06-13 07:56:47 +02:00
|
|
|
HTTPCacheControlMiddleware::config()
|
|
|
|
->set('defaultState', 'disabled')
|
|
|
|
->set('defaultForcingLevel', HTTPCacheControlMiddleware::LEVEL_DISABLED);
|
2018-06-12 15:26:19 +02:00
|
|
|
HTTPCacheControlMiddleware::reset();
|
|
|
|
HTTPCacheControlMiddleware::singleton()->publicCache();
|
2018-06-13 03:56:47 +02:00
|
|
|
HTTPCacheControlMiddleware::singleton()->setMaxAge(30);
|
2016-12-16 05:34:21 +01:00
|
|
|
$response = new HTTPResponse($body, 200);
|
2018-06-14 01:46:28 +02:00
|
|
|
$this->addCacheHeaders($response);
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertStringContainsString('no-cache', $response->getHeader('Cache-Control'));
|
|
|
|
$this->assertStringContainsString('no-store', $response->getHeader('Cache-Control'));
|
|
|
|
$this->assertStringContainsString('must-revalidate', $response->getHeader('Cache-Control'));
|
2016-12-16 05:34:21 +01:00
|
|
|
|
|
|
|
// Ensure max-age setting is respected in production.
|
2018-06-13 07:56:47 +02:00
|
|
|
HTTPCacheControlMiddleware::config()
|
|
|
|
->set('defaultState', 'disabled')
|
|
|
|
->set('defaultForcingLevel', 0);
|
2018-06-12 15:26:19 +02:00
|
|
|
HTTPCacheControlMiddleware::reset();
|
|
|
|
HTTPCacheControlMiddleware::singleton()->publicCache();
|
2018-06-13 03:56:47 +02:00
|
|
|
HTTPCacheControlMiddleware::singleton()->setMaxAge(30);
|
2016-12-16 05:34:21 +01:00
|
|
|
$response = new HTTPResponse($body, 200);
|
2018-06-14 01:46:28 +02:00
|
|
|
$this->addCacheHeaders($response);
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertStringContainsString('max-age=30', $response->getHeader('Cache-Control'));
|
|
|
|
$this->assertStringNotContainsString('max-age=0', $response->getHeader('Cache-Control'));
|
2016-12-16 05:34:21 +01:00
|
|
|
|
|
|
|
// Still "live": Ensure header's aren't overridden if already set (using purposefully different values).
|
2020-04-20 19:58:09 +02:00
|
|
|
$headers = [
|
2016-12-16 05:34:21 +01:00
|
|
|
'Vary' => '*',
|
|
|
|
'Pragma' => 'no-cache',
|
|
|
|
'Cache-Control' => 'max-age=0, no-cache, no-store',
|
2020-04-20 19:58:09 +02:00
|
|
|
];
|
2018-06-14 01:46:28 +02:00
|
|
|
foreach ($headers as $header => $value) {
|
|
|
|
$response->addHeader($header, $value);
|
|
|
|
}
|
2018-06-12 15:26:19 +02:00
|
|
|
HTTPCacheControlMiddleware::reset();
|
|
|
|
HTTPCacheControlMiddleware::singleton()->publicCache();
|
2018-06-13 03:56:47 +02:00
|
|
|
HTTPCacheControlMiddleware::singleton()->setMaxAge(30);
|
2018-06-14 01:46:28 +02:00
|
|
|
$this->addCacheHeaders($response);
|
|
|
|
foreach ($headers as $header => $value) {
|
|
|
|
$this->assertEquals($value, $response->getHeader($header));
|
2016-12-16 05:34:21 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testConfigVary()
|
|
|
|
{
|
|
|
|
$body = "<html><head></head><body><h1>Mysite</h1></body></html>";
|
|
|
|
$response = new HTTPResponse($body, 200);
|
2018-06-14 01:46:28 +02:00
|
|
|
HTTPCacheControlMiddleware::singleton()
|
|
|
|
->setMaxAge(30)
|
|
|
|
->setVary('X-Requested-With, X-Forwarded-Protocol');
|
|
|
|
$this->addCacheHeaders($response);
|
2016-12-16 05:34:21 +01:00
|
|
|
|
2018-06-14 01:46:28 +02:00
|
|
|
// Vary set properly
|
2016-12-16 05:34:21 +01:00
|
|
|
$v = $response->getHeader('Vary');
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertStringContainsString("X-Forwarded-Protocol", $v);
|
|
|
|
$this->assertStringContainsString("X-Requested-With", $v);
|
|
|
|
$this->assertStringNotContainsString("Cookie", $v);
|
|
|
|
$this->assertStringNotContainsString("User-Agent", $v);
|
|
|
|
$this->assertStringNotContainsString("Accept", $v);
|
2016-12-16 05:34:21 +01:00
|
|
|
|
2018-06-14 01:46:28 +02:00
|
|
|
// No vary
|
|
|
|
HTTPCacheControlMiddleware::singleton()
|
|
|
|
->setMaxAge(30)
|
|
|
|
->setVary(null);
|
2018-06-12 15:26:19 +02:00
|
|
|
HTTPCacheControlMiddleware::reset();
|
2018-06-14 01:46:28 +02:00
|
|
|
HTTPCacheControlMiddleware::config()
|
|
|
|
->set('defaultVary', []);
|
2016-12-16 05:34:21 +01:00
|
|
|
|
|
|
|
$response = new HTTPResponse($body, 200);
|
2018-06-14 01:46:28 +02:00
|
|
|
$this->addCacheHeaders($response);
|
2016-12-16 05:34:21 +01:00
|
|
|
$v = $response->getHeader('Vary');
|
|
|
|
$this->assertEmpty($v);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Tests {@link HTTP::getLinksIn()}
|
|
|
|
*/
|
|
|
|
public function testGetLinksIn()
|
|
|
|
{
|
|
|
|
$content = '
|
2010-04-13 05:21:33 +02:00
|
|
|
<h2><a href="/">My Cool Site</a></h2>
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2010-04-13 05:21:33 +02:00
|
|
|
<p>
|
|
|
|
A boy went <a href="home/">home</a> to see his <span><a href="mother/">mother</a></span>. This
|
|
|
|
involved a short <a href="$Journey">journey</a>, as well as some <a href="space travel">space travel</a>
|
|
|
|
and <a href=unquoted>unquoted</a> events, as well as a <a href=\'single quote\'>single quote</a> from
|
|
|
|
his <a href="/father">father</a>.
|
|
|
|
</p>
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2010-04-13 05:21:33 +02:00
|
|
|
<p>
|
|
|
|
There were also some elements with extra <a class=attribute href=\'attributes\'>attributes</a> which
|
|
|
|
played a part in his <a href=journey"extra id="JourneyLink">journey</a>. HE ALSO DISCOVERED THE
|
|
|
|
<A HREF="CAPS LOCK">KEY</a>. Later he got his <a href="quotes \'mixed\' up">mixed up</a>.
|
|
|
|
</p>
|
2012-12-08 12:20:20 +01:00
|
|
|
';
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2020-04-20 19:58:09 +02:00
|
|
|
$expected = [
|
2016-12-16 05:34:21 +01:00
|
|
|
'/', 'home/', 'mother/', '$Journey', 'space travel', 'unquoted', 'single quote', '/father', 'attributes',
|
|
|
|
'journey', 'CAPS LOCK', 'quotes \'mixed\' up'
|
2020-04-20 19:58:09 +02:00
|
|
|
];
|
2016-12-16 05:34:21 +01:00
|
|
|
|
|
|
|
$result = HTTP::getLinksIn($content);
|
|
|
|
|
2021-12-13 09:05:33 +01:00
|
|
|
// Results don't necessarily come out in the order they are in the $content param.
|
2016-12-16 05:34:21 +01:00
|
|
|
sort($result);
|
|
|
|
sort($expected);
|
|
|
|
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertIsArray($result);
|
2016-12-16 05:34:21 +01:00
|
|
|
$this->assertEquals($expected, $result, 'Test that all links within the content are found.');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Tests {@link HTTP::setGetVar()}
|
|
|
|
*/
|
|
|
|
public function testSetGetVar()
|
|
|
|
{
|
|
|
|
// Hackery to work around volatile URL formats in test invocation,
|
|
|
|
// and the inability of Director::absoluteBaseURL() to produce consistent URLs.
|
2017-06-22 12:50:45 +02:00
|
|
|
Director::mockRequest(function (HTTPRequest $request) {
|
|
|
|
$controller = new Controller();
|
|
|
|
$controller->setRequest($request);
|
|
|
|
$controller->pushCurrent();
|
|
|
|
try {
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertStringContainsString(
|
2017-06-22 12:50:45 +02:00
|
|
|
'relative/url?foo=bar',
|
2016-12-16 05:34:21 +01:00
|
|
|
HTTP::setGetVar('foo', 'bar'),
|
|
|
|
'Omitting a URL falls back to current URL'
|
|
|
|
);
|
2017-06-22 12:50:45 +02:00
|
|
|
} finally {
|
|
|
|
$controller->popCurrent();
|
|
|
|
}
|
|
|
|
}, 'relative/url/');
|
2016-12-16 05:34:21 +01:00
|
|
|
|
|
|
|
$this->assertEquals(
|
2019-04-15 04:50:46 +02:00
|
|
|
'/relative/url?foo=bar',
|
2016-12-16 05:34:21 +01:00
|
|
|
HTTP::setGetVar('foo', 'bar', 'relative/url'),
|
|
|
|
'Relative URL without existing query params'
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertEquals(
|
2019-04-15 04:50:46 +02:00
|
|
|
'/relative/url?baz=buz&foo=bar',
|
2016-12-16 05:34:21 +01:00
|
|
|
HTTP::setGetVar('foo', 'bar', '/relative/url?baz=buz'),
|
|
|
|
'Relative URL with existing query params, and new added key'
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertEquals(
|
2017-10-31 10:17:55 +01:00
|
|
|
'http://test.com/?foo=new&buz=baz',
|
2016-12-16 05:34:21 +01:00
|
|
|
HTTP::setGetVar('foo', 'new', 'http://test.com/?foo=old&buz=baz'),
|
2021-12-13 09:05:33 +01:00
|
|
|
'Absolute URL without path and multiple existing query params, overwriting an existing parameter'
|
2016-12-16 05:34:21 +01:00
|
|
|
);
|
|
|
|
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertStringContainsString(
|
2016-12-16 05:34:21 +01:00
|
|
|
'http://test.com/?foo=new',
|
|
|
|
HTTP::setGetVar('foo', 'new', 'http://test.com/?foo=&foo=old'),
|
|
|
|
'Absolute URL and empty query param'
|
|
|
|
);
|
|
|
|
// http_build_query() escapes angular brackets, they should be correctly urldecoded by the browser client
|
|
|
|
$this->assertEquals(
|
2017-10-31 10:17:55 +01:00
|
|
|
'http://test.com/?foo%5Btest%5D=one&foo%5Btest%5D=two',
|
2016-12-16 05:34:21 +01:00
|
|
|
HTTP::setGetVar('foo[test]', 'two', 'http://test.com/?foo[test]=one'),
|
|
|
|
'Absolute URL and PHP array query string notation'
|
|
|
|
);
|
|
|
|
|
2020-04-20 19:58:09 +02:00
|
|
|
$urls = [
|
2016-12-16 05:34:21 +01:00
|
|
|
'http://www.test.com:8080',
|
|
|
|
'http://test.com:3000/',
|
|
|
|
'http://test.com:3030/baz/',
|
|
|
|
'http://baz:foo@test.com',
|
|
|
|
'http://baz@test.com/',
|
|
|
|
'http://baz:foo@test.com:8080',
|
|
|
|
'http://baz@test.com:8080'
|
2020-04-20 19:58:09 +02:00
|
|
|
];
|
2016-12-16 05:34:21 +01:00
|
|
|
|
|
|
|
foreach ($urls as $testURL) {
|
|
|
|
$this->assertEquals(
|
2018-01-16 19:39:30 +01:00
|
|
|
$testURL . '?foo=bar',
|
2016-12-16 05:34:21 +01:00
|
|
|
HTTP::setGetVar('foo', 'bar', $testURL),
|
|
|
|
'Absolute URL and Port Number'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test that the the get_mime_type() works correctly
|
|
|
|
*/
|
|
|
|
public function testGetMimeType()
|
|
|
|
{
|
2017-10-03 03:52:23 +02:00
|
|
|
$this->assertEquals('text/plain', HTTP::get_mime_type('file.csv'));
|
|
|
|
$this->assertEquals('image/gif', HTTP::get_mime_type('file.gif'));
|
|
|
|
$this->assertEquals('text/html', HTTP::get_mime_type('file.html'));
|
|
|
|
$this->assertEquals('image/jpeg', HTTP::get_mime_type('file.jpg'));
|
2017-11-25 17:56:50 +01:00
|
|
|
$this->assertEquals('image/jpeg', HTTP::get_mime_type('upperfile.JPG'));
|
2017-10-03 03:52:23 +02:00
|
|
|
$this->assertEquals('image/png', HTTP::get_mime_type('file.png'));
|
2016-12-16 05:34:21 +01:00
|
|
|
$this->assertEquals(
|
|
|
|
'image/vnd.adobe.photoshop',
|
2017-10-03 03:52:23 +02:00
|
|
|
HTTP::get_mime_type('file.psd')
|
2016-12-16 05:34:21 +01:00
|
|
|
);
|
2017-10-03 03:52:23 +02:00
|
|
|
$this->assertEquals('audio/x-wav', HTTP::get_mime_type('file.wav'));
|
2016-12-16 05:34:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test that absoluteURLs correctly transforms urls within CSS to absolute
|
|
|
|
*/
|
|
|
|
public function testAbsoluteURLsCSS()
|
|
|
|
{
|
2022-10-10 23:19:31 +02:00
|
|
|
foreach ([true, false] as $withTrailingSlash) {
|
|
|
|
// The results should be the same with both settings, since files should never have trailing slashes.
|
|
|
|
Controller::config()->set('add_trailing_slash', $withTrailingSlash);
|
|
|
|
|
|
|
|
$this->withBaseURL(
|
|
|
|
'http://www.silverstripe.org/',
|
|
|
|
function () {
|
|
|
|
|
|
|
|
// background-image
|
|
|
|
// Note that using /./ in urls is absolutely acceptable
|
|
|
|
$this->assertEquals(
|
|
|
|
'<div style="background-image: url(\'http://www.silverstripe.org/./images/mybackground.gif\');">' . 'Content</div>',
|
|
|
|
HTTP::absoluteURLs('<div style="background-image: url(\'./images/mybackground.gif\');">Content</div>')
|
|
|
|
);
|
|
|
|
|
|
|
|
// background
|
|
|
|
$this->assertEquals(
|
|
|
|
'<div style="background: url(\'http://www.silverstripe.org/images/mybackground.gif\');">Content</div>',
|
|
|
|
HTTP::absoluteURLs('<div style="background: url(\'images/mybackground.gif\');">Content</div>')
|
|
|
|
);
|
|
|
|
|
|
|
|
// list-style-image
|
|
|
|
$this->assertEquals(
|
|
|
|
'<div style=\'background: url(http://www.silverstripe.org/list.png);\'>Content</div>',
|
|
|
|
HTTP::absoluteURLs('<div style=\'background: url(list.png);\'>Content</div>')
|
|
|
|
);
|
|
|
|
|
|
|
|
// list-style
|
|
|
|
$this->assertEquals(
|
|
|
|
'<div style=\'background: url("http://www.silverstripe.org/./assets/list.png");\'>Content</div>',
|
|
|
|
HTTP::absoluteURLs('<div style=\'background: url("./assets/list.png");\'>Content</div>')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
2016-12-16 05:34:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test that absoluteURLs correctly transforms urls within html attributes to absolute
|
|
|
|
*/
|
|
|
|
public function testAbsoluteURLsAttributes()
|
|
|
|
{
|
2022-10-10 23:19:31 +02:00
|
|
|
foreach ([true, false] as $withTrailingSlash) {
|
|
|
|
Controller::config()->set('add_trailing_slash', $withTrailingSlash);
|
|
|
|
$slash = $withTrailingSlash ? '/' : '';
|
|
|
|
|
|
|
|
$this->withBaseURL(
|
|
|
|
'http://www.silverstripe.org/',
|
|
|
|
function () use ($slash) {
|
|
|
|
//empty links
|
|
|
|
$this->assertEquals(
|
|
|
|
"<a href=\"http://www.silverstripe.org{$slash}\">test</a>",
|
|
|
|
HTTP::absoluteURLs('<a href="">test</a>')
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertEquals(
|
|
|
|
"<a href=\"http://www.silverstripe.org{$slash}\">test</a>",
|
|
|
|
HTTP::absoluteURLs('<a href="/">test</a>')
|
|
|
|
);
|
|
|
|
|
|
|
|
//relative
|
|
|
|
$this->assertEquals(
|
|
|
|
"<a href=\"http://www.silverstripe.org{$slash}\">test</a>",
|
|
|
|
HTTP::absoluteURLs('<a href="./">test</a>')
|
|
|
|
);
|
|
|
|
$this->assertEquals(
|
|
|
|
"<a href=\"http://www.silverstripe.org{$slash}\">test</a>",
|
|
|
|
HTTP::absoluteURLs('<a href=".">test</a>')
|
|
|
|
);
|
|
|
|
|
|
|
|
// links
|
|
|
|
$this->assertEquals(
|
|
|
|
"<a href='http://www.silverstripe.org/blog{$slash}'>SS Blog</a>",
|
|
|
|
HTTP::absoluteURLs('<a href=\'/blog/\'>SS Blog</a>')
|
|
|
|
);
|
|
|
|
|
|
|
|
// background
|
|
|
|
// Note that using /./ in urls is absolutely acceptable
|
|
|
|
$this->assertEquals(
|
|
|
|
'<div background="http://www.silverstripe.org/./themes/silverstripe/images/nav-bg-repeat-2.png">' . 'SS Blog</div>',
|
|
|
|
HTTP::absoluteURLs('<div background="./themes/silverstripe/images/nav-bg-repeat-2.png">SS Blog</div>')
|
|
|
|
);
|
|
|
|
|
|
|
|
//check dot segments
|
|
|
|
// Assumption: dots are not removed
|
|
|
|
//if they were, the url should be: http://www.silverstripe.org/abc
|
|
|
|
$this->assertEquals(
|
|
|
|
"<a href=\"http://www.silverstripe.org/test/page/../../abc{$slash}\">Test</a>",
|
|
|
|
HTTP::absoluteURLs('<a href="test/page/../../abc">Test</a>')
|
|
|
|
);
|
|
|
|
|
|
|
|
// image
|
|
|
|
$this->assertEquals(
|
|
|
|
'<img src=\'http://www.silverstripe.org/themes/silverstripe/images/logo-org.png\' />',
|
|
|
|
HTTP::absoluteURLs('<img src=\'themes/silverstripe/images/logo-org.png\' />')
|
|
|
|
);
|
|
|
|
|
|
|
|
// link
|
|
|
|
$this->assertEquals(
|
|
|
|
'<link href=http://www.silverstripe.org/base.css />',
|
|
|
|
HTTP::absoluteURLs('<link href=base.css />')
|
|
|
|
);
|
|
|
|
|
|
|
|
// Test special characters are retained
|
|
|
|
$this->assertEquals(
|
|
|
|
"<a href=\"http://www.silverstripe.org/Security/changepassword{$slash}?m=3&t=7214fdfde\">password reset link</a>",
|
|
|
|
HTTP::absoluteURLs('<a href="/Security/changepassword?m=3&t=7214fdfde">password reset link</a>')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
2016-12-16 05:34:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Make sure URI schemes are not rewritten
|
|
|
|
*/
|
|
|
|
public function testURISchemes()
|
|
|
|
{
|
|
|
|
$this->withBaseURL(
|
|
|
|
'http://www.silverstripe.org/',
|
|
|
|
function ($test) {
|
|
|
|
|
|
|
|
// mailto
|
2017-06-22 12:50:45 +02:00
|
|
|
$this->assertEquals(
|
2016-12-16 05:34:21 +01:00
|
|
|
'<a href=\'mailto:admin@silverstripe.org\'>Email Us</a>',
|
|
|
|
HTTP::absoluteURLs('<a href=\'mailto:admin@silverstripe.org\'>Email Us</a>'),
|
|
|
|
'Email links are not rewritten'
|
|
|
|
);
|
|
|
|
|
|
|
|
// data uri
|
2017-06-22 12:50:45 +02:00
|
|
|
$this->assertEquals(
|
2018-01-16 19:39:30 +01:00
|
|
|
'<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38' . 'GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg==" alt="Red dot" />',
|
2016-12-16 05:34:21 +01:00
|
|
|
HTTP::absoluteURLs(
|
2018-01-16 19:39:30 +01:00
|
|
|
'<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAH' . 'ElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg==" alt="Red dot" />'
|
2016-12-16 05:34:21 +01:00
|
|
|
),
|
|
|
|
'Data URI links are not rewritten'
|
|
|
|
);
|
|
|
|
|
|
|
|
// call
|
2017-06-22 12:50:45 +02:00
|
|
|
$this->assertEquals(
|
2016-12-16 05:34:21 +01:00
|
|
|
'<a href="callto:12345678" />',
|
|
|
|
HTTP::absoluteURLs('<a href="callto:12345678" />'),
|
|
|
|
'Call to links are not rewritten'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testFilename2url()
|
|
|
|
{
|
|
|
|
$this->withBaseURL(
|
|
|
|
'http://www.silverstripe.org/',
|
2018-09-27 00:25:50 +02:00
|
|
|
function () {
|
2016-12-16 05:34:21 +01:00
|
|
|
$frameworkTests = ltrim(FRAMEWORK_DIR . '/tests', '/');
|
2017-06-22 12:50:45 +02:00
|
|
|
$this->assertEquals(
|
2016-12-16 05:34:21 +01:00
|
|
|
"http://www.silverstripe.org/$frameworkTests/php/Control/HTTPTest.php",
|
|
|
|
HTTP::filename2url(__FILE__)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
2018-06-14 01:46:28 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Process cache headers on a response
|
|
|
|
*
|
|
|
|
* @param HTTPResponse $response
|
|
|
|
*/
|
|
|
|
protected function addCacheHeaders(HTTPResponse $response)
|
|
|
|
{
|
|
|
|
// Mock request
|
|
|
|
$session = new Session([]);
|
|
|
|
$request = new HTTPRequest('GET', '/');
|
|
|
|
$request->setSession($session);
|
|
|
|
|
|
|
|
// Run middleware
|
|
|
|
HTTPCacheControlMiddleware::singleton()
|
2018-09-27 00:25:50 +02:00
|
|
|
->process($request, function () use ($response) {
|
2018-06-14 02:19:55 +02:00
|
|
|
return $response;
|
|
|
|
});
|
2018-06-14 01:46:28 +02:00
|
|
|
}
|
2009-01-08 00:00:54 +01:00
|
|
|
}
|