Actions Status

NAME

Test::ValkeyServer - valkey-server runner for tests.

SYNOPSIS

use Redis;
use Test::ValkeyServer;
use Test::More;

my $valkey_server;
eval {
    $valkey_server = Test::ValkeyServer->new;
} or plan skip_all => 'valkey-server is required for this test';

my $redis = Redis->new( $valkey_server->connect_info );

is $redis->ping, 'PONG', 'ping pong ok';

done_testing;

DESCRIPTION

Test::ValkeyServer is a fork of Test::RedisServer adapted for Valkey, the open source high-performance key/value store. It automatically spawns a temporary valkey-server instance for use in your test suite and cleans it up when done.

This module was forked from Test::RedisServer version 0.24 by Daisuke Murase and adapted for Valkey compatibility.

METHODS

new(%options)

my $valkey_server = Test::ValkeyServer->new(%options);

Create a new valkey-server instance, and start it by default (use auto_start option to avoid this)

Available options are:

start

Start valkey-server instance manually.

exec

Just exec to valkey-server instance. This method is useful to use this module with Test::TCP, Proclet or etc.

use File::Temp;
use Test::TCP;
my $tmp_dir = File::Temp->newdir( CLEANUP => 1 );

test_tcp(
    client => sub {
        my ($port, $server_pid) = @_;
        ...
    },
    server => sub {
        my ($port) = @_;
        my $valkey = Test::ValkeyServer->new(
            auto_start => 0,
            conf       => { port => $port },
            tmpdir     => $tmp_dir,
        );
        $valkey->exec;
    },
);

stop

Stop valkey-server instance.

This method is automatically called from object destructor, DEMOLISH.

connect_info

Return connection info for client library to connect this valkey-server instance.

This parameter is designed to pass directly to Redis module.

my $valkey_server = Test::ValkeyServer->new;
my $redis = Redis->new( $valkey_server->connect_info );

pid

Return valkey-server instance's process id, or undef when valkey-server is not running.

wait_exit

Block until valkey instance exited.

SEE ALSO

Test::mysqld for mysqld.

Test::Memcached for Memcached.

This module steals lots of stuff from above modules.

Test::RedisServer, the original module this was forked from.

INTERNAL METHODS

BUILD

DEMOLISH

AUTHOR

Daisuke Murase typester@cpan.org (original Test::RedisServer author)

Current maintainer: plainbanana

COPYRIGHT AND LICENSE

Copyright (c) 2012 KAYAC Inc. All rights reserved.

Forked as Test::ValkeyServer in 2025 by plainbanana.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

The full text of the license can be found in the LICENSE file included with this module.