mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
18 lines
448 B
Nix
18 lines
448 B
Nix
|
import ./make-test.nix ({ lib, ...}:
|
||
|
|
||
|
{
|
||
|
name = "shiori";
|
||
|
meta.maintainers = with lib.maintainers; [ minijackson ];
|
||
|
|
||
|
machine =
|
||
|
{ ... }:
|
||
|
{ services.shiori.enable = true; };
|
||
|
|
||
|
testScript = ''
|
||
|
$machine->waitForUnit('shiori.service');
|
||
|
$machine->waitForOpenPort('8080');
|
||
|
$machine->succeed("curl --fail http://localhost:8080/");
|
||
|
$machine->succeed("curl --fail --location http://localhost:8080/ | grep -qi shiori");
|
||
|
'';
|
||
|
})
|