| 
									
										
										
										
											2020-03-31 19:06:04 +02:00
										 |  |  | let | 
					
						
							|  |  |  |   testString = "can-use-subgroups"; | 
					
						
							| 
									
										
										
										
											2020-04-19 20:56:42 +02:00
										 |  |  | in import ../make-test-python.nix ({lib, ...}: { | 
					
						
							| 
									
										
										
										
											2017-11-12 08:05:27 +01:00
										 |  |  |   name = "php-httpd-pcre-jit-test"; | 
					
						
							| 
									
										
										
										
											2020-04-19 20:56:42 +02:00
										 |  |  |   meta.maintainers = lib.teams.php.members; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-20 20:56:59 +00:00
										 |  |  |   machine = { lib, pkgs, ... }: { | 
					
						
							| 
									
										
										
										
											2017-11-12 08:05:27 +01:00
										 |  |  |     time.timeZone = "UTC"; | 
					
						
							|  |  |  |     services.httpd = { | 
					
						
							|  |  |  |       enable = true; | 
					
						
							|  |  |  |       adminAddr = "please@dont.contact"; | 
					
						
							| 
									
										
										
										
											2019-08-11 10:03:28 -04:00
										 |  |  |       enablePHP = true; | 
					
						
							|  |  |  |       phpOptions = "pcre.jit = true"; | 
					
						
							| 
									
										
										
										
											2020-03-31 19:06:04 +02:00
										 |  |  |       extraConfig = let | 
					
						
							| 
									
										
										
										
											2019-08-11 10:03:28 -04:00
										 |  |  |         testRoot = pkgs.writeText "index.php" | 
					
						
							| 
									
										
										
										
											2020-03-31 19:06:04 +02:00
										 |  |  |           ''
 | 
					
						
							|  |  |  |             <?php | 
					
						
							| 
									
										
										
										
											2019-08-11 10:03:28 -04:00
										 |  |  |             preg_match('/(${testString})/', '${testString}', $result); | 
					
						
							|  |  |  |             var_dump($result); | 
					
						
							| 
									
										
										
										
											2020-03-31 19:06:04 +02:00
										 |  |  |           '';
 | 
					
						
							| 
									
										
										
										
											2019-08-11 10:03:28 -04:00
										 |  |  |       in | 
					
						
							|  |  |  |         ''
 | 
					
						
							|  |  |  |           Alias / ${testRoot}/ | 
					
						
							| 
									
										
										
										
											2017-11-12 08:05:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-11 10:03:28 -04:00
										 |  |  |           <Directory ${testRoot}> | 
					
						
							|  |  |  |             Require all granted | 
					
						
							|  |  |  |           </Directory> | 
					
						
							|  |  |  |         '';
 | 
					
						
							| 
									
										
										
										
											2017-11-12 08:05:27 +01:00
										 |  |  |     }; | 
					
						
							|  |  |  |   }; | 
					
						
							| 
									
										
										
										
											2018-07-20 20:56:59 +00:00
										 |  |  |   testScript = { ... }: | 
					
						
							| 
									
										
										
										
											2020-03-31 19:06:04 +02:00
										 |  |  |     ''
 | 
					
						
							|  |  |  |       machine.wait_for_unit("httpd.service") | 
					
						
							|  |  |  |       # Ensure php evaluation by matching on the var_dump syntax | 
					
						
							| 
									
										
										
										
											2020-09-16 08:32:56 -07:00
										 |  |  |       response = machine.succeed("curl -fvvv -s http://127.0.0.1:80/index.php") | 
					
						
							| 
									
										
										
										
											2020-04-16 23:19:45 +02:00
										 |  |  |       expected = 'string(${toString (builtins.stringLength testString)}) "${testString}"' | 
					
						
							|  |  |  |       assert expected in response, "Does not appear to be able to use subgroups." | 
					
						
							| 
									
										
										
										
											2020-03-31 19:06:04 +02:00
										 |  |  |     '';
 | 
					
						
							| 
									
										
										
										
											2017-11-12 08:05:27 +01:00
										 |  |  | }) |