about summary refs log tree commit diff
path: root/nixos/tests/web-servers/unit-php.nix
blob: c6327a1f825d74c73c3ea9364b806c672e19493a (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import ../make-test-python.nix ({pkgs, ...}:
 let
    testdir = pkgs.writeTextDir "www/info.php" "<?php phpinfo();";

in {
  name = "unit-php-test";
  meta.maintainers = with pkgs.stdenv.lib.maintainers; [ izorkin ];

  machine = { config, lib, pkgs, ... }: {
    services.unit = {
      enable = true;
      config = ''
        {
          "listeners": {
            "*:9074": {
              "application": "php_74"
            }
          },
          "applications": {
            "php_74": {
              "type": "php 7.4",
              "processes": 1,
              "user": "testuser",
              "group": "testgroup",
              "root": "${testdir}/www",
              "index": "info.php"
            }
          }
        }
      '';
    };
    users = {
      users.testuser = {
        isNormalUser = false;
        uid = 1074;
        group = "testgroup";
      };
      groups.testgroup = {
        gid= 1074;
      };
    };
  };
  testScript = ''
    machine.wait_for_unit("unit.service")
    assert "PHP Version ${pkgs.php74.version}" in machine.succeed("curl -vvv -s http://127.0.0.1:9074/")
  '';
})