nixpkgs/nixos/tests/rabbitmq.nix

19 lines
365 B
Nix
Raw Normal View History

{ pkgs, ... }:
# This test runs rabbitmq and checks if rabbitmq is up and running
{
nodes = {
one = { config, pkgs, ... }: {
services.rabbitmq.enable = true;
};
};
testScript = ''
startAll;
$one->waitForUnit("rabbitmq.service");
$one->waitUntilSucceeds("su -s ${pkgs.stdenv.shell} rabbitmq -c \"rabbitmqctl status\"");
'';
}