Skip to content

Commit 2b06495

Browse files
committed
Add autoload_paths option
This provides the possibility to add autoload files from coding standards installed by a phpcq plugin and they would be available for PHPCS without defining them in a phpcs configuration file. This enhances DX as they do not need to know internals of the PHPCQ plugin storage
1 parent 8d1d0bb commit 2b06495

File tree

3 files changed

+83
-9
lines changed

3 files changed

+83
-9
lines changed

src/phpcs.php

+40-7
Original file line numberDiff line numberDiff line change
@@ -41,26 +41,32 @@ public function describeConfiguration(PluginConfigurationBuilderInterface $confi
4141
$configOptionsBuilder
4242
->describeStringListOption(
4343
'standard_paths',
44-
'Setting the installed standard paths as relative path to the project root dir.'
44+
'Setting the installed standard paths as relative path to the project root dir.',
4545
)
4646
->isRequired()
4747
->withDefaultValue([]);
4848
$configOptionsBuilder
4949
->describeBoolOption(
5050
'fix',
51-
'If given, the source will be fixed automatically with phpcbf'
51+
'If given, the source will be fixed automatically with phpcbf',
5252
)
5353
->isRequired()
5454
->withDefaultValue(false);
5555
$configOptionsBuilder
5656
->describeStringListOption(
5757
'excluded',
58-
'List of excluded paths.'
58+
'List of excluded paths.',
5959
);
6060
$configOptionsBuilder
6161
->describeStringListOption(
6262
'excluded_sniffs',
63-
'List of excluded sniffs.'
63+
'List of excluded sniffs.',
64+
);
65+
66+
$configOptionsBuilder
67+
->describeStringListOption(
68+
'autoload_paths',
69+
'List of files to autoload relative to project directory',
6470
);
6571
}
6672

@@ -127,7 +133,7 @@ private function buildArguments(
127133
function ($path) use ($projectPath): string {
128134
return realpath($projectPath . '/' . $path);
129135
},
130-
$standardPaths
136+
$standardPaths,
131137
));
132138
}
133139

@@ -137,6 +143,33 @@ function ($path) use ($projectPath): string {
137143
$arguments[] = '--report-file=' . $tempFile;
138144
}
139145

146+
if ($config->has('autoload_paths')) {
147+
$template = <<<'PHP'
148+
<?php
149+
declare(strict_types=1);
150+
151+
foreach (%s as $path) {
152+
require_once $path;
153+
}
154+
PHP;
155+
$tmpFile = $environment->getUniqueTempFile($this, 'phpcs.bootstrap.php');
156+
$paths = array_unique(
157+
array_map(
158+
function (string $path) use ($environment): string {
159+
$file = $environment->getProjectConfiguration()->getProjectRootPath() . '/' . $path;
160+
if (! file_exists($file)) {
161+
throw new RuntimeException('Autoload file does not exist: ' . $file);
162+
}
163+
164+
return $environment->getProjectConfiguration()->getProjectRootPath() . '/' . $path;
165+
},
166+
$config->getStringList('autoload_paths')
167+
),
168+
);
169+
file_put_contents($tmpFile, sprintf($template, var_export($paths, true)));
170+
$arguments[] = '--bootstrap=' . $tmpFile;
171+
}
172+
140173
return array_merge($arguments, $config->getStringList('directories'));
141174
}
142175

@@ -149,14 +182,14 @@ public function describeExecTask(
149182
'phpcs',
150183
'PHP CodeSniffer by Squiz (http://www.squiz.net)',
151184
$definitionBuilder,
152-
$environment
185+
$environment,
153186
);
154187
$this->describeApplication(
155188
'phpcbf',
156189
'PHP Code Beautifier and Fixer',
157190
$definitionBuilder,
158191
$environment,
159-
'fix'
192+
'fix',
160193
);
161194
}
162195

tests/PhpcsPluginTest.php

+40-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,14 @@
88
use Phpcq\PluginApi\Version10\Configuration\PluginConfigurationInterface;
99
use Phpcq\PluginApi\Version10\DiagnosticsPluginInterface;
1010
use Phpcq\PluginApi\Version10\EnvironmentInterface;
11+
use Phpcq\PluginApi\Version10\ProjectConfigInterface;
12+
use Phpcq\PluginApi\Version10\Task\TaskInterface;
1113
use PHPUnit\Framework\TestCase;
1214

15+
use function dirname;
16+
use function sys_get_temp_dir;
17+
use function tempnam;
18+
1319
/**
1420
* @coversNothing
1521
*/
@@ -42,7 +48,39 @@ public function testPluginCreatesDiagnosticTasks(): void
4248

4349
$this->instantiate()->createDiagnosticTasks($config, $environment);
4450

45-
// We assume it worked out as the plugin did execute correctly.
46-
$this->addToAssertionCount(1);
51+
foreach ($this->instantiate()->createDiagnosticTasks($config, $environment) as $task) {
52+
$this->assertInstanceOf(TaskInterface::class, $task);
53+
}
54+
}
55+
56+
public function testConfigureAutoloadPaths(): void
57+
{
58+
$config = $this->getMockForAbstractClass(PluginConfigurationInterface::class);
59+
$config->method('has')->willReturnCallback(static function (string $key) {
60+
if ($key === 'autoload_paths') {
61+
return true;
62+
}
63+
64+
return false;
65+
});
66+
67+
$config->method('getStringList')->willReturnCallback(static function (string $key): array {
68+
if ($key === 'autoload_paths') {
69+
return ['autoload.php'];
70+
}
71+
72+
return [];
73+
});
74+
75+
$configuration = $this->getMockForAbstractClass(ProjectConfigInterface::class);
76+
$configuration->method('getProjectRootPath')->willReturn(__DIR__ . '/fixtures');
77+
78+
$environment = $this->getMockForAbstractClass(EnvironmentInterface::class);
79+
$environment->method('getUniqueTempFile')->willReturn(tempnam(sys_get_temp_dir(), 'phpcq-phpcs'));
80+
$environment->method('getProjectConfiguration')->willReturn($configuration);
81+
82+
foreach ($this->instantiate()->createDiagnosticTasks($config, $environment) as $task) {
83+
$this->assertInstanceOf(TaskInterface::class, $task);
84+
}
4785
}
4886
}

tests/fixtures/autoload.php

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<?php
2+
3+
declare(strict_types=1);

0 commit comments

Comments
 (0)