nixpkgs/nixos/tests/mosquitto.nix

96 lines
2.1 KiB
Nix
Raw Normal View History

import ./make-test-python.nix ({ pkgs, ... }:
2019-04-24 08:23:13 +00:00
let
port = 1888;
username = "mqtt";
password = "VERY_secret";
topic = "test/foo";
cmd = bin: pkgs.lib.concatStringsSep " " [
"${pkgs.mosquitto}/bin/mosquitto_${bin}"
"-V mqttv311"
"-h server"
"-p ${toString port}"
"-u ${username}"
"-P '${password}'"
"-t ${topic}"
];
2019-08-13 21:52:01 +00:00
in {
2019-04-24 08:23:13 +00:00
name = "mosquitto";
meta = with pkgs.stdenv.lib; {
maintainers = with maintainers; [ peterhoeg ];
};
nodes = let
client = { pkgs, ... }: {
environment.systemPackages = with pkgs; [ mosquitto ];
};
in {
server = { pkgs, ... }: {
networking.firewall.allowedTCPPorts = [ port ];
services.mosquitto = {
inherit port;
enable = true;
host = "0.0.0.0";
checkPasswords = true;
2019-08-13 21:52:01 +00:00
users.${username} = {
2019-04-24 08:23:13 +00:00
inherit password;
acl = [
"topic readwrite ${topic}"
];
};
};
};
client1 = client;
client2 = client;
};
testScript = let
file = "/tmp/msg";
2019-06-24 05:59:53 +00:00
sub = args:
"(${cmd "sub"} -C 1 ${args} | tee ${file} &)";
2019-04-24 08:23:13 +00:00
in ''
start_all()
server.wait_for_unit("mosquitto.service")
2019-06-24 05:59:53 +00:00
for machine in server, client1, client2:
machine.fail("test -f ${file}")
2019-06-24 05:59:53 +00:00
# QoS = 0, so only one subscribers should get it
server.execute(
"${sub "-q 0"}"
)
2019-06-24 05:59:53 +00:00
# we need to give the subscribers some time to connect
client2.execute("sleep 5")
client2.succeed(
"${cmd "pub"} -m FOO -q 0"
)
2019-06-24 05:59:53 +00:00
server.wait_until_succeeds("grep -q FOO ${file}")
server.execute("rm ${file}")
2019-06-24 05:59:53 +00:00
# QoS = 1, so both subscribers should get it
server.execute(
"${sub "-q 1"}"
)
client1.execute(
"${sub "-q 1"}"
)
2019-04-24 08:23:13 +00:00
2019-06-24 05:59:53 +00:00
# we need to give the subscribers some time to connect
client2.execute("sleep 5")
client2.succeed(
"${cmd "pub"} -m BAR -q 1"
)
2019-04-24 08:23:13 +00:00
server.wait_until_succeeds("grep -q BAR ${file}")
server.execute("rm ${file}")
2019-04-24 08:23:13 +00:00
client1.wait_until_succeeds("grep -q BAR ${file}")
client1.execute("rm ${file}")
2019-04-24 08:23:13 +00:00
'';
})