summary refs log tree commit diff
path: root/nixos/tests/sourcehut.nix
blob: b56a14ebf85eafcf21d018820024a6f531c43e12 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import ./make-test-python.nix ({ pkgs, ... }:

{
  name = "sourcehut";

  meta.maintainers = [ pkgs.lib.maintainers.tomberek ];

  machine = { config, pkgs, ... }: {
    virtualisation.memorySize = 2048;
    networking.firewall.allowedTCPPorts = [ 80 ];

    services.sourcehut = {
      enable = true;
      services = [ "meta" ];
      originBase = "sourcehut";
      settings."sr.ht".service-key =   "8888888888888888888888888888888888888888888888888888888888888888";
      settings."sr.ht".network-key = "0000000000000000000000000000000000000000000=";
      settings.webhooks.private-key = "0000000000000000000000000000000000000000000=";
    };
  };

  testScript = ''
    start_all()
    machine.wait_for_unit("multi-user.target")
    machine.wait_for_unit("metasrht.service")
    machine.wait_for_open_port(5000)
    machine.succeed("curl -sL http://localhost:5000 | grep meta.sourcehut")
  '';
})