Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Fix support for comments #49

Merged
merged 2 commits into from
Jul 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions infection.json5.dist
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@
".+\\$charactersToTrim = \\$multiline \\?.+",
]
},
"FalseValue": {
"ignore": [
"Fidry\\Makefile\\Parser::parsePrerequisites"
]
},
"FunctionCallRemoval": {
"ignore": [
"Fidry\\Makefile\\Test\\BaseMakefileTestCase::executeCommand",
Expand All @@ -47,6 +52,11 @@
]
},
"PublicVisibility": false,
"SpreadOneItem": {
"ignore": [
"Fidry\\Makefile\\Parser::parsePrerequisites"
]
},
"UnwrapArrayValues": {
"ignore": [
"Fidry\\Makefile\\Parser::parseLine"
Expand Down
64 changes: 56 additions & 8 deletions src/Parser.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,13 @@
use function str_contains;
use function str_ends_with;
use function str_starts_with;
use function trim;
use const PHP_EOL;

final class Parser
{
private const COMMENT_LINE = '/(?<nonCommentPart>.*?)(?<commentPart>#.*)/';
private const MULTILINE_DELIMITER = '\\';

/**
* @return list<Rule>
*/
Expand Down Expand Up @@ -95,7 +97,7 @@ private static function parseLine(
}

$previousMultiline = $multiline;
$multiline = str_ends_with($line, '\\');
$multiline = self::isMultiline($line);

if (false === $previousMultiline) {
$targetParts = explode(':', $line);
Expand Down Expand Up @@ -143,12 +145,33 @@ private static function parsePrerequisites(
bool $multiline,
bool &$ignoreNextLinesOfMultiline
): array {
if ($ignoreNextLinesOfMultiline && $multiline) {
if (($ignoreNextLinesOfMultiline && $multiline)
|| '' === $dependencies
) {
return [];
}

if (str_contains($dependencies, '##')) {
return [trim($dependencies)];
if ($multiline) {
$dependenciesParts = explode(self::MULTILINE_DELIMITER, $dependencies);

return [
...self::parsePrerequisites($dependenciesParts[0], false, $ignoreNextLinesOfMultiline),
// There cannot be more parts by design
...self::parsePrerequisites($dependenciesParts[1] ?? '', false, $ignoreNextLinesOfMultiline),
];
}

if (str_starts_with($dependencies, '#')) {
return [$dependencies];
}

if (str_contains($dependencies, '#')) {
[$nonCommentPart, $commentPart] = self::splitComment($dependencies);

return [
...self::parsePrerequisites($nonCommentPart, false, $ignoreNextLinesOfMultiline),
...self::parsePrerequisites($commentPart, false, $ignoreNextLinesOfMultiline),
];
}

$semicolonPosition = mb_strpos($dependencies, ';');
Expand All @@ -158,15 +181,40 @@ private static function parsePrerequisites(
$ignoreNextLinesOfMultiline = true;
}

$charactersToTrim = $multiline ? '\\'."\t" : "\t";

return array_values(
array_filter(
array_map(
static fn (string $dependency) => ltrim($dependency, $charactersToTrim),
static fn (string $dependency) => ltrim($dependency, "\t"),
explode(' ', $dependencies),
),
),
);
}

private static function isMultiline(string $line): bool
{
$lineWithoutComment = rtrim(self::trimComment($line));

return str_ends_with($lineWithoutComment, self::MULTILINE_DELIMITER);
}

private static function trimComment(string $line): string
{
return self::splitComment($line)[0];
}

/**
* @psalm-suppress LessSpecificReturnStatement,MoreSpecificReturnType,PossiblyNullArrayAccess,PossiblyUndefinedStringArrayOffset
*
* @return array{string, string}
*/
private static function splitComment(string $line): array
{
return preg_match(self::COMMENT_LINE, $line, $matches)
? [
$matches['nonCommentPart'],
$matches['commentPart'],
]
: [$line, ''];
}
}
87 changes: 87 additions & 0 deletions tests/ParserTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,20 @@ public static function makefileContentProvider(): iterable
[],
];

yield 'regular comment' => [
<<<'MAKEFILE'
# comment
MAKEFILE,
[],
];

yield '"command" comment' => [
<<<'MAKEFILE'
## comment
MAKEFILE,
[],
];

yield 'variable & comment with command' => [
<<<'MAKEFILE'
FLOCK := flock
Expand All @@ -316,6 +330,79 @@ public static function makefileContentProvider(): iterable
],
];

yield 'target with regular comment' => [
<<<'MAKEFILE'
check: # comment
MAKEFILE,
[
new Rule('check', ['# comment']),
],
];

yield 'target with regular comment with trailing space' => [
'check: # comment ',
[
new Rule('check', ['# comment']),
],
];

yield 'target with "command" comment' => [
<<<'MAKEFILE'
check: ## comment
MAKEFILE,
[
new Rule('check', ['## comment']),
],
];

yield 'multiline target with regular comments' => [
<<<'MAKEFILE'
check: \ # Comment A
pre_req0 \ # Comment B
pre_req1 \ # Comment C # Command C bis
pre_req2 # Comment D with multiline \ in comment
# Comment E
MAKEFILE,
[
new Rule(
'check',
[
'# Comment A',
'pre_req0',
'# Comment B',
'pre_req1',
'# Comment C # Command C bis',
'pre_req2',
'# Comment D with multiline \ in comment',
],
),
],
];

yield 'multiline target with command comments' => [
<<<'MAKEFILE'
check: \ ## Comment A
pre_req0 \ ## Comment B
pre_req1 \ ## Comment C ## Command C bis
pre_req2 ## Comment D with multiline \ in comment
## Comment E
MAKEFILE,
[
new Rule(
'check',
[
'## Comment A',
'pre_req0',
'## Comment B',
'pre_req1',
'## Comment C ## Command C bis',
'pre_req2',
'## Comment D with multiline \ in comment',
],
),
],
];

yield from self::officialDocumentationExamples();
}

Expand Down
2 changes: 1 addition & 1 deletion tests/ThrowableToStringMapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public static function map(Throwable $throwable): string
}

/** @psalm-suppress UndefinedClass */
if ($throwable instanceof PhptAssertionFailedError) {
if ($throwable instanceof PHPTAssertionFailedError) {
/** @psalm-suppress UndefinedMethod */
$buffer .= $throwable->diff();
}
Expand Down
Loading