Compare commits

..

1 commit

Author SHA1 Message Date
Dmitry Khomutov 03c603082f
More tests. 2018-05-02 21:55:37 +07:00
15 changed files with 204 additions and 222 deletions

View file

@ -1,4 +1,5 @@
build_settings:
clone_depth: 1
ignore:
- vendor
- tests
@ -13,6 +14,11 @@ test:
- phpunit.xml
coverage: true
php_mess_detector:
allow_failures: true
rules:
- phpmd.xml
php_code_sniffer:
standard: PSR2
encoding: UTF-8
@ -27,6 +33,9 @@ test:
php_parallel_lint:
allow_failures: true
php_docblock_checker:
allow_failures: true
security_checker:
allow_failures: false

View file

@ -76,7 +76,7 @@
"codeception/codeception": "~2.3.0",
"phpmd/phpmd": "~2.6.0",
"sebastian/phpcpd": "~2.0.0",
"squizlabs/php_codesniffer": "~3.2.0",
"squizlabs/php_codesniffer": "~2.8.0",
"block8/php-docblock-checker": "~1.3.0",
"phploc/phploc": "~4.0.0",
"jakub-onderka/php-parallel-lint": "~0.9.0",

51
composer.lock generated
View file

@ -1,10 +1,10 @@
{
"_readme": [
"This file locks the dependencies of your project to a known state",
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
"content-hash": "8ed0d649c464752b717de050e04cd313",
"content-hash": "6c8facd9ea26fd63006a35d445fac984",
"packages": [
{
"name": "behat/gherkin",
@ -2959,37 +2959,64 @@
},
{
"name": "squizlabs/php_codesniffer",
"version": "3.2.3",
"version": "2.8.1",
"source": {
"type": "git",
"url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
"reference": "4842476c434e375f9d3182ff7b89059583aa8b27"
"reference": "d7cf0d894e8aa4c73712ee4a331cc1eaa37cdc7d"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/4842476c434e375f9d3182ff7b89059583aa8b27",
"reference": "4842476c434e375f9d3182ff7b89059583aa8b27",
"url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/d7cf0d894e8aa4c73712ee4a331cc1eaa37cdc7d",
"reference": "d7cf0d894e8aa4c73712ee4a331cc1eaa37cdc7d",
"shasum": ""
},
"require": {
"ext-simplexml": "*",
"ext-tokenizer": "*",
"ext-xmlwriter": "*",
"php": ">=5.4.0"
"php": ">=5.1.2"
},
"require-dev": {
"phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
"phpunit/phpunit": "~4.0"
},
"bin": [
"bin/phpcs",
"bin/phpcbf"
"scripts/phpcs",
"scripts/phpcbf"
],
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
"dev-master": "2.x-dev"
}
},
"autoload": {
"classmap": [
"CodeSniffer.php",
"CodeSniffer/CLI.php",
"CodeSniffer/Exception.php",
"CodeSniffer/File.php",
"CodeSniffer/Fixer.php",
"CodeSniffer/Report.php",
"CodeSniffer/Reporting.php",
"CodeSniffer/Sniff.php",
"CodeSniffer/Tokens.php",
"CodeSniffer/Reports/",
"CodeSniffer/Tokenizers/",
"CodeSniffer/DocGenerators/",
"CodeSniffer/Standards/AbstractPatternSniff.php",
"CodeSniffer/Standards/AbstractScopeSniff.php",
"CodeSniffer/Standards/AbstractVariableSniff.php",
"CodeSniffer/Standards/IncorrectPatternException.php",
"CodeSniffer/Standards/Generic/Sniffs/",
"CodeSniffer/Standards/MySource/Sniffs/",
"CodeSniffer/Standards/PEAR/Sniffs/",
"CodeSniffer/Standards/PSR1/Sniffs/",
"CodeSniffer/Standards/PSR2/Sniffs/",
"CodeSniffer/Standards/Squiz/Sniffs/",
"CodeSniffer/Standards/Zend/Sniffs/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
@ -3006,7 +3033,7 @@
"phpcs",
"standards"
],
"time": "2018-02-20T21:35:23+00:00"
"time": "2017-03-01T22:17:45+00:00"
},
{
"name": "swiftmailer/swiftmailer",

View file

@ -78,7 +78,7 @@ Plugins
* [Campfire](plugins/campfire.md) - `campfire`
* [Email](plugins/email.md) - `email`
* [FlowDock](plugins/flowdock_notify.md) - `flowdock_notify`
* FlowDock - `flowdock_notify`
* [HipChat](plugins/hipchat_notify.md) - `hipchat_notify`
* [IRC](plugins/irc.md) - `irc`
* [Slack](plugins/slack_notify.md) - `slack_notify`

View file

@ -1,14 +0,0 @@
Plugin FlowdockNotify
=====================
This plugin joins a [Flowdock](https://www.flowdock.com/) room and sends a user-defined message, for example a
"Build Succeeded" message.
Installation
------------
The plugin depends on `mremi/flowdock` library. To use FlowdockNotify plugin you should install dependency:
```
composer require "mremi/flowdock"
```

View file

@ -1,18 +1,9 @@
Plugin HipchatNotify
Plugin Hipchat Notify
=====================
This plugin joins a [HipChat](https://www.hipchat.com/) room and sends a user-defined message, for example a
"Build Succeeded" message.
Installation
------------
The plugin depends on `hipchat/hipchat-php` library. To use HipchatNotify plugin you should install dependency:
```
composer require "hipchat/hipchat-php"
```
Configuration
-------------

View file

@ -1,18 +1,9 @@
Plugin SlackNotify
Plugin Slack Notify
===================
This plugin joins a [Slack](https://www.slack.com/) room and sends a user-defined message, for example a "Build
Succeeded" message.
Installation
------------
The plugin depends on `maknz/slack` library. To use SlackNotify plugin you should install dependency:
```
composer require "maknz/slack"
```
Configuration
-------------

View file

@ -592,11 +592,11 @@ class WebhookController extends Controller
}
/**
* Called by Gogs Webhooks:
*
* @param string $projectId
*
* @return array
*
* @throws Exception
*/
public function gogs($projectId)
{
@ -605,17 +605,15 @@ class WebhookController extends Controller
Project::TYPE_GIT,
]);
$contentType = !empty($_SERVER['CONTENT_TYPE'])
? $_SERVER['CONTENT_TYPE']
: null;
switch ($contentType) {
switch ($_SERVER['CONTENT_TYPE']) {
case 'application/json':
$payload = json_decode(file_get_contents('php://input'), true);
break;
case 'application/x-www-form-urlencoded':
$payload = json_decode($this->getParam('payload'), true);
break;
case 'application/json':
default:
$payload = json_decode(file_get_contents('php://input'), true);
return ['status' => 'failed', 'error' => 'Content type not supported.', 'responseCode' => 401];
}
// Handle Push web hooks:

View file

@ -1,85 +0,0 @@
<?php
namespace PHPCensor\Helper;
class XmlUtf8CleanFilter extends \php_user_filter
{
const PATTERN = '/[^\x{0009}\x{000a}\x{000d}\x{0020}-\x{D7FF}\x{E000}-\x{FFFD}]+/u';
/**
* @param resource $in
* @param resource $out
* @param int $consumed
* @param bool $closing
*
* @return int
*/
function filter($in, $out, &$consumed, $closing)
{
while ($bucket = stream_bucket_make_writeable($in)) {
$bucket->data = preg_replace(self::PATTERN, '', $bucket->data);
$consumed += $bucket->datalen;
stream_bucket_append($out, $bucket);
}
return PSFS_PASS_ON;
}
}
class Xml
{
/**
* @param $filePath
*
* @return null|\SimpleXMLElement
*/
public static function loadFromFile($filePath)
{
stream_filter_register('xml_utf8_clean', 'PHPCensor\Helper\XmlUtf8CleanFilter');
try {
$xml = simplexml_load_file('php://filter/read=xml_utf8_clean/resource=' . $filePath);
} catch (\Exception $ex) {
$xml = null;
} catch (\Throwable $ex) { // since php7
$xml = null;
}
if (!$xml) {
// from https://stackoverflow.com/questions/7766455/how-to-handle-invalid-unicode-with-simplexml/8092672#8092672
$oldUse = libxml_use_internal_errors(true);
libxml_clear_errors();
$dom = new \DOMDocument("1.0", "UTF-8");
$dom->strictErrorChecking = false;
$dom->validateOnParse = false;
$dom->recover = true;
$dom->loadXML(strtr(
file_get_contents($filePath),
['&quot;' => "'"] // &quot; in attribute names may mislead the parser
));
/** @var \LibXMLError $xmlError */
$xmlError = libxml_get_last_error();
if ($xmlError) {
$warning = sprintf('L%s C%s: %s', $xmlError->line, $xmlError->column, $xmlError->message);
print 'WARNING: ignored errors while reading phpunit result, '.$warning."\n";
}
if (!$dom->hasChildNodes()) {
new \SimpleXMLElement('<empty/>');
}
$xml = simplexml_import_dom($dom);
libxml_clear_errors();
libxml_use_internal_errors($oldUse);
}
return $xml;
}
}

View file

@ -302,7 +302,7 @@ class Build extends BaseBuild
continue;
}
$className = '\PHPCensor\Plugin\\'.$item->getBasename('.php');
$className = '\PHPCensor\Plugin\\' . $item->getBasename('.php');
$reflectedPlugin = new \ReflectionClass($className);

View file

@ -145,7 +145,8 @@ class Codeception extends Plugin implements ZeroConfigPluginInterface
}
}
$parser = new Parser($this->builder, ($outputPath . 'report.xml'));
$xml = file_get_contents($outputPath . 'report.xml', false);
$parser = new Parser($this->builder, $xml);
$output = $parser->parse();
$meta = [

View file

@ -2,8 +2,6 @@
namespace PHPCensor\Plugin\Util;
use PHPCensor\Helper\Xml;
/**
* Class PhpUnitResultJunit parses the results for the PhpUnitV2 plugin
*
@ -26,11 +24,11 @@ class PhpUnitResultJunit extends PhpUnitResult
$suites = $this->loadResultFile();
if ($suites) {
foreach ($suites->xpath('//testcase') as $testCase) {
$this->parseTestcase($testCase);
}
foreach ($suites->xpath('//testcase') as $testCase) {
$this->parseTestcase($testCase);
}
$suites['failures'];
$suites['errors'];
return $this;
}
@ -141,7 +139,44 @@ class PhpUnitResultJunit extends PhpUnitResult
return new \SimpleXMLElement('<empty/>'); // new empty element
}
return Xml::loadFromFile($this->outputFile);
try {
$suites = simplexml_load_file($this->outputFile);
} catch (\Exception $ex) {
$suites = null;
} catch (\Throwable $ex) { // since php7
$suites = null;
}
if (!$suites) {
// from https://stackoverflow.com/questions/7766455/how-to-handle-invalid-unicode-with-simplexml/8092672#8092672
$oldUse = libxml_use_internal_errors(true);
libxml_clear_errors();
$dom = new \DOMDocument("1.0", "UTF-8");
$dom->strictErrorChecking = false;
$dom->validateOnParse = false;
$dom->recover = true;
$dom->loadXML(strtr(
file_get_contents($this->outputFile),
array('&quot;' => "'") // &quot; in attribute names may mislead the parser
));
/**
* @var \LibXMLError
*/
$xmlError = libxml_get_last_error();
if ($xmlError) {
$warning = sprintf('L%s C%s: %s', $xmlError->line, $xmlError->column, $xmlError->message);
print 'WARNING: ignored errors while reading phpunit result, '.$warning."\n";
}
if (!$dom->hasChildNodes()) {
$this->internalProblem('xml file with no content');
}
$suites = simplexml_import_dom($dom);
libxml_clear_errors();
libxml_use_internal_errors($oldUse);
}
return $suites;
}
/**
@ -150,5 +185,7 @@ class PhpUnitResultJunit extends PhpUnitResult
private function internalProblem($description)
{
throw new \RuntimeException($description);
// alternative to error throwing: append to $this->errors
}
}

View file

@ -3,7 +3,6 @@
namespace PHPCensor\Plugin\Util\TestResultParsers;
use PHPCensor\Builder;
use PHPCensor\Helper\Xml;
/**
* Class Codeception
@ -12,49 +11,23 @@ use PHPCensor\Helper\Xml;
*/
class Codeception implements ParserInterface
{
/**
* @var Builder
*/
protected $builder;
/**
* @var string
*/
protected $xmlPath;
/**
* @var array
*/
protected $resultsXml;
protected $results;
/**
* @var int
*/
protected $totalTests = 0;
/**
* @var int
*/
protected $totalTimeTaken = 0;
/**
* @var int
*/
protected $totalFailures = 0;
/**
* @var int
*/
protected $totalErrors = 0;
protected $totalTests;
protected $totalTimeTaken;
protected $totalFailures;
protected $totalErrors;
/**
* @param Builder $builder
* @param string $xmlPath
* @param $resultsXml
*/
public function __construct(Builder $builder, $xmlPath)
public function __construct(Builder $builder, $resultsXml)
{
$this->builder = $builder;
$this->xmlPath = $xmlPath;
$this->builder = $builder;
$this->resultsXml = $resultsXml;
$this->totalTests = 0;
}
/**
@ -63,43 +36,42 @@ class Codeception implements ParserInterface
public function parse()
{
$rtn = [];
$this->results = Xml::loadFromFile($this->xmlPath);
$this->results = new \SimpleXMLElement($this->resultsXml);
if ($this->results) {
foreach ($this->results->testsuite as $testSuite) {
$this->totalTests += (int)$testSuite['tests'];
$this->totalTimeTaken += (float)$testSuite['time'];
$this->totalFailures += (int)$testSuite['failures'];
$this->totalErrors += (int)$testSuite['errors'];
// calculate total results
foreach ($this->results->testsuite as $testSuite) {
$this->totalTests += (int)$testSuite['tests'];
$this->totalTimeTaken += (float)$testSuite['time'];
$this->totalFailures += (int)$testSuite['failures'];
$this->totalErrors += (int)$testSuite['errors'];
foreach ($testSuite->testcase as $testCase) {
$testResult = [
'suite' => (string)$testSuite['name'],
'file' => str_replace($this->builder->buildPath, '/', (string) $testCase['file']),
'name' => (string)$testCase['name'],
'feature' => (string)$testCase['feature'],
'assertions' => (int)$testCase['assertions'],
'time' => (float)$testCase['time']
];
foreach ($testSuite->testcase as $testCase) {
$testResult = [
'suite' => (string)$testSuite['name'],
'file' => str_replace($this->builder->buildPath, '/', (string) $testCase['file']),
'name' => (string)$testCase['name'],
'feature' => (string)$testCase['feature'],
'assertions' => (int)$testCase['assertions'],
'time' => (float)$testCase['time']
];
if (isset($testCase['class'])) {
$testResult['class'] = (string) $testCase['class'];
}
// PHPUnit testcases does not have feature field. Use class::method instead
if (!$testResult['feature']) {
$testResult['feature'] = sprintf('%s::%s', $testResult['class'], $testResult['name']);
}
if (isset($testCase->failure) || isset($testCase->error)) {
$testResult['pass'] = false;
$testResult['message'] = isset($testCase->failure) ? (string)$testCase->failure : (string)$testCase->error;
} else {
$testResult['pass'] = true;
}
$rtn[] = $testResult;
if (isset($testCase['class'])) {
$testResult['class'] = (string) $testCase['class'];
}
// PHPUnit testcases does not have feature field. Use class::method instead
if (!$testResult['feature']) {
$testResult['feature'] = sprintf('%s::%s', $testResult['class'], $testResult['name']);
}
if (isset($testCase->failure) || isset($testCase->error)) {
$testResult['pass'] = false;
$testResult['message'] = isset($testCase->failure) ? (string)$testCase->failure : (string)$testCase->error;
} else {
$testResult['pass'] = true;
}
$rtn[] = $testResult;
}
}

View file

@ -169,6 +169,18 @@ class ProjectTest extends TestCase
self::assertEquals(false, $result);
}
public function testOverwriteBuildConfig()
{
$project = new Project();
$result = $project->setOverwriteBuildConfig(false);
self::assertEquals(true, $result);
self::assertEquals(false, $project->getOverwriteBuildConfig());
$result = $project->setOverwriteBuildConfig(false);
self::assertEquals(false, $result);
}
public function testAllowPublicStatus()
{
$project = new Project();

View file

@ -75,6 +75,13 @@ class ProjectServiceTest extends \PHPUnit\Framework\TestCase
'reference' => 'php-censor/php-censor',
'origin' => 'git@sss.github.com:php-censor/php-censor.git',
],
], [
'git@172.168.23.4:php-censor/php-censor.git', [
'user' => 'git',
'domain' => '172.168.23.4',
'reference' => 'php-censor/php-censor',
'origin' => 'git@172.168.23.4:php-censor/php-censor.git',
],
], [
'ssh://git@github.com/php-censor/php-censor.git', [
'user' => 'git',
@ -82,12 +89,25 @@ class ProjectServiceTest extends \PHPUnit\Framework\TestCase
'reference' => 'php-censor/php-censor',
'origin' => 'ssh://git@github.com/php-censor/php-censor.git',
],
], [
'ssh://git@172.168.23.4/php-censor/php-censor.git', [
'user' => 'git',
'domain' => '172.168.23.4',
'reference' => 'php-censor/php-censor',
'origin' => 'ssh://git@172.168.23.4/php-censor/php-censor.git',
],
], [
'https://github.com/php-censor/php-censor.git', [
'domain' => 'github.com',
'reference' => 'php-censor/php-censor',
'origin' => 'https://github.com/php-censor/php-censor.git',
],
], [
'https://172.168.23.4/php-censor/php-censor.git', [
'domain' => '172.168.23.4',
'reference' => 'php-censor/php-censor',
'origin' => 'https://172.168.23.4/php-censor/php-censor.git',
],
], [
'http://github.com/php-censor/php-censor.git', [
'domain' => 'github.com',
@ -102,6 +122,14 @@ class ProjectServiceTest extends \PHPUnit\Framework\TestCase
'reference' => 'php-censor/php-censor',
'origin' => 'git@github.com:443/php-censor/php-censor.git',
],
], [
'git@172.168.23.4:443/php-censor/php-censor.git', [
'user' => 'git',
'domain' => '172.168.23.4',
'port' => '443',
'reference' => 'php-censor/php-censor',
'origin' => 'git@172.168.23.4:443/php-censor/php-censor.git',
],
], [
'ssh://git@github.com:443/php-censor/php-censor.git', [
'user' => 'git',
@ -110,6 +138,14 @@ class ProjectServiceTest extends \PHPUnit\Framework\TestCase
'reference' => 'php-censor/php-censor',
'origin' => 'ssh://git@github.com:443/php-censor/php-censor.git',
],
], [
'ssh://git@172.168.23.4:443/php-censor/php-censor.git', [
'user' => 'git',
'domain' => '172.168.23.4',
'port' => '443',
'reference' => 'php-censor/php-censor',
'origin' => 'ssh://git@172.168.23.4:443/php-censor/php-censor.git',
],
], [
'https://github.com:443/php-censor/php-censor.git', [
'domain' => 'github.com',
@ -117,6 +153,13 @@ class ProjectServiceTest extends \PHPUnit\Framework\TestCase
'reference' => 'php-censor/php-censor',
'origin' => 'https://github.com:443/php-censor/php-censor.git',
],
], [
'https://172.168.23.4:443/php-censor/php-censor.git', [
'domain' => '172.168.23.4',
'port' => '443',
'reference' => 'php-censor/php-censor',
'origin' => 'https://172.168.23.4:443/php-censor/php-censor.git',
],
], [
'http://github.com:443/php-censor/php-censor.git', [
'domain' => 'github.com',
@ -180,7 +223,7 @@ class ProjectServiceTest extends \PHPUnit\Framework\TestCase
'reference' => 'php-censor',
'origin' => 'http://github:443/php-censor.git',
],
],
]
];
}