Just-Tech-IT

Sharing knowledge and best practices for valuable tech workers. This blog is Powered by @AXAJobs_fr

Follow publication

How to format Gherkin files?

This small story is about a tool I discovered recently that save me so much time. There may be different reasons why you have malformed Gherkin files:

  • Developper is to lazy to indent it
  • Lack of tool that helps writing Gherkin
  • Auto-generated files

So, I realize that I spent too much time on this task and I discovered the following tool that helps me.

Ghokin

Ghokin format and apply transformation on gherkin files.

Ghokin is able to format or check if the Gherkin file is well formatted:

  check       Check a file/folder is well formatted
fmt Format a feature file/folder
help Help about any command

So, after testing the library, I decided to write a script that executes this task for me.

Setting up the script

At the root folder of my repository, I created a directory called “tools”:

mkdir tools

Then, I downloaded the binary of the library using this link, renamed the library into “ghokin” and put it in the tools folder.

Now, I can create my script called gherkin-formatter.sh into this folder. Make sure the two files have execution rights using the following command line for instance:

sudo chmod +x gherkin-formatter.sh ghokin

And here’s the content of my bash file:

#!/bin/bashcurrentDirectory=$(pwd)cd $(dirname `which $0`)for file in $(find .. -type f -name *.feature)
do
./ghokin fmt replace ${file}
done
cd ${currentDirectory}

As you can see, I list all the files with a feature extension to apply Ghokin on it.

Where to go from here

This task stays manual since the developper has to run the script. So it’s time to automate it in one of these steps:

  • During build phases or pre-build phases (using tools like Grunt for instance or in compilation phase)
  • Before a commit (using pre-commit hook like I did in this article about Swiftformat)

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

Just-Tech-IT
Just-Tech-IT

Published in Just-Tech-IT

Sharing knowledge and best practices for valuable tech workers. This blog is Powered by @AXAJobs_fr

Benjamin Dumont
Benjamin Dumont

Written by Benjamin Dumont

Mobile (iOS) and Web Developer (Java, PHP), DevOps https://benjdum59.github.io/

Responses (1)

Write a response