nixpkgs/nixos/tests/freshrss/none-auth.nix

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

25 lines
644 B
Nix
Raw Permalink Normal View History

2025-01-09 23:18:07 +01:00
import ../make-test-python.nix (
{ lib, pkgs, ... }:
{
2025-01-09 23:18:07 +01:00
name = "freshrss-none-auth";
meta.maintainers = with lib.maintainers; [ mattchrist ];
nodes.machine =
{ pkgs, ... }:
{
services.freshrss = {
enable = true;
baseUrl = "http://localhost";
authType = "none";
};
};
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 http://localhost:80/i/")
assert '<title> · FreshRSS</title>' in response, "FreshRSS stream page didn't load successfully"
'';
}
)