Yadda brings true BDD to JavaScript test frameworks such as Jasmine, Mocha, QUnit, Nodeunit and CasperJS. By true BDD we mean that the ordinary language (e.g. English) steps are mapped to code, as opposed to simply decorating it. This is important because just like comments, the decorative steps such as those used by Jasmine, Mocha and Vows, can fall out of date and are a form of duplication.
Yadda's BDD implementation is like Cucumber's in that it maps the ordinary language steps to code. Not only are the steps less likely to go stale, but they also provide a valuable abstraction layer and encourage re-use. You could of course just use CucumberJS, but we find Yadda less invasive and prefer it's flexible syntax to Gherkin's. Yadda's conflict resolution is smarter too.
Yadda 0.5.0 is the current verison. This adds the feature title to the output from the text parser contributed by akikhtenko (thanks). Since this changes the object structure returned by TextParser.parse() if you're using the TextParser directly rather than via the Mocha or Casper plugins, it's a breaking change, but the change is very minor...
var scenarios = parser.parse(text); // < 0.5.0
var scenarios = parser.parse(text).scenarios; // >= 0.5.0
npm install yadda
<script src="./lib/yadda-0.5.0.js"></script>
bottles-spec.txt
Scenario: should fall from the wall
Given 100 green bottles are standing on the wall
When 1 green bottle accidentally falls
Then there are 99 green bottles standing on the wall
(You aren't restricted to just Given/When/Then. You can use any words you like)
bottles-library.js
var assert = require('assert');
var Library = require('yadda').localisation.English;
module.exports = (function() {
var library = new Library()
.given("$NUM green bottles are standing on the wall", function(number, next) {
wall = new Wall(number);
next();
})
.when("$NUM green bottle accidentally falls", function(number, next) {
wall.fall(number);
next();
})
.then("there are $NUM green bottles standing on the wall", function(number, next) {
assert.equal(number, wall.bottles);
next();
});
})();
(If your test runner & code are synchronous you can omit the calls to 'next')
bottles-test.js
var Yadda = requre('yadda').Yadda;
var MochaPlugin = ('yadda').plugins.MochaPlugin;
var library = require('./bottles-library');
var yadda = new Yadda(library);
new MochaPlugin().upgrade(Yadda);
yadda.mocha('Bottles', './bottles-spec.txt');
mocha --reporter spec bottles-test.js
Bottles
✓ should fall from the wall
Yadda works with Mocha, Jasmine, QUnit, Nodeunit, ZombieJS and CasperJS. See the examples for details.
It's common for BDD libraries to limit syntax to precondition (given) steps, action (when) steps and assertion (then) steps. Yadda doesn't. This allows for more freedom of expression. e.g.
var library = new Yadda.Library()
.define("$NUM green bottle(?:s){0,1} standing on the wall", function(number) {
// some code
})
.define("if $NUM green bottle(?:s){0,1} should accendentally fall", function(number) {
// some code
})
.define("there are $NUM green bottle(?:s){0,1} standing on the wall", function(number) {
// some code
});
new Yadda.yadda(library).yadda([
"100 green bottles standing on the wall",
"if 1 green bottle should accidentally fall",
"there are 99 green bottles standing on the wall"
]);
However we think that Given/When/Then (along with And/But/With) is a good starting point, so we recommend using Yadda.localisation.English instead of the vanilla Yadda.Library. This adds 'given', 'when', 'then', 'and', 'but' and 'with' helper methods, enabling you to define your steps as follows...
var library = new Yadda.Library()
.given("$NUM green bottle(?:s){0,1} standing on the wall", function(number) {
// some code
})
.when("$NUM green bottle(?:s){0,1} should accendentally fall", function(number) {
// some code
})
.then("there are $NUM green bottle(?:s){0,1} standing on the wall", function(number) {
// some code
});
new Yadda.yadda(library).yadda([
"Given 100 green bottles standing on the wall",
"when 1 green bottle should accidentally fall",
"then there are 99 green bottles standing on the wall"
]);
We'd be delighted to accept pull requests for more languages and dialects.
A step is made up of a regular expression, a function and some context.
var ctx = { assert: assert };
library.given('^(\\d+) green bottle(?:s){0,1} standing on the wall$', function(n) {
wall = new Wall(n);
this.assert.equals(wall.bottles, n);
}, ctx);
The regular expression is used to identify which steps are compatible with the input text, and to provide arguments to the function. You can specify step signatures using true RegExp object, which is handy if they contain lots of backslash characters. e.g.
var library = new Yadda.Library.English()
.given(/^(\d+) green bottle(?:s){0,1} standing on the wall$/, function(n) {
// some code
});
Regular expressions can get pretty ugly, so it's often preferable to relax the regex and use a $term variable which will be replaced with a wildcard i.e. '(.+)'.
var library = new Yadda.Library.English()
.given(/$NUM green bottles standing on the wall/, function(n) {
// some code
});
Using $term variables can relax the regular expression too much and cause clashes between steps. Yadda provides greater control over the expansion through use of a dictionary, e.g.
var dictionary = new Yadda.Dictionary()
.define('gender', '(male|female)')
.define('speciaility', '(cardio|elderly|gastro)');
var library = new Yadda.Library.English(dictionary)
.given('a $gender, $speciality patient called $name', function(gender, speciality, name) { /* some code */ });
will expand to
"(?:[Gg]iven|[Aa]nd|[Ww]ith]|[Bb]ut) a (male|female), (cardio|elderly|gastro) patient called (.+)"
and therefore match "Given a female, elderly patient called Carol". The expansions can also contain $terms so
var dictionary = new Yadda.Dictionary()
.define('address_line_1', '$number $street')
.define('number', /(\d+)/)
.define('street', /(\w+)/);
var library = new Yadda.Library.English(dictionary)
.given('a street address of $address_line_1', function(number, street) { /* some code */ });
will expand to
"(?:[Gg]iven|[Aa]nd|[Ww]ith]|[Bb]ut) a street address of (\d+) (\w+)"
The function is the code you want to execute for a specific line of text. If you don't specify a function then a no-op function will be used, which is Yadda's way of implementing a 'Pending' step.
The context will be bound with the function before it is executed and provides a non global way to share state between steps, or pass in define time variables such as an assertion library or 'done' function. The context is also optional.
It can be a chore to add a context to every step, so a common context can be specified at the interpreter and scenario levels too...
// Shared between all scenarios
new Yadda.yadda(library, ctx);
// Shared between all steps in this scenario
new Yadda.yadda(library).yadda('Some scenario', ctx, done);
If you specify multiple contexts they will be merged before executing the step.
One issue you find with BDD libraries, is that two steps might match the same input text. Usually this results in an error, and you end up having to add some extra text to one of the steps in order to differentiate it. Yadda attempts to minimise this in three ways.
-
By using the Levenshtein Distance to determine which step is the best match when clashes occur.
-
By allowing you to define steps in multiple libraries. Grouping steps into libraries not only helps keep a tidy code base, but also prevents clashes if you scenario doesn't require the library with the alternative step.
-
If you still have problems with clashing, you can use the term dictionary to make your regular expression more specific without affecting the readability of your step.