otezvikentiy / codeception-kafka
Kafka helper for codeception tests
1.1
2025-02-28 12:17 UTC
Requires
- php: >=8.2
- ext-rdkafka: ^3 || ^4
- codeception/codeception: ^2.5 | ^3.0 | ^4.0 | ^5.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^2.13
- kwn/php-rdkafka-stubs: ^1.1.0
This package is auto-updated.
Last update: 2025-03-28 12:27:36 UTC
README
THIS MODULE IS NOT PRODUCTION READY
This extension supports working with Apache Kafka.
Installation
-
Install library
composer require otezvikentiy/codeception-kafka
-
Create message serializer for your data transfer object
namespace Tests\KafkaModule;
use App\EventBus\DtoInterface;
use OtezVikentiy\Codeception\Extension\MessageSerializer\MessageSerializerInterface;
class AcmeMessageSerializer implements MessageSerializerInterface
{
public function serialize($dto): string
{
if (!$dto instanceif DtoInterface) {
throw new \RuntimeException('This value must be an ' . DtoInterface::class);
}
$message = json_encode($dto->toArray());
if (!is_string($message)) {
throw new \RuntimeException(json_last_error(), json_last_error_msg());
}
return $message;
}
}
The default message serializer is OtezVikentiy\Codeception\Extension\MessageSerializer\ArrayMessageSerializer.
- Include to suite and configure
modules: enabled: - \OtezVikentiy\Codeception\Extension\KafkaModule serializer: 'Tests\KafkaModule\AcmeMessageSerializer' config: metadata.broker.list: '192.168.99.100:9092' group.id: 'group_for_tests' topic_config: offset.store.sync.interval.ms: '0' auto.commit.interval.ms: '500' auto.offset.reset: 'smallest'
Development
PHP Coding Standards Fixer
make php-cs-check make php-cs-fix
Tests
Unit
make test-unit