summary refs log tree commit diff
path: root/nixos/tests/mxisd.nix
diff options
context:
space:
mode:
authorLorenz Leutgeb <lorenz@leutgeb.xyz>2021-04-19 17:26:08 +0200
committerGitHub <noreply@github.com>2021-04-19 11:26:08 -0400
commit0b0cd3f6aaa3ee1700508a76f5626dfdb4e61048 (patch)
treefe5e1b7e6f462c09e4b0e53af32ad259c1b10ca4 /nixos/tests/mxisd.nix
parent49f0d178d336838f7628f89479801c54651a9ef6 (diff)
downloadnixpkgs-0b0cd3f6aaa3ee1700508a76f5626dfdb4e61048.tar
nixpkgs-0b0cd3f6aaa3ee1700508a76f5626dfdb4e61048.tar.gz
nixpkgs-0b0cd3f6aaa3ee1700508a76f5626dfdb4e61048.tar.bz2
nixpkgs-0b0cd3f6aaa3ee1700508a76f5626dfdb4e61048.tar.lz
nixpkgs-0b0cd3f6aaa3ee1700508a76f5626dfdb4e61048.tar.xz
nixpkgs-0b0cd3f6aaa3ee1700508a76f5626dfdb4e61048.tar.zst
nixpkgs-0b0cd3f6aaa3ee1700508a76f5626dfdb4e61048.zip
mxisd: remove (#119372)
* mxisd: remove

See EOL notice at https://github.com/kamax-matrix/mxisd/blob/master/EOL.md#end-of-life-notice

* mxisd: Add throwing EOL notice
Diffstat (limited to 'nixos/tests/mxisd.nix')
-rw-r--r--nixos/tests/mxisd.nix17
1 files changed, 4 insertions, 13 deletions
diff --git a/nixos/tests/mxisd.nix b/nixos/tests/mxisd.nix
index 22755ea353b..354612a8a53 100644
--- a/nixos/tests/mxisd.nix
+++ b/nixos/tests/mxisd.nix
@@ -6,25 +6,16 @@ import ./make-test-python.nix ({ pkgs, ... } : {
   };
 
   nodes = {
-    server_mxisd = args : {
+    server = 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 = ''
     start_all()
-    server_mxisd.wait_for_unit("mxisd.service")
-    server_mxisd.wait_for_open_port(8090)
-    server_mxisd.succeed("curl -Ssf 'http://127.0.0.1:8090/_matrix/identity/api/v1'")
-    server_ma1sd.wait_for_unit("mxisd.service")
-    server_ma1sd.wait_for_open_port(8090)
-    server_ma1sd.succeed("curl -Ssf 'http://127.0.0.1:8090/_matrix/identity/api/v1'")
+    server.wait_for_unit("mxisd.service")
+    server.wait_for_open_port(8090)
+    server.succeed("curl -Ssf 'http://127.0.0.1:8090/_matrix/identity/api/v1'")
   '';
 })