2008-07-18 01:32:31 +02:00
|
|
|
<?php
|
2015-10-12 06:34:34 +02:00
|
|
|
|
2016-10-14 03:30:05 +02:00
|
|
|
namespace SilverStripe\View\Tests;
|
|
|
|
|
2017-04-18 00:34:18 +02:00
|
|
|
use InvalidArgumentException;
|
2018-01-12 04:25:02 +01:00
|
|
|
use SilverStripe\Control\Director;
|
2016-08-19 00:51:35 +02:00
|
|
|
use SilverStripe\Core\Injector\Injector;
|
|
|
|
use SilverStripe\Dev\SapphireTest;
|
2019-01-15 22:36:53 +01:00
|
|
|
use SilverStripe\i18n\i18n;
|
2016-08-19 00:51:35 +02:00
|
|
|
use SilverStripe\View\Requirements;
|
|
|
|
use SilverStripe\View\ArrayData;
|
2018-02-14 04:24:12 +01:00
|
|
|
use Silverstripe\Assets\Dev\TestAssetStore;
|
2016-10-14 03:30:05 +02:00
|
|
|
use SilverStripe\View\Requirements_Backend;
|
2017-06-27 04:30:48 +02:00
|
|
|
use SilverStripe\Core\Manifest\ResourceURLGenerator;
|
|
|
|
use SilverStripe\Control\SimpleResourceURLGenerator;
|
2021-11-09 02:15:12 +01:00
|
|
|
use SilverStripe\Core\Config\Config;
|
2018-01-12 04:25:02 +01:00
|
|
|
use SilverStripe\View\SSViewer;
|
|
|
|
use SilverStripe\View\ThemeResourceLoader;
|
2016-08-19 00:51:35 +02:00
|
|
|
|
2008-07-18 01:32:31 +02:00
|
|
|
/**
|
|
|
|
* @todo Test that order of combine_files() is correct
|
2008-07-18 05:47:17 +02:00
|
|
|
* @todo Figure out how to clear the modified state of Requirements class - might affect other tests.
|
2017-07-03 02:21:27 +02:00
|
|
|
* @skipUpgrade
|
2008-07-18 01:32:31 +02:00
|
|
|
*/
|
2016-12-16 05:34:21 +01:00
|
|
|
class RequirementsTest extends SapphireTest
|
|
|
|
{
|
|
|
|
|
2018-01-12 04:25:02 +01:00
|
|
|
/**
|
|
|
|
* @var ThemeResourceLoader
|
|
|
|
*/
|
|
|
|
protected $oldThemeResourceLoader = null;
|
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
static $html_template = '<html><head></head><body></body></html>';
|
|
|
|
|
2021-10-27 04:39:47 +02:00
|
|
|
protected function setUp(): void
|
2016-12-16 05:34:21 +01:00
|
|
|
{
|
|
|
|
parent::setUp();
|
2018-01-12 04:25:02 +01:00
|
|
|
Director::config()->set('alternate_base_folder', __DIR__ . '/SSViewerTest');
|
|
|
|
Director::config()->set('alternate_base_url', 'http://www.mysite.com/basedir/');
|
|
|
|
Director::config()->set('alternate_public_dir', 'public'); // Enforce public dir
|
|
|
|
// Add public as a theme in itself
|
|
|
|
SSViewer::set_themes([SSViewer::PUBLIC_THEME, SSViewer::DEFAULT_THEME]);
|
2016-12-16 05:34:21 +01:00
|
|
|
TestAssetStore::activate('RequirementsTest'); // Set backend root to /RequirementsTest
|
2018-01-12 04:25:02 +01:00
|
|
|
$this->oldThemeResourceLoader = ThemeResourceLoader::inst();
|
2016-12-16 05:34:21 +01:00
|
|
|
}
|
|
|
|
|
2021-10-27 04:39:47 +02:00
|
|
|
protected function tearDown(): void
|
2016-12-16 05:34:21 +01:00
|
|
|
{
|
2018-01-12 04:25:02 +01:00
|
|
|
ThemeResourceLoader::set_instance($this->oldThemeResourceLoader);
|
2016-12-16 05:34:21 +01:00
|
|
|
TestAssetStore::reset();
|
|
|
|
parent::tearDown();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testExternalUrls()
|
|
|
|
{
|
2017-04-18 00:34:18 +02:00
|
|
|
/** @var Requirements_Backend $backend */
|
2016-12-16 05:34:21 +01:00
|
|
|
$backend = Injector::inst()->create(Requirements_Backend::class);
|
|
|
|
$backend->setCombinedFilesEnabled(true);
|
|
|
|
|
|
|
|
$backend->javascript('http://www.mydomain.com/test.js');
|
|
|
|
$backend->javascript('https://www.mysecuredomain.com/test.js');
|
|
|
|
$backend->javascript('//scheme-relative.example.com/test.js');
|
2017-07-05 01:55:26 +02:00
|
|
|
$backend->javascript('http://www.mydomain.com:3000/test.js');
|
2016-12-16 05:34:21 +01:00
|
|
|
$backend->css('http://www.mydomain.com/test.css');
|
|
|
|
$backend->css('https://www.mysecuredomain.com/test.css');
|
|
|
|
$backend->css('//scheme-relative.example.com/test.css');
|
2017-07-05 01:55:26 +02:00
|
|
|
$backend->css('http://www.mydomain.com:3000/test.css');
|
2016-12-16 05:34:21 +01:00
|
|
|
|
|
|
|
$html = $backend->includeInHTML(self::$html_template);
|
|
|
|
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertStringContainsString('http://www.mydomain.com/test.js', $html, 'Load external javascript URL');
|
|
|
|
$this->assertStringContainsString('https://www.mysecuredomain.com/test.js', $html, 'Load external secure javascript URL');
|
|
|
|
$this->assertStringContainsString('//scheme-relative.example.com/test.js', $html, 'Load external scheme-relative JS');
|
|
|
|
$this->assertStringContainsString('http://www.mydomain.com:3000/test.js', $html, 'Load external with port');
|
|
|
|
$this->assertStringContainsString('http://www.mydomain.com/test.css', $html, 'Load external CSS URL');
|
|
|
|
$this->assertStringContainsString('https://www.mysecuredomain.com/test.css', $html, 'Load external secure CSS URL');
|
|
|
|
$this->assertStringContainsString('//scheme-relative.example.com/test.css', $html, 'Load scheme-relative CSS URL');
|
|
|
|
$this->assertStringContainsString('http://www.mydomain.com:3000/test.css', $html, 'Load external with port');
|
2016-12-16 05:34:21 +01:00
|
|
|
}
|
|
|
|
|
2021-11-09 02:15:12 +01:00
|
|
|
public function testResolveCSSReferencesDisabled()
|
|
|
|
{
|
|
|
|
/** @var Requirements_Backend $backend */
|
|
|
|
$backend = Injector::inst()->create(Requirements_Backend::class);
|
|
|
|
$this->setupRequirements($backend);
|
|
|
|
Config::forClass(get_class($backend))->set('resolve_relative_css_refs', false);
|
|
|
|
|
|
|
|
$backend->combineFiles(
|
|
|
|
'RequirementsTest_pc.css',
|
|
|
|
[
|
|
|
|
'css/RequirementsTest_d.css',
|
|
|
|
'css/deep/deeper/RequirementsTest_p.css'
|
|
|
|
]
|
|
|
|
);
|
|
|
|
|
|
|
|
$backend->includeInHTML(self::$html_template);
|
|
|
|
|
|
|
|
// we get the file path here
|
|
|
|
$allCSS = $backend->getCSS();
|
|
|
|
$this->assertCount(
|
|
|
|
1,
|
|
|
|
$allCSS,
|
|
|
|
'only one combined file'
|
|
|
|
);
|
|
|
|
|
|
|
|
$files = array_keys($allCSS);
|
|
|
|
$combinedFileName = $files[0];
|
|
|
|
$combinedFileName = str_replace('/' . ASSETS_DIR . '/', '/', $combinedFileName);
|
|
|
|
|
|
|
|
$combinedFilePath = TestAssetStore::base_path() . $combinedFileName;
|
|
|
|
|
|
|
|
$content = file_get_contents($combinedFilePath);
|
|
|
|
|
|
|
|
/* DISABLED COMBINED CSS URL RESOLVER IGNORED ONE DOT */
|
|
|
|
$this->assertStringContainsString(
|
|
|
|
".p0 { background: url(./zero.gif); }",
|
|
|
|
$content,
|
|
|
|
'disabled combined css url resolver ignored one dot'
|
|
|
|
);
|
|
|
|
|
|
|
|
/* DISABLED COMBINED CSS URL RESOLVER IGNORED DOUBLE-DOT */
|
|
|
|
$this->assertStringContainsString(
|
|
|
|
".p1 { background: url(../one.gif); }",
|
|
|
|
$content,
|
|
|
|
'disabled combined css url resolver ignored double-dot'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-11-08 12:40:20 +01:00
|
|
|
public function testResolveCSSReferences()
|
|
|
|
{
|
|
|
|
/** @var Requirements_Backend $backend */
|
|
|
|
$backend = Injector::inst()->create(Requirements_Backend::class);
|
|
|
|
$this->setupRequirements($backend);
|
2021-11-09 02:15:12 +01:00
|
|
|
Config::forClass(get_class($backend))->set('resolve_relative_css_refs', true);
|
2021-11-08 12:40:20 +01:00
|
|
|
|
|
|
|
$backend->combineFiles(
|
|
|
|
'RequirementsTest_pc.css',
|
|
|
|
[
|
|
|
|
'css/RequirementsTest_d.css',
|
|
|
|
'css/deep/deeper/RequirementsTest_p.css'
|
|
|
|
]
|
|
|
|
);
|
|
|
|
|
|
|
|
$backend->includeInHTML(self::$html_template);
|
|
|
|
|
|
|
|
// we get the file path here
|
|
|
|
$allCSS = $backend->getCSS();
|
2021-11-09 02:15:12 +01:00
|
|
|
$this->assertCount(
|
|
|
|
1,
|
|
|
|
$allCSS,
|
|
|
|
'only one combined file'
|
|
|
|
);
|
2021-11-08 12:40:20 +01:00
|
|
|
$files = array_keys($allCSS);
|
|
|
|
$combinedFileName = $files[0];
|
|
|
|
$combinedFileName = str_replace('/' . ASSETS_DIR . '/', '/', $combinedFileName);
|
|
|
|
|
|
|
|
$combinedFilePath = TestAssetStore::base_path() . $combinedFileName;
|
|
|
|
|
|
|
|
/* COMBINED JAVASCRIPT FILE EXISTS */
|
|
|
|
$this->assertTrue(
|
|
|
|
file_exists($combinedFilePath),
|
|
|
|
'combined css file exists'
|
|
|
|
);
|
|
|
|
|
|
|
|
$content = file_get_contents($combinedFilePath);
|
|
|
|
|
2021-11-09 02:15:12 +01:00
|
|
|
/* COMBINED CSS URL RESOLVER DECODED ONE DOT */
|
2021-11-08 12:40:20 +01:00
|
|
|
$this->assertStringContainsString(
|
|
|
|
".p0 { background: url(/css/deep/deeper/zero.gif); }",
|
|
|
|
$content,
|
2021-11-09 02:15:12 +01:00
|
|
|
'combined css url resolver decoded one dot'
|
|
|
|
);
|
|
|
|
|
|
|
|
/* COMBINED CSS URL RESOLVER DECODED ONE DOT WITH SINGLE QUOTES */
|
|
|
|
$this->assertStringContainsString(
|
|
|
|
".p0sq { background: url('/css/deep/deeper/zero-sq.gif'); }",
|
|
|
|
$content,
|
|
|
|
'combined css url resolver decoded one dot with single quotes'
|
2021-11-08 12:40:20 +01:00
|
|
|
);
|
|
|
|
|
2021-11-09 02:15:12 +01:00
|
|
|
/* COMBINED CSS URL RESOLVER DECODED ONE DOT WITH DOUBLE QUOTES */
|
|
|
|
$this->assertStringContainsString(
|
|
|
|
".p0dq { background: url(\"/css/deep/deeper/zero-dq.gif\"); }",
|
|
|
|
$content,
|
|
|
|
'combined css url resolver decoded one dot with double quotes'
|
|
|
|
);
|
|
|
|
|
|
|
|
/* COMBINED CSS URL RESOLVER DECODED ONE DOT WITH DOUBLE QUOTES AND SPACES NEW LINE */
|
|
|
|
$this->assertStringContainsString(
|
|
|
|
"\n \"/css/deep/deeper/zero-dq-nls.gif\"\n",
|
|
|
|
$content,
|
|
|
|
'combined css url resolver decoded one dot with double quotes and spaces new line'
|
|
|
|
);
|
|
|
|
|
|
|
|
/* COMBINED CSS URL RESOLVER DECODED ONE DOT WITH DOUBLE QUOTES NEW LINE */
|
|
|
|
$this->assertStringContainsString(
|
|
|
|
"\"/css/deep/deeper/zero-dq-nl.gif\"",
|
|
|
|
$content,
|
|
|
|
'combined css url resolver decoded one dot with double quotes new line'
|
|
|
|
);
|
|
|
|
|
|
|
|
/* COMBINED CSS URL RESOLVER DECODED ONE DOT WITH DOUBLE QUOTES NEW LINE WITH SPACES */
|
|
|
|
$this->assertStringContainsString(
|
|
|
|
"\"/css/deep/deeper/zero-dq-nls.gif\"",
|
|
|
|
$content,
|
|
|
|
'combined css url resolver decoded one dot with double quotes new line with spaces'
|
|
|
|
);
|
|
|
|
|
|
|
|
/* COMBINED CSS URL RESOLVER DECODED 1 DOUBLE-DOT */
|
2021-11-08 12:40:20 +01:00
|
|
|
$this->assertStringContainsString(
|
|
|
|
".p1 { background: url(/css/deep/one.gif); }",
|
|
|
|
$content,
|
2021-11-09 02:15:12 +01:00
|
|
|
'combined css url resolver decoded 1 double-dot'
|
2021-11-08 12:40:20 +01:00
|
|
|
);
|
|
|
|
|
2021-11-09 02:15:12 +01:00
|
|
|
/* COMBINED CSS URL RESOLVER DECODED 2 DOUBLE-DOT */
|
2021-11-08 12:40:20 +01:00
|
|
|
$this->assertStringContainsString(
|
|
|
|
".p2 { background: url(/css/two.gif); }",
|
|
|
|
$content,
|
2021-11-09 02:15:12 +01:00
|
|
|
'combined css url resolver decoded 2 double-dot'
|
|
|
|
);
|
|
|
|
|
|
|
|
/* COMBINED CSS URL RESOLVER DECODED 2 DOUBLE-DOT SINGLE QUOTES */
|
|
|
|
$this->assertStringContainsString(
|
|
|
|
".p2sq { background: url('/css/two-sq.gif'); }",
|
|
|
|
$content,
|
|
|
|
'combined css url resolver decoded 2 double-dot single quotes'
|
|
|
|
);
|
|
|
|
|
|
|
|
/* COMBINED CSS URL RESOLVER DECODED 2 DOUBLE-DOT DOUBLE QUOTES */
|
|
|
|
$this->assertStringContainsString(
|
|
|
|
".p2dq { background: url(\"/css/two-dq.gif\"); }",
|
|
|
|
$content,
|
|
|
|
'combined css url resolver decoded 2 double-dot double quotes'
|
|
|
|
);
|
|
|
|
|
|
|
|
/* COMBINED CSS URL RESOLVER SHOULD NOT TOUCH ABSOLUTE PATH */
|
|
|
|
$this->assertStringContainsString(
|
|
|
|
".p2abs { background: url(/foo/bar/../../two-abs.gif); }",
|
|
|
|
$content,
|
|
|
|
'combined css url resolver should not touch absolute path'
|
|
|
|
);
|
|
|
|
|
|
|
|
/* COMBINED CSS URL RESOLVER SHOULD NOT TOUCH ABSOLUTE PATH ON NEW LINE */
|
|
|
|
$this->assertStringContainsString(
|
|
|
|
"\n /foo/bar/../../two-abs-ln.gif\n",
|
|
|
|
$content,
|
|
|
|
'combined css url resolver should not touch absolute path on new line'
|
2021-11-08 12:40:20 +01:00
|
|
|
);
|
|
|
|
|
2021-11-09 02:15:12 +01:00
|
|
|
/* COMBINED CSS URL RESOLVER DECODED 3 DOUBLE-DOT */
|
2021-11-08 12:40:20 +01:00
|
|
|
$this->assertStringContainsString(
|
|
|
|
".p3 { background: url(/three.gif); }",
|
|
|
|
$content,
|
2021-11-09 02:15:12 +01:00
|
|
|
'combined css url resolver decoded 3 double-dot'
|
2021-11-08 12:40:20 +01:00
|
|
|
);
|
|
|
|
|
2021-11-09 02:15:12 +01:00
|
|
|
/* COMBINED CSS URL RESOLVER DECODED 4 DOUBLE-DOT */
|
2021-11-08 12:40:20 +01:00
|
|
|
$this->assertStringContainsString(
|
|
|
|
".p4 { background: url(/../four.gif); }",
|
|
|
|
$content,
|
2021-11-09 02:15:12 +01:00
|
|
|
'combined css url resolver decoded 4 double-dot'
|
2021-11-08 12:40:20 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
/**
|
|
|
|
* Setup new backend
|
|
|
|
*
|
|
|
|
* @param Requirements_Backend $backend
|
|
|
|
*/
|
|
|
|
protected function setupRequirements($backend)
|
|
|
|
{
|
|
|
|
// Flush requirements
|
|
|
|
$backend->clear();
|
|
|
|
$backend->clearCombinedFiles();
|
|
|
|
$backend->setCombinedFilesFolder('_combinedfiles');
|
2017-05-10 06:24:30 +02:00
|
|
|
$backend->setMinifyCombinedFiles(false);
|
2017-06-22 12:50:45 +02:00
|
|
|
$backend->setCombinedFilesEnabled(true);
|
2016-12-16 05:34:21 +01:00
|
|
|
Requirements::flush();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Setup combined and non-combined js with the backend
|
|
|
|
*
|
|
|
|
* @param Requirements_Backend $backend
|
|
|
|
*/
|
|
|
|
protected function setupCombinedRequirements($backend)
|
|
|
|
{
|
|
|
|
$this->setupRequirements($backend);
|
|
|
|
|
|
|
|
// require files normally (e.g. called from a FormField instance)
|
2018-01-12 04:25:02 +01:00
|
|
|
$backend->javascript('javascript/RequirementsTest_a.js');
|
|
|
|
$backend->javascript('javascript/RequirementsTest_b.js');
|
|
|
|
$backend->javascript('javascript/RequirementsTest_c.js');
|
|
|
|
|
|
|
|
// Public resources may or may not be specified with `public/` prefix
|
|
|
|
$backend->javascript('javascript/RequirementsTest_d.js');
|
|
|
|
$backend->javascript('public/javascript/RequirementsTest_e.js');
|
2016-12-16 05:34:21 +01:00
|
|
|
|
|
|
|
// require two of those files as combined includes
|
|
|
|
$backend->combineFiles(
|
|
|
|
'RequirementsTest_bc.js',
|
2020-04-20 19:58:09 +02:00
|
|
|
[
|
2018-01-12 04:25:02 +01:00
|
|
|
'javascript/RequirementsTest_b.js',
|
|
|
|
'javascript/RequirementsTest_c.js'
|
2020-04-20 19:58:09 +02:00
|
|
|
]
|
2016-12-16 05:34:21 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Setup combined files with the backend
|
|
|
|
*
|
|
|
|
* @param Requirements_Backend $backend
|
|
|
|
*/
|
|
|
|
protected function setupCombinedNonrequiredRequirements($backend)
|
|
|
|
{
|
|
|
|
$this->setupRequirements($backend);
|
|
|
|
|
|
|
|
// require files as combined includes
|
|
|
|
$backend->combineFiles(
|
|
|
|
'RequirementsTest_bc.js',
|
2020-04-20 19:58:09 +02:00
|
|
|
[
|
2018-01-12 04:25:02 +01:00
|
|
|
'javascript/RequirementsTest_b.js',
|
|
|
|
'javascript/RequirementsTest_c.js'
|
2020-04-20 19:58:09 +02:00
|
|
|
]
|
2016-12-16 05:34:21 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param Requirements_Backend $backend
|
|
|
|
* @param bool $async
|
|
|
|
* @param bool $defer
|
|
|
|
*/
|
|
|
|
protected function setupCombinedRequirementsJavascriptAsyncDefer($backend, $async, $defer)
|
|
|
|
{
|
2016-07-04 08:55:35 +02:00
|
|
|
$this->setupRequirements($backend);
|
2016-07-19 04:09:15 +02:00
|
|
|
|
2016-07-04 08:55:35 +02:00
|
|
|
// require files normally (e.g. called from a FormField instance)
|
2018-01-12 04:25:02 +01:00
|
|
|
$backend->javascript('javascript/RequirementsTest_a.js');
|
|
|
|
$backend->javascript('javascript/RequirementsTest_b.js');
|
|
|
|
$backend->javascript('javascript/RequirementsTest_c.js');
|
2016-07-19 04:09:15 +02:00
|
|
|
|
2016-07-04 08:55:35 +02:00
|
|
|
// require two of those files as combined includes
|
|
|
|
$backend->combineFiles(
|
|
|
|
'RequirementsTest_bc.js',
|
2018-01-12 04:25:02 +01:00
|
|
|
[
|
|
|
|
'javascript/RequirementsTest_b.js',
|
|
|
|
'javascript/RequirementsTest_c.js'
|
|
|
|
],
|
|
|
|
[
|
2016-07-04 08:55:35 +02:00
|
|
|
'async' => $async,
|
|
|
|
'defer' => $defer,
|
2018-01-12 04:25:02 +01:00
|
|
|
]
|
2016-07-04 08:55:35 +02:00
|
|
|
);
|
|
|
|
}
|
2010-05-25 06:13:45 +02:00
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
public function testCustomType()
|
|
|
|
{
|
2017-04-18 00:34:18 +02:00
|
|
|
/** @var Requirements_Backend $backend */
|
2016-12-16 05:34:21 +01:00
|
|
|
$backend = Injector::inst()->create(Requirements_Backend::class);
|
|
|
|
$this->setupRequirements($backend);
|
|
|
|
|
|
|
|
// require files normally (e.g. called from a FormField instance)
|
|
|
|
$backend->javascript(
|
2018-01-12 04:25:02 +01:00
|
|
|
'javascript/RequirementsTest_a.js',
|
|
|
|
[ 'type' => 'application/json' ]
|
2016-12-16 05:34:21 +01:00
|
|
|
);
|
2018-01-12 04:25:02 +01:00
|
|
|
$backend->javascript('javascript/RequirementsTest_b.js');
|
2016-12-16 05:34:21 +01:00
|
|
|
$result = $backend->includeInHTML(self::$html_template);
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertMatchesRegularExpression(
|
2016-12-16 05:34:21 +01:00
|
|
|
'#<script type="application/json" src=".*/javascript/RequirementsTest_a.js#',
|
|
|
|
$result
|
|
|
|
);
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertMatchesRegularExpression(
|
2016-12-16 05:34:21 +01:00
|
|
|
'#<script type="application/javascript" src=".*/javascript/RequirementsTest_b.js#',
|
|
|
|
$result
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testCombinedJavascript()
|
|
|
|
{
|
2017-04-18 00:34:18 +02:00
|
|
|
/** @var Requirements_Backend $backend */
|
2016-12-16 05:34:21 +01:00
|
|
|
$backend = Injector::inst()->create(Requirements_Backend::class);
|
2017-06-22 12:50:45 +02:00
|
|
|
$backend->setCombinedFilesEnabled(true);
|
2016-12-16 05:34:21 +01:00
|
|
|
$this->setupCombinedRequirements($backend);
|
|
|
|
|
|
|
|
$combinedFileName = '/_combinedfiles/RequirementsTest_bc-2a55d56.js';
|
|
|
|
$combinedFilePath = TestAssetStore::base_path() . $combinedFileName;
|
|
|
|
|
|
|
|
$html = $backend->includeInHTML(self::$html_template);
|
|
|
|
|
|
|
|
/* COMBINED JAVASCRIPT FILE IS INCLUDED IN HTML HEADER */
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertMatchesRegularExpression(
|
2022-04-14 03:12:59 +02:00
|
|
|
'/src=".*' . preg_quote($combinedFileName ?? '', '/') . '/',
|
2016-12-16 05:34:21 +01:00
|
|
|
$html,
|
|
|
|
'combined javascript file is included in html header'
|
|
|
|
);
|
|
|
|
|
|
|
|
/* COMBINED JAVASCRIPT FILE EXISTS */
|
|
|
|
$this->assertTrue(
|
2022-04-14 03:12:59 +02:00
|
|
|
file_exists($combinedFilePath ?? ''),
|
2016-12-16 05:34:21 +01:00
|
|
|
'combined javascript file exists'
|
|
|
|
);
|
|
|
|
|
|
|
|
/* COMBINED JAVASCRIPT HAS CORRECT CONTENT */
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertStringContainsString(
|
2017-12-17 04:22:26 +01:00
|
|
|
"alert('b')",
|
2022-04-14 03:12:59 +02:00
|
|
|
file_get_contents($combinedFilePath ?? ''),
|
2016-12-16 05:34:21 +01:00
|
|
|
'combined javascript has correct content'
|
|
|
|
);
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertStringContainsString(
|
2017-12-17 04:22:26 +01:00
|
|
|
"alert('c')",
|
2022-04-14 03:12:59 +02:00
|
|
|
file_get_contents($combinedFilePath ?? ''),
|
2016-12-16 05:34:21 +01:00
|
|
|
'combined javascript has correct content'
|
|
|
|
);
|
|
|
|
|
|
|
|
/* COMBINED FILES ARE NOT INCLUDED TWICE */
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertDoesNotMatchRegularExpression(
|
2016-12-16 05:34:21 +01:00
|
|
|
'/src=".*\/RequirementsTest_b\.js/',
|
|
|
|
$html,
|
|
|
|
'combined files are not included twice'
|
|
|
|
);
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertDoesNotMatchRegularExpression(
|
2016-12-16 05:34:21 +01:00
|
|
|
'/src=".*\/RequirementsTest_c\.js/',
|
|
|
|
$html,
|
|
|
|
'combined files are not included twice'
|
|
|
|
);
|
|
|
|
|
|
|
|
/* NORMAL REQUIREMENTS ARE STILL INCLUDED */
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertMatchesRegularExpression(
|
2016-12-16 05:34:21 +01:00
|
|
|
'/src=".*\/RequirementsTest_a\.js/',
|
|
|
|
$html,
|
|
|
|
'normal requirements are still included'
|
|
|
|
);
|
|
|
|
|
|
|
|
// Then do it again, this time not requiring the files beforehand
|
2022-04-14 03:12:59 +02:00
|
|
|
unlink($combinedFilePath ?? '');
|
2017-04-18 00:34:18 +02:00
|
|
|
/** @var Requirements_Backend $backend */
|
2016-12-16 05:34:21 +01:00
|
|
|
$backend = Injector::inst()->create(Requirements_Backend::class);
|
|
|
|
$this->setupCombinedNonrequiredRequirements($backend);
|
|
|
|
$html = $backend->includeInHTML(self::$html_template);
|
|
|
|
|
|
|
|
/* COMBINED JAVASCRIPT FILE IS INCLUDED IN HTML HEADER */
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertMatchesRegularExpression(
|
2022-04-14 03:12:59 +02:00
|
|
|
'/src=".*' . preg_quote($combinedFileName ?? '', '/') . '/',
|
2016-12-16 05:34:21 +01:00
|
|
|
$html,
|
|
|
|
'combined javascript file is included in html header'
|
|
|
|
);
|
|
|
|
|
|
|
|
/* COMBINED JAVASCRIPT FILE EXISTS */
|
|
|
|
$this->assertTrue(
|
2022-04-14 03:12:59 +02:00
|
|
|
file_exists($combinedFilePath ?? ''),
|
2016-12-16 05:34:21 +01:00
|
|
|
'combined javascript file exists'
|
|
|
|
);
|
|
|
|
|
|
|
|
/* COMBINED JAVASCRIPT HAS CORRECT CONTENT */
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertStringContainsString(
|
2017-12-17 04:22:26 +01:00
|
|
|
"alert('b')",
|
2022-04-14 03:12:59 +02:00
|
|
|
file_get_contents($combinedFilePath ?? ''),
|
2016-12-16 05:34:21 +01:00
|
|
|
'combined javascript has correct content'
|
|
|
|
);
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertStringContainsString(
|
2017-12-17 04:22:26 +01:00
|
|
|
"alert('c')",
|
2022-04-14 03:12:59 +02:00
|
|
|
file_get_contents($combinedFilePath ?? ''),
|
2016-12-16 05:34:21 +01:00
|
|
|
'combined javascript has correct content'
|
|
|
|
);
|
|
|
|
|
|
|
|
/* COMBINED FILES ARE NOT INCLUDED TWICE */
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertDoesNotMatchRegularExpression(
|
2016-12-16 05:34:21 +01:00
|
|
|
'/src=".*\/RequirementsTest_b\.js/',
|
|
|
|
$html,
|
|
|
|
'combined files are not included twice'
|
|
|
|
);
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertDoesNotMatchRegularExpression(
|
2016-12-16 05:34:21 +01:00
|
|
|
'/src=".*\/RequirementsTest_c\.js/',
|
|
|
|
$html,
|
|
|
|
'combined files are not included twice'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testCombinedJavascriptAsyncDefer()
|
|
|
|
{
|
2017-04-18 00:34:18 +02:00
|
|
|
/** @var Requirements_Backend $backend */
|
2016-12-16 05:34:21 +01:00
|
|
|
$backend = Injector::inst()->create(Requirements_Backend::class);
|
|
|
|
|
|
|
|
$this->setupCombinedRequirementsJavascriptAsyncDefer($backend, true, false);
|
|
|
|
|
|
|
|
$combinedFileName = '/_combinedfiles/RequirementsTest_bc-2a55d56.js';
|
|
|
|
$combinedFilePath = TestAssetStore::base_path() . $combinedFileName;
|
|
|
|
|
|
|
|
$html = $backend->includeInHTML(false, self::$html_template);
|
|
|
|
|
|
|
|
/* ASYNC IS INCLUDED IN SCRIPT TAG */
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertMatchesRegularExpression(
|
2022-04-14 03:12:59 +02:00
|
|
|
'/src=".*' . preg_quote($combinedFileName ?? '', '/') . '" async/',
|
2016-12-16 05:34:21 +01:00
|
|
|
$html,
|
|
|
|
'async is included in script tag'
|
|
|
|
);
|
|
|
|
|
|
|
|
/* DEFER IS NOT INCLUDED IN SCRIPT TAG */
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertStringNotContainsString('defer', $html, 'defer is not included');
|
2016-12-16 05:34:21 +01:00
|
|
|
|
|
|
|
/* COMBINED JAVASCRIPT FILE EXISTS */
|
|
|
|
clearstatcache(); // needed to get accurate file_exists() results
|
|
|
|
$this->assertFileExists(
|
|
|
|
$combinedFilePath,
|
|
|
|
'combined javascript file exists'
|
|
|
|
);
|
|
|
|
|
|
|
|
/* COMBINED JAVASCRIPT HAS CORRECT CONTENT */
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertStringContainsString(
|
2017-12-17 04:22:26 +01:00
|
|
|
"alert('b')",
|
2022-04-14 03:12:59 +02:00
|
|
|
file_get_contents($combinedFilePath ?? ''),
|
2016-12-16 05:34:21 +01:00
|
|
|
'combined javascript has correct content'
|
|
|
|
);
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertStringContainsString(
|
2017-12-17 04:22:26 +01:00
|
|
|
"alert('c')",
|
2022-04-14 03:12:59 +02:00
|
|
|
file_get_contents($combinedFilePath ?? ''),
|
2016-12-16 05:34:21 +01:00
|
|
|
'combined javascript has correct content'
|
|
|
|
);
|
|
|
|
|
|
|
|
/* COMBINED FILES ARE NOT INCLUDED TWICE */
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertDoesNotMatchRegularExpression(
|
2016-12-16 05:34:21 +01:00
|
|
|
'/src=".*\/RequirementsTest_b\.js/',
|
|
|
|
$html,
|
|
|
|
'combined files are not included twice'
|
|
|
|
);
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertDoesNotMatchRegularExpression(
|
2016-12-16 05:34:21 +01:00
|
|
|
'/src=".*\/RequirementsTest_c\.js/',
|
|
|
|
$html,
|
|
|
|
'combined files are not included twice'
|
|
|
|
);
|
|
|
|
|
|
|
|
/* NORMAL REQUIREMENTS ARE STILL INCLUDED */
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertMatchesRegularExpression(
|
2016-12-16 05:34:21 +01:00
|
|
|
'/src=".*\/RequirementsTest_a\.js/',
|
|
|
|
$html,
|
|
|
|
'normal requirements are still included'
|
|
|
|
);
|
|
|
|
|
|
|
|
/* NORMAL REQUIREMENTS DON'T HAVE ASYNC/DEFER */
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertDoesNotMatchRegularExpression(
|
2016-12-16 05:34:21 +01:00
|
|
|
'/src=".*\/RequirementsTest_a\.js\?m=\d+" async/',
|
|
|
|
$html,
|
|
|
|
'normal requirements don\'t have async'
|
|
|
|
);
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertDoesNotMatchRegularExpression(
|
2016-12-16 05:34:21 +01:00
|
|
|
'/src=".*\/RequirementsTest_a\.js\?m=\d+" defer/',
|
|
|
|
$html,
|
|
|
|
'normal requirements don\'t have defer'
|
|
|
|
);
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertDoesNotMatchRegularExpression(
|
2016-12-16 05:34:21 +01:00
|
|
|
'/src=".*\/RequirementsTest_a\.js\?m=\d+" async defer/',
|
|
|
|
$html,
|
|
|
|
'normal requirements don\'t have async/defer'
|
|
|
|
);
|
|
|
|
|
|
|
|
// setup again for testing defer
|
2022-04-14 03:12:59 +02:00
|
|
|
unlink($combinedFilePath ?? '');
|
2017-04-18 00:34:18 +02:00
|
|
|
/** @var Requirements_Backend $backend */
|
2016-12-16 05:34:21 +01:00
|
|
|
$backend = Injector::inst()->create(Requirements_Backend::class);
|
|
|
|
|
|
|
|
$this->setupCombinedRequirementsJavascriptAsyncDefer($backend, false, true);
|
|
|
|
|
|
|
|
$html = $backend->includeInHTML(self::$html_template);
|
|
|
|
|
|
|
|
/* DEFER IS INCLUDED IN SCRIPT TAG */
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertMatchesRegularExpression(
|
2022-04-14 03:12:59 +02:00
|
|
|
'/src=".*' . preg_quote($combinedFileName ?? '', '/') . '" defer/',
|
2016-12-16 05:34:21 +01:00
|
|
|
$html,
|
|
|
|
'defer is included in script tag'
|
|
|
|
);
|
|
|
|
|
|
|
|
/* ASYNC IS NOT INCLUDED IN SCRIPT TAG */
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertStringNotContainsString('async', $html, 'async is not included');
|
2016-12-16 05:34:21 +01:00
|
|
|
|
|
|
|
/* COMBINED JAVASCRIPT FILE EXISTS */
|
|
|
|
clearstatcache(); // needed to get accurate file_exists() results
|
|
|
|
$this->assertFileExists(
|
|
|
|
$combinedFilePath,
|
|
|
|
'combined javascript file exists'
|
|
|
|
);
|
|
|
|
|
|
|
|
/* COMBINED JAVASCRIPT HAS CORRECT CONTENT */
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertStringContainsString(
|
2017-12-17 04:22:26 +01:00
|
|
|
"alert('b')",
|
2022-04-14 03:12:59 +02:00
|
|
|
file_get_contents($combinedFilePath ?? ''),
|
2016-12-16 05:34:21 +01:00
|
|
|
'combined javascript has correct content'
|
|
|
|
);
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertStringContainsString(
|
2017-12-17 04:22:26 +01:00
|
|
|
"alert('c')",
|
2022-04-14 03:12:59 +02:00
|
|
|
file_get_contents($combinedFilePath ?? ''),
|
2016-12-16 05:34:21 +01:00
|
|
|
'combined javascript has correct content'
|
|
|
|
);
|
|
|
|
|
|
|
|
/* COMBINED FILES ARE NOT INCLUDED TWICE */
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertDoesNotMatchRegularExpression(
|
2016-12-16 05:34:21 +01:00
|
|
|
'/src=".*\/RequirementsTest_b\.js/',
|
|
|
|
$html,
|
|
|
|
'combined files are not included twice'
|
|
|
|
);
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertDoesNotMatchRegularExpression(
|
2016-12-16 05:34:21 +01:00
|
|
|
'/src=".*\/RequirementsTest_c\.js/',
|
|
|
|
$html,
|
|
|
|
'combined files are not included twice'
|
|
|
|
);
|
|
|
|
|
|
|
|
/* NORMAL REQUIREMENTS ARE STILL INCLUDED */
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertMatchesRegularExpression(
|
2016-12-16 05:34:21 +01:00
|
|
|
'/src=".*\/RequirementsTest_a\.js/',
|
|
|
|
$html,
|
|
|
|
'normal requirements are still included'
|
|
|
|
);
|
|
|
|
|
|
|
|
/* NORMAL REQUIREMENTS DON'T HAVE ASYNC/DEFER */
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertDoesNotMatchRegularExpression(
|
2016-12-16 05:34:21 +01:00
|
|
|
'/src=".*\/RequirementsTest_a\.js\?m=\d+" async/',
|
|
|
|
$html,
|
|
|
|
'normal requirements don\'t have async'
|
|
|
|
);
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertDoesNotMatchRegularExpression(
|
2016-12-16 05:34:21 +01:00
|
|
|
'/src=".*\/RequirementsTest_a\.js\?m=\d+" defer/',
|
|
|
|
$html,
|
|
|
|
'normal requirements don\'t have defer'
|
|
|
|
);
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertDoesNotMatchRegularExpression(
|
2016-12-16 05:34:21 +01:00
|
|
|
'/src=".*\/RequirementsTest_a\.js\?m=\d+" async defer/',
|
|
|
|
$html,
|
|
|
|
'normal requirements don\'t have async/defer'
|
|
|
|
);
|
|
|
|
|
|
|
|
// setup again for testing async and defer
|
2022-04-14 03:12:59 +02:00
|
|
|
unlink($combinedFilePath ?? '');
|
2017-04-18 00:34:18 +02:00
|
|
|
/** @var Requirements_Backend $backend */
|
2016-12-16 05:34:21 +01:00
|
|
|
$backend = Injector::inst()->create(Requirements_Backend::class);
|
|
|
|
|
|
|
|
$this->setupCombinedRequirementsJavascriptAsyncDefer($backend, true, true);
|
|
|
|
|
|
|
|
$html = $backend->includeInHTML(self::$html_template);
|
|
|
|
|
|
|
|
/* ASYNC/DEFER IS INCLUDED IN SCRIPT TAG */
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertMatchesRegularExpression(
|
2022-04-14 03:12:59 +02:00
|
|
|
'/src=".*' . preg_quote($combinedFileName ?? '', '/') . '" async="async" defer="defer"/',
|
2016-12-16 05:34:21 +01:00
|
|
|
$html,
|
|
|
|
'async and defer are included in script tag'
|
|
|
|
);
|
|
|
|
|
|
|
|
/* COMBINED JAVASCRIPT FILE EXISTS */
|
|
|
|
clearstatcache(); // needed to get accurate file_exists() results
|
|
|
|
$this->assertFileExists(
|
|
|
|
$combinedFilePath,
|
|
|
|
'combined javascript file exists'
|
|
|
|
);
|
|
|
|
|
|
|
|
/* COMBINED JAVASCRIPT HAS CORRECT CONTENT */
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertStringContainsString(
|
2017-12-17 04:22:26 +01:00
|
|
|
"alert('b')",
|
2022-04-14 03:12:59 +02:00
|
|
|
file_get_contents($combinedFilePath ?? ''),
|
2016-12-16 05:34:21 +01:00
|
|
|
'combined javascript has correct content'
|
|
|
|
);
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertStringContainsString(
|
2017-12-17 04:22:26 +01:00
|
|
|
"alert('c')",
|
2022-04-14 03:12:59 +02:00
|
|
|
file_get_contents($combinedFilePath ?? ''),
|
2016-12-16 05:34:21 +01:00
|
|
|
'combined javascript has correct content'
|
|
|
|
);
|
|
|
|
|
|
|
|
/* COMBINED FILES ARE NOT INCLUDED TWICE */
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertDoesNotMatchRegularExpression(
|
2016-12-16 05:34:21 +01:00
|
|
|
'/src=".*\/RequirementsTest_b\.js/',
|
|
|
|
$html,
|
|
|
|
'combined files are not included twice'
|
|
|
|
);
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertDoesNotMatchRegularExpression(
|
2016-12-16 05:34:21 +01:00
|
|
|
'/src=".*\/RequirementsTest_c\.js/',
|
|
|
|
$html,
|
|
|
|
'combined files are not included twice'
|
|
|
|
);
|
|
|
|
|
|
|
|
/* NORMAL REQUIREMENTS ARE STILL INCLUDED */
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertMatchesRegularExpression(
|
2016-12-16 05:34:21 +01:00
|
|
|
'/src=".*\/RequirementsTest_a\.js/',
|
|
|
|
$html,
|
|
|
|
'normal requirements are still included'
|
|
|
|
);
|
|
|
|
|
|
|
|
/* NORMAL REQUIREMENTS DON'T HAVE ASYNC/DEFER */
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertDoesNotMatchRegularExpression(
|
2016-12-16 05:34:21 +01:00
|
|
|
'/src=".*\/RequirementsTest_a\.js\?m=\d+" async/',
|
|
|
|
$html,
|
|
|
|
'normal requirements don\'t have async'
|
|
|
|
);
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertDoesNotMatchRegularExpression(
|
2016-12-16 05:34:21 +01:00
|
|
|
'/src=".*\/RequirementsTest_a\.js\?m=\d+" defer/',
|
|
|
|
$html,
|
|
|
|
'normal requirements don\'t have defer'
|
|
|
|
);
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertDoesNotMatchRegularExpression(
|
2016-12-16 05:34:21 +01:00
|
|
|
'/src=".*\/RequirementsTest_a\.js\?m=\d+" async defer/',
|
|
|
|
$html,
|
|
|
|
'normal requirements don\'t have async/defer'
|
|
|
|
);
|
|
|
|
|
2022-04-14 03:12:59 +02:00
|
|
|
unlink($combinedFilePath ?? '');
|
2016-12-16 05:34:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testCombinedCss()
|
|
|
|
{
|
2017-04-18 00:34:18 +02:00
|
|
|
/** @var Requirements_Backend $backend */
|
2016-12-16 05:34:21 +01:00
|
|
|
$backend = Injector::inst()->create(Requirements_Backend::class);
|
|
|
|
$this->setupRequirements($backend);
|
|
|
|
|
|
|
|
$backend->combineFiles(
|
|
|
|
'print.css',
|
2018-01-12 04:25:02 +01:00
|
|
|
[
|
|
|
|
'css/RequirementsTest_print_a.css',
|
|
|
|
'css/RequirementsTest_print_b.css',
|
|
|
|
'css/RequirementsTest_print_d.css',
|
|
|
|
'public/css/RequirementsTest_print_e.css',
|
|
|
|
],
|
|
|
|
[
|
2016-12-16 05:34:21 +01:00
|
|
|
'media' => 'print'
|
2018-01-12 04:25:02 +01:00
|
|
|
]
|
2016-12-16 05:34:21 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
$html = $backend->includeInHTML(self::$html_template);
|
|
|
|
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertMatchesRegularExpression(
|
2018-01-12 04:25:02 +01:00
|
|
|
'/href=".*\/print\-69ce614\.css/',
|
2016-12-16 05:34:21 +01:00
|
|
|
$html,
|
|
|
|
'Print stylesheets have been combined.'
|
|
|
|
);
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertMatchesRegularExpression(
|
2016-12-16 05:34:21 +01:00
|
|
|
'/media="print/',
|
|
|
|
$html,
|
|
|
|
'Combined print stylesheet retains the media parameter'
|
|
|
|
);
|
|
|
|
|
|
|
|
// Test that combining a file multiple times doesn't trigger an error
|
2017-04-18 00:34:18 +02:00
|
|
|
/** @var Requirements_Backend $backend */
|
2016-12-16 05:34:21 +01:00
|
|
|
$backend = Injector::inst()->create(Requirements_Backend::class);
|
|
|
|
$this->setupRequirements($backend);
|
|
|
|
$backend->combineFiles(
|
|
|
|
'style.css',
|
2018-01-12 04:25:02 +01:00
|
|
|
[
|
|
|
|
'css/RequirementsTest_b.css',
|
|
|
|
'css/RequirementsTest_c.css',
|
|
|
|
'css/RequirementsTest_d.css',
|
|
|
|
'public/css/RequirementsTest_e.css',
|
|
|
|
]
|
2016-12-16 05:34:21 +01:00
|
|
|
);
|
|
|
|
$backend->combineFiles(
|
|
|
|
'style.css',
|
2020-04-20 19:58:09 +02:00
|
|
|
[
|
2018-01-12 04:25:02 +01:00
|
|
|
'css/RequirementsTest_b.css',
|
|
|
|
'css/RequirementsTest_c.css',
|
|
|
|
'css/RequirementsTest_d.css',
|
|
|
|
'public/css/RequirementsTest_e.css',
|
2020-04-20 19:58:09 +02:00
|
|
|
]
|
2016-12-16 05:34:21 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
$html = $backend->includeInHTML(self::$html_template);
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertMatchesRegularExpression(
|
2018-01-12 04:25:02 +01:00
|
|
|
'/href=".*\/style\-8011538\.css/',
|
2016-12-16 05:34:21 +01:00
|
|
|
$html,
|
|
|
|
'Stylesheets have been combined.'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testBlockedCombinedJavascript()
|
|
|
|
{
|
2017-04-18 00:34:18 +02:00
|
|
|
/** @var Requirements_Backend $backend */
|
2016-12-16 05:34:21 +01:00
|
|
|
$backend = Injector::inst()->create(Requirements_Backend::class);
|
|
|
|
$this->setupCombinedRequirements($backend);
|
|
|
|
$combinedFileName = '/_combinedfiles/RequirementsTest_bc-2a55d56.js';
|
|
|
|
$combinedFilePath = TestAssetStore::base_path() . $combinedFileName;
|
|
|
|
|
|
|
|
/* BLOCKED COMBINED FILES ARE NOT INCLUDED */
|
|
|
|
$backend->block('RequirementsTest_bc.js');
|
|
|
|
|
|
|
|
clearstatcache(); // needed to get accurate file_exists() results
|
|
|
|
$html = $backend->includeInHTML(self::$html_template);
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertFileDoesNotExist($combinedFilePath);
|
|
|
|
$this->assertDoesNotMatchRegularExpression(
|
2016-12-16 05:34:21 +01:00
|
|
|
'/src=".*\/RequirementsTest_bc\.js/',
|
|
|
|
$html,
|
|
|
|
'blocked combined files are not included'
|
|
|
|
);
|
|
|
|
$backend->unblock('RequirementsTest_bc.js');
|
|
|
|
|
|
|
|
/* BLOCKED UNCOMBINED FILES ARE NOT INCLUDED */
|
|
|
|
$this->setupCombinedRequirements($backend);
|
2018-01-12 04:25:02 +01:00
|
|
|
$backend->block('javascript/RequirementsTest_b.js');
|
2016-12-16 05:34:21 +01:00
|
|
|
$combinedFileName2 = '/_combinedfiles/RequirementsTest_bc-3748f67.js'; // SHA1 without file b included
|
|
|
|
$combinedFilePath2 = TestAssetStore::base_path() . $combinedFileName2;
|
|
|
|
clearstatcache(); // needed to get accurate file_exists() results
|
|
|
|
$backend->includeInHTML(self::$html_template);
|
|
|
|
$this->assertFileExists($combinedFilePath2);
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertStringNotContainsString(
|
2017-12-17 04:22:26 +01:00
|
|
|
"alert('b')",
|
2022-04-14 03:12:59 +02:00
|
|
|
file_get_contents($combinedFilePath2 ?? ''),
|
2016-12-16 05:34:21 +01:00
|
|
|
'blocked uncombined files are not included'
|
|
|
|
);
|
2018-01-12 04:25:02 +01:00
|
|
|
$backend->unblock('javascript/RequirementsTest_b.js');
|
2016-12-16 05:34:21 +01:00
|
|
|
|
|
|
|
/* A SINGLE FILE CAN'T BE INCLUDED IN TWO COMBINED FILES */
|
|
|
|
$this->setupCombinedRequirements($backend);
|
|
|
|
clearstatcache(); // needed to get accurate file_exists() results
|
|
|
|
|
|
|
|
// Exception generated from including invalid file
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->expectException(\InvalidArgumentException::class);
|
2017-04-18 00:34:18 +02:00
|
|
|
$this->expectExceptionMessage(sprintf(
|
|
|
|
"Requirements_Backend::combine_files(): Already included file(s) %s in combined file '%s'",
|
2018-01-12 04:25:02 +01:00
|
|
|
'javascript/RequirementsTest_c.js',
|
2017-04-18 00:34:18 +02:00
|
|
|
'RequirementsTest_bc.js'
|
|
|
|
));
|
2016-12-16 05:34:21 +01:00
|
|
|
$backend->combineFiles(
|
|
|
|
'RequirementsTest_ac.js',
|
2018-01-12 04:25:02 +01:00
|
|
|
[
|
|
|
|
'javascript/RequirementsTest_a.js',
|
|
|
|
'javascript/RequirementsTest_c.js'
|
|
|
|
]
|
2016-12-16 05:34:21 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testArgsInUrls()
|
|
|
|
{
|
2017-04-18 00:34:18 +02:00
|
|
|
/** @var Requirements_Backend $backend */
|
2016-12-16 05:34:21 +01:00
|
|
|
$backend = Injector::inst()->create(Requirements_Backend::class);
|
|
|
|
$this->setupRequirements($backend);
|
|
|
|
|
2020-05-13 06:07:31 +02:00
|
|
|
$generator = Injector::inst()->get(ResourceURLGenerator::class);
|
|
|
|
$generator->setNonceStyle('mtime');
|
|
|
|
|
2018-01-12 04:25:02 +01:00
|
|
|
$backend->javascript('javascript/RequirementsTest_a.js?test=1&test=2&test=3');
|
|
|
|
$backend->css('css/RequirementsTest_a.css?test=1&test=2&test=3');
|
2016-12-16 05:34:21 +01:00
|
|
|
$html = $backend->includeInHTML(self::$html_template);
|
|
|
|
|
|
|
|
/* Javascript has correct path */
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertMatchesRegularExpression(
|
2017-06-27 04:30:48 +02:00
|
|
|
'/src=".*\/RequirementsTest_a\.js\?test=1&test=2&test=3&m=\d\d+/',
|
2016-12-16 05:34:21 +01:00
|
|
|
$html,
|
|
|
|
'javascript has correct path'
|
|
|
|
);
|
|
|
|
|
|
|
|
/* CSS has correct path */
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertMatchesRegularExpression(
|
2017-06-27 04:30:48 +02:00
|
|
|
'/href=".*\/RequirementsTest_a\.css\?test=1&test=2&test=3&m=\d\d+/',
|
2016-12-16 05:34:21 +01:00
|
|
|
$html,
|
|
|
|
'css has correct path'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testRequirementsBackend()
|
|
|
|
{
|
2017-04-18 00:34:18 +02:00
|
|
|
/** @var Requirements_Backend $backend */
|
2016-12-16 05:34:21 +01:00
|
|
|
$backend = Injector::inst()->create(Requirements_Backend::class);
|
|
|
|
$this->setupRequirements($backend);
|
2018-01-12 04:25:02 +01:00
|
|
|
$backend->javascript('a.js');
|
2016-12-16 05:34:21 +01:00
|
|
|
|
2017-12-17 04:09:22 +01:00
|
|
|
$this->assertCount(
|
|
|
|
1,
|
|
|
|
$backend->getJavascript(),
|
2016-12-16 05:34:21 +01:00
|
|
|
"There should be only 1 file included in required javascript."
|
|
|
|
);
|
|
|
|
$this->assertArrayHasKey(
|
2018-01-12 04:25:02 +01:00
|
|
|
'a.js',
|
2016-12-16 05:34:21 +01:00
|
|
|
$backend->getJavascript(),
|
|
|
|
"a.js should be included in required javascript."
|
|
|
|
);
|
|
|
|
|
2018-01-12 04:25:02 +01:00
|
|
|
$backend->javascript('b.js');
|
2017-12-17 04:09:22 +01:00
|
|
|
$this->assertCount(
|
|
|
|
2,
|
|
|
|
$backend->getJavascript(),
|
2016-12-16 05:34:21 +01:00
|
|
|
"There should be 2 files included in required javascript."
|
|
|
|
);
|
|
|
|
|
2018-01-12 04:25:02 +01:00
|
|
|
$backend->block('a.js');
|
2017-12-17 04:09:22 +01:00
|
|
|
$this->assertCount(
|
|
|
|
1,
|
|
|
|
$backend->getJavascript(),
|
2016-12-16 05:34:21 +01:00
|
|
|
"There should be only 1 file included in required javascript."
|
|
|
|
);
|
|
|
|
$this->assertArrayNotHasKey(
|
2018-01-12 04:25:02 +01:00
|
|
|
'a.js',
|
2016-12-16 05:34:21 +01:00
|
|
|
$backend->getJavascript(),
|
|
|
|
"a.js should not be included in required javascript after it has been blocked."
|
|
|
|
);
|
|
|
|
$this->assertArrayHasKey(
|
2018-01-12 04:25:02 +01:00
|
|
|
'b.js',
|
2016-12-16 05:34:21 +01:00
|
|
|
$backend->getJavascript(),
|
|
|
|
"b.js should be included in required javascript."
|
|
|
|
);
|
|
|
|
|
2018-01-12 04:25:02 +01:00
|
|
|
$backend->css('a.css');
|
2017-12-17 04:09:22 +01:00
|
|
|
$this->assertCount(
|
|
|
|
1,
|
|
|
|
$backend->getCSS(),
|
2016-12-16 05:34:21 +01:00
|
|
|
"There should be only 1 file included in required css."
|
|
|
|
);
|
|
|
|
$this->assertArrayHasKey(
|
2018-01-12 04:25:02 +01:00
|
|
|
'a.css',
|
2016-12-16 05:34:21 +01:00
|
|
|
$backend->getCSS(),
|
|
|
|
"a.css should be in required css."
|
|
|
|
);
|
|
|
|
|
2018-01-12 04:25:02 +01:00
|
|
|
$backend->block('a.css');
|
2017-12-17 04:09:22 +01:00
|
|
|
$this->assertCount(
|
|
|
|
0,
|
|
|
|
$backend->getCSS(),
|
2016-12-16 05:34:21 +01:00
|
|
|
"There should be nothing in required css after file has been blocked."
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-12-17 04:09:22 +01:00
|
|
|
public function testAppendAndBlockWithModuleResourceLoader()
|
|
|
|
{
|
|
|
|
/** @var Requirements_Backend $backend */
|
|
|
|
$backend = Injector::inst()->create(Requirements_Backend::class);
|
|
|
|
$this->setupRequirements($backend);
|
|
|
|
|
|
|
|
// Note: assumes that client/styles/debug.css is "exposed"
|
|
|
|
$backend->css('silverstripe/framework:client/styles/debug.css');
|
|
|
|
$this->assertCount(
|
|
|
|
1,
|
|
|
|
$backend->getCSS(),
|
|
|
|
'Module resource can be loaded via resources reference'
|
|
|
|
);
|
|
|
|
|
|
|
|
$backend->block('silverstripe/framework:client/styles/debug.css');
|
|
|
|
$this->assertCount(
|
|
|
|
0,
|
|
|
|
$backend->getCSS(),
|
|
|
|
'Module resource can be blocked via resources reference'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
public function testConditionalTemplateRequire()
|
|
|
|
{
|
2018-01-12 04:25:02 +01:00
|
|
|
// Set /SSViewerTest and /SSViewerTest/public as themes
|
|
|
|
SSViewer::set_themes([
|
|
|
|
'/',
|
|
|
|
SSViewer::PUBLIC_THEME
|
|
|
|
]);
|
|
|
|
ThemeResourceLoader::set_instance(new ThemeResourceLoader(__DIR__ . '/SSViewerTest'));
|
2016-12-16 05:34:21 +01:00
|
|
|
|
2017-04-18 00:34:18 +02:00
|
|
|
/** @var Requirements_Backend $backend */
|
2016-12-16 05:34:21 +01:00
|
|
|
$backend = Injector::inst()->create(Requirements_Backend::class);
|
|
|
|
$this->setupRequirements($backend);
|
|
|
|
$holder = Requirements::backend();
|
|
|
|
Requirements::set_backend($backend);
|
2018-01-12 04:25:02 +01:00
|
|
|
$data = new ArrayData([
|
2016-12-16 05:34:21 +01:00
|
|
|
'FailTest' => true,
|
2018-01-12 04:25:02 +01:00
|
|
|
]);
|
2016-12-16 05:34:21 +01:00
|
|
|
|
|
|
|
$data->renderWith('RequirementsTest_Conditionals');
|
2018-01-12 04:25:02 +01:00
|
|
|
$this->assertFileIncluded($backend, 'css', 'css/RequirementsTest_a.css');
|
2016-12-16 05:34:21 +01:00
|
|
|
$this->assertFileIncluded(
|
|
|
|
$backend,
|
|
|
|
'js',
|
2018-01-12 04:25:02 +01:00
|
|
|
[
|
|
|
|
'javascript/RequirementsTest_b.js',
|
|
|
|
'javascript/RequirementsTest_c.js'
|
|
|
|
]
|
2016-12-16 05:34:21 +01:00
|
|
|
);
|
2018-01-12 04:25:02 +01:00
|
|
|
$this->assertFileNotIncluded($backend, 'js', 'javascript/RequirementsTest_a.js');
|
2016-12-16 05:34:21 +01:00
|
|
|
$this->assertFileNotIncluded(
|
|
|
|
$backend,
|
|
|
|
'css',
|
2018-01-12 04:25:02 +01:00
|
|
|
[
|
|
|
|
'css/RequirementsTest_b.css',
|
|
|
|
'css/RequirementsTest_c.css'
|
|
|
|
]
|
2016-12-16 05:34:21 +01:00
|
|
|
);
|
|
|
|
$backend->clear();
|
|
|
|
$data = new ArrayData(
|
2020-04-20 19:58:09 +02:00
|
|
|
[
|
2016-12-16 05:34:21 +01:00
|
|
|
'FailTest' => false,
|
2020-04-20 19:58:09 +02:00
|
|
|
]
|
2016-12-16 05:34:21 +01:00
|
|
|
);
|
|
|
|
$data->renderWith('RequirementsTest_Conditionals');
|
2018-01-12 04:25:02 +01:00
|
|
|
$this->assertFileNotIncluded($backend, 'css', 'css/RequirementsTest_a.css');
|
2016-12-16 05:34:21 +01:00
|
|
|
$this->assertFileNotIncluded(
|
|
|
|
$backend,
|
|
|
|
'js',
|
2018-01-12 04:25:02 +01:00
|
|
|
[
|
|
|
|
'javascript/RequirementsTest_b.js',
|
|
|
|
'javascript/RequirementsTest_c.js',
|
|
|
|
]
|
2016-12-16 05:34:21 +01:00
|
|
|
);
|
2018-01-12 04:25:02 +01:00
|
|
|
$this->assertFileIncluded($backend, 'js', 'javascript/RequirementsTest_a.js');
|
2016-12-16 05:34:21 +01:00
|
|
|
$this->assertFileIncluded(
|
|
|
|
$backend,
|
|
|
|
'css',
|
2018-01-12 04:25:02 +01:00
|
|
|
[
|
|
|
|
'css/RequirementsTest_b.css',
|
|
|
|
'css/RequirementsTest_c.css',
|
|
|
|
]
|
2016-12-16 05:34:21 +01:00
|
|
|
);
|
|
|
|
Requirements::set_backend($holder);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testJsWriteToBody()
|
|
|
|
{
|
2017-04-18 00:34:18 +02:00
|
|
|
/** @var Requirements_Backend $backend */
|
2016-12-16 05:34:21 +01:00
|
|
|
$backend = Injector::inst()->create(Requirements_Backend::class);
|
|
|
|
$this->setupRequirements($backend);
|
|
|
|
$backend->javascript('http://www.mydomain.com/test.js');
|
|
|
|
|
|
|
|
// Test matching with HTML5 <header> tags as well
|
|
|
|
$template = '<html><head></head><body><header>My header</header><p>Body</p></body></html>';
|
|
|
|
|
|
|
|
$backend->setWriteJavascriptToBody(false);
|
|
|
|
$html = $backend->includeInHTML($template);
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertStringContainsString('<head><script', $html);
|
2016-12-16 05:34:21 +01:00
|
|
|
|
|
|
|
$backend->setWriteJavascriptToBody(true);
|
|
|
|
$html = $backend->includeInHTML($template);
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertStringNotContainsString('<head><script', $html);
|
|
|
|
$this->assertStringContainsString("</script>\n</body>", $html);
|
2016-12-16 05:34:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testIncludedJsIsNotCommentedOut()
|
|
|
|
{
|
|
|
|
$template = '<html><head></head><body><!--<script>alert("commented out");</script>--></body></html>';
|
2017-04-18 00:34:18 +02:00
|
|
|
/** @var Requirements_Backend $backend */
|
2016-12-16 05:34:21 +01:00
|
|
|
$backend = Injector::inst()->create(Requirements_Backend::class);
|
|
|
|
$this->setupRequirements($backend);
|
2018-01-12 04:25:02 +01:00
|
|
|
$backend->javascript('javascript/RequirementsTest_a.js');
|
2016-12-16 05:34:21 +01:00
|
|
|
$html = $backend->includeInHTML($template);
|
|
|
|
//wiping out commented-out html
|
2022-04-14 03:12:59 +02:00
|
|
|
$html = preg_replace('/<!--(.*)-->/Uis', '', $html ?? '');
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertStringContainsString("RequirementsTest_a.js", $html);
|
2016-12-16 05:34:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testCommentedOutScriptTagIsIgnored()
|
|
|
|
{
|
2017-06-27 04:30:48 +02:00
|
|
|
/// Disable nonce
|
2017-10-03 03:21:24 +02:00
|
|
|
$urlGenerator = new SimpleResourceURLGenerator();
|
|
|
|
Injector::inst()->registerService($urlGenerator, ResourceURLGenerator::class);
|
2017-06-27 04:30:48 +02:00
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
$template = '<html><head></head><body><!--<script>alert("commented out");</script>-->'
|
|
|
|
. '<h1>more content</h1></body></html>';
|
2017-10-03 03:21:24 +02:00
|
|
|
/** @var Requirements_Backend $backend */
|
2016-12-16 05:34:21 +01:00
|
|
|
$backend = Injector::inst()->create(Requirements_Backend::class);
|
|
|
|
$this->setupRequirements($backend);
|
2017-06-27 04:30:48 +02:00
|
|
|
|
2018-01-12 04:25:02 +01:00
|
|
|
$src = 'javascript/RequirementsTest_a.js';
|
2016-12-16 05:34:21 +01:00
|
|
|
$backend->javascript($src);
|
|
|
|
$html = $backend->includeInHTML($template);
|
2017-10-03 03:21:24 +02:00
|
|
|
$urlSrc = $urlGenerator->urlForResource($src);
|
2016-12-16 05:34:21 +01:00
|
|
|
$this->assertEquals(
|
|
|
|
'<html><head></head><body><!--<script>alert("commented out");</script>-->'
|
2017-04-18 00:34:18 +02:00
|
|
|
. '<h1>more content</h1><script type="application/javascript" src="' . $urlSrc
|
|
|
|
. "\"></script>\n</body></html>",
|
2016-12-16 05:34:21 +01:00
|
|
|
$html
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testForceJsToBottom()
|
|
|
|
{
|
2017-04-18 00:34:18 +02:00
|
|
|
/** @var Requirements_Backend $backend */
|
2016-12-16 05:34:21 +01:00
|
|
|
$backend = Injector::inst()->create(Requirements_Backend::class);
|
|
|
|
$this->setupRequirements($backend);
|
|
|
|
$backend->javascript('http://www.mydomain.com/test.js');
|
|
|
|
$backend->customScript(
|
|
|
|
<<<'EOS'
|
2016-04-19 07:20:30 +02:00
|
|
|
var globalvar = {
|
|
|
|
pattern: '\\$custom\\1'
|
|
|
|
};
|
|
|
|
EOS
|
2016-12-16 05:34:21 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
// Test matching with HTML5 <header> tags as well
|
|
|
|
$template = '<html><head></head><body><header>My header</header><p>Body<script></script></p></body></html>';
|
|
|
|
|
|
|
|
// The expected outputs
|
2017-04-18 00:34:18 +02:00
|
|
|
$expectedScripts = "<script type=\"application/javascript\" src=\"http://www.mydomain.com/test.js\"></script>\n"
|
|
|
|
. "<script type=\"application/javascript\">//<![CDATA[\n"
|
2016-12-16 05:34:21 +01:00
|
|
|
. "var globalvar = {\n\tpattern: '\\\\\$custom\\\\1'\n};\n"
|
2017-04-18 00:34:18 +02:00
|
|
|
. "//]]></script>\n";
|
2016-12-16 05:34:21 +01:00
|
|
|
$JsInHead = "<html><head>$expectedScripts</head><body><header>My header</header><p>Body<script></script></p></body></html>";
|
|
|
|
$JsInBody = "<html><head></head><body><header>My header</header><p>Body$expectedScripts<script></script></p></body></html>";
|
|
|
|
$JsAtEnd = "<html><head></head><body><header>My header</header><p>Body<script></script></p>$expectedScripts</body></html>";
|
|
|
|
|
|
|
|
|
|
|
|
// Test if the script is before the head tag, not before the body.
|
|
|
|
// Expected: $JsInHead
|
|
|
|
$backend->setWriteJavascriptToBody(false);
|
|
|
|
$backend->setForceJSToBottom(false);
|
|
|
|
$html = $backend->includeInHTML($template);
|
|
|
|
$this->assertNotEquals($JsInBody, $html);
|
|
|
|
$this->assertNotEquals($JsAtEnd, $html);
|
|
|
|
$this->assertEquals($JsInHead, $html);
|
|
|
|
|
|
|
|
// Test if the script is before the first <script> tag, not before the body.
|
|
|
|
// Expected: $JsInBody
|
|
|
|
$backend->setWriteJavascriptToBody(true);
|
|
|
|
$backend->setForceJSToBottom(false);
|
|
|
|
$html = $backend->includeInHTML($template);
|
|
|
|
$this->assertNotEquals($JsAtEnd, $html);
|
|
|
|
$this->assertEquals($JsInBody, $html);
|
|
|
|
|
|
|
|
// Test if the script is placed just before the closing bodytag, with write-to-body false.
|
|
|
|
// Expected: $JsAtEnd
|
|
|
|
$backend->setWriteJavascriptToBody(false);
|
|
|
|
$backend->setForceJSToBottom(true);
|
|
|
|
$html = $backend->includeInHTML($template);
|
|
|
|
$this->assertNotEquals($JsInHead, $html);
|
|
|
|
$this->assertNotEquals($JsInBody, $html);
|
|
|
|
$this->assertEquals($JsAtEnd, $html);
|
|
|
|
|
|
|
|
// Test if the script is placed just before the closing bodytag, with write-to-body true.
|
|
|
|
// Expected: $JsAtEnd
|
|
|
|
$backend->setWriteJavascriptToBody(true);
|
|
|
|
$backend->setForceJSToBottom(true);
|
|
|
|
$html = $backend->includeInHTML($template);
|
|
|
|
$this->assertNotEquals($JsInHead, $html);
|
|
|
|
$this->assertNotEquals($JsInBody, $html);
|
|
|
|
$this->assertEquals($JsAtEnd, $html);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testSuffix()
|
|
|
|
{
|
2017-06-27 04:30:48 +02:00
|
|
|
/// Disable nonce
|
|
|
|
$urlGenerator = new SimpleResourceURLGenerator();
|
|
|
|
Injector::inst()->registerService($urlGenerator, ResourceURLGenerator::class);
|
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
$template = '<html><head></head><body><header>My header</header><p>Body</p></body></html>';
|
|
|
|
|
2017-04-18 00:34:18 +02:00
|
|
|
/** @var Requirements_Backend $backend */
|
2016-12-16 05:34:21 +01:00
|
|
|
$backend = Injector::inst()->create(Requirements_Backend::class);
|
|
|
|
$this->setupRequirements($backend);
|
|
|
|
|
2018-01-12 04:25:02 +01:00
|
|
|
$backend->javascript('javascript/RequirementsTest_a.js');
|
|
|
|
$backend->javascript('javascript/RequirementsTest_b.js?foo=bar&bla=blubb');
|
|
|
|
$backend->css('css/RequirementsTest_a.css');
|
|
|
|
$backend->css('css/RequirementsTest_b.css?foo=bar&bla=blubb');
|
2016-12-16 05:34:21 +01:00
|
|
|
|
2017-06-27 04:30:48 +02:00
|
|
|
$urlGenerator->setNonceStyle('mtime');
|
2016-12-16 05:34:21 +01:00
|
|
|
$html = $backend->includeInHTML($template);
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertMatchesRegularExpression('/RequirementsTest_a\.js\?m=[\d]*"/', $html);
|
|
|
|
$this->assertMatchesRegularExpression('/RequirementsTest_b\.js\?foo=bar&bla=blubb&m=[\d]*"/', $html);
|
|
|
|
$this->assertMatchesRegularExpression('/RequirementsTest_a\.css\?m=[\d]*"/', $html);
|
|
|
|
$this->assertMatchesRegularExpression('/RequirementsTest_b\.css\?foo=bar&bla=blubb&m=[\d]*"/', $html);
|
2016-12-16 05:34:21 +01:00
|
|
|
|
2017-06-27 04:30:48 +02:00
|
|
|
$urlGenerator->setNonceStyle(null);
|
2016-12-16 05:34:21 +01:00
|
|
|
$html = $backend->includeInHTML($template);
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertStringNotContainsString('RequirementsTest_a.js=', $html);
|
|
|
|
$this->assertDoesNotMatchRegularExpression('/RequirementsTest_a\.js\?m=[\d]*"/', $html);
|
|
|
|
$this->assertDoesNotMatchRegularExpression('/RequirementsTest_b\.js\?foo=bar&bla=blubb&m=[\d]*"/', $html);
|
|
|
|
$this->assertDoesNotMatchRegularExpression('/RequirementsTest_a\.css\?m=[\d]*"/', $html);
|
|
|
|
$this->assertDoesNotMatchRegularExpression('/RequirementsTest_b\.css\?foo=bar&bla=blubb&m=[\d]*"/', $html);
|
2016-12-16 05:34:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Tests that provided files work
|
|
|
|
*/
|
|
|
|
public function testProvidedFiles()
|
|
|
|
{
|
2017-04-18 00:34:18 +02:00
|
|
|
/** @var Requirements_Backend $backend */
|
2016-12-16 05:34:21 +01:00
|
|
|
$template = '<html><head></head><body><header>My header</header><p>Body</p></body></html>';
|
|
|
|
|
|
|
|
// Test that provided files block subsequent files
|
|
|
|
$backend = Injector::inst()->create(Requirements_Backend::class);
|
|
|
|
$this->setupRequirements($backend);
|
2018-01-12 04:25:02 +01:00
|
|
|
$backend->javascript('javascript/RequirementsTest_a.js');
|
2016-12-16 05:34:21 +01:00
|
|
|
$backend->javascript(
|
2018-01-12 04:25:02 +01:00
|
|
|
'javascript/RequirementsTest_b.js',
|
2016-12-16 05:34:21 +01:00
|
|
|
[
|
|
|
|
'provides' => [
|
2018-01-12 04:25:02 +01:00
|
|
|
'javascript/RequirementsTest_a.js',
|
|
|
|
'javascript/RequirementsTest_c.js',
|
|
|
|
],
|
2016-12-16 05:34:21 +01:00
|
|
|
]
|
|
|
|
);
|
2018-01-12 04:25:02 +01:00
|
|
|
$backend->javascript('javascript/RequirementsTest_c.js');
|
2016-12-16 05:34:21 +01:00
|
|
|
// Note that _a.js isn't considered provided because it was included
|
|
|
|
// before it was marked as provided
|
|
|
|
$this->assertEquals(
|
|
|
|
[
|
2018-01-12 04:25:02 +01:00
|
|
|
'javascript/RequirementsTest_c.js' => 'javascript/RequirementsTest_c.js'
|
2016-12-16 05:34:21 +01:00
|
|
|
],
|
|
|
|
$backend->getProvidedScripts()
|
|
|
|
);
|
|
|
|
$html = $backend->includeInHTML($template);
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertMatchesRegularExpression('/src=".*\/RequirementsTest_a\.js/', $html);
|
|
|
|
$this->assertMatchesRegularExpression('/src=".*\/RequirementsTest_b\.js/', $html);
|
|
|
|
$this->assertDoesNotMatchRegularExpression('/src=".*\/RequirementsTest_c\.js/', $html);
|
2016-12-16 05:34:21 +01:00
|
|
|
|
|
|
|
// Test that provided files block subsequent combined files
|
|
|
|
$backend = Injector::inst()->create(Requirements_Backend::class);
|
|
|
|
$this->setupRequirements($backend);
|
2018-01-12 04:25:02 +01:00
|
|
|
$backend->combineFiles('combined_a.js', ['javascript/RequirementsTest_a.js']);
|
2016-12-16 05:34:21 +01:00
|
|
|
$backend->javascript(
|
2018-01-12 04:25:02 +01:00
|
|
|
'javascript/RequirementsTest_b.js',
|
2016-12-16 05:34:21 +01:00
|
|
|
[
|
|
|
|
'provides' => [
|
2018-01-12 04:25:02 +01:00
|
|
|
'javascript/RequirementsTest_a.js',
|
|
|
|
'javascript/RequirementsTest_c.js'
|
2016-12-16 05:34:21 +01:00
|
|
|
]
|
|
|
|
]
|
|
|
|
);
|
2018-01-12 04:25:02 +01:00
|
|
|
$backend->combineFiles('combined_c.js', ['javascript/RequirementsTest_c.js']);
|
2016-12-16 05:34:21 +01:00
|
|
|
$this->assertEquals(
|
|
|
|
[
|
2018-01-12 04:25:02 +01:00
|
|
|
'javascript/RequirementsTest_c.js' => 'javascript/RequirementsTest_c.js'
|
2016-12-16 05:34:21 +01:00
|
|
|
],
|
|
|
|
$backend->getProvidedScripts()
|
|
|
|
);
|
|
|
|
$html = $backend->includeInHTML($template);
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertMatchesRegularExpression('/src=".*\/combined_a/', $html);
|
|
|
|
$this->assertMatchesRegularExpression('/src=".*\/RequirementsTest_b\.js/', $html);
|
|
|
|
$this->assertDoesNotMatchRegularExpression('/src=".*\/combined_c/', $html);
|
|
|
|
$this->assertDoesNotMatchRegularExpression('/src=".*\/RequirementsTest_c\.js/', $html);
|
2016-12-16 05:34:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Verify that the given backend includes the given files
|
|
|
|
*
|
|
|
|
* @param Requirements_Backend $backend
|
|
|
|
* @param string $type js or css
|
|
|
|
* @param array|string $files Files or list of files to check
|
|
|
|
*/
|
|
|
|
public function assertFileIncluded($backend, $type, $files)
|
|
|
|
{
|
|
|
|
$includedFiles = $this->getBackendFiles($backend, $type);
|
|
|
|
|
|
|
|
if (is_array($files)) {
|
2020-04-20 19:58:09 +02:00
|
|
|
$failedMatches = [];
|
2016-12-16 05:34:21 +01:00
|
|
|
foreach ($files as $file) {
|
2022-04-14 03:12:59 +02:00
|
|
|
if (!array_key_exists($file, $includedFiles ?? [])) {
|
2016-12-16 05:34:21 +01:00
|
|
|
$failedMatches[] = $file;
|
|
|
|
}
|
|
|
|
}
|
2017-12-17 04:22:26 +01:00
|
|
|
$this->assertCount(
|
|
|
|
0,
|
|
|
|
$failedMatches,
|
2016-12-16 05:34:21 +01:00
|
|
|
"Failed asserting the $type files '"
|
|
|
|
. implode("', '", $failedMatches)
|
|
|
|
. "' have exact matches in the required elements:\n'"
|
2022-04-14 03:12:59 +02:00
|
|
|
. implode("'\n'", array_keys($includedFiles ?? [])) . "'"
|
2016-12-16 05:34:21 +01:00
|
|
|
);
|
|
|
|
} else {
|
2017-12-17 04:22:26 +01:00
|
|
|
$this->assertArrayHasKey(
|
|
|
|
$files,
|
|
|
|
$includedFiles,
|
2016-12-16 05:34:21 +01:00
|
|
|
"Failed asserting the $type file '$files' has an exact match in the required elements:\n'"
|
2022-04-14 03:12:59 +02:00
|
|
|
. implode("'\n'", array_keys($includedFiles ?? [])) . "'"
|
2016-12-16 05:34:21 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function assertFileNotIncluded($backend, $type, $files)
|
|
|
|
{
|
|
|
|
$includedFiles = $this->getBackendFiles($backend, $type);
|
|
|
|
if (is_array($files)) {
|
2020-04-20 19:58:09 +02:00
|
|
|
$failedMatches = [];
|
2016-12-16 05:34:21 +01:00
|
|
|
foreach ($files as $file) {
|
2022-04-14 03:12:59 +02:00
|
|
|
if (array_key_exists($file, $includedFiles ?? [])) {
|
2016-12-16 05:34:21 +01:00
|
|
|
$failedMatches[] = $file;
|
|
|
|
}
|
|
|
|
}
|
2017-12-17 04:22:26 +01:00
|
|
|
$this->assertCount(
|
|
|
|
0,
|
|
|
|
$failedMatches,
|
2016-12-16 05:34:21 +01:00
|
|
|
"Failed asserting the $type files '"
|
|
|
|
. implode("', '", $failedMatches)
|
|
|
|
. "' do not have exact matches in the required elements:\n'"
|
2022-04-14 03:12:59 +02:00
|
|
|
. implode("'\n'", array_keys($includedFiles ?? [])) . "'"
|
2016-12-16 05:34:21 +01:00
|
|
|
);
|
|
|
|
} else {
|
2017-12-17 04:22:26 +01:00
|
|
|
$this->assertArrayNotHasKey(
|
|
|
|
$files,
|
|
|
|
$includedFiles,
|
2016-12-16 05:34:21 +01:00
|
|
|
"Failed asserting the $type file '$files' does not have an exact match in the required elements:"
|
2022-04-14 03:12:59 +02:00
|
|
|
. "\n'" . implode("'\n'", array_keys($includedFiles ?? [])) . "'"
|
2016-12-16 05:34:21 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get files of the given type from the backend
|
|
|
|
*
|
|
|
|
* @param Requirements_Backend $backend
|
|
|
|
* @param string $type js or css
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
protected function getBackendFiles($backend, $type)
|
|
|
|
{
|
2022-04-14 03:12:59 +02:00
|
|
|
$type = strtolower($type ?? '');
|
|
|
|
switch (strtolower($type ?? '')) {
|
2016-12-16 05:34:21 +01:00
|
|
|
case 'css':
|
2017-02-22 04:15:08 +01:00
|
|
|
return $backend->getCSS();
|
2016-12-16 05:34:21 +01:00
|
|
|
case 'js':
|
|
|
|
case 'javascript':
|
|
|
|
case 'script':
|
2017-02-22 04:15:08 +01:00
|
|
|
return $backend->getJavascript();
|
2016-12-16 05:34:21 +01:00
|
|
|
}
|
2020-04-20 19:58:09 +02:00
|
|
|
return [];
|
2016-12-16 05:34:21 +01:00
|
|
|
}
|
2019-01-15 22:36:53 +01:00
|
|
|
|
|
|
|
public function testAddI18nJavascript()
|
|
|
|
{
|
|
|
|
/** @var Requirements_Backend $backend */
|
|
|
|
$backend = Injector::inst()->create(Requirements_Backend::class);
|
|
|
|
$this->setupRequirements($backend);
|
|
|
|
$backend->add_i18n_javascript('i18n');
|
|
|
|
|
|
|
|
$actual = $backend->getJavascript();
|
|
|
|
|
|
|
|
// English and English US should always be loaded no matter what
|
|
|
|
$this->assertArrayHasKey('i18n/en.js', $actual);
|
|
|
|
$this->assertArrayHasKey('i18n/en_US.js', $actual);
|
|
|
|
$this->assertArrayHasKey('i18n/en-us.js', $actual);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testAddI18nJavascriptWithDefaultLocale()
|
|
|
|
{
|
|
|
|
i18n::config()->set('default_locale', 'fr_CA');
|
|
|
|
|
|
|
|
/** @var Requirements_Backend $backend */
|
|
|
|
$backend = Injector::inst()->create(Requirements_Backend::class);
|
|
|
|
$this->setupRequirements($backend);
|
|
|
|
$backend->add_i18n_javascript('i18n');
|
|
|
|
|
|
|
|
$actual = $backend->getJavascript();
|
|
|
|
|
|
|
|
|
|
|
|
$this->assertArrayHasKey('i18n/en.js', $actual);
|
|
|
|
$this->assertArrayHasKey('i18n/en_US.js', $actual);
|
|
|
|
$this->assertArrayHasKey('i18n/en-us.js', $actual);
|
|
|
|
// Default locale should be loaded
|
|
|
|
$this->assertArrayHasKey('i18n/fr.js', $actual);
|
|
|
|
$this->assertArrayHasKey('i18n/fr_CA.js', $actual);
|
|
|
|
$this->assertArrayHasKey('i18n/fr-ca.js', $actual);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testAddI18nJavascriptWithMemberLocale()
|
|
|
|
{
|
|
|
|
i18n::set_locale('en_GB');
|
|
|
|
|
|
|
|
/** @var Requirements_Backend $backend */
|
|
|
|
$backend = Injector::inst()->create(Requirements_Backend::class);
|
|
|
|
$this->setupRequirements($backend);
|
|
|
|
$backend->add_i18n_javascript('i18n');
|
|
|
|
|
|
|
|
$actual = $backend->getJavascript();
|
|
|
|
|
|
|
|
// The current member's Locale as defined by i18n::get_locale should be loaded
|
|
|
|
$this->assertArrayHasKey('i18n/en.js', $actual);
|
|
|
|
$this->assertArrayHasKey('i18n/en_US.js', $actual);
|
|
|
|
$this->assertArrayHasKey('i18n/en-us.js', $actual);
|
|
|
|
$this->assertArrayHasKey('i18n/en-gb.js', $actual);
|
|
|
|
$this->assertArrayHasKey('i18n/en_GB.js', $actual);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testAddI18nJavascriptWithMissingLocale()
|
|
|
|
{
|
|
|
|
i18n::set_locale('fr_BE');
|
|
|
|
|
|
|
|
/** @var Requirements_Backend $backend */
|
|
|
|
$backend = Injector::inst()->create(Requirements_Backend::class);
|
|
|
|
$this->setupRequirements($backend);
|
|
|
|
$backend->add_i18n_javascript('i18n');
|
|
|
|
|
|
|
|
$actual = $backend->getJavascript();
|
|
|
|
|
|
|
|
// We don't have a file for French Belgium. Regular french should be loaded anyway.
|
|
|
|
$this->assertArrayHasKey('i18n/en.js', $actual);
|
|
|
|
$this->assertArrayHasKey('i18n/en_US.js', $actual);
|
|
|
|
$this->assertArrayHasKey('i18n/en-us.js', $actual);
|
|
|
|
$this->assertArrayHasKey('i18n/fr.js', $actual);
|
|
|
|
}
|
2019-07-21 09:51:22 +02:00
|
|
|
|
|
|
|
public function testSriAttributes()
|
|
|
|
{
|
|
|
|
/** @var Requirements_Backend $backend */
|
|
|
|
$backend = Injector::inst()->create(Requirements_Backend::class);
|
|
|
|
$this->setupRequirements($backend);
|
|
|
|
|
|
|
|
$backend->javascript('javascript/RequirementsTest_a.js', ['integrity' => 'abc', 'crossorigin' => 'use-credentials']);
|
|
|
|
$backend->css('css/RequirementsTest_a.css', null, ['integrity' => 'def', 'crossorigin' => 'anonymous']);
|
|
|
|
$html = $backend->includeInHTML(self::$html_template);
|
|
|
|
|
|
|
|
/* Javascript has correct attributes */
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertMatchesRegularExpression(
|
2019-07-21 09:51:22 +02:00
|
|
|
'#<script type="application/javascript" src=".*/javascript/RequirementsTest_a.js.*" integrity="abc" crossorigin="use-credentials"#',
|
|
|
|
$html,
|
|
|
|
'javascript has correct sri attributes'
|
|
|
|
);
|
|
|
|
|
|
|
|
/* CSS has correct attributes */
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertMatchesRegularExpression(
|
2019-07-21 09:51:22 +02:00
|
|
|
'#<link .*href=".*/RequirementsTest_a\.css.*" integrity="def" crossorigin="anonymous"#',
|
|
|
|
$html,
|
|
|
|
'css has correct sri attributes'
|
|
|
|
);
|
|
|
|
}
|
2012-12-08 12:20:20 +01:00
|
|
|
}
|