summary refs log tree commit diff
path: root/nixos/tests/php-pcre.nix
blob: 19bde9babad5df8d4ff7aa24264f9fd60077eb33 (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
let testString = "can-use-subgroups"; in

import ./make-test.nix ({ ...}: {
  name = "php-httpd-pcre-jit-test";
  machine = { lib, pkgs, ... }: {
    time.timeZone = "UTC";
    services.httpd = {
      enable = true;
      adminAddr = "please@dont.contact";
      extraSubservices = lib.singleton {
        function = f: {
          enablePHP = true;
          phpOptions = "pcre.jit = true";

          extraConfig =
          let
            testRoot = pkgs.writeText "index.php"
            ''
              <?php
                preg_match('/(${testString})/', '${testString}', $result);
                var_dump($result);
              ?>
            '';
          in
            ''
              Alias / ${testRoot}/

              <Directory ${testRoot}>
                Require all granted
              </Directory>
            '';
        };
      };
    };
  };
  testScript = { ... }:
  ''
    $machine->waitForUnit('httpd.service');
    # Ensure php evaluation by matching on the var_dump syntax
    $machine->succeed('curl -vvv -s http://127.0.0.1:80/index.php \
      | grep "string(${toString (builtins.stringLength testString)}) \"${testString}\""');
  '';
})