RSS Git Download  Clone
Raw View History
Blames found: 1 Mode: php Binary: false


Hang on, we reloading big blames...
<?php /* * This file is part of the Silex framework. * * (c) Fabien Potencier <fabien@symfony.com> * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ namespace Silex\Tests\Provider; use PHPUnit\Framework\TestCase; use Silex\Application; use Silex\Provider\AssetServiceProvider; class AssetServiceProviderTest extends TestCase { public function testGenerateAssetUrl() { $app = new Application(); $app->register(new AssetServiceProvider(), [ 'assets.version' => 'v1', 'assets.version_format' => '%s?version=%s', 'assets.named_packages' => [ 'css' => ['version' => 'css2', 'base_path' => '/whatever-makes-sense'], 'images' => ['base_urls' => ['https://img.example.com']], ], ]); $this->assertEquals('/foo.png?version=v1', $app['assets.packages']->getUrl('/foo.png')); $this->assertEquals('/whatever-makes-sense/foo.css?css2', $app['assets.packages']->getUrl('foo.css', 'css')); $this->assertEquals('https://img.example.com/foo.png', $app['assets.packages']->getUrl('/foo.png', 'images')); } public function testJsonManifestVersionStrategy() { $app = new Application(); $app->register(new AssetServiceProvider(), [ 'assets.json_manifest_path' => __DIR__.'/../Fixtures/manifest.json', ]); $this->assertEquals('/some-random-hash.js', $app['assets.packages']->getUrl('app.js')); } }