1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/nixos/tests/misskey.nix
2024-08-06 12:24:15 +02:00

30 lines
625 B
Nix

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}/")
'';
}
)