matthiasnoback/symfony-config-test
Composer 安装命令:
composer require --dev matthiasnoback/symfony-config-test
包简介
Library for testing user classes related to the Symfony Config Component
README 文档
README
By Matthias Noback and contributors
Writing configuration classes using the Symfony Config Component can be quite hard. To help you verify the validity of the resulting config node tree, this library provides a PHPUnit test case and some custom assertions.
Installation
Using Composer:
composer require --dev matthiasnoback/symfony-config-test
Usage
Create a test case and use the trait from Matthias\SymfonyConfigTest\PhpUnit\ConfigurationTestCaseTrait.
Then implement getConfiguration():
<?php use Matthias\SymfonyConfigTest\PhpUnit\ConfigurationTestCaseTrait; use PHPUnit\Framework\TestCase; use App\Configuration; class ConfigurationTest extends TestCase { use ConfigurationTestCaseTrait; protected function getConfiguration(): Configuration { return new Configuration(); } }
Test invalid configuration values
Let's assume the Configuration class you want to test looks like this:
<?php use Symfony\Component\Config\Definition\Builder\TreeBuilder; use Symfony\Component\Config\Definition\ConfigurationInterface; class ConfigurationWithRequiredValue implements ConfigurationInterface { public function getConfigTreeBuilder(): TreeBuilder { $treeBuilder = new TreeBuilder(); $rootNode = $treeBuilder->root('root'); $rootNode ->isRequired() ->children() ->scalarNode('required_value') ->isRequired() ->end() ->end(); return $treeBuilder; } }
When you provide an empty array as the value for this configuration, you would expect an exception since the
required_value node is required. You can assert that a given set of configuration values is invalid using the
assertConfigurationIsInvalid() method:
<?php use Matthias\SymfonyConfigTest\PhpUnit\ConfigurationTestCaseTrait; use PHPUnit\Framework\TestCase; class ConfigurationTest extends TestCase { use ConfigurationTestCaseTrait; /** * @test */ public function values_are_invalid_if_required_value_is_not_provided(): void { $this->assertConfigurationIsInvalid( [ [] // no values at all ], 'required_value' // (part of) the expected exception message - optional ); } }
Test processed configuration values
You may also want to verify that after processing an array of configuration values the result will be as expected:
<?php use Matthias\SymfonyConfigTest\PhpUnit\ConfigurationTestCaseTrait; use PHPUnit\Framework\TestCase; class ConfigurationTest extends TestCase { use ConfigurationTestCaseTrait; /** * @test */ public function processed_value_contains_required_value(): void { $this->assertProcessedConfigurationEquals([ ['required_value' => 'first value'], ['required_value' => 'last value'] ], [ 'required_value'=> 'last value' ]); } }
Please note: the first argument of each of the assert* methods is an array of arrays. The extra nesting level
allows you to test the merge process. See also the section Merging
options of the Config Component
documentation.
Test a subset of the configuration tree
Using this library it's possible to test just one branch of your configuration tree. Consider the following node tree
definition, which contains the branches array_node_1 and array_node_2:
<?php use Symfony\Component\Config\Definition\Builder\TreeBuilder; use Symfony\Component\Config\Definition\ConfigurationInterface; class ConfigurationWithTwoBranches implements ConfigurationInterface { public function getConfigTreeBuilder(): TreeBuilder { $treeBuilder = new TreeBuilder(); $rootNode = $treeBuilder->root('root'); $rootNode ->children() ->arrayNode('array_node_1') ->isRequired() ->children() ->scalarNode('required_value_1') ->isRequired() ->end() ->end() ->end() ->arrayNode('array_node_2') ->isRequired() ->children() ->scalarNode('required_value_2') ->isRequired() ->end() ->end() ->end() ->end(); return $treeBuilder; } }
If you want to test, for instance, only the array_node_1 branch from the example below, and ignore the array_node_2,
provide array_node_1 as the argument for the $breadcrumbPath parameter of the test helper functions, for example:
/** * @test */ public function processed_configuration_for_array_node_1(): void { $this->assertProcessedConfigurationEquals( [ ['array_node_1' => ['required_value_1' => 'original value']], ['array_node_1' => ['required_value_1' => 'final value']] ], [ 'array_node_1' => [ 'required_value_1' => 'final value' ] ], // the path of the nodes you want to focus on in this test: 'array_node_1' ); }
This would trigger no validation errors for any value in the array_node_2 branch.
Note that the $breadcrumbPath can be even more specific, e.g. "doctrine.orm" (which would skip configuration
processing for branch "doctrine.dbal", etc.).
Also note that you can only traverse over array nodes using the . in the breadcrumb path. The last part of the breadcrumb path can be any other type of node.
Test a subset of the prototyped configuration tree
You can traverse through prototype array nodes using * as its name in the breadcrumb path.
<?php use Symfony\Component\Config\Definition\Builder\TreeBuilder; use Symfony\Component\Config\Definition\ConfigurationInterface; class PrototypedConfiguration implements ConfigurationInterface { public function getConfigTreeBuilder(): TreeBuilder { $treeBuilder = new TreeBuilder(); $rootNode = $treeBuilder->root('root'); $rootNode ->children() ->arrayNode('array_node') ->useAttributeAsKey('name') ->prototype('array') ->children() ->scalarNode('default_value')->cannotBeEmpty()->defaultValue('foobar')->end() ->scalarNode('required_value')->isRequired()->end() ->end() ->end() ->end() ->end(); return $treeBuilder; } }
If you want to test whether default_value is set to foobar by default, but don't want the test to be affected by
requirements on required_value node, you can define its path as array_node.*.default_value, for example:
/** * @test */ public function processed_configuration_for_array_node_1(): void { $this->assertProcessedConfigurationEquals( [ ['array_node' => ['prototype_name' => null]], ], [ 'array_node' => [ 'prototype_name' => [ 'default_value' => 'foobar' ] ] ], // the path of the nodes you want to focus on in this test: 'array_node.*.default_value' ); }
Version Guidance
| Version | Released | PHPUnit | Status |
|---|---|---|---|
| 6.x | Feb 7, 2025 | 10.5 and 11.x and 12.x | Latest |
| 5.x | Jun 2, 2023 | 9.6 and 10.x and 11.x | Bugfixes |
| 4.x | Mar 5, 2018 | 7.x and 8.x and 9.x | EOL |
| 3.x | Nov 30, 2017 | 6.x | EOL |
| 2.x | Jun 18, 2016 | 4.x and 5.x | EOL |
| 1.x | Oct 12, 2014 | 3.x | EOL |
matthiasnoback/symfony-config-test 适用场景与选型建议
matthiasnoback/symfony-config-test 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 10.35M 次下载、GitHub Stars 达 167, 最近一次更新时间为 2013 年 08 月 29 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「symfony」 「testing」 「phpunit」 「config」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 matthiasnoback/symfony-config-test 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 matthiasnoback/symfony-config-test 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 matthiasnoback/symfony-config-test 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
HiDev plugin for PHPUnit
Testing Suite For Lumen like Laravel does.
A cli tool which generates unit tests.
The bundle for easy using json-rpc api on your project
The PHP SDK for Checkmango
Bundle Symfony DaplosBundle
统计信息
- 总下载量: 10.35M
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 167
- 点击次数: 22
- 依赖项目数: 413
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2013-08-29