Part of meta-issue #2571965: [meta] Fix PHP coding standards in core, stage 1
Step 1: Preparation
Open the file core/phpcs.xml.dist and add a line for the sniff of this ticket. The sniff name is in the issue title. Make sure your patch will include the addition of this line.
Step 2: Install & configure PHPCS
Install PHP CodeSniffer and the ruleset from the Coder module:
$ composer install
$ ./vendor/bin/phpcs --config-set installed_paths ../../drupal/coder/coder_sniffer
Once you have installed the phpcs package, you can list all the sniffs available to you like this:
$ ./vendor/bin/phpcs --standard=Drupal -e
This will give you a big list of sniffs, and the Drupal-based ones should be present.
Step 3: Prepare the phpcs.xml file
To speed up the testing you should make a copy of the file phpcs.xml.dist (in the core/ folder) and save it as phpcs.xml. This is the configuration file for PHP CodeSniffer.
We only want this phpcs.xml file to specify the sniff we're interested in. So we need to remove all the rule items, and add only our own sniff's rule. Rule items look like this:
<rule ref="Drupal.Classes.UnusedUseStatement"/>
Remove all of them, and add only the sniff from this issue title. This will make sure that our tests run quickly, and are not going to contain any output from unrelated sniffs.
Step 4: Run the test
Now you are ready to run the test! From within the core/ folder, run the following command to launch the test:
$ cd core/
$ ../vendor/bin/phpcs -p
This takes a couple of minutes. The -p flag shows the progress, so you have a bunch of nice dots to look at while it is running.
Step 5: Fix the failures
When the test is complete it will present you a list of all the files that contain violations of your sniff, and the line numbers where the violations occur. You could fix all of these manually, but thankfully phpcbf can fix many of them. You can call phpcbf like this:
$ ../vendor/bin/phpcbf
This will fix the errors in place. You can then make a diff of the changes using git. You can also re-run the test with phpcs and determine if that fixed all of them.
| Comment | File | Size | Author |
|---|---|---|---|
| #21 | drupal-coding-standards-2901722-21.patch | 2.81 KB | mfernea |
| #13 | drupal-coding-standards-2901722-12.patch | 4.5 KB | mfernea |
| #9 | drupal-coding-standards-2901722-9.patch | 4.5 KB | mfernea |
| #6 | drupal-coding-standards-2901722-6.patch | 5.11 KB | mfernea |
| #2 | drupal-coding-standards-2901722-2.patch | 5.77 KB | mfernea |
Comments
Comment #2
mfernea commentedHere is the patch.
Comment #4
mfernea commentedI guess the failing test is related to:
as per https://www.drupal.org/node/2759789#comment-12218545.
Comment #6
mfernea commentedRe-roll.
Comment #7
andriyun commentedThe patch #6 isn't applicable
needs reroll
Comment #8
mfernea commentedComment #9
mfernea commentedRe-roll.
Comment #10
andriyun commentedno phpcs fails after patch applying
patch contains only sniff related changes
Comment #11
catchNeeds a re-roll.
Comment #12
mfernea commentedRe-roll.
Comment #13
mfernea commentedComment #14
mfernea commentedComment #15
jofitzSimple re-roll so back to RTBC.
Comment #16
jofitzIgnore that, there is a coding standards error:
core/modules/node/src/Plugin/views/field/Path.php
line 3 There must be one blank line after the namespace declaration
Comment #17
mfernea commentedLet's wait for the new test results. The error you mentioned was present in 8.5.x and was fixed already.
Comment #18
mfernea commented@Jo Fitzgerald should we put this back to RTBC?
Comment #19
jofitzNo more coding standards errors, safely back to RTBC.
Thanks for the nudge, @mfernea, I'd forgotten that I was watching this one.
Comment #21
mfernea commentedRe-roll.
Comment #22
borisson_Comment #23
alexpottCommitted fd8d983 and pushed to 8.5.x. Thanks!
Committed 8b435db and pushed to 8.4.x. Thanks!