From 4585c8fa2bd6ff4f9e7a85fb4fcbf95754b2632d Mon Sep 17 00:00:00 2001 From: beberlei Date: Sun, 7 Feb 2010 09:31:32 +0000 Subject: [PATCH] [2.0] Refactoring of build.xml to generate coverage xml optionally via build.properties. Also added option to set the phpunit xml configuration file. --- build.properties.dev | 4 +++- build.xml | 24 +++++++++++++----------- tools/NativePhpunitTask.php | 16 +++++++++++++++- 3 files changed, 31 insertions(+), 13 deletions(-) diff --git a/build.properties.dev b/build.properties.dev index 6ac374b96..547f5cb38 100644 --- a/build.properties.dev +++ b/build.properties.dev @@ -5,4 +5,6 @@ build.dir=build dist.dir=dist report.dir=reports log.archive.dir=logs -svn.path=/usr/bin/svn \ No newline at end of file +svn.path=/usr/bin/svn +test.phpunit_configuration_file= +test.phpunit_generate_coverage=0 \ No newline at end of file diff --git a/build.xml b/build.xml index 215d1d5c5..f4150686f 100644 --- a/build.xml +++ b/build.xml @@ -63,6 +63,9 @@ + + + @@ -122,19 +125,18 @@ Runs the full test suite. --> - + + + + + + + + + diff --git a/tools/NativePhpunitTask.php b/tools/NativePhpunitTask.php index d4e47c8bb..1ef582dfe 100644 --- a/tools/NativePhpunitTask.php +++ b/tools/NativePhpunitTask.php @@ -44,14 +44,26 @@ class NativePhpunitTask extends Task } public function setJunitlogfile($junitlogfile) { + if (strlen($junitlogfile) == 0) { + $junitlogfile = NULL; + } + $this->junitlogfile = $junitlogfile; } public function setConfiguration($configuration) { + if (strlen($configuration) == 0) { + $configuration = NULL; + } + $this->configuration = $configuration; } public function setCoverageClover($coverageClover) { + if (strlen($coverageClover) == 0) { + $coverageClover = NULL; + } + $this->coverageClover = $coverageClover; } @@ -92,7 +104,7 @@ class NativePhpunitTask extends Task $printer = new NativePhpunitPrinter(); $arguments = array( - 'configuration' => $this->configurationFile, + 'configuration' => $this->configuration, 'coverageClover' => $this->coverageClover, 'junitLogfile' => $this->junitlogfile, 'printer' => $printer, @@ -114,7 +126,9 @@ class NativePhpunitTask extends Task $this->log("PHPUnit Success: ".count($result->passed())." tests passed, no ". "failures (".$result->skippedCount()." skipped, ".$result->notImplementedCount()." not implemented)"); + // Hudson for example doesn't like the backslash in class names if (file_exists($this->coverageClover)) { + $this->log("Generated Clover Coverage XML to: ".$this->coverageClover); $content = file_get_contents($this->coverageClover); $content = str_replace("\\", ".", $content); file_put_contents($this->coverageClover, $content);