nixpkgs/nixos/tests/misskey.nix

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

30 lines
625 B
Nix
Raw Normal View History

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