Commit 46dfed60 authored by nikstur's avatar nikstur
Browse files

nixos/tests/rshim: init

parent 6852dc23
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -644,6 +644,7 @@ in {
  retroarch = handleTest ./retroarch.nix {};
  robustirc-bridge = handleTest ./robustirc-bridge.nix {};
  roundcube = handleTest ./roundcube.nix {};
  rshim = handleTest ./rshim.nix {};
  rspamd = handleTest ./rspamd.nix {};
  rss2email = handleTest ./rss2email.nix {};
  rstudio-server = handleTest ./rstudio-server.nix {};

nixos/tests/rshim.nix

0 → 100644
+25 −0
Original line number Diff line number Diff line
{ system ? builtins.currentSystem
, config ? { }
, pkgs ? import ../.. { inherit system config; }
}:

with import ../lib/testing-python.nix { inherit system pkgs; };
with pkgs.lib;

{
  basic = makeTest {
    name = "rshim";
    meta.maintainers = with maintainers; [ nikstur ];

    nodes.machine = { config, pkgs, ... }: {
      services.rshim.enable = true;
    };

    testScript = { nodes, ... }: ''
      machine.start()
      machine.wait_for_unit("multi-user.target")

      print(machine.succeed("systemctl status rshim.service"))
    '';
  };
}