Skip to content

MacPaw/behat-redis-context

Repository files navigation

Symfony Behat Redis Context

Version Build Status Code Coverage
main CI Coverage Status
develop CI Coverage Status

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.

How to Install Symfony Behat Redis Context

To install Symfony Behat Redis Context, follow these steps:

  1. 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

RedisContext Documentation

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.

Redis Step Definitions:

RedisFixtureContext Documentation

Here you can find detailed documentation about using Redis fixtures in Behat:

  1. How It Works
    Learn about the inner workings of the RedisFixtureContext and how it integrates with your Behat tests.

  2. 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.

  3. Handling Missing Fixture Files
    What to do when a specified fixture file is missing and how to handle such errors in your tests.