2015-10-23 17:20:56 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This file is part of Composer.
|
|
|
|
*
|
|
|
|
* (c) Nils Adermann <naderman@naderman.de>
|
|
|
|
* Jordi Boggiano <j.boggiano@seld.be>
|
|
|
|
*
|
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Composer\Test\Util;
|
|
|
|
|
|
|
|
use Composer\IO\NullIO;
|
|
|
|
use Composer\Util\ConfigValidator;
|
2018-11-12 14:23:32 +00:00
|
|
|
use Composer\Test\TestCase;
|
2015-10-23 17:20:56 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* ConfigValidator test case
|
|
|
|
*/
|
|
|
|
class ConfigValidatorTest extends TestCase
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Test ConfigValidator warns on commit reference
|
|
|
|
*/
|
|
|
|
public function testConfigValidatorCommitRefWarning()
|
|
|
|
{
|
|
|
|
$configValidator = new ConfigValidator(new NullIO());
|
2015-10-27 12:51:51 +00:00
|
|
|
list(, , $warnings) = $configValidator->validate(__DIR__ . '/Fixtures/composer_commit-ref.json');
|
2015-10-23 17:20:56 +00:00
|
|
|
|
2017-12-03 04:41:58 +00:00
|
|
|
$this->assertContains(
|
2015-10-27 12:51:51 +00:00
|
|
|
'The package "some/package" is pointing to a commit-ref, this is bad practice and can cause unforeseen issues.',
|
|
|
|
$warnings
|
2017-12-03 04:41:58 +00:00
|
|
|
);
|
2015-10-23 17:20:56 +00:00
|
|
|
}
|
2018-01-17 18:15:06 +00:00
|
|
|
|
|
|
|
public function testConfigValidatorWarnsOnScriptDescriptionForNonexistentScript()
|
|
|
|
{
|
|
|
|
$configValidator = new ConfigValidator(new NullIO());
|
|
|
|
list(, , $warnings) = $configValidator->validate(__DIR__ . '/Fixtures/composer_scripts-descriptions.json');
|
|
|
|
|
|
|
|
$this->assertContains(
|
|
|
|
'Description for non-existent script "phpcsxxx" found in "scripts-descriptions"',
|
|
|
|
$warnings
|
|
|
|
);
|
|
|
|
}
|
2015-10-23 17:20:56 +00:00
|
|
|
}
|