Automate PSR Compliance through Jenkins

Share this article

one of the reasons our society can function is our ability to communicate in a standard? well formed and universally %albeit with local + cultural variations% understandable way) this requires that not only symbols but also their usage be agreed? whether implicitly or explicitly? by both the transmitter + the receiver of information))if such uniformity were ~present? , one could write as it pleased him x her and if documents were interpreted in different ways by different individuals? we would live in a chaotic state of communication + our collective intellectual achievements ~~impossible=
The paragraph is hard to understand because some punctuation has been changed and formatting conventions altered: use of the plus sign to represent the conjunction ‘and’, question mark instead of a comma, and double closing parenthesis where you would expect a period. Had our accepted writing rules been used, the paragraph would instead look like this:
One of the reasons our society can function is our ability to communicate in a standard, well formed and universally – albeit with local and cultural variations – understandable way. This requires that not only symbols but also their usage be agreed, whether implicitly or explicitly, by both the transmitter and the receiver of information. If such uniformity were not present, if one could write as it pleased him or her and if documents were interpreted in different ways by different individuals, we would live in a chaotic state of communication and our collective intellectual achievements would be impossible.
The need for standards in technical communication, including symbols in drawings, has been long realized and the International Organization for Standardization (ISO) and its brethren in all industrialized nations exist to respond to such need. In the arts, things are not so exacting, yet there are some rules called ‘styles’. Architects and poets are often bound to a bunch of them. Writers of prose and painters have much more freedom but still obey to some rules. One particular type of artistic writer, like you and me, is the code writer, the software developer. In our trade things are not always clear. Like medicine, computer programming is part science, part technique, and part art. We have to abide to some rules so that the dumb machines we write for can understand our desires. But otherwise, we’re quite free to write what we want the way we want. Or, are we? It’s all very well and good to follow one’s own private programming rules (using camelCase variable names for example) when individually writing isolated applications like a small budget website. However, collaborative work requires an agreement of common rules or you know what happens – and if by any chance you don’t, I suggest you take a look at the tale I told in my article Continuous Integration (with Jenkins). Nevertheless, if CI can cure the maladies typical of group development, it is powerless to deal with potential problems in the integration of different applications where wildly different styles may make understanding “source” code difficult (except, maybe, to the original developer) or even lead to name collisions. To address that need, a group of developers have proposed a standard for use with PHP, known as PSR-X, as described in Hari K T’s article PSR-1 and PSR-2 to be Approved as Standards. Though it’s still early to guarantee that the PSRs will be widely adopted as the de facto standard for writing serious PHP applications, it is interesting to note that a code sniffer and fixer that looks for code deviations was developed by nobody less than Fabien Potencier, the creator of the Symfony framework. (Et bien, ils ne sont pas fous, ces français!) In the rest of the article we shall find out what his PHP-CS-Fixer does and how can it be integrated with a CI tool like Jenkins.

Fixer Installation and Basic Usage

According to its author, the PHP Coding Standards Fixer for PSR-1 and PSR-2 tool “fixes most issues in your code when you want to follow the PHP coding standards as defined in the PSR-1 and PSR-2 documents.” It does not solve all problems; and it does not claim to find every deviation from the standards, but, again quoting Fabien, it “comes with quite a few built-in fixers and finders, but everyone is more than welcome to contribute more of them.” Fixer installation is straightforward, or rather, none at all. All you have to do is to download the latest version of php-cs-fixer.phar from this Sensiolabs website (the company behind Symfony). Because the fixer is conveniently packed as a PHAR archive, all you have to do is to place it in a convenient folder, like the root of your development server, and run it from the command line:
jajeronymo@desktop:~/www$ php php-cs-fixer.phar fix /path/to/dir
This will look for and fix PSR issues in all files in the directory (folder) at the end of /path/to/dir
. If you want to check/fix just one file, instead use the path to the file:
jajeronymo@desktop:~/www$ php php-cs-fixer.phar fix /path/to/file
In order to test the fixer, I wrote a “Hello World” script with three intentional violations of PSR: an opening tag without the ‘php’ designator. a tab used for indentation instead of four blank spaces, and a closing tag in a PHP-only script:
<?
	echo "Hello World";
