Step definitions are glue between features written in Gherkin and the actual system under test.
Use Given
, When
, Then
.
Matching groups in the regular expression are passed as parameters to the step definition.
var {Then, When} = require('cucumber');
var assert = require('assert');
var fs = require('fs');
var mzFs = require('mz/fs')
var seleniumWebdriver = require('selenium-webdriver');
// Synchronous
Then(/^the response status is (.*)$/, function (status) {
assert.equal(this.responseStatus, status)
});
// Asynchronous - callback
//
// Take a callback as an additional argument to execute when the step is done
Then(/^the file named (.*) is empty$/, function (fileName, callback) {
fs.readFile(fileName, 'utf8', function(error, contents) {
if (error) {
callback(error);
} else {
assert.equal(contents, '');
callback();
}
});
});
// Asynchronous - promise
//
// Return a promise. The step is done when the promise resolves or rejects
When(/^I view my profile$/, function () {
// Assuming this.driver is a selenium webdriver
return this.driver.findElement({css: '.profile-link'}).then(function(element) {
return element.click();
});
});
If you would like to wrap step or hook definitions in with some additional logic you can use setDefinitionFunctionWrapper(fn)
. The definitions will be wrapped after they have all been loaded but before the tests begin to run. One example usage is wrapping generator functions to return promises. Cucumber will do an additional stage of wrapping to ensure the function retains its original length.
// features/step_definitions/file_steps.js
var {Then} = require('cucumber');
var assert = require('assert');
var mzFs = require('mz/fs');
Then(/^the file named (.*) is empty$/, function *(fileName) {
contents = yield mzFs.readFile(fileName, 'utf8');
assert.equal(contents, '');
});
// features/support/setup.js
var {setDefinitionFunctionWrapper} = require('cucumber');
var isGenerator = require('is-generator');
var Promise = require('bluebird');
setDefinitionFunctionWrapper(function (fn) {
if (isGenerator.fn(fn)) {
return Promise.coroutine(fn);
} else {
return fn;
}
});
Each interface has its own way of marking a step as pending
- synchronous - return
'pending'
- asynchronous callback - execute the callback with
null, 'pending'
- asynchronous promise - promise resolves to
'pending'
Marking a step as skipped will also mark the proceeding steps of the same scenario as skipped.
This can be used to mark a scenario as skipped based on a runtime condition.
Each interface has its own way of marking a step as skipped
- synchronous - return
'skipped'
- asynchronous callback - execute the callback with
null, 'skipped'
- asynchronous promise - promise resolves to
'skipped'