472aeafc57
GitOrigin-RevId: c31898adf5a8ed202ce5bea9f347b1c6871f32d1
22 lines
512 B
Nix
22 lines
512 B
Nix
{ pkgs, ... }:
|
|
{
|
|
name = "rss-bridge";
|
|
meta.maintainers = with pkgs.lib.maintainers; [ mynacol ];
|
|
|
|
nodes.machine =
|
|
{ ... }:
|
|
{
|
|
services.rss-bridge = {
|
|
enable = true;
|
|
};
|
|
};
|
|
|
|
testScript = ''
|
|
start_all()
|
|
machine.wait_for_unit("nginx.service")
|
|
machine.wait_for_unit("phpfpm-rss-bridge.service")
|
|
|
|
# check for successful feed download
|
|
machine.succeed("curl -sS -f 'http://localhost/?action=display&bridge=DemoBridge&context=testCheckbox&format=Atom'")
|
|
'';
|
|
}
|