| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574 |
- <?php
- /**
- * 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 3.0.0
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\View;
- use Cake\Core\Configure;
- use Cake\Core\Plugin;
- use Cake\Http\ServerRequest;
- use Cake\Routing\Router;
- use Cake\TestSuite\TestCase;
- use Cake\View\Helper\UrlHelper;
- use Cake\View\View;
- /**
- * UrlHelperTest class
- */
- class UrlHelperTest extends TestCase
- {
- /**
- * @var \Cake\View\Helper\UrlHelper
- */
- public $Helper;
- /**
- * setUp method
- *
- * @return void
- */
- public function setUp()
- {
- parent::setUp();
- Router::reload();
- $this->View = new View(new ServerRequest());
- $this->Helper = new UrlHelper($this->View);
- static::setAppNamespace();
- $this->loadPlugins(['TestTheme']);
- }
- /**
- * tearDown method
- *
- * @return void
- */
- public function tearDown()
- {
- parent::tearDown();
- Configure::delete('Asset');
- $this->clearPlugins();
- unset($this->Helper, $this->View);
- }
- /**
- * Ensure HTML escaping of URL params. So link addresses are valid and not exploited
- *
- * @return void
- */
- public function testBuildUrlConversion()
- {
- Router::connect('/:controller/:action/*');
- $result = $this->Helper->build('/controller/action/1');
- $this->assertEquals('/controller/action/1', $result);
- $result = $this->Helper->build('/controller/action/1?one=1&two=2');
- $this->assertEquals('/controller/action/1?one=1&two=2', $result);
- $result = $this->Helper->build(['controller' => 'posts', 'action' => 'index', 'page' => '1" onclick="alert(\'XSS\');"']);
- $this->assertEquals('/posts/index?page=1%22+onclick%3D%22alert%28%27XSS%27%29%3B%22', $result);
- $result = $this->Helper->build('/controller/action/1/param:this+one+more');
- $this->assertEquals('/controller/action/1/param:this+one+more', $result);
- $result = $this->Helper->build('/controller/action/1/param:this%20one%20more');
- $this->assertEquals('/controller/action/1/param:this%20one%20more', $result);
- $result = $this->Helper->build('/controller/action/1/param:%7Baround%20here%7D%5Bthings%5D%5Bare%5D%24%24');
- $this->assertEquals('/controller/action/1/param:%7Baround%20here%7D%5Bthings%5D%5Bare%5D%24%24', $result);
- $result = $this->Helper->build([
- 'controller' => 'posts', 'action' => 'index', 'param' => '%7Baround%20here%7D%5Bthings%5D%5Bare%5D%24%24',
- ]);
- $this->assertEquals('/posts/index?param=%257Baround%2520here%257D%255Bthings%255D%255Bare%255D%2524%2524', $result);
- $result = $this->Helper->build([
- 'controller' => 'posts', 'action' => 'index', 'page' => '1',
- '?' => ['one' => 'value', 'two' => 'value', 'three' => 'purple'],
- ]);
- $this->assertEquals('/posts/index?one=value&two=value&three=purple&page=1', $result);
- }
- /**
- * ensure that build factors in base paths.
- *
- * @return void
- */
- public function testBuildBasePath()
- {
- Router::connect('/:controller/:action/*');
- $request = new ServerRequest([
- 'params' => [
- 'action' => 'index',
- 'plugin' => null,
- 'controller' => 'subscribe',
- ],
- 'url' => '/subscribe',
- 'base' => '/magazine',
- 'webroot' => '/magazine/',
- ]);
- Router::pushRequest($request);
- $this->assertEquals('/magazine/subscribe', $this->Helper->build());
- $this->assertEquals(
- '/magazine/articles/add',
- $this->Helper->build(['controller' => 'articles', 'action' => 'add'])
- );
- }
- /**
- * @return void
- */
- public function testBuildUrlConversionUnescaped()
- {
- $result = $this->Helper->build('/controller/action/1?one=1&two=2', ['escape' => false]);
- $this->assertEquals('/controller/action/1?one=1&two=2', $result);
- $result = $this->Helper->build([
- 'controller' => 'posts',
- 'action' => 'view',
- 'param' => '%7Baround%20here%7D%5Bthings%5D%5Bare%5D%24%24',
- '?' => [
- 'k' => 'v',
- '1' => '2',
- ],
- ], ['escape' => false]);
- $this->assertEquals('/posts/view?k=v&1=2¶m=%257Baround%2520here%257D%255Bthings%255D%255Bare%255D%2524%2524', $result);
- }
- /**
- * test assetTimestamp application
- *
- * @return void
- */
- public function testAssetTimestamp()
- {
- Configure::write('Foo.bar', 'test');
- Configure::write('Asset.timestamp', false);
- $result = $this->Helper->assetTimestamp(Configure::read('App.cssBaseUrl') . 'cake.generic.css');
- $this->assertEquals(Configure::read('App.cssBaseUrl') . 'cake.generic.css', $result);
- Configure::write('Asset.timestamp', true);
- Configure::write('debug', false);
- $result = $this->Helper->assetTimestamp('/%3Cb%3E/cake.generic.css');
- $this->assertEquals('/%3Cb%3E/cake.generic.css', $result);
- $result = $this->Helper->assetTimestamp(Configure::read('App.cssBaseUrl') . 'cake.generic.css');
- $this->assertEquals(Configure::read('App.cssBaseUrl') . 'cake.generic.css', $result);
- Configure::write('Asset.timestamp', true);
- Configure::write('debug', true);
- $result = $this->Helper->assetTimestamp(Configure::read('App.cssBaseUrl') . 'cake.generic.css');
- $this->assertRegExp('/' . preg_quote(Configure::read('App.cssBaseUrl') . 'cake.generic.css?', '/') . '[0-9]+/', $result);
- Configure::write('Asset.timestamp', 'force');
- Configure::write('debug', false);
- $result = $this->Helper->assetTimestamp(Configure::read('App.cssBaseUrl') . 'cake.generic.css');
- $this->assertRegExp('/' . preg_quote(Configure::read('App.cssBaseUrl') . 'cake.generic.css?', '/') . '[0-9]+/', $result);
- $result = $this->Helper->assetTimestamp(Configure::read('App.cssBaseUrl') . 'cake.generic.css?someparam');
- $this->assertEquals(Configure::read('App.cssBaseUrl') . 'cake.generic.css?someparam', $result);
- $this->View->setRequest($this->View->getRequest()->withAttribute('webroot', '/some/dir/'));
- $result = $this->Helper->assetTimestamp('/some/dir/' . Configure::read('App.cssBaseUrl') . 'cake.generic.css');
- $this->assertRegExp('/' . preg_quote(Configure::read('App.cssBaseUrl') . 'cake.generic.css?', '/') . '[0-9]+/', $result);
- }
- /**
- * test assetUrl application
- *
- * @return void
- */
- public function testAssetUrl()
- {
- Router::connect('/:controller/:action/*');
- $this->Helper->webroot = '';
- $result = $this->Helper->assetUrl(
- [
- 'controller' => 'js',
- 'action' => 'post',
- '_ext' => 'js',
- ],
- ['fullBase' => true]
- );
- $this->assertEquals(Router::fullBaseUrl() . '/js/post.js', $result);
- $result = $this->Helper->assetUrl('foo.jpg', ['pathPrefix' => 'img/']);
- $this->assertEquals('img/foo.jpg', $result);
- $result = $this->Helper->assetUrl('foo.jpg', ['fullBase' => true]);
- $this->assertEquals(Router::fullBaseUrl() . '/foo.jpg', $result);
- $result = $this->Helper->assetUrl('style', ['ext' => '.css']);
- $this->assertEquals('style.css', $result);
- $result = $this->Helper->assetUrl('dir/sub dir/my image', ['ext' => '.jpg']);
- $this->assertEquals('dir/sub%20dir/my%20image.jpg', $result);
- $result = $this->Helper->assetUrl('foo.jpg?one=two&three=four');
- $this->assertEquals('foo.jpg?one=two&three=four', $result);
- $result = $this->Helper->assetUrl('x:"><script>alert(1)</script>');
- $this->assertEquals('x:"><script>alert(1)</script>', $result);
- $result = $this->Helper->assetUrl('dir/big+tall/image', ['ext' => '.jpg']);
- $this->assertEquals('dir/big%2Btall/image.jpg', $result);
- }
- /**
- * Test assetUrl and data uris
- *
- * @return void
- */
- public function testAssetUrlDataUri()
- {
- $request = $this->View->getRequest()
- ->withAttribute('base', 'subdir')
- ->withAttribute('webroot', 'subdir/');
- $this->View->setRequest($request);
- Router::pushRequest($request);
- $data = 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4' .
- '/8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg==';
- $result = $this->Helper->assetUrl($data);
- $this->assertSame($data, $result);
- $data = 'data:image/png;base64,<evil>';
- $result = $this->Helper->assetUrl($data);
- $this->assertHtml(h($data), $result);
- }
- /**
- * Test assetUrl with no rewriting.
- *
- * @return void
- */
- public function testAssetUrlNoRewrite()
- {
- $this->View->setRequest($this->View->getRequest()
- ->withAttribute('base', '/cake_dev/index.php')
- ->withAttribute('webroot', '/cake_dev/app/webroot/')
- ->withRequestTarget('/cake_dev/index.php/tasks'));
- $result = $this->Helper->assetUrl('img/cake.icon.png', ['fullBase' => true]);
- $expected = Configure::read('App.fullBaseUrl') . '/cake_dev/app/webroot/img/cake.icon.png';
- $this->assertEquals($expected, $result);
- }
- /**
- * Test assetUrl with plugins.
- *
- * @return void
- */
- public function testAssetUrlPlugin()
- {
- $this->Helper->webroot = '';
- $this->loadPlugins(['TestPlugin']);
- $result = $this->Helper->assetUrl('TestPlugin.style', ['ext' => '.css']);
- $this->assertEquals('test_plugin/style.css', $result);
- $result = $this->Helper->assetUrl('TestPlugin.style', ['ext' => '.css', 'plugin' => false]);
- $this->assertEquals('TestPlugin.style.css', $result);
- $this->removePlugins(['TestPlugin']);
- }
- /**
- * Tests assetUrl() with full base URL.
- *
- * @return void
- */
- public function testAssetUrlFullBase()
- {
- $result = $this->Helper->assetUrl('img/foo.jpg', ['fullBase' => true]);
- $this->assertEquals(Router::fullBaseUrl() . '/img/foo.jpg', $result);
- $result = $this->Helper->assetUrl('img/foo.jpg', ['fullBase' => 'https://xyz/']);
- $this->assertEquals('https://xyz/img/foo.jpg', $result);
- }
- /**
- * test assetUrl and Asset.timestamp = force
- *
- * @return void
- */
- public function testAssetUrlTimestampForce()
- {
- $this->Helper->webroot = '';
- Configure::write('Asset.timestamp', 'force');
- $result = $this->Helper->assetUrl('cake.generic.css', ['pathPrefix' => Configure::read('App.cssBaseUrl')]);
- $this->assertRegExp('/' . preg_quote(Configure::read('App.cssBaseUrl') . 'cake.generic.css?', '/') . '[0-9]+/', $result);
- }
- /**
- * Test assetTimestamp with timestamp option overriding `Asset.timestamp` in Configure.
- *
- * @return void
- */
- public function testAssetTimestampConfigureOverride()
- {
- $this->Helper->webroot = '';
- Configure::write('Asset.timestamp', 'force');
- $timestamp = false;
- $result = $this->Helper->assetTimestamp(Configure::read('App.cssBaseUrl') . 'cake.generic.css', $timestamp);
- $this->assertEquals(Configure::read('App.cssBaseUrl') . 'cake.generic.css', $result);
- }
- /**
- * test assetTimestamp with plugins and themes
- *
- * @return void
- */
- public function testAssetTimestampPluginsAndThemes()
- {
- Configure::write('Asset.timestamp', 'force');
- $this->loadPlugins(['TestPlugin']);
- $result = $this->Helper->assetTimestamp('/test_plugin/css/test_plugin_asset.css');
- $this->assertRegExp('#/test_plugin/css/test_plugin_asset.css\?[0-9]+$#', $result, 'Missing timestamp plugin');
- $result = $this->Helper->assetTimestamp('/test_plugin/css/i_dont_exist.css');
- $this->assertRegExp('#/test_plugin/css/i_dont_exist.css$#', $result, 'No error on missing file');
- $result = $this->Helper->assetTimestamp('/test_theme/js/theme.js');
- $this->assertRegExp('#/test_theme/js/theme.js\?[0-9]+$#', $result, 'Missing timestamp theme');
- $result = $this->Helper->assetTimestamp('/test_theme/js/non_existant.js');
- $this->assertRegExp('#/test_theme/js/non_existant.js$#', $result, 'No error on missing file');
- }
- /**
- * test script()
- *
- * @return void
- */
- public function testScript()
- {
- Router::connect('/:controller/:action/*');
- $this->Helper->webroot = '';
- $result = $this->Helper->script(
- [
- 'controller' => 'js',
- 'action' => 'post',
- '_ext' => 'js',
- ],
- ['fullBase' => true]
- );
- $this->assertEquals(Router::fullBaseUrl() . '/js/post.js', $result);
- }
- /**
- * Test script and Asset.timestamp = force
- *
- * @return void
- */
- public function testScriptTimestampForce()
- {
- $this->Helper->webroot = '';
- Configure::write('Asset.timestamp', 'force');
- $result = $this->Helper->script('script.js');
- $this->assertRegExp('/' . preg_quote(Configure::read('App.jsBaseUrl') . 'script.js?', '/') . '[0-9]+/', $result);
- }
- /**
- * Test script with timestamp option overriding `Asset.timestamp` in Configure
- *
- * @return void
- */
- public function testScriptTimestampConfigureOverride()
- {
- Configure::write('Asset.timestamp', 'force');
- $timestamp = false;
- $result = $this->Helper->script('script.js', ['timestamp' => $timestamp]);
- $this->assertEquals(Configure::read('App.jsBaseUrl') . 'script.js', $result);
- }
- /**
- * test image()
- *
- * @return void
- */
- public function testImage()
- {
- $result = $this->Helper->image('foo.jpg');
- $this->assertEquals('img/foo.jpg', $result);
- $result = $this->Helper->image('foo.jpg', ['fullBase' => true]);
- $this->assertEquals(Router::fullBaseUrl() . '/img/foo.jpg', $result);
- $result = $this->Helper->image('dir/sub dir/my image.jpg');
- $this->assertEquals('img/dir/sub%20dir/my%20image.jpg', $result);
- $result = $this->Helper->image('foo.jpg?one=two&three=four');
- $this->assertEquals('img/foo.jpg?one=two&three=four', $result);
- $result = $this->Helper->image('dir/big+tall/image.jpg');
- $this->assertEquals('img/dir/big%2Btall/image.jpg', $result);
- $result = $this->Helper->image('cid:foo.jpg');
- $this->assertEquals('cid:foo.jpg', $result);
- $result = $this->Helper->image('CID:foo.jpg');
- $this->assertEquals('CID:foo.jpg', $result);
- }
- /**
- * Test image with `Asset.timestamp` = force
- *
- * @return void
- */
- public function testImageTimestampForce()
- {
- Configure::write('Asset.timestamp', 'force');
- $result = $this->Helper->image('cake.icon.png');
- $this->assertRegExp('/' . preg_quote('img/cake.icon.png?', '/') . '[0-9]+/', $result);
- }
- /**
- * Test image with timestamp option overriding `Asset.timestamp` in Configure
- *
- * @return void
- */
- public function testImageTimestampConfigureOverride()
- {
- Configure::write('Asset.timestamp', 'force');
- $timestamp = false;
- $result = $this->Helper->image('cake.icon.png', ['timestamp' => $timestamp]);
- $this->assertEquals('img/cake.icon.png', $result);
- }
- /**
- * test css
- *
- * @return void
- */
- public function testCss()
- {
- $result = $this->Helper->css('style');
- $this->assertEquals('css/style.css', $result);
- }
- /**
- * Test css with `Asset.timestamp` = force
- *
- * @return void
- */
- public function testCssTimestampForce()
- {
- Configure::write('Asset.timestamp', 'force');
- $result = $this->Helper->css('cake.generic');
- $this->assertRegExp('/' . preg_quote('css/cake.generic.css?', '/') . '[0-9]+/', $result);
- }
- /**
- * Test image with timestamp option overriding `Asset.timestamp` in Configure
- *
- * @return void
- */
- public function testCssTimestampConfigureOverride()
- {
- Configure::write('Asset.timestamp', 'force');
- $timestamp = false;
- $result = $this->Helper->css('cake.generic', ['timestamp' => $timestamp]);
- $this->assertEquals('css/cake.generic.css', $result);
- }
- /**
- * Test generating paths with webroot().
- *
- * @return void
- */
- public function testWebrootPaths()
- {
- $this->View->setRequest(
- $this->View->getRequest()->withAttribute('webroot', '/')
- );
- $result = $this->Helper->webroot('/img/cake.power.gif');
- $expected = '/img/cake.power.gif';
- $this->assertEquals($expected, $result);
- $this->Helper->getView()->setTheme('TestTheme');
- $result = $this->Helper->webroot('/img/cake.power.gif');
- $expected = '/test_theme/img/cake.power.gif';
- $this->assertEquals($expected, $result);
- $result = $this->Helper->webroot('/img/test.jpg');
- $expected = '/test_theme/img/test.jpg';
- $this->assertEquals($expected, $result);
- $webRoot = Configure::read('App.wwwRoot');
- Configure::write('App.wwwRoot', TEST_APP . 'TestApp/webroot/');
- $result = $this->Helper->webroot('/img/cake.power.gif');
- $expected = '/test_theme/img/cake.power.gif';
- $this->assertEquals($expected, $result);
- $result = $this->Helper->webroot('/img/test.jpg');
- $expected = '/test_theme/img/test.jpg';
- $this->assertEquals($expected, $result);
- $result = $this->Helper->webroot('/img/cake.icon.gif');
- $expected = '/img/cake.icon.gif';
- $this->assertEquals($expected, $result);
- $result = $this->Helper->webroot('/img/cake.icon.gif?some=param');
- $expected = '/img/cake.icon.gif?some=param';
- $this->assertEquals($expected, $result);
- Configure::write('App.wwwRoot', $webRoot);
- }
- /**
- * Test plugin based assets will NOT use the plugin name
- *
- * @return void
- */
- public function testPluginAssetsPrependImageBaseUrl()
- {
- $cdnPrefix = 'https://cdn.example.com/';
- $imageBaseUrl = Configure::read('App.imageBaseUrl');
- $jsBaseUrl = Configure::read('App.jsBaseUrl');
- $cssBaseUrl = Configure::read('App.cssBaseUrl');
- Configure::write('App.imageBaseUrl', $cdnPrefix);
- $result = $this->Helper->image('TestTheme.text.jpg');
- $expected = $cdnPrefix . 'text.jpg';
- $this->assertSame($expected, $result);
- Configure::write('App.jsBaseUrl', $cdnPrefix);
- $result = $this->Helper->script('TestTheme.app.js');
- $expected = $cdnPrefix . 'app.js';
- $this->assertSame($expected, $result);
- Configure::write('App.cssBaseUrl', $cdnPrefix);
- $result = $this->Helper->css('TestTheme.app.css');
- $expected = $cdnPrefix . 'app.css';
- $this->assertSame($expected, $result);
- }
- }
|