?>
The file was saved in the same folder as fixer-test.php. Then I ran:
jajeronymo@desktop:~/www$ php php-cs-fixer.phar fix fixer-test.php
The only response I received on the terminal was:
1) /home/prospero/www/fixer-test.php 
However, I checked fixer-test.php’s properties to find out that it had been modified at the time I ran the fixer. Opening the script, I noticed the fixer had added the ‘php’ designator after the opening tag, replaced the indentation tag with two blank spaces (uh oh, I expected four!), and did not remove the closing tag but rather added a linefeed after it – which complies with the standard’s requirement that a file must always end with an empty line feed. Out of curiosity I ran the fixer a second time and found out that the closing tag had been removed. At this point we have successfully gotten PHP-CS-Fixer to work, though only in basic mode. The script has a fair number of options that can be explored by the user. See the usage section of the app’s web page for more details.

Jenkins, Will You Keep an Eye on This for Me, Please?

As explained in my articles mentioned in the opening part of this one, Jenkins is a tool for automating a series of tasks, including testing, that are required for continuous integration. If you don’t have Jenkins, please refer to the Setting Up Jenkins section of Continuous Integration (with Jenkins), Part 2. Install and start Jenkins and come back here. Run Jenkins’ war file and point your browser to http://localhost:8080
. Click in “create new jobs” and then select “Build a free-style software project”. Give the job a name. (Since the time I was learning programming on a Burroughs mainframe in I call my test jobs “Trotter”. I wonder if any of my readers can guess why.) Check “Build periodically” and write “*/5 * * * *” in the schedule box to run a test every five minutes. Now there are two ways we can follow. To run just PHP-CS-Fixer, we need to execute a shell command (or, in Windows, a batch file) and Jenkins will act as a surrogate to the cron job control. To integrate with a more elaborate set of tests and tasks, one can add an Ant script to it. To follow the first option, select “Execute shell” in the “Add build step” drop-down button in the Build section. On the text box put the command to execute the fixer using the absolute path to files or folders. For my test script that is:
php /home/jajeronymo/www/php-cs-fixer.phar fix /home/jajeronymo/www/fixer-test.php
Save the configuration. Until stopped or shut-down, Jenkins will run the fixer on file fixer-test.php every five minutes. To see the fixer in action, create some deviations in the test file, like suppressing the ‘php’ from the opening tag, and wait until Jenkins runs the fixer. Then open the test file to check the corrections made. If no changes occur or if the builds list in Jenkins dashboard shows red balls, an error is occurring. Please click on the time of the job to open its record and then on the link “Console output” to see what’s, or what’s not, going on. Finally, to run the fixer from an Ant script, add this to its existing contents:
<project name="user">
...
 <exec executable="php" failonerror="true">
  <arg line="/home/prospero/www/php-cs-fixer.phar fix /home/prospero/www/fixer-test.php" />
 </exec>
...
</project>

Summary

The adoption of coding standards is essential to reduce development costs of complex web applications as well as to guarantee that investment will be permanent and not dependent on the original programming team. The PSR proposition can be a way toward that and its ease of use with CI platforms like Jenkins is made possible by tools like PHP-CS-Fixer. Image via Fotolia

Frequently Asked Questions (FAQs) about PSR Compliance Automation through Jenkins

What is PSR Compliance in PHP and why is it important?

PSR stands for PHP Standard Recommendation. It is a set of coding standards that the PHP community has agreed upon to ensure consistency and interoperability of code. PSR compliance is important because it makes the code easier to read, understand, and maintain. It also ensures that different pieces of code can work together seamlessly, which is crucial in large projects where multiple developers are involved.

