* @author Igor Timoshenko * @author Adam Cooper * @package PHPCI * @subpackage Plugins */ class Codeception extends AbstractPlugin implements ZeroConfigPlugin { /** * @inheritdoc */ protected $allowedStages = array('test'); /** @var string */ protected $args = ''; /** @var Builder */ protected $phpci; /** @var Build */ protected $build; /** * @var string $ymlConfigFile The path of a yml config for Codeception */ protected $ymlConfigFile; /** * @var string $path The path to the codeception tests folder. */ protected $path; /** * @param $stage * @param Builder $builder * @param Build $build * @return bool */ public static function canRunZeroConfig($stage, Builder $builder, Build $build) { return $stage == 'test' && !is_null(self::findConfigFile($builder->buildPath)); } /** * Try and find the codeception YML config file. * @param $buildPath * @return null|string */ public static function findConfigFile($buildPath) { if (file_exists($buildPath . 'codeception.yml')) { return 'codeception.yml'; } if (file_exists($buildPath . 'codeception.dist.yml')) { return 'codeception.dist.yml'; } return null; } /** * Set up the plugin, configure options, etc. * @param Builder $phpci * @param Build $build * @param array $options */ public function __construct(Builder $phpci, Build $build, array $options = array()) { $this->phpci = $phpci; $this->build = $build; $this->path = 'tests' . DIRECTORY_SEPARATOR . '_output' . DIRECTORY_SEPARATOR; if (empty($options['config'])) { $this->ymlConfigFile = self::findConfigFile($this->phpci->buildPath); } else { $this->ymlConfigFile = $options['config']; } if (isset($options['args'])) { $this->args = (string) $options['args']; } if (isset($options['path'])) { $this->path = $options['path']; } } /** * Runs Codeception tests */ public function execute() { if (empty($this->ymlConfigFile)) { throw new \Exception("No configuration file found"); } // Run any config files first. This can be either a single value or an array. return $this->runConfigFile($this->ymlConfigFile); } /** * Run tests from a Codeception config file. * @param $configPath * @return bool|mixed * @throws \Exception */ protected function runConfigFile($configPath) { $this->phpci->logExecOutput(false); $codecept = $this->phpci->findBinary('codecept'); if (!$codecept) { $this->phpci->logFailure(Lang::get('could_not_find', 'codecept')); return false; } $cmd = 'cd "%s" && ' . $codecept . ' run -c "%s" --xml ' . $this->args; if (IS_WIN) { $cmd = 'cd /d "%s" && ' . $codecept . ' run -c "%s" --xml ' . $this->args; } $configPath = $this->phpci->buildPath . $configPath; $success = $this->phpci->executeCommand($cmd, $this->phpci->buildPath, $configPath); $this->phpci->log( 'Codeception XML path: '. $this->phpci->buildPath . $this->path . 'report.xml', Loglevel::DEBUG ); $xml = file_get_contents($this->phpci->buildPath . $this->path . 'report.xml', false); $parser = new Parser($this->phpci, $xml); $output = $parser->parse(); $meta = array( 'tests' => $parser->getTotalTests(), 'timetaken' => $parser->getTotalTimeTaken(), 'failures' => $parser->getTotalFailures() ); $this->build->storeMeta('codeception-meta', $meta); $this->build->storeMeta('codeception-data', $output); $this->build->storeMeta('codeception-errors', $parser->getTotalFailures()); $this->phpci->logExecOutput(true); return $success; } }