File manager - Edit - /usr/local/prospamfilter/vendor/codeception/codeception/src/Codeception/Coverage/Subscriber/RemoteServer.php
Back
<?php namespace Codeception\Coverage\Subscriber; use Codeception\Configuration; use Codeception\Event\SuiteEvent; use Codeception\Util\FileSystem; /** * When collecting code coverage on remote server * data is retrieved over HTTP and not merged with the local code coverage results. * * Class RemoteServer * @package Codeception\Coverage\Subscriber */ class RemoteServer extends LocalServer { public function isEnabled() { return $this->module and $this->settings['remote'] and $this->settings['enabled']; } public function afterSuite(SuiteEvent $e) { if (!$this->isEnabled()) { return; } $suite = $e->getSuite()->getName(); if ($this->options['coverage-xml']) { $this->retrieveAndPrintXml($suite); } if ($this->options['coverage-html']) { $this->retrieveAndPrintHtml($suite); } } protected function retrieveAndPrintHtml($suite) { $tempFile = tempnam(sys_get_temp_dir(), 'C3') . '.tar'; file_put_contents($tempFile, $this->c3Request('html')); $destDir = Configuration::outputDir() . $suite . '.remote.coverage'; if (is_dir($destDir)) { FileSystem::doEmptyDir($destDir); } else { mkdir($destDir, 0777, true); } $phar = new \PharData($tempFile); $phar->extractTo($destDir); unlink($tempFile); } protected function retrieveAndPrintXml($suite) { $destFile = Configuration::outputDir() . $suite . '.remote.coverage.xml'; file_put_contents($destFile, $this->c3Request('clover')); } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings