2019-12-15 18:32:34 +00:00
|
|
|
import ./make-test-python.nix ({ pkgs, ...} : {
|
2018-02-20 17:03:49 +00:00
|
|
|
name = "novacomd";
|
|
|
|
meta = with pkgs.stdenv.lib.maintainers; {
|
|
|
|
maintainers = [ dtzWill ];
|
|
|
|
};
|
|
|
|
|
2018-07-20 21:56:59 +01:00
|
|
|
machine = { ... }: {
|
2018-02-20 17:03:49 +00:00
|
|
|
services.novacomd.enable = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
testScript = ''
|
2019-12-15 18:32:34 +00:00
|
|
|
machine.wait_for_unit("novacomd.service")
|
2018-02-20 17:03:49 +00:00
|
|
|
|
2019-12-15 18:32:34 +00:00
|
|
|
with subtest("Make sure the daemon is really listening"):
|
|
|
|
machine.wait_for_open_port(6968)
|
|
|
|
machine.succeed("novacom -l")
|
2018-02-20 17:03:49 +00:00
|
|
|
|
2019-12-15 18:32:34 +00:00
|
|
|
with subtest("Stop the daemon, double-check novacom fails if daemon isn't working"):
|
|
|
|
machine.stop_job("novacomd")
|
|
|
|
machine.fail("novacom -l")
|
2018-02-20 17:03:49 +00:00
|
|
|
|
2019-12-15 18:32:34 +00:00
|
|
|
with subtest("Make sure the daemon starts back up again"):
|
|
|
|
machine.start_job("novacomd")
|
|
|
|
# make sure the daemon is really listening
|
|
|
|
machine.wait_for_open_port(6968)
|
|
|
|
machine.succeed("novacom -l")
|
2018-02-20 17:03:49 +00:00
|
|
|
'';
|
|
|
|
})
|