yousign / zdd-message-bundle
Assert Zero Downtime Deployment compliance for messages
Installs: 49 833
Dependents: 0
Suggesters: 0
Security: 0
Stars: 23
Watchers: 14
Forks: 3
Open Issues: 4
Requires
- php: ^8.1.0
- symfony/console: ^6.2|^7.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.1
- phpstan/phpstan: ^1.10
- phpunit/phpunit: ^9.5
- symfony/browser-kit: ^6.2|^7.0
- symfony/framework-bundle: ^6.2|^7.0
- symfony/messenger: ^6.2|^7.0
- symfony/yaml: ^6.2|^7.0
- dev-main
- 3.0.2
- 3.0.1
- 3.0.0
- 2.0.0
- 1.1.0
- 1.0.1
- 1.0.0
- 1.0.0-alpha.1
- 1.0.0-alpha
- dev-symfony_7x_support
- dev-recursive-message-validation
- dev-simplify-services-config
- dev-fix-messenger-serializer
- dev-update-readme
- dev-release-2.0.0
- dev-error-when-property-deleted
- dev-update-log-error
- dev-fix-naming-conflict
- dev-release-1.1.0
- dev-add-info-log
This package is auto-updated.
Last update: 2024-10-20 17:48:09 UTC
README
A Symfony Bundle to use when you want to assert that messages used with Message brokers such like RabbitMQ are compliant with the Zero Downtime Deployment.
Getting started
Installation
You can easily install Zdd Message bundle by composer
$ composer require yousign/zdd-message-bundle
Then, bundle should be registered. Just verify that config\bundles.php
is containing :
Yousign\ZddMessageBundle\ZddMessageBundle::class => ['all' => true],
Configuration
Once the bundle is installed, you should create a class to configure the messages to assert and how to create them:
<?php namespace App\Message; use Yousign\ZddMessageBundle\Config\ZddMessageConfigInterface; class MessageConfig implements ZddMessageConfigInterface { /** * Return the list of messages to assert. */ public function getMessageToAssert(): array { return [ App\Message\MyMessage::class, App\Message\AnotherMessage::class, //... ]; } /** * If your message contains no scalar value as parameter such like value enums, value object more complex object, * you should use this method to return value for each type hint. */ public function generateValueForCustomPropertyType(string $type): mixed { return match ($type) { 'App\ValueObject\Email' => new App\ValueObject\Email('dummy@email.fr'), 'App\Enum\MyEnum' => App\Enum\MyEnum::MY_VALUE, default => null, }; } }
When the class is created, you can register it as a service.
# config/services.yaml App\Message\MessageConfig: ~
Then, you should register it in the configuration (config/packages/zdd_message.yaml
) :
# config/packages/zdd_message.yaml zdd_message: serialized_messages_dir: 'var/serialized_messages' # The directory where the serialized messages will be stored (default: '%kernel.logs_dir%')
Optional configuration
Use a custom serializer
Option to use different serializer. Possible options :
Yousign\ZddMessageBundle\Serializer\ZddMessageMessengerSerializer
(default, already configured for messenger serialization in messenger.yaml)- Define your own serializer
- Create a service that implement
Yousign\ZddMessageBundle\Serializer\SerializerInterface
- Use it in the configuration
- Create a service that implement
# config/packages/zdd_message.yaml zdd_message: serializer: '<your-service-id>'
Detect messages not tracked
Option to write a log message if an asynchronous message has been sent (using symfony messenger) and is not present in your configuration.
# config/packages/zdd_message.yaml zdd_message: # ... log_untracked_messages: messenger: enable: true # false by default level: 'error' # warning by default
Usage
The bundle comes with commands to assert that your messages are compliant with the Zero Downtime Deployment:
$ bin/console yousign:zdd-message:generate # Generate serialized messages in files. $ bin/console yousign:zdd-message:validate # Assert that the messages are compliant by deserializing them from files and call the properties. $ bin/console yousign:zdd-message:debug # Output all tracked messages.
💡 You should run bin/console yousign:zdd-message:generate
with the production version code and bin/console yousign:zdd-message:validate
with the version code you want to merge.
Example from the version you want to merge:
$ git checkout [production_version]
$ bin/console yousign:zdd-message:generate
$ git checkout - # Go back to the version you want to merge
$ bin/console yousign:zdd-message:validate
Contributing
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.
After writing your fix/feature, you can run following commands to make sure that everything is still ok.
# Install dev dependencies $ composer install # Running tests and quality tools locally $ make all
If you want to use your local fork to develop in your projects, you can use the link command to replace the vendor installation by your local version.
$ ./link /home/yousign/dev/my-project
Authors
- Smaine Milianni - ismail1432 - <smaine(dot)milianni@gmail(dot)com>
- Simon Mutricy - Inkod - <ink0d@pm(dot)me>