-
-
Notifications
You must be signed in to change notification settings - Fork 9.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature #10451 [TwigBundle] Add possibility to generate absolute asse…
…ts urls (romainneutron) This PR was merged into the 2.5-dev branch. Discussion ---------- [TwigBundle] Add possibility to generate absolute assets urls | Q | A | ------------- | --- | Bug fix? | no | New feature? | yes | BC breaks? | no | Deprecations? | no | Tests pass? | yes | License | MIT | Doc PR | symfony/symfony-docs#3683 This is another approach of #7722 - [x] Add unit tests - [x] Update doc Commits ------- 76b8851 [TwigBundle] Add possibility to generate absolute assets urls
- Loading branch information
Showing
4 changed files
with
154 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
106 changes: 106 additions & 0 deletions
106
src/Symfony/Bundle/TwigBundle/Tests/Extension/AssetsExtensionTest.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the Symfony package. | ||
* | ||
* (c) Fabien Potencier <fabien@symfony.com> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Symfony\Bundle\TwigBundle\Tests\Extension; | ||
|
||
use Symfony\Bundle\TwigBundle\Extension\AssetsExtension; | ||
use Symfony\Bundle\TwigBundle\Tests\TestCase; | ||
use Symfony\Component\Routing\RequestContext; | ||
|
||
class AssetsExtensionTest extends TestCase | ||
{ | ||
/** | ||
* @dataProvider provideGetGetAssetUrlArguments | ||
*/ | ||
public function testGetAssetUrl($path, $packageName, $absolute, $relativeUrl, $expectedUrl, $scheme, $host, $httpPort, $httpsPort) | ||
{ | ||
$helper = $this->createHelperMock($path, $packageName, $relativeUrl); | ||
$container = $this->createContainerMock($helper); | ||
|
||
$context = $this->createRequestContextMock($scheme, $host, $httpPort, $httpsPort); | ||
|
||
$extension = new AssetsExtension($container, $context); | ||
$this->assertEquals($expectedUrl, $extension->getAssetUrl($path, $packageName, $absolute)); | ||
} | ||
|
||
public function testGetAssetWithtoutHost() | ||
{ | ||
$path = '/path/to/asset'; | ||
$packageName = null; | ||
$relativeUrl = '/bundle-name/path/to/asset'; | ||
|
||
$helper = $this->createHelperMock($path, $packageName, $relativeUrl); | ||
$container = $this->createContainerMock($helper); | ||
|
||
$context = $this->createRequestContextMock('http', '', 80, 443); | ||
|
||
$extension = new AssetsExtension($container, $context); | ||
$this->assertEquals($relativeUrl, $extension->getAssetUrl($path, $packageName, true)); | ||
} | ||
|
||
public function provideGetGetAssetUrlArguments() | ||
{ | ||
return array( | ||
array('/path/to/asset', 'package-name', false, '/bundle-name/path/to/asset', '/bundle-name/path/to/asset', 'http', 'symfony.com', 80, null), | ||
array('/path/to/asset', 'package-name', false, 'http://subdomain.symfony.com/bundle-name/path/to/asset', 'http://subdomain.symfony.com/bundle-name/path/to/asset', 'http', 'symfony.com', 80, null), | ||
array('/path/to/asset', null, false, '/bundle-name/path/to/asset', '/bundle-name/path/to/asset', 'http', 'symfony.com', 80, null), | ||
array('/path/to/asset', 'package-name', true, '/bundle-name/path/to/asset', 'http://symfony.com/bundle-name/path/to/asset', 'http', 'symfony.com', 80, null), | ||
array('/path/to/asset', 'package-name', true, 'http://subdomain.symfony.com/bundle-name/path/to/asset', 'http://subdomain.symfony.com/bundle-name/path/to/asset', 'http', 'symfony.com', 80, null), | ||
array('/path/to/asset', null, true, '/bundle-name/path/to/asset', 'https://symfony.com:92/bundle-name/path/to/asset', 'https', 'symfony.com', null, 92), | ||
array('/path/to/asset', null, true, '/bundle-name/path/to/asset', 'http://symfony.com:660/bundle-name/path/to/asset', 'http', 'symfony.com', 660, null), | ||
); | ||
} | ||
|
||
private function createRequestContextMock($scheme, $host, $httpPort, $httpsPort) | ||
{ | ||
$context = $this->getMockBuilder('Symfony\Component\Routing\RequestContext') | ||
->disableOriginalConstructor() | ||
->getMock(); | ||
$context->expects($this->any()) | ||
->method('getScheme') | ||
->will($this->returnValue($scheme)); | ||
$context->expects($this->any()) | ||
->method('getHost') | ||
->will($this->returnValue($host)); | ||
$context->expects($this->any()) | ||
->method('getHttpPort') | ||
->will($this->returnValue($httpPort)); | ||
$context->expects($this->any()) | ||
->method('getHttpsPort') | ||
->will($this->returnValue($httpsPort)); | ||
|
||
return $context; | ||
} | ||
|
||
private function createContainerMock($helper) | ||
{ | ||
$container = $this->getMock('Symfony\Component\DependencyInjection\ContainerInterface'); | ||
$container->expects($this->any()) | ||
->method('get') | ||
->with('templating.helper.assets') | ||
->will($this->returnValue($helper)); | ||
|
||
return $container; | ||
} | ||
|
||
private function createHelperMock($path, $packageName, $returnValue) | ||
{ | ||
$helper = $this->getMockBuilder('Symfony\Component\Templating\Helper\CoreAssetsHelper') | ||
->disableOriginalConstructor() | ||
->getMock(); | ||
$helper->expects($this->any()) | ||
->method('getUrl') | ||
->with($path, $packageName) | ||
->will($this->returnValue($returnValue)); | ||
|
||
return $helper; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters