2014-04-14 12:02:44 +00:00
|
|
|
# This test runs rabbitmq and checks if rabbitmq is up and running.
|
2014-03-10 10:10:32 +00:00
|
|
|
|
2019-11-25 09:35:19 +00:00
|
|
|
import ./make-test-python.nix ({ pkgs, ... }: {
|
2014-06-28 14:04:49 +00:00
|
|
|
name = "rabbitmq";
|
2021-01-10 19:08:30 +00:00
|
|
|
meta = with pkgs.lib.maintainers; {
|
2019-02-22 15:14:13 +00:00
|
|
|
maintainers = [ eelco offline ];
|
2015-07-12 10:09:40 +00:00
|
|
|
};
|
2014-03-10 10:10:32 +00:00
|
|
|
|
2022-03-20 23:15:30 +00:00
|
|
|
nodes.machine = {
|
2021-08-30 08:11:49 +00:00
|
|
|
services.rabbitmq = {
|
|
|
|
enable = true;
|
|
|
|
managementPlugin.enable = true;
|
|
|
|
};
|
2021-08-02 13:23:07 +00:00
|
|
|
# Ensure there is sufficient extra disk space for rabbitmq to be happy
|
|
|
|
virtualisation.diskSize = 1024;
|
2014-03-10 10:10:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
testScript = ''
|
2019-11-25 09:35:19 +00:00
|
|
|
machine.start()
|
2014-04-14 12:02:44 +00:00
|
|
|
|
2019-11-25 09:35:19 +00:00
|
|
|
machine.wait_for_unit("rabbitmq.service")
|
|
|
|
machine.wait_until_succeeds(
|
2020-04-07 06:25:48 +00:00
|
|
|
'su -s ${pkgs.runtimeShell} rabbitmq -c "rabbitmqctl status"'
|
2019-11-25 09:35:19 +00:00
|
|
|
)
|
2022-06-11 12:22:53 +00:00
|
|
|
machine.wait_for_open_port(15672)
|
2014-03-10 10:10:32 +00:00
|
|
|
'';
|
2014-04-14 12:02:44 +00:00
|
|
|
})
|