Version | Build Status | Code Coverage |
---|---|---|
main |
||
develop |
Symfony Behat Redis Context is a package that integrates Redis operations with Behat for behavior-driven development (BDD). This context allows you to store, retrieve, and validate data in Redis as part of your Behat testing scenarios. It's useful when testing applications that depend on Redis for caching, session storage, or data management.
This documentation provides step-by-step guides for installing the package and utilizing each Redis-related step within Behat scenarios.
To install Symfony Behat Redis Context, follow these steps:
- Add the package to your project using composer:
composer require --dev macpaw/behat-redis-context
For detailed steps and configuration, refer to the Installation Steps
Below are the available Redis operations that you can use in your Behat tests. Each step integrates seamlessly with Redis to ensure data is stored, retrieved, or validated as expected.
-
Check Any Value by Redis Key
Verifies if any value is stored in Redis under a specific key. -
Check Array Value Stored in Redis
Ensures that the stored array or hash in Redis matches the expected structure. -
Check if Key Exists in Redis
Checks whether a specific key exists in Redis. -
Check Serialized Value in Redis
Verifies that a serialized value stored in Redis matches the expected serialized value. -
Check String Value in Redis
Validates if a string value in Redis matches the expected value. -
Clean Redis Database in Test
Automatically flushes the Redis database before running a scenario to ensure a clean state. -
Store Serialized Value in Redis
Serializes and stores a value in Redis with a given key. -
Store String Value in Redis
Stores a simple string value in Redis under the specified key.
Here you can find detailed documentation about using Redis fixtures in Behat:
-
How It Works
Learn about the inner workings of the RedisFixtureContext and how it integrates with your Behat tests. -
How to Load Fixture Data into Redis
A step-by-step guide on how to load predefined data fixtures into Redis using YAML files in Behat. -
Handling Missing Fixture Files
What to do when a specified fixture file is missing and how to handle such errors in your tests.