The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Test::Consul - Run a Consul server for testing

SYNOPSIS

    use Test::Consul;
    
    # succeeds or dies
    my $tc = Test::Consul->start;
    
    my $consul_baseurl = "http://127.0.0.1:".$tc->port;
    
    # do things with Consul here
    
    # kill test server (or let $tc fall out of scope, destructor will clean up)
    $tc->end;

DESCRIPTION

This module starts and stops a standalone Consul instance. It's designed to be used to help test Consul-aware Perl programs.

It's assumed that you have Consul 0.6.4 installed somewhere.

ARGUMENTS

port

The TCP port for HTTP API endpoint. Consul's default is 8500, but this defaults to a random unused port.

rpc_port

The TCP port for the RPC CLI endpoint. Consul's default is 8400, but this defaults to a random unused port.

serf_lan_port

The TCP and UDP port for the Serf LAN. Consul's default is 8301, but this defaults to a random unused port.

serf_wan_port

The TCP and UDP port for the Serf WAN. Consul's default is 8302, but this defaults to a random unused port.

server_port

The TCP port for the RPC Server address. Consul's default is 8300, but this defaults to a random unused port.

enable_acls

Set this to true to enable ACLs.

acl_default_policy

Set this to either allow or deny. The default is allow. See https://www.consul.io/docs/agent/options.html#acl_default_policy for more information.

acl_master_token

If "enable_acls" is true then this token will be used as the master token. By default this will be 01234567-89AB-CDEF-GHIJ-KLMNOPQRSTUV.

bin

Location of the consul binary. If not provided then the binary will be retrieved from "found_bin".

datadir

Directory for Consul's data store. If not provided, the -dev option is used and no datadir is used.

ATTRIBUTES

running

Returns true if "start" has been called and "stop" has not been called.

METHODS

start

    # As an object method:
    my $tc = Test::Consul->new( %args );
    $tc->start();
    
    # As a class method:
    my $tc = Test::Consul->start( %args );

Starts a Consul instance. This method can take a moment to run, because it waits until Consul's HTTP endpoint is available before returning. If it fails for any reason an exception is thrown. In this way you can be sure that Consul is ready for service if this method returns successfully.

stop

    $tc->stop();

Kill the Consul instance. Graceful shutdown is attempted first, and if it doesn't die within a couple of seconds, the process is killed.

This method is also called if the instance of this class falls out of scope.

CLASS METHODS

See also "start" which acts as both a class and instance method.

found_bin

Return the value of the CONSUL_BIN env var, if set, or uses File::Which to search the system for an installed binary. Returns undef if no consul binary could be found.

skip_all_if_no_bin

    Test::Consul->skip_all_if_no_bin;

This class method issues a skip_all on the main package if the consul binary could not be found ("found_bin" returns false).

SEE ALSO

SUPPORT

Bugs / Feature Requests

Please report any bugs or feature requests through the issue tracker at https://github.com/robn/Consul-Test/issues. You will be notified automatically of any progress on your issue.

Source Code

This is open source software. The code repository is available for public review and contribution under the terms of the license.

https://github.com/robn/Consul-Test

  git clone https://github.com/robn/Consul-Test.git

AUTHORS

  • Robert Norris <rob@eatenbyagrue.org>

CONTRIBUTORS

  • Aran Deltac <bluefeet@gmail.com>

COPYRIGHT AND LICENSE

This software is copyright (c) 2015 by Robert Norris.

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