nixpkgs/nixos/tests/freshrss/caddy-sqlite.nix

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

31 lines
823 B
Nix
Raw Permalink Normal View History

2025-01-09 23:18:07 +01:00
import ../make-test-python.nix (
{ lib, pkgs, ... }:
{
2025-01-26 20:00:50 +01:00
name = "freshrss-caddy-sqlite";
meta.maintainers = with lib.maintainers; [
etu
stunkymonkey
];
nodes.machine =
{ pkgs, ... }:
{
services.freshrss = {
enable = true;
baseUrl = "http://localhost";
passwordFile = pkgs.writeText "password" "secret";
dataDir = "/srv/freshrss";
2025-01-26 20:00:50 +01:00
webserver = "caddy";
virtualHost = "freshrss:80";
};
};
testScript = ''
machine.wait_for_unit("multi-user.target")
machine.wait_for_open_port(80)
2025-01-26 20:00:50 +01:00
response = machine.succeed("curl -vvv -s -H 'Host: freshrss' http://localhost:80/i/")
assert '<title>Login · FreshRSS</title>' in response, "Login page didn't load successfully"
'';
}
)