forked from phpmyadmin/sql-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTestGenerator.php
More file actions
43 lines (34 loc) · 1.01 KB
/
TestGenerator.php
File metadata and controls
43 lines (34 loc) · 1.01 KB
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
<?php
declare(strict_types=1);
use PhpMyAdmin\SqlParser\Tools\TestGenerator;
require_once '../vendor/autoload.php';
/**
* Test generator.
*
* Example of usage:
*
* php TestGenerator.php ../tests/data ../tests/data
*
* Input data must be in the `../tests/data` folder.
* The output will be generated in the same `../tests/data` folder.
*/
if (count($argv) < 3) {
return;
}
// Extracting directories' name from command line and trimming unnecessary
// slashes at the end.
$input = rtrim($argv[1], '/');
$output = rtrim($argv[2], '/');
$debug = empty($argv[3]) ? null : rtrim($argv[3], '/');
// Checking if all directories are valid.
if (! is_dir($input)) {
throw new Exception('The input directory does not exist.');
}
if (! is_dir($output)) {
throw new Exception('The output directory does not exist.');
}
if (($debug !== null) && (! is_dir($debug))) {
throw new Exception('The debug directory does not exist.');
}
// Finally, building the tests.
TestGenerator::buildAll($input, $output, $debug);