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
Direct Download
Read full article as PDF:
Price $2.95
News
-
Apple M1 Hardware Support to be Merged into Linux Kernel 5.13
Linux users will be able to install their favorite distribution on Apple’s M1-based hardware.
-
KDE Launches the Qt 5 Patch Collection
To support and maintain a stable Qt 5 for KDE Gears and Frameworks, KDE will maintain a patch collection.
-
Linux Creator Warns Next Kernel Could be Delayed
Linus Torvalds has issued concern about the size of kernel 5.12 and possible delays for its release.
-
System76 Updates its Pangolin Laptop
System76 has released a much-anticipated AMD version of their most popular laptop, the Pangolin.
-
New Debian-Based Distribution Arrives on the Market
TelOS is a new Debian-based Linux distribution with a customized, touch-screen-ready KDE Plasma 5 desktop.
-
System76 Releases New Thelio Desktop
One of the most ardent supporters of open source hardware has released a new desktop machine for home or office.
-
Mageia 8 Now Available with Linux 5.10 LTS
The latest release of Mageia includes improved graphics support for both AMD and NVIDIA GPUs.
-
GNOME 40 Beta has been Released
Anyone looking to test the beta for the upcoming GNOME 40 release can now do so.
-
OpenMandriva Lx 4.2 has Arrived
The latest stable version of OpenMandriva has been released and offers the newest KDE desktop and ARM support.
-
Thunderbird 78 Ported to Ubuntu 20.04
The Ubuntu developers have made the decision to port the latest release of Thunderbird to the LTS version of the platform.