mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
33 lines
749 B
Nix
33 lines
749 B
Nix
|
import ./make-test-python.nix ({ pkgs, ... }: {
|
||
|
name = "airsonic";
|
||
|
meta = with pkgs.lib.maintainers; {
|
||
|
maintainers = [ sumnerevans ];
|
||
|
};
|
||
|
|
||
|
machine =
|
||
|
{ pkgs, ... }:
|
||
|
{
|
||
|
services.airsonic = {
|
||
|
enable = true;
|
||
|
maxMemory = 800;
|
||
|
};
|
||
|
|
||
|
# Airsonic is a Java application, and unfortunately requires a significant
|
||
|
# amount of memory.
|
||
|
virtualisation.memorySize = 1024;
|
||
|
};
|
||
|
|
||
|
testScript = ''
|
||
|
def airsonic_is_up(_) -> bool:
|
||
|
return machine.succeed("curl --fail http://localhost:4040/login")
|
||
|
|
||
|
|
||
|
machine.start()
|
||
|
machine.wait_for_unit("airsonic.service")
|
||
|
machine.wait_for_open_port(4040)
|
||
|
|
||
|
with machine.nested("Waiting for UI to work"):
|
||
|
retry(airsonic_is_up)
|
||
|
'';
|
||
|
})
|