Using Cucumber and Perl to define test cases in natural language
Expandable Scenarios
Using the step definitions from Listing 3, all of the previously defined scenarios work perfectly – as you can see from Figure 4. Because Cucumber separates the feature description from the step definition, the latter is also suitable for other scenarios. To retrieve additional securities, besides the price of Facebook shares for the test, Listing 4 introduces another feature file, also located in the features
directory.
Listing 4
table.feature
The listing shows how the rows of an ASCII table written with pipe symbols following the Examples:
keyword each define a new test case. Thus, the Facebook share price must be greater than US$ 10 and the Amazon security greater than US$ 400. A glance at the stock market pages shows that the Internet retailer just missed this target when this issue went to press with a price of around US$ 397. The test case is obviously incorrectly defined; a more generous margin – for example, "greater than 1" – would be useful to increase the likelihood that the script still works in a couple of years.
In Figure 5, the failed scenario is highlighted in red. As you can tell from the grayed subsequent scenario, cucumber
stops testing a feature if a single part fails. If the reviewer corrects the expected Amazon price from US$ 400 to 300, all the tests run perfectly, as the green output in Figure 6 reveals.
When defining tables, the CPAN module, incidentally, differs from the original Cucumber tool – probably unintentionally: cucumber
rejects Examples:
in a Scenario:
and only accepts them in a section that starts with Scenario Outline:
.
Installation
You can install the Cucumber CPAN module presented here by typing:
cpan Test::BDD::Cucumber
Additionally, Test::BDD::Cucumber::Manual::Tutorial provides a short tutorial. The module runs independently of the original code by the Cucumber project, which is available as a Ruby gem. To load the latter onto a system with an installed Ruby interpreter, including the ruby-dev
package installed, just run two commands:
gem install gherkin gem install cucumber
In contrast to the Perl module, the original Cucumber Code also allows describing the features in languages other than English. Typing cucumber --language
reveals support for more than 40 languages.
As stated on the website, the Cucumber advantage is not primarily in writing test cases in a natural language. Instead, it opens the opportunity for developers and product management to collaborate on the feature document and test the results at the same time. The Cucumber framework promotes a dialog between the two parties during development, helping avoid expensive product defects caused by misunderstandings.
Infos
- Cucumber: http://cukes.info
- Ian Dees, Matt Wynne, and Aslak Hellesoy, The Cucumber Book: Behaviour-Driven Development for Testers and Developers. Pragmatic Programmers, 2012.
- Listings for this article: ftp://www.linux-magazin.de/pub/listings/magazine/161/Perl
- Test::BDD::Cucumber: http://search.cpan.org/~bdr/Test-BDD-Cucumber/
« Previous 1 2 3
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
Gnome 48 Debuts New Audio Player
To date, the audio player found within the Gnome desktop has been meh at best, but with the upcoming release that all changes.
-
Plasma 6.3 Ready for Public Beta Testing
Plasma 6.3 will ship with KDE Gear 24.12.1 and KDE Frameworks 6.10, along with some new and exciting features.
-
Budgie 10.10 Scheduled for Q1 2025 with a Surprising Desktop Update
If Budgie is your desktop environment of choice, 2025 is going to be a great year for you.
-
Firefox 134 Offers Improvements for Linux Version
Fans of Linux and Firefox rejoice, as there's a new version available that includes some handy updates.
-
Serpent OS Arrives with a New Alpha Release
After months of silence, Ikey Doherty has released a new alpha for his Serpent OS.
-
HashiCorp Cofounder Unveils Ghostty, a Linux Terminal App
Ghostty is a new Linux terminal app that's fast, feature-rich, and offers a platform-native GUI while remaining cross-platform.
-
Fedora Asahi Remix 41 Available for Apple Silicon
If you have an Apple Silicon Mac and you're hoping to install Fedora, you're in luck because the latest release supports the M1 and M2 chips.
-
Systemd Fixes Bug While Facing New Challenger in GNU Shepherd
The systemd developers have fixed a really nasty bug amid the release of the new GNU Shepherd init system.
-
AlmaLinux 10.0 Beta Released
The AlmaLinux OS Foundation has announced the availability of AlmaLinux 10.0 Beta ("Purple Lion") for all supported devices with significant changes.
-
Gnome 47.2 Now Available
Gnome 47.2 is now available for general use but don't expect much in the way of newness, as this is all about improvements and bug fixes.