parseError, $constant->parseError ?: '');
self::checkPHPDocCorrectness($constant, "constant $class->sourceFilePath/$class->name::$constant->name");
}
/**
* @throws Exception
*/
#[DataProviderExternal(StubConstantsProvider::class, 'globalConstantProvider')]
public static function testConstantsPHPDocs(PHPConst $constant): void
{
self::assertNull($constant->parseError, $constant->parseError ?: '');
self::checkPHPDocCorrectness($constant, "constant $constant->name");
}
/**
* @throws Exception
*/
#[DataProviderExternal(StubsTestDataProviders::class, 'allFunctionsProvider')]
public static function testFunctionPHPDocs(PHPFunction $function): void
{
self::assertNull($function->parseError, $function->parseError?->getMessage() ?: '');
self::checkPHPDocCorrectness($function, "function $function->name");
}
/**
* @throws Exception
*/
#[DataProviderExternal(StubsTestDataProviders::class, 'allClassesProvider')]
public static function testClassesPHPDocs(BasePHPClass $class): void
{
self::assertNull($class->parseError, $class->parseError?->getMessage() ?: '');
self::checkPHPDocCorrectness($class, "class $class->name");
}
/**
* @throws Exception
*/
#[DataProviderExternal(StubMethodsProvider::class, 'allMethodsProvider')]
public static function testMethodsPHPDocs(PHPMethod $method): void
{
if ($method->name === '__construct') {
self::assertEmpty($method->returnTypesFromPhpDoc, '@return tag for __construct should be omitted');
}
self::assertNull($method->parseError, $method->parseError ?: '');
self::checkPHPDocCorrectness($method, "method $method->name");
}
//TODO IF: Add test to check that phpdocs contain only resource, object etc typehints or if contains type like Resource then Resource should be declared in stubs
private static function checkDeprecatedRemovedSinceVersionsMajor(BasePHPElement $element, string $elementName): void
{
/** @var PHPDocElement $element */
foreach ($element->sinceTags as $sinceTag) {
if ($sinceTag instanceof Since) {
$version = $sinceTag->getVersion();
if ($version !== null) {
self::assertTrue(ParserUtils::tagDoesNotHaveZeroPatchVersion($sinceTag), "$elementName has
'since' version $version.'Since' version for PHP Core functionality for style consistency
should have X.X format for the case when patch version is '0'.");
}
}
}
foreach ($element->deprecatedTags as $deprecatedTag) {
if ($deprecatedTag instanceof Deprecated) {
$version = $deprecatedTag->getVersion();
if ($version !== null) {
self::assertTrue(ParserUtils::tagDoesNotHaveZeroPatchVersion($deprecatedTag), "$elementName has
'deprecated' version $version.'Deprecated' version for PHP Core functionality for style consistency
should have X.X format for the case when patch version is '0'.");
}
}
}
foreach ($element->removedTags as $removedTag) {
if ($removedTag instanceof RemovedTag) {
$version = $removedTag->getVersion();
if ($version !== null) {
self::assertTrue(ParserUtils::tagDoesNotHaveZeroPatchVersion($removedTag), "$elementName has
'removed' version $version.'Removed' version for PHP Core functionality for style consistency
should have X.X format for the case when patch version is '0'.");
}
}
}
}
private static function checkHtmlTags(BasePHPElement $element, string $elementName): void
{
/** @var PHPDocElement $element */
$phpdoc = trim($element->phpdoc);
$phpdoc = preg_replace(
[
'#
#',
'#
#i',
'#->#',
'#=>#',
'#"->"#',
'# >= #',
'#\(>=#',
'#\'>\'#',
'# > #',
'#\?>#',
'#`<.*>`#U',
'#`.*<.*>`#U',
'#
.*#sU', '#
.*#sU',
'#@author.*<.*>#U',
'#(\s[\w]+[-][\w]+<[a-zA-Z,\s]+>[\s|]+)|([\w]+<[a-zA-Z,|\s]+>[\s|\W]+)#'
],
'',
$phpdoc
);
$countTags = substr_count($phpdoc, '>');
self::assertSame(
0,
$countTags % 2,
"In $elementName phpdoc has a html error and the phpdoc maybe not displayed correctly in PhpStorm: " . print_r($phpdoc, true)
);
}
private static function checkLinks(BasePHPElement $element, string $elementName): void
{
/** @var PHPDocElement $element */
foreach ($element->links as $link) {
if ($link instanceof Link) {
self::assertStringStartsWith(
'https',
$link->getLink(),
"In $elementName @link doesn't start with https"
);
if (getenv('CHECK_LINKS') === 'true') {
if ($element->stubBelongsToCore) {
$request = curl_init($link->getLink());
curl_setopt($request, CURLOPT_RETURNTRANSFER, 1);
curl_exec($request);
$response = curl_getinfo($request, CURLINFO_RESPONSE_CODE);
curl_close($request);
self::assertTrue($response < 400);
}
}
}
}
foreach ($element->see as $see) {
if ($see instanceof See && $see->getReference() instanceof Url) {
$uri = (string)$see->getReference();
self::assertStringStartsWith('https', $uri, "In $elementName @see doesn't start with https");
}
}
}
/**
* @throws Exception
*/
private static function checkContainsOnlyValidTags(BasePHPElement $element, string $elementName): void
{
$VALID_TAGS = [
'author',
'copyright',
'deprecated',
'example', //temporary addition due to the number of existing cases
'extends',
'inheritdoc',
'inheritDoc',
'internal',
'implements',
'link',
'meta',
'method',
'mixin',
'package',
'param',
'property',
'property-read',
'removed',
'return',
'see',
'since',
'throws',
'template',
'template-implements', // https://github.com/JetBrains/phpstorm-stubs/pull/1212#issuecomment-907263735
'template-extends',
'template-covariant',
'uses',
'var',
'version',
];
/** @var PHPDocElement $element */
foreach ($element->tagNames as $tagName) {
self::assertContains($tagName, $VALID_TAGS, "Element $elementName has invalid tag: @$tagName");
}
}
/**
* @throws Exception
*/
private static function checkPHPDocCorrectness(BasePHPElement $element, string $elementName): void
{
self::checkLinks($element, $elementName);
//self::checkHtmlTags($element, $elementName);
if ($element->stubBelongsToCore) {
self::checkDeprecatedRemovedSinceVersionsMajor($element, $elementName);
}
self::checkContainsOnlyValidTags($element, $elementName);
}
}