123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- <?php
- /*
- * This file is part of PHP CS Fixer.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- * Dariusz Rumiński <dariusz.ruminski@gmail.com>
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
- namespace PhpCsFixer\Tests\Report;
- use PhpCsFixer\Report\GitlabReporter;
- /**
- * @author Hans-Christian Otto <c.otto@suora.com>
- *
- * @internal
- * @covers \PhpCsFixer\Report\GitlabReporter
- */
- final class GitlabReporterTest extends AbstractReporterTestCase
- {
- protected function createReporter()
- {
- return new GitlabReporter();
- }
- protected function getFormat()
- {
- return 'gitlab';
- }
- /**
- * @return string
- */
- protected function createNoErrorReport()
- {
- return '[]';
- }
- /**
- * @return string
- */
- protected function createSimpleReport()
- {
- return <<<'JSON'
- [{
- "description": "some_fixer_name_here",
- "location.path": "someFile.php",
- "location.lines.begin": 0,
- "fingerprint": "ad098ea6ea7a28dd85dfcdfc9e2bded0"
- }]
- JSON;
- }
- /**
- * @return string
- */
- protected function createWithDiffReport()
- {
- return $this->createSimpleReport();
- }
- /**
- * @return string
- */
- protected function createWithAppliedFixersReport()
- {
- return <<<'JSON'
- [{
- "description": "some_fixer_name_here_1",
- "location.path": "someFile.php",
- "location.lines.begin": 0,
- "fingerprint": "b74e9385c8ae5b1f575c9c8226c7deff"
- },{
- "description": "some_fixer_name_here_2",
- "location.path": "someFile.php",
- "location.lines.begin": 0,
- "fingerprint": "acad4672140c737a83c18d1474d84074"
- }]
- JSON;
- }
- /**
- * @return string
- */
- protected function createWithTimeAndMemoryReport()
- {
- return $this->createSimpleReport();
- }
- /**
- * @return string
- */
- protected function createComplexReport()
- {
- return <<<'JSON'
- [{
- "description": "some_fixer_name_here_1",
- "location.path": "someFile.php",
- "location.lines.begin": 0,
- "fingerprint": "b74e9385c8ae5b1f575c9c8226c7deff"
- },{
- "description": "some_fixer_name_here_2",
- "location.path": "someFile.php",
- "location.lines.begin": 0,
- "fingerprint": "acad4672140c737a83c18d1474d84074"
- },{
- "description": "another_fixer_name_here",
- "location.path": "anotherFile.php",
- "location.lines.begin": 0,
- "fingerprint": "30e86e533dac0f1b93bbc3a55c6908f8"
- }]
- JSON;
- }
- protected function assertFormat($expected, $input)
- {
- $this->assertJsonStringEqualsJsonString($expected, $input);
- }
- }
|