mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 04:02:10 +00:00
aa66c9ad37
features: - change listen port and address - configure config and data directory - basic test to check if minio server starts
20 lines
455 B
Nix
20 lines
455 B
Nix
import ./make-test.nix ({ pkgs, ...} : {
|
|
name = "minio";
|
|
meta = with pkgs.stdenv.lib.maintainers; {
|
|
maintainers = [ bachp ];
|
|
};
|
|
|
|
machine = { config, pkgs, ... }: {
|
|
services.minio.enable = true;
|
|
};
|
|
|
|
testScript =
|
|
''
|
|
startAll;
|
|
$machine->waitForUnit("minio.service");
|
|
$machine->waitForOpenPort(9000);
|
|
$machine->succeed("curl --fail http://localhost:9000/minio/index.html");
|
|
$machine->shutdown;
|
|
'';
|
|
})
|