mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
176b1aeb4e
both servers only differ slighly so the module can be reused
32 lines
858 B
Nix
32 lines
858 B
Nix
import ./make-test.nix ({ pkgs, ... } : {
|
|
|
|
name = "mxisd";
|
|
meta = with pkgs.stdenv.lib.maintainers; {
|
|
maintainers = [ mguentner ];
|
|
};
|
|
|
|
nodes = {
|
|
server_mxisd = args : {
|
|
services.mxisd.enable = true;
|
|
services.mxisd.matrix.domain = "example.org";
|
|
};
|
|
|
|
server_ma1sd = args : {
|
|
services.mxisd.enable = true;
|
|
services.mxisd.matrix.domain = "example.org";
|
|
services.mxisd.package = pkgs.ma1sd;
|
|
};
|
|
};
|
|
|
|
testScript = ''
|
|
startAll;
|
|
$server_mxisd->waitForUnit("mxisd.service");
|
|
$server_mxisd->waitForOpenPort(8090);
|
|
$server_mxisd->succeed("curl -Ssf \"http://127.0.0.1:8090/_matrix/identity/api/v1\"");
|
|
$server_ma1sd->waitForUnit("mxisd.service");
|
|
$server_ma1sd->waitForOpenPort(8090);
|
|
$server_ma1sd->succeed("curl -Ssf \"http://127.0.0.1:8090/_matrix/identity/api/v1\"")
|
|
|
|
'';
|
|
})
|