nixpkgs/nixos/tests/misskey.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
543 B
Nix
Raw Permalink Normal View History

{ lib, ... }:
let
port = 61812;
in
{
name = "misskey";
2024-06-12 17:34:42 +02:00
meta.maintainers = [ lib.maintainers.feathecutie ];
2024-06-12 17:34:42 +02:00
nodes.machine = {
services.misskey = {
enable = true;
settings = {
url = "http://misskey.local";
inherit port;
2024-06-12 17:34:42 +02:00
};
database.createLocally = true;
redis.createLocally = true;
2024-06-12 17:34:42 +02:00
};
};
2024-06-12 17:34:42 +02:00
testScript = ''
machine.wait_for_unit("misskey.service")
machine.wait_for_open_port(${toString port})
machine.succeed("curl --fail http://localhost:${toString port}/")
'';
}