forked from phpmyadmin/sql-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContextGenerator.php
More file actions
36 lines (29 loc) · 843 Bytes
/
ContextGenerator.php
File metadata and controls
36 lines (29 loc) · 843 Bytes
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
<?php
declare(strict_types=1);
use PhpMyAdmin\SqlParser\Tools\ContextGenerator;
require_once __DIR__ . '/../vendor/autoload.php';
/**
* Test generator.
*
* Example of usage:
*
* php ContextGenerator.php data data
*
* Input data must be in the `data` folder.
* The output will be generated in the same `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], '/');
// Checking if all directories are valid.
if (! is_dir($input)) {
throw new Exception('The input directory does not exist.');
} elseif (! is_dir($output)) {
throw new Exception('The output directory does not exist.');
}
// Finally, building the tests.
ContextGenerator::buildAll($input, $output);