Book Image

Instant Cucumber BDD How-to

By : Wayne Ye
Book Image

Instant Cucumber BDD How-to

By: Wayne Ye

Overview of this book

<p>Cucumber is a Behavior Driven Design framework, which allows a developer to write specification tests which then tests that the program works as it should. It is a different development paradigm, as it involves writing what the program should do first, then you develop until it passes the tests.<br /><br />Instant Cucumber BDD How-to will cover basics of Cucumber in a Behaviour Driven Development (BDD) style and explain the essence of Cucumber, describe how to write Cucumber features to drive development in a real project, and also describe many pro tips for writing good Cucumber features and steps. Cucumber is a very fun and cool tool for writing automated acceptance tests to support software development in a Behaviour Driven Development (BDD) style.<br /><br />Instant Cucumber BDD How-to will highlight Cucumber's central role in a development approach called Behaviour Driven Development (BDD), describe how to write Cucumber features to drive development in a real project, and finally introduce some famous third-party libraries used inline with Cucumber.</p> <p>It will show you how to carry out all the tasks associated with BDD using Cucumber and write basic Cucumber steps. It will assist you in using Pro tips for writing expressive Gherkin and implement guidelines for writing DRY steps. You'll learn how to use Cucumber's Gherkin to describe the behavior customers want from the system in a plain language.</p>
Table of Contents (7 chapters)

Setting up an environment for Cucumber BDD on Rails (Intermediate)


Cucumber is a tool for BDD-style development widely used in the Ruby on Rails platform. It introduced a domain-specific language (DSL) named Gherkin to allow the execution of feature documentation written in business-facing text, and implement acceptance test code in other languages (for example Ruby).

Cucumber sets up a great bridge between business people and development teams. Its natural and human readable language ultimately eliminates misunderstanding, and the regular expression "translation" layer provides the ability for developers to do anything magical and powerful!

Getting ready

This book will focus on how to use Cucumber in daily BDD development on the Ruby on Rails platform. Please install the following software to get started:

  • Ruby Version Manager

  • Version 1.9.3 of Ruby

  • Version 3.2 of Rails

  • The latest version of Cucumber

  • A handy text editor; Vim or Sublime Text

How to do it...

To install RVM, bundler, and Rails we need to complete the following steps:

  1. Install RVM (read the latest installation guide from http://rvm.io).

    $ \curl -L https://get.rvm.io | bash -s stable --ruby
    
  2. Install the latest version of Ruby as follows:

    $ rvm install ruby-1.9.3
    
  3. Install bundler as follows:

    $ gem install bundler
    
  4. Install the latest version of Rails as follows:

    $ gem install rails
    

Cucumber is a Ruby gem. To install it we can run the following command in the terminal:

  1. Cucumber contains two parts: features and step definitions. They are explained in the following section:

    $ gem install cucumber
    
  2. If you are using bundler in your project, you need to add the following lines into your Gemfile:

    gem 'cucumber'
    

How it works...

We will have to go through the following files to see how this recipe works:

  • Feature files (their extension is .feature): Each feature is captured as a "story", which defines the scope of the feature along with its acceptance criteria. A feature contains a feature title and a description of one or more scenarios. One scenario contains describing steps.

  • Feature: A unique feature title within the project scope with a description. Its format is as follows:

    Feature:  <feature title>
    <feature description>
  • Scenario: This elaborates how the feature ought to behave. Its format is as follows:

    Scenario: <Scenario short description> 
    Given <some initial context>
    
    When <an event occurs>
    
    Then <ensure some outcomes>
  • Step definition files: A step definition is essentially a block of code associated with one or more steps by a regular expression (or, in simple cases, an exact equivalent string).

    Given "I log into system through login page" do
      visit login_page
      fill_in "User name", :with => "wayne"
      fill_in "Password", :with => "123456"
      click_button "Login"
    end

When running a Cucumber feature, each step in the feature file is like a method invocation targeting the related step definition. Each step definition is like a Ruby method which takes one or more arguments (the arguments are interpreted and captured by the Cucumber engine and passed to the step method; this is essentially done by regular expression). The engine reads the feature steps and tries to find the step definition one by one. If all the steps match and are executed without any exceptions thrown, then the result will be passed; otherwise, if one or more exceptions are thrown during the run, the exception can be one of the following:

  • Cucumber::Undefined: Step was an undefined exception

  • Cucumber::Pending: Step was defined but is pending implementation

  • Ruby runtime exception: Any kind of exception thrown during step execution

Similar with other unit-testing frameworks, Cucumber runs will either pass or fail depending on whether or not exception(s) are thrown, whereas the difference is that according to different types of exceptions, running a Cucumber could result in the following four kinds:

  • Passed

  • Pending

  • Undefined

  • Failed

The following figure demonstrates the flow chart of running a Cucumber feature:

There's more...

Cucumber is not only for Rails, and the Cucumber feature can be written in many other languages other than English.

Cucumber in other languages/platforms

Cucumber is now available on many platforms. The following is a list of a number of popular ones:

  • JVM: Cucumber-JVM

  • .NET: SpecFlow

  • Python: RubyPython, Lettuce

  • PHP: Behat

  • Erlang: Cucumberl

Cucumber in your mother language

We can actually write Gherkin in languages other than English too, which is very important because domain experts might not speak English. Cucumber now supports 37 different languages.

There are many great resources online for learning Cucumber: