mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-15 01:15:51 +00:00
25 lines
644 B
Nix
25 lines
644 B
Nix
|
import ./make-test-python.nix (
|
||
|
{ lib, pkgs, ... }:
|
||
|
{
|
||
|
name = "freshrss";
|
||
|
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)
|
||
|
response = machine.succeed("curl -vvv -s http://127.0.0.1:80/i/")
|
||
|
assert '<title>Main stream · FreshRSS</title>' in response, "FreshRSS stream page didn't load successfully"
|
||
|
'';
|
||
|
}
|
||
|
)
|