wchisp: remove overuse of with lib (#357239)
[NixPkgs.git] / nixos / tests / harmonia.nix
blobd97f0fb89ede404191409d21c9da941609b2dc68
1 { pkgs, lib, ... }:
4   name = "harmonia";
6   nodes = {
7     harmonia = {
8       services.harmonia = {
9         enable = true;
10         signKeyPaths = [(pkgs.writeText "cache-key" "cache.example.com-1:9FhO0w+7HjZrhvmzT1VlAZw4OSAlFGTgC24Seg3tmPl4gZBdwZClzTTHr9cVzJpwsRSYLTu7hEAQe3ljy92CWg==")];
11         settings.priority = 35;
12       };
14       networking.firewall.allowedTCPPorts = [ 5000 ];
15       system.extraDependencies = [ pkgs.emptyFile ];
17       # check that extra-allowed-users is effective for harmonia
18       nix.settings.allowed-users = [];
19     };
21     client01 = {
22       nix.settings = {
23         substituters = lib.mkForce [ "http://harmonia:5000" ];
24         trusted-public-keys = lib.mkForce [ "cache.example.com-1:eIGQXcGQpc00x6/XFcyacLEUmC07u4RAEHt5Y8vdglo=" ];
25       };
26     };
27   };
29   testScript = { nodes, ... }: ''
30     start_all()
32     harmonia.wait_for_unit("harmonia.service")
34     client01.wait_until_succeeds("curl -f http://harmonia:5000/nix-cache-info | grep '${toString nodes.harmonia.services.harmonia.settings.priority}' >&2")
35     client01.succeed("curl -f http://harmonia:5000/version | grep '${nodes.harmonia.services.harmonia.package.version}' >&2")
37     client01.succeed("cat /etc/nix/nix.conf >&2")
38     client01.succeed("nix-store --realise ${pkgs.emptyFile} --store /root/other-store")
39   '';