From 21ba39e6ff3d1e10b292799df9aa9375873cd349 Mon Sep 17 00:00:00 2001 From: Dan Cryer Date: Wed, 27 Apr 2016 15:27:27 +0100 Subject: [PATCH] Fixes --- PHPCI/Helper/BaseCommandExecutor.php | 6 +----- PHPCI/Logging/BuildLogger.php | 4 +++- PHPCI/Plugin/Util/TestResultParsers/Codeception.php | 3 +-- 3 files changed, 5 insertions(+), 8 deletions(-) diff --git a/PHPCI/Helper/BaseCommandExecutor.php b/PHPCI/Helper/BaseCommandExecutor.php index ddfa78df..b3b47f7b 100644 --- a/PHPCI/Helper/BaseCommandExecutor.php +++ b/PHPCI/Helper/BaseCommandExecutor.php @@ -76,6 +76,7 @@ abstract class BaseCommandExecutor implements CommandExecutor $this->lastOutput = array(); $command = call_user_func_array('sprintf', $args); + $this->logger->logDebug($command); if ($this->quiet) { $this->logger->log('Executing: ' . $command); @@ -89,11 +90,6 @@ abstract class BaseCommandExecutor implements CommandExecutor ); $pipes = array(); - - if (defined('PHPCI_DEBUG_MODE')) { - $this->logger->logDebug($command); - } - $process = proc_open($command, $descriptorSpec, $pipes, $this->buildPath, null); if (is_resource($process)) { diff --git a/PHPCI/Logging/BuildLogger.php b/PHPCI/Logging/BuildLogger.php index cae5ff22..a68e9e6d 100644 --- a/PHPCI/Logging/BuildLogger.php +++ b/PHPCI/Logging/BuildLogger.php @@ -104,7 +104,9 @@ class BuildLogger implements LoggerAwareInterface */ public function logDebug($message) { - $this->log("\033[0;33m" . $message . "\033[0m"); + if (defined('PHPCI_DEBUG_MODE') && PHPCI_DEBUG_MODE) { + $this->log("\033[0;33m" . $message . "\033[0m"); + } } /** diff --git a/PHPCI/Plugin/Util/TestResultParsers/Codeception.php b/PHPCI/Plugin/Util/TestResultParsers/Codeception.php index 39f28666..24af62e4 100644 --- a/PHPCI/Plugin/Util/TestResultParsers/Codeception.php +++ b/PHPCI/Plugin/Util/TestResultParsers/Codeception.php @@ -30,7 +30,6 @@ class Codeception implements ParserInterface { $this->phpci = $phpci; $this->resultsXml = $resultsXml; - $this->totalTests = 0; } @@ -71,7 +70,7 @@ class Codeception implements ParserInterface if (isset($testcase->failure) || isset($testcase->error)) { $testresult['pass'] = false; - $testresult['message'] = isset($testcase->failure) ? (string) $testcase->failure : (string) $testcase->error; + $testresult['message'] = (string)$testcase->failure . (string)$testcase->error; } else { $testresult['pass'] = true; }