diff --git a/nixos/modules/tests/private-storage.nix b/nixos/modules/tests/private-storage.nix index 048646a1f06d33904f6b2543558e2d08df3ea43a..0838de10b1e794824a3cfea63e1c75ac81776286 100644 --- a/nixos/modules/tests/private-storage.nix +++ b/nixos/modules/tests/private-storage.nix @@ -13,8 +13,19 @@ import <nixpkgs/nixos/tests/make-test.nix> { # Test the machine with a Perl program (sobbing). testScript = '' + # Boot the VM. $machine->start; + + # The systemd unit should reach the running state. $machine->waitForUnit("tahoe.storage.service"); + + # Some while after that the Tahoe-LAFS node should listen on the web API + # port. The port number here has to agree with the port number set in + # the private-storage.nix module. + $machine->waitForOpenPort(3456); + + # Once the web API is listening it should be possible to scrape some + # status from the node if it is really working. $machine->succeed("tahoe -d /var/db/tahoe-lafs/storage status"); ''; }