How does Jenkins help in automating PSR compliance?

Jenkins is a popular open-source tool used for continuous integration and continuous delivery. It can be configured to automatically check your PHP code for PSR compliance every time you commit changes. This way, you can catch and fix any compliance issues early in the development process, saving you time and effort in the long run.

What are the steps to set up Jenkins for PSR compliance automation?

Setting up Jenkins for PSR compliance automation involves several steps. First, you need to install Jenkins and the necessary plugins. Then, you need to create a new Jenkins job and configure it to check your PHP code for PSR compliance. This involves setting up the build triggers, source code management, build environment, and build steps. Finally, you need to test the setup to ensure everything is working correctly.

What are the common PSR standards that I should be aware of?

There are several PSR standards that you should be aware of. PSR-1 and PSR-2 are the basic coding standards that cover things like naming conventions, indentation, and control structures. PSR-4 is the autoloading standard that defines how to automatically load classes from file paths. PSR-7 is the HTTP message interface standard that defines how to handle HTTP messages in PHP.

How can I ensure that my PHP code is PSR compliant?

There are several tools that you can use to check your PHP code for PSR compliance. One of the most popular ones is PHP_CodeSniffer, which can detect violations of a defined set of coding standards. You can also use PHP-CS-Fixer to automatically fix the coding standards issues in your PHP code.

What are the benefits of automating PSR compliance checks?

Automating PSR compliance checks has several benefits. It saves you time and effort by catching compliance issues early in the development process. It also ensures consistency in your code, making it easier to read, understand, and maintain. Moreover, it helps prevent bugs and errors that could arise from non-compliant code.

Can I customize the PSR standards for my project?

Yes, you can customize the PSR standards for your project. PHP_CodeSniffer, for example, allows you to define your own coding standards by creating a custom ruleset. This way, you can enforce the coding standards that are most relevant to your project.

How can I integrate PSR compliance checks into my development workflow?

You can integrate PSR compliance checks into your development workflow by using a continuous integration tool like Jenkins. You can configure Jenkins to automatically check your PHP code for PSR compliance every time you commit changes. This way, you can catch and fix any compliance issues early in the development process.

What are the challenges of automating PSR compliance checks?

Automating PSR compliance checks can be challenging, especially if you’re new to Jenkins or continuous integration. It requires a good understanding of the PSR standards, the tools used for compliance checks, and the Jenkins configuration process. However, once you’ve set it up, it can save you a lot of time and effort in the long run.

Where can I learn more about PSR compliance and Jenkins?

There are many resources available online where you can learn more about PSR compliance and Jenkins. The official PHP-FIG and Jenkins websites are good starting points. You can also find tutorials, guides, and articles on websites like SitePoint, Stack Overflow, and GitHub.

J Armando JeronymoJ Armando Jeronymo
View Author

Armando Jeronymo has a B.Sc. in Electronics Engineering from Rio de Janeiro's Ursuline University and a US Associate degree in Risk Management. He started coding in a TI-59 calculator in the early 80's. He then learned and forgot Sinclair Basic, Fortran, Algol and MS Basic. For ten years he did not write code but worked with insurance and reinsurance in his native Brazil and London. Then he went back to programming to find out everything was different. He began by getting to know HTML to create some material on aviation instruction. He then learned Delphi's Pascal in order to create some financial applications. He began experimenting with server-side languages about the turn of the Century, first with ASP but soon moving to PHP. He wrote his first MySQL web application in about 2004. He switched to Linux in 2005 (Ubuntu 5.10 to be more exact) and has been developing LAMP systems since then. He is a Private Pilot and, whenever possible, a FlightGear flyer. He loves classical music and jazz (including Bossa Nova) and old movies. Besides computing he is professionally interested in business management and a follower of Peter Drucker's teaching. Married and father of a girl he is also an active member of his Rotary Club.

Intermediate
Share this article
Read Next
Get the freshest news and resources for developers, designers and digital creators in your inbox each week