承接 tweakers/symfony-service-mock 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

tweakers/symfony-service-mock

最新稳定版本:5.0.0

Composer 安装命令:

composer require tweakers/symfony-service-mock

包简介

Proxy layer to allow services to have their internals replaced with a test double, without affecting a service-container's (i.e. Symfony) bindings.

README 文档

README

Introduction

This library is designed to be used with Symfony's service-container and leverages Ocramius' Proxy Manager to allow you to configure an 'original' implementation of a service that can be changed to an 'alternative' implementation on-the-fly.

As of Symfony 4.0 you're not allowed to change or remove a service once it has been initialized. As such, when you need a temporary test double in a unit or functional test, you cannot simply replace the service.

This library allows you to add an alternative configuration to Symfony, which replaces the service with a special proxy that will allow you to gain complete control over the 'internals', even after Symfony has initialized the service and started using it as dependency in related services.

Installation

Just include this as a dev dependency:

composer require --dev tweakers/symfony-service-mock 

How to use

Any service that is configured in Symfony can be re-configured in the test-environment's specific services.yaml. For this library to work optimally, you should reconfigure those services as a decorator.

If you have a service 'App\TestService' in your regular configuration, you can configure it like this to allow mocking its internal behavior:

# In config\packages\test\services.yaml: services: _defaults: public: true autowire: true Tweakers\Test\MockableService\MockableServiceProxyFactory: ~ App\TestService_mocked: decorates: App\TestService decoration_inner_name: 'App\TestService.inner' factory: ['@Tweakers\Test\MockableService\MockableServiceProxyFactory', 'createServiceProxy'] arguments: ['@App\TestService.inner']

With just this test-configuration, there is normally no difference in behavior. Although there may be minor changes due to the use of a proxy (see Ocramius' manual) or the fact that it was made public.

But all services that depend on the App\TestService will now use the newly configured decorating proxy. Which by default falls back to the original service for any actual work.

Therefor this configuration allows you to adjust the behavior of the TestService without having to know which service is using it or whether Symfony already initiated it. That can be done in a unit test like so:

<?php namespace App; class TestService { private $stuff; public function getStuff() { return $this->stuff; } public function setStuff($stuff) { $this->stuff = $stuff; } }
<?php namespace App\Tests; use App\TestService; use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase; class TestServiceTest extends KernelTestCase { protected function setUp() { parent::setUp(); self::bootKernel(); } protected function tearDown() { parent::tearDown(); // Make sure the original version is restored inside the proxy self::$container->get(TestService::class)->restoreOriginalService(); } public function testServiceBehaviorCanBeChanged(): void { // Set the value of "stuff" to 39 in the original TestService $service = self::$container->get(TestService::class); $service->setStuff(39); $this->assertSame(39, $service->getStuff()); // Set our mock as alternative for this test $mock = $this->createMock(TestService::class); $mock->method('getStuff')->willReturn(42); $service->setAlternativeService($mock); $this->assertSame(42, $service->getStuff()); // Revert to original service $service->restoreOriginalService(); $this->assertSame(39, $service->getStuff()); } }

Compatibility

This code has only been tested with Symfony 3.4, 4.1 and 4.2, although it should work with 4.0 and older versions. In Symfony 4.1 a TestContainer was introduced that gives access to private services. So it may not be necessary to define a service as public with Symfony 4.1 and higher. Symfony however does 'inline' or completely remove unused private services (even in 4.1), so tests may fail due to missing services if you define everything private. To prevent inlining, the example above creates the proxies with public=true, but it may also be necessary to redefine specific services as well.

统计信息

  • 总下载量: 63.73k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 3
  • 点击次数: 3
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 3
  • Watchers: 5
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-01-04

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固