Skip to content

Commit c3dcefb

Browse files
Refactor violation handling and improve GitLab output.
Unified violation instantiation and assertion logic in tests, replacing mock-based violations with direct object creation. Simplified JSON output comparisons using `assertSame` with string literals. Updated `GitlabPrinter` to use relative paths for better clarity in output.
1 parent beacf08 commit c3dcefb

File tree

4 files changed

+16
-45
lines changed

4 files changed

+16
-45
lines changed

src/CLI/Printer/GitlabPrinter.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
namespace Arkitect\CLI\Printer;
55

66
use Arkitect\Rules\Violation;
7+
use Symfony\Component\Filesystem\Path;
78

89
class GitlabPrinter implements Printer
910
{
@@ -25,7 +26,7 @@ public function print(array $violationsCollection): string
2526
$errorClassGrouped[$class][$key]['check_name'] = $class.'.'.$this->toKebabCase($violation->getError());
2627
$errorClassGrouped[$class][$key]['fingerprint'] = hash('sha256', $errorClassGrouped[$class][$key]['check_name']);
2728
$errorClassGrouped[$class][$key]['severity'] = 'major'; // Todo enable severity on violation
28-
$errorClassGrouped[$class][$key]['location']['path'] = $this->getPathFromFqcn($fqcn);
29+
$errorClassGrouped[$class][$key]['location']['path'] = Path::makeRelative($this->getPathFromFqcn($fqcn), getcwd());
2930

3031
if (null !== $violation->getLine()) {
3132
$errorClassGrouped[$class][$key]['lines']['begin'] = $violation->getLine();

src/CLI/Printer/PrinterFactory.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ final class PrinterFactory
88
public function create(string $format): Printer
99
{
1010
switch ($format) {
11-
case 'gitlab':
11+
case Printer::FORMAT_GITLAB:
1212
return new GitlabPrinter();
13-
case 'json':
13+
case Printer::FORMAT_JSON:
1414
return new JsonPrinter();
1515
default:
1616
return new TextPrinter();

tests/E2E/Cli/CheckCommandTest.php

+4-12
Original file line numberDiff line numberDiff line change
@@ -207,18 +207,10 @@ public function test_gitlab_format_output(): void
207207

208208
$this->assertJson($display);
209209

210-
$decodedResult = json_decode($display, true);
211-
212-
$this->assertIsString($display, 'Result should be a string');
213-
$this->assertJson($display, 'Result should be a valid JSON string');
214-
$this->assertCount(1, $decodedResult, 'Result should contain two violations');
215-
216-
$this->assertSame('should have a name that matches *Controller because all controllers should be end name with Controller', $decodedResult[0]['description']);
217-
$this->assertSame('App\Controller\Foo.should-have-a-name-that-matches-controller-because-all-controllers-should-be-end-name-with-controller', $decodedResult[0]['check_name']);
218-
$this->assertSame(hash('sha256', 'App\Controller\Foo.should-have-a-name-that-matches-controller-because-all-controllers-should-be-end-name-with-controller'), $decodedResult[0]['fingerprint']);
219-
$this->assertSame('major', $decodedResult[0]['severity']);
220-
$this->assertSame(getcwd().'/tests/E2E/_fixtures/mvc/Controller/Foo.php', $decodedResult[0]['location']['path']);
221-
$this->assertSame(1, $decodedResult[0]['lines']['begin']);
210+
self::assertSame(<<<JSON
211+
[{"description":"should have a name that matches *Controller because all controllers should be end name with Controller","check_name":"App\\\\Controller\\\\Foo.should-have-a-name-that-matches-controller-because-all-controllers-should-be-end-name-with-controller","fingerprint":"1e960c3f49b5ec63ece40321072ef2bd0bc33ad11b7be326f304255d277dc860","severity":"major","location":{"path":"tests\/E2E\/_fixtures\/mvc\/Controller\/Foo.php"},"lines":{"begin":1}}]
212+
213+
JSON, $display);
222214
}
223215

224216
public function test_gitlab_format_output_no_errors(): void

tests/Unit/CLI/Printer/GitlabPrinterTest.php

+8-30
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
use Arkitect\CLI\Printer\GitlabPrinter;
77
use Arkitect\Rules\Violation;
88
use PHPUnit\Framework\TestCase;
9+
use Some\AnotherExampleClass;
10+
use Some\ExampleClass;
911

1012
class GitlabPrinterTest extends TestCase
1113
{
@@ -15,15 +17,8 @@ class GitlabPrinterTest extends TestCase
1517
*/
1618
public function test_print_with_violations(): void
1719
{
18-
$violation1 = $this->createMock(Violation::class);
19-
$violation1->method('getFqcn')->willReturn('Some\\ExampleClass');
20-
$violation1->method('getError')->willReturn('Some error message');
21-
$violation1->method('getLine')->willReturn(42);
22-
23-
$violation2 = $this->createMock(Violation::class);
24-
$violation2->method('getFqcn')->willReturn('Another\\ExampleClass');
25-
$violation2->method('getError')->willReturn('Another error message');
26-
$violation2->method('getLine')->willReturn(null);
20+
$violation1 = new Violation(ExampleClass::class, 'Some error message', 42);
21+
$violation2 = new Violation(AnotherExampleClass::class, 'Another error message', null);
2722

2823
$violationsCollection = [
2924
'RuleA' => [$violation1],
@@ -33,25 +28,10 @@ public function test_print_with_violations(): void
3328
$printer = new GitlabPrinter();
3429

3530
$result = $printer->print($violationsCollection);
36-
$decodedResult = json_decode($result, true);
37-
38-
$this->assertIsString($result, 'Result should be a string');
39-
$this->assertJson($result, 'Result should be a valid JSON string');
40-
$this->assertCount(2, $decodedResult, 'Result should contain two violations');
41-
42-
$this->assertSame('Some error message', $decodedResult[0]['description']);
43-
$this->assertSame('RuleA.some-error-message', $decodedResult[0]['check_name']);
44-
$this->assertSame(hash('sha256', 'RuleA.some-error-message'), $decodedResult[0]['fingerprint']);
45-
$this->assertSame('major', $decodedResult[0]['severity']);
46-
$this->assertSame(__DIR__.'/GitlabPrinterTest.php', $decodedResult[0]['location']['path']);
47-
$this->assertSame(42, $decodedResult[0]['lines']['begin']);
4831

49-
$this->assertSame('Another error message', $decodedResult[1]['description']);
50-
$this->assertSame('RuleB.another-error-message', $decodedResult[1]['check_name']);
51-
$this->assertSame(hash('sha256', 'RuleB.another-error-message'), $decodedResult[1]['fingerprint']);
52-
$this->assertSame('major', $decodedResult[1]['severity']);
53-
$this->assertSame(__DIR__.'/GitlabPrinterTest.php', $decodedResult[1]['location']['path']);
54-
$this->assertSame(1, $decodedResult[1]['lines']['begin']);
32+
self::assertSame(<<<JSON
33+
[{"description":"Some error message","check_name":"RuleA.some-error-message","fingerprint":"7ddcfd42f5f2af3d00864ef959a0327f508cb5227aedca96d919d681a5dcde4a","severity":"major","location":{"path":"tests\/Unit\/CLI\/Printer\/GitlabPrinterTest.php"},"lines":{"begin":42}},{"description":"Another error message","check_name":"RuleB.another-error-message","fingerprint":"800c2ceafbf4023e401200186ecabdfe59891c5d6670e86571e3c50339df07dc","severity":"major","location":{"path":"tests\/Unit\/CLI\/Printer\/GitlabPrinterTest.php"},"lines":{"begin":1}}]
34+
JSON, $result);
5535
}
5636

5737
/**
@@ -80,8 +60,6 @@ class ExampleClass
8060
{
8161
}
8262

83-
namespace Another;
84-
85-
class ExampleClass
63+
class AnotherExampleClass
8664
{
8765
}

0 commit comments

Comments
 (0)