Skip to content

Commit c87b6dc

Browse files
authored
feat: add pickleStep to step hook function arg (#1775)
* add to interface * implement * update api ref * update changelgo * add test
1 parent 68b0387 commit c87b6dc

File tree

5 files changed

+32
-5
lines changed

5 files changed

+32
-5
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ See the [migration guide](./docs/migration.md) for details of how to migrate fro
1919

2020
### Added
2121

22+
* `BeforeStep` and `AfterStep` hook functions now have access to the `pickleStep` in their argument object.
2223
* `--config` option to the CLI. It allows you to specify a configuration file other than `cucumber.js`.
2324
See [docs/profiles.md](./docs/profiles.md#using-another-file-than-cucumberjs) for more info.
2425
[#1794](https://github.com/cucumber/cucumber-js/pull/1794)

docs/support_files/api_reference.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,9 @@ Defines a hook which is run after each step.
6969
* `tags`: String tag expression used to apply this hook to only specific scenarios. See [cucumber-tag-expressions](https://docs.cucumber.io/tag-expressions/) for more information.
7070
* `timeout`: A hook-specific timeout, to override the default timeout.
7171
* `fn`: A function, defined as follows:
72-
* The first argument will be an object of the form `{pickle, gherkinDocument, result, testCaseStartedId, testStepId}`
73-
* The pickle object comes from the [gherkin](https://github.com/cucumber/cucumber/tree/gherkin/v15.0.2/gherkin) library. See `testdata/good/*.pickles.ndjson` for examples of its structure.
72+
* The first argument will be an object of the form `{pickle, pickleStep, gherkinDocument, result, testCaseStartedId, testStepId}`
73+
* The `pickle` object comes from the [gherkin](https://github.com/cucumber/cucumber/tree/gherkin/v15.0.2/gherkin) library. See `testdata/good/*.pickles.ndjson` for examples of its structure.
74+
* The `pickleStep` is the step in the `pickle` that this hook has been invoked for
7475
* When using the asynchronous callback interface, have one final argument for the callback function.
7576

7677
`options` can also be a string as a shorthand for specifying `tags`.

src/runtime/test_case_runner.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -248,12 +248,14 @@ export default class TestCaseRunner {
248248

249249
async runStepHooks(
250250
stepHooks: TestStepHookDefinition[],
251+
pickleStep: messages.PickleStep,
251252
stepResult?: messages.TestStepResult
252253
): Promise<messages.TestStepResult[]> {
253254
const stepHooksResult = []
254255
const hookParameter: ITestStepHookParameter = {
255256
gherkinDocument: this.gherkinDocument,
256257
pickle: this.pickle,
258+
pickleStep,
257259
testCaseStartedId: this.currentTestCaseStartedId,
258260
testStepId: this.currentTestStepId,
259261
result: stepResult,
@@ -295,7 +297,8 @@ export default class TestCaseRunner {
295297

296298
let stepResult
297299
let stepResults = await this.runStepHooks(
298-
this.getBeforeStepHookDefinitions()
300+
this.getBeforeStepHookDefinitions(),
301+
pickleStep
299302
)
300303
if (
301304
getWorstTestStepResult(stepResults).status !==
@@ -306,6 +309,7 @@ export default class TestCaseRunner {
306309
}
307310
const afterStepHookResults = await this.runStepHooks(
308311
this.getAfterStepHookDefinitions(),
312+
pickleStep,
309313
stepResult
310314
)
311315
stepResults = stepResults.concat(afterStepHookResults)

src/runtime/test_case_runner_spec.ts

+22-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { afterEach, beforeEach, describe, it } from 'mocha'
22
import { expect } from 'chai'
3+
import sinon from 'sinon'
34
import TestCaseRunner from './test_case_runner'
45
import { EventEmitter } from 'events'
56
import { IdGenerator } from '@cucumber/messages'
@@ -434,14 +435,17 @@ describe('TestCaseRunner', () => {
434435

435436
describe('with step hooks', () => {
436437
it('emits the expected envelopes and returns a skipped result', async () => {
438+
const beforeStep = sinon.stub()
439+
const afterStep = sinon.stub()
440+
437441
// Arrange
438442
const supportCodeLibrary = buildSupportCodeLibrary(
439443
({ Given, BeforeStep, AfterStep }) => {
440444
Given('a step', function () {
441445
clock.tick(1)
442446
})
443-
BeforeStep(function () {}) // eslint-disable-line @typescript-eslint/no-empty-function
444-
AfterStep(function () {}) // eslint-disable-line @typescript-eslint/no-empty-function
447+
BeforeStep(beforeStep) // eslint-disable-line @typescript-eslint/no-empty-function
448+
AfterStep(afterStep) // eslint-disable-line @typescript-eslint/no-empty-function
445449
}
446450
)
447451
const {
@@ -464,6 +468,22 @@ describe('TestCaseRunner', () => {
464468
expect(result).to.eql(
465469
envelopes[2].testStepFinished.testStepResult.status
466470
)
471+
expect(beforeStep).to.have.been.calledOnceWith({
472+
gherkinDocument,
473+
pickle,
474+
pickleStep: pickle.steps[0],
475+
testCaseStartedId: envelopes[1].testStepStarted.testCaseStartedId,
476+
testStepId: envelopes[1].testStepStarted.testStepId,
477+
result: undefined,
478+
})
479+
expect(afterStep).to.have.been.calledOnceWith({
480+
gherkinDocument,
481+
pickle,
482+
pickleStep: pickle.steps[0],
483+
testCaseStartedId: envelopes[2].testStepFinished.testCaseStartedId,
484+
testStepId: envelopes[2].testStepFinished.testStepId,
485+
result: envelopes[2].testStepFinished.testStepResult,
486+
})
467487
})
468488
})
469489
})

src/support_code_library_builder/types.ts

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ export interface ITestCaseHookParameter {
1818
export interface ITestStepHookParameter {
1919
gherkinDocument: messages.GherkinDocument
2020
pickle: messages.Pickle
21+
pickleStep: messages.PickleStep
2122
result: messages.TestStepResult
2223
testCaseStartedId: string
2324
testStepId: string

0 commit comments

Comments
 (0)