This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Asset/Tests/PackagesTest.php

72 lines
2.2 KiB
PHP
Raw Normal View History

2014-12-28 18:57:17 +00:00
<?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\Component\Asset\Tests;
2017-02-08 07:24:27 +00:00
use PHPUnit\Framework\TestCase;
2014-12-28 18:57:17 +00:00
use Symfony\Component\Asset\Package;
use Symfony\Component\Asset\Packages;
use Symfony\Component\Asset\VersionStrategy\StaticVersionStrategy;
2017-02-08 07:24:27 +00:00
class PackagesTest extends TestCase
2014-12-28 18:57:17 +00:00
{
public function testGetterSetters()
{
$packages = new Packages();
2016-12-19 09:02:29 +00:00
$packages->setDefaultPackage($default = $this->getMockBuilder('Symfony\Component\Asset\PackageInterface')->getMock());
$packages->addPackage('a', $a = $this->getMockBuilder('Symfony\Component\Asset\PackageInterface')->getMock());
2014-12-28 18:57:17 +00:00
$this->assertEquals($default, $packages->getPackage());
$this->assertEquals($a, $packages->getPackage('a'));
2019-01-16 09:39:14 +00:00
$packages = new Packages($default, ['a' => $a]);
2014-12-28 18:57:17 +00:00
$this->assertEquals($default, $packages->getPackage());
$this->assertEquals($a, $packages->getPackage('a'));
}
public function testGetVersion()
{
$packages = new Packages(
new Package(new StaticVersionStrategy('default')),
2019-01-16 09:39:14 +00:00
['a' => new Package(new StaticVersionStrategy('a'))]
2014-12-28 18:57:17 +00:00
);
$this->assertEquals('default', $packages->getVersion('/foo'));
$this->assertEquals('a', $packages->getVersion('/foo', 'a'));
}
public function testGetUrl()
{
$packages = new Packages(
new Package(new StaticVersionStrategy('default')),
2019-01-16 09:39:14 +00:00
['a' => new Package(new StaticVersionStrategy('a'))]
2014-12-28 18:57:17 +00:00
);
$this->assertEquals('/foo?default', $packages->getUrl('/foo'));
$this->assertEquals('/foo?a', $packages->getUrl('/foo', 'a'));
}
public function testNoDefaultPackage()
{
2019-08-01 23:48:42 +01:00
$this->expectException('Symfony\Component\Asset\Exception\LogicException');
2014-12-28 18:57:17 +00:00
$packages = new Packages();
$packages->getPackage();
}
public function testUndefinedPackage()
{
2019-08-01 23:48:42 +01:00
$this->expectException('Symfony\Component\Asset\Exception\InvalidArgumentException');
2014-12-28 18:57:17 +00:00
$packages = new Packages();
$packages->getPackage('a');
}
}