You’re Cuking It Wrong
Opinions on cucumber seem to be divided in the Ruby community. Here at Elabs we’ve been using cucumber to fantastic success on all of our projects for more than a year. At the same time Steak and projects like it seem to be gaining traction; some people are seemingly frustrated and fed up with cucumber.
So where does this gulf of experiences come from, why is cucumber loved by some and hated by others. At the risk of over-generalisation and mischaracterisation I recently came up with a theory: the cucumber detractors are not using cuke the way it was intended.
This is in fact not their fault. The entire cucumber ecosystem, and in fact even cucumber itself, encourage its misuse.
A while ago someone created an issue on the Capybara issue tracker. The interesting thing about this issue wasn’t the problem itself, but rather the cucumber feature that the author presented in order to replicate the problem. This is the feature the author submitted:
Scenario: Adding a subpage
Given I am logged in
Given a microsite with a Home page
When I click the Add Subpage button
And I fill in "Gallery" for "Title" within "#document_form_container"
And I press "Ok" within ".ui-dialog-buttonpane"
Then I should see /Gallery/ within "#documents"
At first glance this seems reasonable. But contrast this with the following, improved version:
Scenario: Adding a subpage
Given I am logged in
Given a microsite with a home page
When I press "Add subpage"
And I fill in "Title" with "Gallery"
And I press "Ok"
Then I should see a document called "Gallery"
The difference isn’t huge, the steps are largely the same, and there’s an argument to be made for writing in a more declarative style, but there’s one crucial difference: the first feature is code, the second isn’t.
The argument against cucumber that’s often presented is that as a programmer, plain text is unnecessary, because we can all read code. While it’s true that we all can read code, I still find it beneficial to jump out of the code writing mode for describing the behaviour of the application. When you’re writing features first, you don’t want to be bothered with the details of how this functionality works. In this initial stage you care nothing about the implementation, about how the result is achieved. You care nothing about things like #document_form_container
or .ui-dialog-buttonpane
.
I believe that it’s in this switching between designer mode and developer mode where cucumber, done right, really shines.
In order to evaluate the bigger picture before hacking
As a developer
I want to write my stories before writing my code
There are some secondary benefits as well. Writing truly plain text features leads to better maintainability as well, since the features are robust against code changes. Plain text is also easier to understand for new developers coming to an existing project. Probably the nicest advantage though is that over time a library of steps is built up, which can then be simply combined to describe new features.
The above feature is nicely illustrative of this anti-pattern, but it is far from the only example. In many of our cucumber suites here at Elabs, we have steps like the above, some of them were written by me. Which leads me to what’s really wrong with the last three lines of the above feature. They are written using nothing else than the standard web steps generated by cucumber-rails own generator. Cucumber itself ships with steps which in my opinion encourage an anti-pattern.
Pickle my fancy
Another tool which we’ve experimented a bit with is Pickle, which allows you to easily generate models from your feature files. A basic example from the README:
Given a user exists
And a post exists with author: the user
Given a person: "fred" exists
And a person: "ethel" exists
And a fatherhood exists with parent: user "fred", child: user "ethel"
It actually looks fairly nice, reads quite naturally, so a first instinct might be to call this plain text. But on closer inspection, there is a whole language in there. To comprehend what these steps are doing you’d need to understand not only the domain models involved, but also the language Pickle uses to manipulate these. I’m pretty sure a non-technical person couldn’t make sense of the above. This is really no different, and in fact worse, than writing actual code:
@user = User.make
Post.make(:user => @user)
@fred = Person.make(:name => 'Fred')
@ethel = Person.make(:name => 'Ethel')
Fatherhood.make(:user => @fred, :child => @ethel)
Note how there is an almost one-to-one mapping between the feature above, and the code below. The only thing cucumber does in this case is act as some kind of phoney translator. We write code, but not actual code. So we can do some stuff, but mostly it comes out worse than if we’d just written it as code in the first place. I can’t blame anyone for disliking cucumber when using it like this.
However, try this instead:
Given there is a user called "Jimmy"
And there is a post authored by "Jimmy"
Given there is a person called "Fred"
And there is a person called "Ethel"
And "Fred" is the father of "Ethel"
There’s not a huge difference between the first couple of lines, even though they read somewhat nicer when written out like this. The real difference is in the last line. Here cucumber is adding value by explaining this abstract concept of a Fatherhood into something very concrete: one person is the other’s dad. Cucumber added value to this feature, instead of only acting as a hindrance.
I believe that Pickle is flawed as a concept, in order to achieve readable steps, they need to be written by hand.
The worst feature ever written.
As a curiosity, I present the worst cucumber feature known to man. If you are responsible for something like this, please go slap yourself in the face as hard as you can.
Scenario: User creates some sites and circuits, check connected sites list
Given a "site" exists with {"name"=>"Somewhere1", "identifier" => "TER1", "provider"=>"TER1 Provider"}
And a "site" exists with {"name"=>"Somewhere2", "identifier" => "TER2", "provider"=>"Some Provider"}
And a "site" exists with {"name"=>"Somewhere3", "identifier" => "TER3", "provider"=>"TER3 Provider"}
And a "circuit" exists with {"provider_name"=>"Another provider", "redacted_circuit_id"=>"ABC1", "provider_circuit_id"=>"C1", "circuit_type"=>CircuitType.find_by_name("Peering"), "service_type"=>CircuitServiceType.find_by_name("Dark Fiber"), :capacity => CircuitCapacity.find_by_name("1 Gbps"), "physical_wire_type"=>PhysicalWireType.find_by_name("Multi Mode Fiber"), "status"=> CircuitStatus.find_by_name("Cancelled"), "a_end"=>Site.find_by_identifier("TER1"), "b_end"=>Site.find_by_identifier("TER2")}
And a "circuit" exists with {"provider_name"=>"Switch and Data", "redacted_circuit_id"=>"ABC2", "provider_circuit_id"=>"C2", "circuit_type"=>CircuitType.find_by_name("Backbone"), "service_type"=>CircuitServiceType.find_by_name("Dark Fiber"), :capacity => CircuitCapacity.find_by_name("1 Gbps"), "physical_wire_type"=>PhysicalWireType.find_by_name("Multi Mode Fiber"), "status"=> CircuitStatus.find_by_name("Cancelled"), "a_end"=>Site.find_by_identifier("TER1"), "b_end"=>Site.find_by_identifier("TER3")}
When I am on the "connected_sites" page for site "TER1"
Then the "connected-sites-list" should look like
| Site ID | Site Name | Site Provider | Provider Circuit ID | Provider Name | Circuit Status |
| TER2 | Somewhere2 | Some Provider | C1 | Another provider | Cancelled |
| TER3 | Somewhere3 | TER3 Provider | C2 | Switch and Data | Cancelled |
When I am on the "connected_sites" page for site "TER2"
Then the "connected-sites-list" should look like
| Site ID | Site Name | Site Provider | Provider Circuit ID | Provider Name | Circuit Status |
| TER1 | Somewhere1 | TER1 Provider | C1 | Another provider | Cancelled |
When I am on the "connected_sites" page for site "TER3"
Then the "connected-sites-list" should look like
| Site ID | Site Name | Site Provider | Provider Circuit ID | Provider Name | Circuit Status |
| TER1 | Somewhere1 | TER1 Provider | C2 | Switch and Data | Cancelled |
Yes, those are Hashes inside a feature, which are then eval’d. Make sure to scroll to the right to experience the full horror of it all. I challenge anyone to find a worse cucumber feature than this. I assure you, that thing is real (from one of our rescue mission projects), and there is much more where it came from.
Writing better steps
So how do we write better steps? For me personally, I’ve found that sticking to the following rule seems to lead to nice, maintainable steps:
A step description should never contain regexen, CSS or XPath selectors, any kind of code or data structure. It should be easily understood just by reading the description.
Comments