HEX
Server: Apache
System: Linux s198.coreserver.jp 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC 2025 x86_64
User: nagasaki (10062)
PHP: 7.1.33
Disabled: NONE
Upload Files
File: /virtual/nagasaki/public_html/ec/vendor/symfony/twig-bridge/Tests/Extension/AssetExtensionTest.php
<?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\Bridge\Twig\Tests\Extension;

use Symfony\Bridge\Twig\Extension\AssetExtension;
use Symfony\Component\Asset\Package;
use Symfony\Component\Asset\Packages;
use Symfony\Component\Asset\PathPackage;
use Symfony\Component\Asset\VersionStrategy\EmptyVersionStrategy;
use Symfony\Component\Asset\VersionStrategy\StaticVersionStrategy;

class AssetExtensionTest extends \PHPUnit_Framework_TestCase
{
    /**
     * @group legacy
     */
    public function testLegacyGetAssetUrl()
    {
        $extension = $this->createExtension(new Package(new StaticVersionStrategy('22', '%s?version=%s')));

        $this->assertEquals('me.png?version=42', $extension->getAssetUrl('me.png', null, false, '42'));
        $this->assertEquals('http://localhost/me.png?version=22', $extension->getAssetUrl('me.png', null, true));
        $this->assertEquals('http://localhost/me.png?version=42', $extension->getAssetUrl('me.png', null, true, '42'));
    }

    /**
     * @group legacy
     */
    public function testGetAssetUrlWithPackageSubClass()
    {
        $extension = $this->createExtension(new PathPackage('foo', new StaticVersionStrategy('22', '%s?version=%s')));

        $this->assertEquals('/foo/me.png?version=42', $extension->getAssetUrl('me.png', null, false, 42));
    }

    /**
     * @group legacy
     */
    public function testGetAssetUrlWithEmptyVersionStrategy()
    {
        $extension = $this->createExtension(new PathPackage('foo', new EmptyVersionStrategy()));

        $this->assertEquals('/foo/me.png?42', $extension->getAssetUrl('me.png', null, false, 42));
    }

    private function createExtension(Package $package)
    {
        $foundationExtension = $this->getMockBuilder('Symfony\Bridge\Twig\Extension\HttpFoundationExtension')->disableOriginalConstructor()->getMock();
        $foundationExtension
            ->expects($this->any())
            ->method('generateAbsoluteUrl')
            ->will($this->returnCallback(function ($arg) { return 'http://localhost/'.$arg; }))
        ;

        return new AssetExtension(new Packages($package), $foundationExtension);
    }
}