/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/AssetMapper/Tests/MappedAssetTest.php
64 строки
2 KB
Christian Flothmann
replace PHPUnit annotations with attributes
04 авг 2025, 10:05
04 авг 2025, 10:05
982f89c
Код
Авторство
О чём код?
<?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\AssetMapper\Tests; use PHPUnit\Framework\Attributes\DataProvider; use PHPUnit\Framework\TestCase; use Symfony\Component\AssetMapper\ImportMap\JavaScriptImport; use Symfony\Component\AssetMapper\MappedAsset; class MappedAssetTest extends TestCase { public function testGetLogicalPath() { $asset = new MappedAsset('foo.css'); $this->assertSame('foo.css', $asset->logicalPath); } #[DataProvider('getExtensionTests')] public function testGetExtension(string $filename, string $expectedExtension) { $asset = new MappedAsset('anything', publicPathWithoutDigest: $filename); $this->assertSame($expectedExtension, $asset->publicExtension); } public static function getExtensionTests(): iterable { yield 'simple' => ['foo.css', 'css']; yield 'with_multiple_dot' => ['foo.css.map', 'map']; yield 'with_directory' => ['foo/bar.css', 'css']; } public function testAddDependencies() { $mainAsset = new MappedAsset('file.js'); $assetFoo = new MappedAsset('foo.js'); $mainAsset->addDependency($assetFoo); $mainAsset->addFileDependency('/path/to/foo.js'); $this->assertSame([$assetFoo], $mainAsset->getDependencies()); $this->assertSame(['/path/to/foo.js'], $mainAsset->getFileDependencies()); } public function testAddJavaScriptImports() { $mainAsset = new MappedAsset('file.js'); $javaScriptImport = new JavaScriptImport('/the_import', assetLogicalPath: 'foo.js', assetSourcePath: '/path/to/foo.js', isLazy: true); $mainAsset->addJavaScriptImport($javaScriptImport); $this->assertSame([$javaScriptImport], $mainAsset->getJavaScriptImports()); } }