mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
62086c6be6
A sporadic failure occured on Hydra because a request was sent to the daemon after the systemd unit was started, but before the daemon was actually listening. Fix by checking for open port first.
35 lines
1022 B
Nix
35 lines
1022 B
Nix
import ./make-test.nix ({ pkgs, ...} : {
|
|
name = "novacomd";
|
|
meta = with pkgs.stdenv.lib.maintainers; {
|
|
maintainers = [ dtzWill ];
|
|
};
|
|
|
|
machine = { ... }: {
|
|
services.novacomd.enable = true;
|
|
};
|
|
|
|
testScript = ''
|
|
$machine->waitForUnit("multi-user.target");
|
|
|
|
# multi-user.target wants novacomd.service, but let's make sure
|
|
$machine->waitForUnit("novacomd.service");
|
|
|
|
# Check status and try connecting with novacom
|
|
$machine->succeed("systemctl status novacomd.service >&2");
|
|
# to prevent non-deterministic failure,
|
|
# make sure the daemon is really listening
|
|
$machine->waitForOpenPort(6968);
|
|
$machine->succeed("novacom -l");
|
|
|
|
# Stop the daemon, double-check novacom fails if daemon isn't working
|
|
$machine->stopJob("novacomd");
|
|
$machine->fail("novacom -l");
|
|
|
|
# And back again for good measure
|
|
$machine->startJob("novacomd");
|
|
# make sure the daemon is really listening
|
|
$machine->waitForOpenPort(6968);
|
|
$machine->succeed("novacom -l");
|
|
'';
|
|
})
|