mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
40 lines
1,010 B
Nix
40 lines
1,010 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
name = "pocket-id";
|
|
meta.maintainers = with lib.maintainers; [
|
|
gepbird
|
|
ymstnt
|
|
];
|
|
|
|
nodes = {
|
|
machine =
|
|
{ ... }:
|
|
{
|
|
services.pocket-id = {
|
|
enable = true;
|
|
settings = {
|
|
PORT = 10001;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
testScript =
|
|
{ nodes, ... }:
|
|
let
|
|
inherit (nodes.machine.services.pocket-id) settings;
|
|
inherit (builtins) toString;
|
|
in
|
|
''
|
|
machine.wait_for_unit("pocket-id.service")
|
|
machine.wait_for_open_port(${toString settings.PORT})
|
|
|
|
backend_status = machine.succeed("curl -L -o /tmp/backend-output -w '%{http_code}' http://localhost:${toString settings.PORT}/api/users/me")
|
|
assert backend_status == "401"
|
|
machine.succeed("grep 'You are not signed in' /tmp/backend-output")
|
|
|
|
frontend_status = machine.succeed("curl -L -o /tmp/frontend-output -w '%{http_code}' http://localhost:${toString settings.PORT}")
|
|
assert frontend_status == "200"
|
|
'';
|
|
}
|