123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- <?php
- /*
- * This file is part of the symfony package.
- *
- * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Symfony\Tests\Components\Templating\Helper;
- use Symfony\Components\Templating\Helper\AssetsHelper;
- class AssetsHelperTest extends \PHPUnit_Framework_TestCase
- {
- public function testConstructor()
- {
- $helper = new AssetsHelper('foo', 'http://www.example.com', 'abcd');
- $this->assertEquals('/foo/', $helper->getBasePath(), '__construct() takes a base path as its first argument');
- $this->assertEquals(array('http://www.example.com'), $helper->getBaseURLs(), '__construct() takes a base URL as its second argument');
- $this->assertEquals('abcd', $helper->getVersion(), '__construct() takes a version as its thrid argument');
- }
- public function testGetSetBasePath()
- {
- $helper = new AssetsHelper();
- $helper->setBasePath('foo/');
- $this->assertEquals('/foo/', $helper->getBasePath(), '->setBasePath() prepends a / if needed');
- $helper->setBasePath('/foo');
- $this->assertEquals('/foo/', $helper->getBasePath(), '->setBasePath() appends a / is needed');
- $helper->setBasePath('');
- $this->assertEquals('/', $helper->getBasePath(), '->setBasePath() returns / if no base path is defined');
- $helper->setBasePath('0');
- $this->assertEquals('/0/', $helper->getBasePath(), '->setBasePath() returns /0/ if 0 is given');
- }
- public function testGetSetVersion()
- {
- $helper = new AssetsHelper();
- $helper->setVersion('foo');
- $this->assertEquals('foo', $helper->getVersion(), '->setVersion() sets the version');
- }
- public function testSetGetBaseURLs()
- {
- $helper = new AssetsHelper();
- $helper->setBaseURLs('http://www.example.com/');
- $this->assertEquals(array('http://www.example.com'), $helper->getBaseURLs(), '->setBaseURLs() removes the / at the of an absolute base path');
- $helper->setBaseURLs(array('http://www1.example.com/', 'http://www2.example.com/'));
- $URLs = array();
- for ($i = 0; $i < 20; $i++)
- {
- $URLs[] = $helper->getBaseURL($i);
- }
- $URLs = array_values(array_unique($URLs));
- sort($URLs);
- $this->assertEquals(array('http://www1.example.com', 'http://www2.example.com'), $URLs, '->getBaseURL() returns a random base URL if several are given');
- $helper->setBaseURLs('');
- $this->assertEquals('', $helper->getBaseURL(1), '->getBaseURL() returns an empty string if no base URL exist');
- }
- public function testGetUrl()
- {
- $helper = new AssetsHelper();
- $this->assertEquals('http://example.com/foo.js', $helper->getUrl('http://example.com/foo.js'), '->getUrl() does nothing if an absolute URL is given');
- $helper = new AssetsHelper();
- $this->assertEquals('/foo.js', $helper->getUrl('foo.js'), '->getUrl() appends a / on relative paths');
- $this->assertEquals('/foo.js', $helper->getUrl('/foo.js'), '->getUrl() does nothing on absolute paths');
- $helper = new AssetsHelper('/foo');
- $this->assertEquals('/foo/foo.js', $helper->getUrl('foo.js'), '->getUrl() appends the basePath on relative paths');
- $this->assertEquals('/foo.js', $helper->getUrl('/foo.js'), '->getUrl() does not append the basePath on absolute paths');
- $helper = new AssetsHelper(null, 'http://assets.example.com/');
- $this->assertEquals('http://assets.example.com/foo.js', $helper->getUrl('foo.js'), '->getUrl() prepends the base URL');
- $this->assertEquals('http://assets.example.com/foo.js', $helper->getUrl('/foo.js'), '->getUrl() prepends the base URL');
- $helper = new AssetsHelper(null, 'http://www.example.com/foo');
- $this->assertEquals('http://www.example.com/foo/foo.js', $helper->getUrl('foo.js'), '->getUrl() prepends the base URL with a path');
- $this->assertEquals('http://www.example.com/foo/foo.js', $helper->getUrl('/foo.js'), '->getUrl() prepends the base URL with a path');
- $helper = new AssetsHelper('/foo', 'http://www.example.com/');
- $this->assertEquals('http://www.example.com/foo/foo.js', $helper->getUrl('foo.js'), '->getUrl() prepends the base URL and the base path if defined');
- $this->assertEquals('http://www.example.com/foo.js', $helper->getUrl('/foo.js'), '->getUrl() prepends the base URL but not the base path on absolute paths');
- $helper = new AssetsHelper('/bar', 'http://www.example.com/foo');
- $this->assertEquals('http://www.example.com/foo/bar/foo.js', $helper->getUrl('foo.js'), '->getUrl() prepends the base URL and the base path if defined');
- $this->assertEquals('http://www.example.com/foo/foo.js', $helper->getUrl('/foo.js'), '->getUrl() prepends the base URL but not the base path on absolute paths');
- $helper = new AssetsHelper('/bar', 'http://www.example.com/foo', 'abcd');
- $this->assertEquals('http://www.example.com/foo/bar/foo.js?abcd', $helper->getUrl('foo.js'), '->getUrl() appends the version if defined');
- }
- }
|