sonarrradarrplexorganizrnginxdashboardlandingpagestartpagelandinghtpcserverhomepagesabnzbdheimdallembycouchpotatonzbgetbookmarkapplication-dashboardmuximux
		
		
		
		
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							32 lines
						
					
					
						
							1.1 KiB
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							32 lines
						
					
					
						
							1.1 KiB
						
					
					
				| <?php | |
| 
 | |
| namespace PhpParser; | |
| 
 | |
| require __DIR__ . '/bootstrap.php'; | |
| require __DIR__ . '/PhpParser/CodeTestParser.php'; | |
| require __DIR__ . '/PhpParser/CodeParsingTest.php'; | |
| 
 | |
| $dir = __DIR__ . '/code/parser'; | |
| 
 | |
| $testParser = new CodeTestParser; | |
| $codeParsingTest = new CodeParsingTest; | |
| foreach (filesInDir($dir, 'test') as $fileName => $code) { | |
|     if (false !== strpos($code, '@@{')) { | |
|         // Skip tests with evaluate segments | |
|         continue; | |
|     } | |
| 
 | |
|     list($name, $tests) = $testParser->parseTest($code, 2); | |
|     $newTests = []; | |
|     foreach ($tests as list($modeLine, list($input, $expected))) { | |
|         $modes = null !== $modeLine ? array_fill_keys(explode(',', $modeLine), true) : []; | |
|         list($parser5, $parser7) = $codeParsingTest->createParsers($modes); | |
|         $output = isset($modes['php5']) | |
|             ? $codeParsingTest->getParseOutput($parser5, $input, $modes) | |
|             : $codeParsingTest->getParseOutput($parser7, $input, $modes); | |
|         $newTests[] = [$modeLine, [$input, $output]]; | |
|     } | |
| 
 | |
|     $newCode = $testParser->reconstructTest($name, $newTests); | |
|     file_put_contents($fileName, $newCode); | |
| }
 | |
| 
 |