setDefinition([
new InputArgument('suite', InputArgument::REQUIRED, 'suite to be tested'),
new InputArgument('feature', InputArgument::REQUIRED, 'feature to be generated'),
new InputOption('config', 'c', InputOption::VALUE_OPTIONAL, 'Use custom path for config'),
]);
}
public function getDescription()
{
return 'Generates empty feature file in suite';
}
public function execute(InputInterface $input, OutputInterface $output)
{
$suite = $input->getArgument('suite');
$filename = $input->getArgument('feature');
$config = $this->getSuiteConfig($suite);
$this->createDirectoryFor($config['path'], $filename);
$gen = new Feature(basename($filename));
if (!preg_match('~\.feature$~', $filename)) {
$filename .= '.feature';
}
$full_path = rtrim($config['path'], DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR . $filename;
$res = $this->createFile($full_path, $gen->produce());
if (!$res) {
$output->writeln("Feature $filename already exists");
return;
}
$output->writeln("Feature was created in $full_path");
}
}