| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428 |
- <?php
- declare(strict_types=1);
- /**
- * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- * @link https://cakephp.org CakePHP(tm) Project
- * @since 4.0.0
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\Routing;
- use Cake\Core\Configure;
- use Cake\Http\ServerRequest;
- use Cake\Routing\Asset;
- use Cake\Routing\Router;
- use Cake\TestSuite\TestCase;
- /**
- * AssetTest class
- */
- class AssetTest extends TestCase
- {
- /**
- * @var \Cake\Routing\RouteBuilder
- */
- protected $builder;
- /**
- * setUp method
- */
- public function setUp(): void
- {
- parent::setUp();
- Router::reload();
- $request = new ServerRequest([
- 'webroot' => '/',
- ]);
- Router::setRequest($request);
- static::setAppNamespace();
- $this->loadPlugins(['TestTheme']);
- $this->builder = Router::createRouteBuilder('/');
- $this->builder->fallbacks();
- }
- /**
- * tearDown method
- */
- public function tearDown(): void
- {
- parent::tearDown();
- $this->clearPlugins();
- }
- /**
- * test assetTimestamp application
- */
- public function testAssetTimestamp(): void
- {
- Configure::write('Foo.bar', 'test');
- Configure::write('Asset.timestamp', false);
- $result = Asset::assetTimestamp(Configure::read('App.cssBaseUrl') . 'cake.generic.css');
- $this->assertSame(Configure::read('App.cssBaseUrl') . 'cake.generic.css', $result);
- Configure::write('Asset.timestamp', true);
- Configure::write('debug', false);
- $result = Asset::assetTimestamp('/%3Cb%3E/cake.generic.css');
- $this->assertSame('/%3Cb%3E/cake.generic.css', $result);
- $result = Asset::assetTimestamp(Configure::read('App.cssBaseUrl') . 'cake.generic.css');
- $this->assertSame(Configure::read('App.cssBaseUrl') . 'cake.generic.css', $result);
- Configure::write('Asset.timestamp', true);
- Configure::write('debug', true);
- $result = Asset::assetTimestamp(Configure::read('App.cssBaseUrl') . 'cake.generic.css');
- $this->assertMatchesRegularExpression('/' . preg_quote(Configure::read('App.cssBaseUrl') . 'cake.generic.css?', '/') . '[0-9]+/', $result);
- Configure::write('Asset.timestamp', 'force');
- Configure::write('debug', false);
- $result = Asset::assetTimestamp(Configure::read('App.cssBaseUrl') . 'cake.generic.css');
- $this->assertMatchesRegularExpression('/' . preg_quote(Configure::read('App.cssBaseUrl') . 'cake.generic.css?', '/') . '[0-9]+/', $result);
- $result = Asset::assetTimestamp(Configure::read('App.cssBaseUrl') . 'cake.generic.css?someparam');
- $this->assertSame(Configure::read('App.cssBaseUrl') . 'cake.generic.css?someparam', $result);
- $request = Router::getRequest()->withAttribute('webroot', '/some/dir/');
- Router::setRequest($request);
- $result = Asset::assetTimestamp('/some/dir/' . Configure::read('App.cssBaseUrl') . 'cake.generic.css');
- $this->assertMatchesRegularExpression('/' . preg_quote(Configure::read('App.cssBaseUrl') . 'cake.generic.css?', '/') . '[0-9]+/', $result);
- }
- /**
- * test assetUrl application
- */
- public function testAssetUrl(): void
- {
- $this->builder->connect('/{controller}/{action}/*');
- $result = Asset::url('js/post.js', ['fullBase' => true]);
- $this->assertSame(Router::fullBaseUrl() . '/js/post.js', $result);
- $result = Asset::url('foo.jpg', ['pathPrefix' => 'img/']);
- $this->assertSame('/img/foo.jpg', $result);
- $result = Asset::url('foo.jpg', ['fullBase' => true]);
- $this->assertSame(Router::fullBaseUrl() . '/foo.jpg', $result);
- $result = Asset::url('style', ['ext' => '.css']);
- $this->assertSame('/style.css', $result);
- $result = Asset::url('dir/sub dir/my image', ['ext' => '.jpg']);
- $this->assertSame('/dir/sub%20dir/my%20image.jpg', $result);
- $result = Asset::url('foo.jpg?one=two&three=four');
- $this->assertSame('/foo.jpg?one=two&three=four', $result);
- // No HTML entities encoding is done
- $result = Asset::url('x:"><script>alert(1)</script>');
- $this->assertSame('x:"><script>alert(1)</script>', $result);
- // URL encoding is done
- $result = Asset::url('dir/big+tall/image', ['ext' => '.jpg']);
- $this->assertSame('/dir/big%2Btall/image.jpg', $result);
- $result = Asset::url('/posts/index/adbirawwy/page:6/sort:type/');
- $this->assertSame('/posts/index/adbirawwy/page%3A6/sort%3Atype/', $result);
- }
- /**
- * Test assetUrl and data uris
- */
- public function testAssetUrlDataUri(): void
- {
- $request = Router::getRequest()
- ->withAttribute('base', 'subdir')
- ->withAttribute('webroot', 'subdir/');
- Router::setRequest($request);
- $data = 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4' .
- '/8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg==';
- $result = Asset::url($data);
- $this->assertSame($data, $result);
- $data = 'data:image/png;base64,<evil>';
- $result = Asset::url($data);
- $this->assertSame($data, $result);
- }
- /**
- * Test assetUrl with no rewriting.
- */
- public function testAssetUrlNoRewrite(): void
- {
- $request = Router::getRequest()
- ->withAttribute('base', '/cake_dev/index.php')
- ->withAttribute('webroot', '/cake_dev/app/webroot/')
- ->withRequestTarget('/cake_dev/index.php/tasks');
- Router::setRequest($request);
- $result = Asset::url('img/cake.icon.png', ['fullBase' => true]);
- $expected = Configure::read('App.fullBaseUrl') . '/cake_dev/app/webroot/img/cake.icon.png';
- $this->assertSame($expected, $result);
- }
- /**
- * Test assetUrl with plugins.
- */
- public function testAssetUrlPlugin(): void
- {
- $this->loadPlugins(['TestPlugin']);
- $result = Asset::url('TestPlugin.style', ['ext' => '.css']);
- $this->assertSame('/test_plugin/style.css', $result);
- $result = Asset::url('TestPlugin.style', ['ext' => '.css', 'plugin' => false]);
- $this->assertSame('/TestPlugin.style.css', $result);
- $this->removePlugins(['TestPlugin']);
- }
- /**
- * Tests assetUrl() with full base URL.
- */
- public function testAssetUrlFullBase(): void
- {
- $result = Asset::url('img/foo.jpg', ['fullBase' => true]);
- $this->assertSame(Router::fullBaseUrl() . '/img/foo.jpg', $result);
- $result = Asset::url('img/foo.jpg', ['fullBase' => 'https://xyz/']);
- $this->assertSame('https://xyz/img/foo.jpg', $result);
- }
- /**
- * test assetUrl and Asset.timestamp = force
- */
- public function testAssetUrlTimestampForce(): void
- {
- Configure::write('Asset.timestamp', 'force');
- $result = Asset::url('cake.generic.css', ['pathPrefix' => Configure::read('App.cssBaseUrl')]);
- $this->assertMatchesRegularExpression('/' . preg_quote(Configure::read('App.cssBaseUrl') . 'cake.generic.css?', '/') . '[0-9]+/', $result);
- }
- /**
- * Test assetTimestamp with timestamp option overriding `Asset.timestamp` in Configure.
- */
- public function testAssetTimestampConfigureOverride(): void
- {
- Configure::write('Asset.timestamp', 'force');
- $timestamp = false;
- $result = Asset::assetTimestamp(Configure::read('App.cssBaseUrl') . 'cake.generic.css', $timestamp);
- $this->assertSame(Configure::read('App.cssBaseUrl') . 'cake.generic.css', $result);
- }
- /**
- * test assetTimestamp with plugins and themes
- */
- public function testAssetTimestampPluginsAndThemes(): void
- {
- Configure::write('Asset.timestamp', 'force');
- $this->loadPlugins(['TestTheme', 'TestPlugin', 'Company/TestPluginThree']);
- $result = Asset::assetTimestamp('/test_plugin/css/test_plugin_asset.css');
- $this->assertMatchesRegularExpression('#/test_plugin/css/test_plugin_asset.css\?[0-9]+$#', $result, 'Missing timestamp plugin');
- $result = Asset::assetTimestamp('/company/test_plugin_three/css/company.css');
- $this->assertMatchesRegularExpression('#/company/test_plugin_three/css/company.css\?[0-9]+$#', $result, 'Missing timestamp plugin');
- $result = Asset::assetTimestamp('/test_plugin/css/i_dont_exist.css');
- $this->assertMatchesRegularExpression('#/test_plugin/css/i_dont_exist.css$#', $result, 'No error on missing file');
- $result = Asset::assetTimestamp('/test_theme/js/theme.js');
- $this->assertMatchesRegularExpression('#/test_theme/js/theme.js\?[0-9]+$#', $result, 'Missing timestamp theme');
- $result = Asset::assetTimestamp('/test_theme/js/nonexistent.js');
- $this->assertMatchesRegularExpression('#/test_theme/js/nonexistent.js$#', $result, 'No error on missing file');
- }
- /**
- * test script()
- */
- public function testScript(): void
- {
- $this->builder->connect('/{controller}/{action}/*');
- $result = Asset::scriptUrl('post.js', ['fullBase' => true]);
- $this->assertSame(Router::fullBaseUrl() . '/js/post.js', $result);
- }
- /**
- * Test script and Asset.timestamp = force
- */
- public function testScriptTimestampForce(): void
- {
- Configure::write('Asset.timestamp', 'force');
- $result = Asset::scriptUrl('script.js');
- $this->assertMatchesRegularExpression('/' . preg_quote(Configure::read('App.jsBaseUrl') . 'script.js?', '/') . '[0-9]+/', $result);
- }
- /**
- * Test script with timestamp option overriding `Asset.timestamp` in Configure
- */
- public function testScriptTimestampConfigureOverride(): void
- {
- Configure::write('Asset.timestamp', 'force');
- $timestamp = false;
- $result = Asset::scriptUrl('script.js', ['timestamp' => $timestamp]);
- $this->assertSame('/' . Configure::read('App.jsBaseUrl') . 'script.js', $result);
- }
- /**
- * test image()
- */
- public function testImage(): void
- {
- $result = Asset::imageUrl('foo.jpg');
- $this->assertSame('/img/foo.jpg', $result);
- $result = Asset::imageUrl('foo.jpg', ['fullBase' => true]);
- $this->assertSame(Router::fullBaseUrl() . '/img/foo.jpg', $result);
- $result = Asset::imageUrl('dir/sub dir/my image.jpg');
- $this->assertSame('/img/dir/sub%20dir/my%20image.jpg', $result);
- $result = Asset::imageUrl('foo.jpg?one=two&three=four');
- $this->assertSame('/img/foo.jpg?one=two&three=four', $result);
- $result = Asset::imageUrl('dir/big+tall/image.jpg');
- $this->assertSame('/img/dir/big%2Btall/image.jpg', $result);
- $result = Asset::imageUrl('cid:foo.jpg');
- $this->assertSame('cid:foo.jpg', $result);
- $result = Asset::imageUrl('CID:foo.jpg');
- $this->assertSame('CID:foo.jpg', $result);
- }
- /**
- * Test image with `Asset.timestamp` = force
- */
- public function testImageTimestampForce(): void
- {
- Configure::write('Asset.timestamp', 'force');
- $result = Asset::imageUrl('cake.icon.png');
- $this->assertMatchesRegularExpression('/' . preg_quote('img/cake.icon.png?', '/') . '[0-9]+/', $result);
- }
- /**
- * Test image with timestamp option overriding `Asset.timestamp` in Configure
- */
- public function testImageTimestampConfigureOverride(): void
- {
- Configure::write('Asset.timestamp', 'force');
- $timestamp = false;
- $result = Asset::imageUrl('cake.icon.png', ['timestamp' => $timestamp]);
- $this->assertSame('/img/cake.icon.png', $result);
- }
- /**
- * test css
- */
- public function testCss(): void
- {
- $result = Asset::cssUrl('style');
- $this->assertSame('/css/style.css', $result);
- }
- /**
- * Test css with `Asset.timestamp` = force
- */
- public function testCssTimestampForce(): void
- {
- Configure::write('Asset.timestamp', 'force');
- $result = Asset::cssUrl('cake.generic');
- $this->assertMatchesRegularExpression('/' . preg_quote('css/cake.generic.css?', '/') . '[0-9]+/', $result);
- }
- /**
- * Test image with timestamp option overriding `Asset.timestamp` in Configure
- */
- public function testCssTimestampConfigureOverride(): void
- {
- Configure::write('Asset.timestamp', 'force');
- $timestamp = false;
- $result = Asset::cssUrl('cake.generic', ['timestamp' => $timestamp]);
- $this->assertSame('/css/cake.generic.css', $result);
- }
- /**
- * Test generating paths with webroot().
- */
- public function testWebrootPaths(): void
- {
- $result = Asset::webroot('/img/cake.power.gif');
- $expected = '/img/cake.power.gif';
- $this->assertSame($expected, $result);
- $result = Asset::webroot('/img/cake.power.gif', ['theme' => 'TestTheme']);
- $expected = '/test_theme/img/cake.power.gif';
- $this->assertSame($expected, $result);
- Asset::setInflectionType('dasherize');
- $result = Asset::webroot('/img/test.jpg', ['theme' => 'TestTheme']);
- $expected = '/test-theme/img/test.jpg';
- $this->assertSame($expected, $result);
- Asset::setInflectionType('underscore');
- $webRoot = Configure::read('App.wwwRoot');
- Configure::write('App.wwwRoot', TEST_APP . 'TestApp/webroot/');
- $result = Asset::webroot('/img/cake.power.gif', ['theme' => 'TestTheme']);
- $expected = '/test_theme/img/cake.power.gif';
- $this->assertSame($expected, $result);
- $result = Asset::webroot('/img/test.jpg', ['theme' => 'TestTheme']);
- $expected = '/test_theme/img/test.jpg';
- $this->assertSame($expected, $result);
- $result = Asset::webroot('/img/cake.icon.gif', ['theme' => 'TestTheme']);
- $expected = '/img/cake.icon.gif';
- $this->assertSame($expected, $result);
- $result = Asset::webroot('/img/cake.icon.gif?some=param', ['theme' => 'TestTheme']);
- $expected = '/img/cake.icon.gif?some=param';
- $this->assertSame($expected, $result);
- Configure::write('App.wwwRoot', $webRoot);
- }
- /**
- * Test plugin based assets will NOT use the plugin name
- */
- public function testPluginAssetsPrependImageBaseUrl(): void
- {
- $cdnPrefix = 'https://cdn.example.com/';
- Configure::write('App.imageBaseUrl', $cdnPrefix . '{plugin}img/');
- $result = Asset::imageUrl('TestTheme.text.jpg');
- $expected = $cdnPrefix . 'test_theme/img/text.jpg';
- $this->assertSame($expected, $result);
- Configure::write('App.jsBaseUrl', $cdnPrefix . '{plugin}js/');
- $result = Asset::scriptUrl('TestTheme.app.js');
- $expected = $cdnPrefix . 'test_theme/js/app.js';
- $this->assertSame($expected, $result);
- Configure::write('App.cssBaseUrl', $cdnPrefix);
- $result = Asset::cssUrl('TestTheme.app.css');
- $expected = $cdnPrefix . 'app.css';
- $this->assertSame($expected, $result);
- }
- }
|