%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/11585/cwd/html/ppaobm/vendor/codeception/base/src/Codeception/Command/ |
Upload File : |
<?php namespace Codeception\Command; use Codeception\Lib\Generator\GherkinSnippets as SnippetsGenerator; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Console\Output\OutputInterface; /** * Generates code snippets for matched feature files in a suite. * Code snippets are expected to be implemented in Actor or PageObjects * * Usage: * * * `codecept gherkin:snippets acceptance` - snippets from all feature of acceptance tests * * `codecept gherkin:snippets acceptance/feature/users` - snippets from `feature/users` dir of acceptance tests * * `codecept gherkin:snippets acceptance user_account.feature` - snippets from a single feature file * * `codecept gherkin:snippets acceptance/feature/users/user_accout.feature` - snippets from feature file in a dir */ class GherkinSnippets extends Command { use Shared\Config; use Shared\Style; protected function configure() { $this->setDefinition( [ new InputArgument('suite', InputArgument::REQUIRED, 'suite to scan for feature files'), new InputArgument('test', InputArgument::OPTIONAL, 'test to be scanned'), new InputOption('config', 'c', InputOption::VALUE_OPTIONAL, 'Use custom path for config'), ] ); parent::configure(); } public function getDescription() { return 'Fetches empty steps from feature files of suite and prints code snippets for them'; } public function execute(InputInterface $input, OutputInterface $output) { $this->addStyles($output); $suite = $input->getArgument('suite'); $test = $input->getArgument('test'); $config = $this->getSuiteConfig($suite); $generator = new SnippetsGenerator($config, $test); $snippets = $generator->getSnippets(); $features = $generator->getFeatures(); if (empty($snippets)) { $output->writeln("<notice> All Gherkin steps are defined. Exiting... </notice>"); return; } $output->writeln("<comment> Snippets found in: </comment>"); foreach ($features as $feature) { $output->writeln("<info> - {$feature} </info>"); } $output->writeln("<comment> Generated Snippets: </comment>"); $output->writeln("<info> ----------------------------------------- </info>"); foreach ($snippets as $snippet) { $output->writeln($snippet); } $output->writeln("<info> ----------------------------------------- </info>"); $output->writeln(sprintf(' <bold>%d</bold> snippets proposed', count($snippets))); $output->writeln("<notice> Copy generated snippets to {$config['actor']} or a specific Gherkin context </notice>"); } }