mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
b444a0e028
Add a simple test that starts rss-bridge and tries to fetch the feed of a demo bridge. On success we know the system setup (web server, PHP) and rss-bridge are working fine. Internet access is avoided by using a demo bridge.
23 lines
512 B
Nix
23 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'")
|
|
'';
|
|
}
|