Smart BDD is the most productive way to implement Behaviour Driven Development. Traditional frameworks have you write the static feature files first, then implement code.
With Smart BDD you write the code first using best practices and this generates:
- Interactive feature files that serve as documentation
- UML diagrams to better document the product
- A button to re-run the test
- UI that allows you to change the parameters of the test
public class GetBookTest extends BaseBookStoreTest {
@Override
public void doc() {
featureNotes("Working progress for example of usage Smart BDD");
}
@Test
public void getBookByIsbnUsingDefaults() {
when(aUserRequestsABook());
then(theResponseContains(aDefaultIsbnBook()));
}
@Test
public void getBookByIsbnShowingAllDefaultValues() {
given(theIsbnDbContains().anEntry(
forAnIsbn("default-isbn")
.thatWillReturn(anIsbnBook()
.withIsbn("default-isbn")
.withTitle("default-title")
.withAuthor("default-author"))));
when(aUserRequestsABook().withIsbn("default-isbn"));
then(theResponseContains(anIsbnBook()
.withIsbn("default-isbn")
.withTitle("default-title")
.withAuthors(singletonList("default-author"))));
}
}
when(aUserRequestsABook());
tokenised to when a user requests a book
. It gives you the freedom to write tests in the
way you want. There's a simple api to add notes, capture inputs and output, create uml diagrams etc... It uses JUnit5 to
be powerful and extensible, it even facilities re-running tests.
The advantages may or may not be obvious, you get to write code that is best suited to test the functionally of your product and or service. As a bonus you get better documentation and a demo app.
So what is wrong with existing approach? Far form doing the above, you write a feature file in plain text, then write code that is corrupted by the feature file. This is additional complexity and will most likely result in:
- Badly written code
- Which leads to diminishing returns
- Which can and often leads to a glass ceiling
- Which too often results rewriting the testing framework
Yes a small and simple Cucumber, Concordion, JBehave etc... project is simple, the same can be said about most frameworks and projects. So the argument for Smart BDD is best made with real world projects.
- Create html documentation / feature files from Java code (as above)
- Capture downstream interactions and show with diagrams
- Capture downstream data such as HTTP request/response headers and body
- More consistent as builders are used to set state and exercise the system under test
- More productive as you are encouraged to use best practices and don't have the complexities of traditional glue layers
The projects aim is to:
- Improve the quality and usefulness of the documentation
- Improve the confidence and coverage of the tests
- Improve the performance of the tests
- Improve the productivity of writing and maintaining the tests
- Ability to re-run tests
- Ability to modify the state under test, for example a textbox or a dropdown to modify values
- Steps wrapped in actions:
- So that they can be executed asynchronously to improve performance
- Validate correctness of the scenario by adding/removing and or mutating steps and asserting the expected state and or behavior.
- Define the data and behaviour JSON documents and generate the builders
- The above declarative JSON could also be used to generate a demo application
- Results can be persisted so that previous test results can be queried
Please see example:bookstore
and example:cucumbers
. Run GetBookTest
and or EatCucumbersTest
. You'll see in the
console there is a link to the generated html and json files.
- Import the
report
projecttestImplementation("io.bit-smart.bdd:report:0.2-SNAPSHOT")
or locally withing this repotestImplementation(project(":report"))
- Add
@ExtendWith(SmartReport.class)
to any class that you want to generate a report from.
@ExtendWith(SmartReport.class)
public class GetBookTest {
@Test
public void getBook() {
whenGetBookIsCalled();
thenTheBookIsReturned();
}
}
Will produce the following step defs:
When get book is called
Then the book is returned
void givenOneRedAndOneBlueCucumber_whenIEatOneRed_IhaveOneBlueCucumberLeft(){
given(iHave(aCucumber().withColour("red"),andACucumber().withColour("blue")));
when(iRequestToEatCucumbers().withColour("red"));
then(iShouldHaveCucumbers().withquantity(1));
}
Will produce the following step defs:
Given I have a cucumber with colour "red" and a cucumber with colour "blue"
When I request to eat cucumbers with colour "red"
Then I should have cucumbers with quantity 1 with colour "blue"
project name | package | description | notes |
---|---|---|---|
root | io.bitsmart.bdd | root for repo | |
report | io.bitsmart.bdd.report | reporting extension @SmartReport and report creation (.html and .json) |
|
wordify | io.bitsmart.bdd.wordify | wordify java code | |
ft | io.bitsmart.bdd.ft | FT for the report generation | |
test-utils | io.bitsmart.bdd.report.utils | testing utils such as builder | only the builders at the moment |
examples | n/a | examples of using Smart BDD |
Notes on naming:
@SmartReport
or is@SmartBdd
a better annotation?- Current group name
io.bit-smart.bdd
as everything is BDD orientated. Usingio.bit-smart.bdd
implies new group names likeio.bit-smart.nft
for performance testing artifacts.
./gradlew test
Create report, wordify, test-utils
./gradlew publishToMavenLocal
To check the jar was created in maven local
ls -la ~/.m2/repository/io/bit-smart/bdd/report/0.1-SNAPSHOT
Then use the following in your app
testImplementation("io.bit-smart.bdd:report:0.1-SNAPSHOT")
The fundamental approach is in stark contrast to existing frameworks: Cucumber, JBehave, Concordion etc...
Traditionally BDD frameworks have approximately four layers:
- Feature file / specification / UI:
- A feature is a text description of a feature that consists of scenarios and are made up of steps
- This is the first thing that is writen and leads the design for the following.
- The glue layer:
- Matches Java method for that step and the corresponding arguments. Usually a regular expression.
- Orchestration of the actual FT framework:
- A Java method has been supplied data from the glue layer. You'll need to orchestrate your actual FT framework to actually do any testing.
- You may have more data than you require - in non-trivial steps you have to chose code re-use or code duplication. Opting for code reuse makes glue layer and down more complex.
- You may have a different domain and or bounded context for the feature file and the actual FT framework domain. This means adapting/transforming the data for the FT framework.
- The actual FT framework:
- This usually would have the following functionality:
- Set state before and after tests.
- Exercise the thing under test.
- Store state so that you assert on expected behaviour.
- State and behaviour verification.
- This has been designed to accommodate additional complexities from above.
- This usually would have the following functionality:
Adding new data, steps and or features is not linear because of the following:
- Complexity
- Coupling to between layers
- Limitations in the glue layer
- Forcing step definitions to be constructed in a certain way. Possibly not the way you planned and or wanted.
- Forcing refactoring when you alter steps definitions
These 3 forces can unfortunately can compound each other. Complexity and coupling should be kept to a minimum not part of the solution. Layers 1-3 exist so that we can have feature files, these serve as static documentation for the system. There are no guaranties that the documentation is consistent, in fact there isn't anything enforcing it.
The alternative to this is generating dynamic, consistent documentation. With Smart BDD you leg up on developing the
actual FT framework, so you can focus on testing your application. You add @SmartReport
annotation to your class, this
will generate a report. There is a wordify
process that takes the Java code and converts it in English sentences. For
example givenSomething()
would produce given something
. There is a strong emphasis on using builders therefore
forcing you to create a fluent API.
The wordify
process isn't finished, you can't simply get rid of complexity and coupling, but it's the gaol of this
project to reduce both of them.
With thanks to https://github.com/bodar/yatspec who did a similar project that worked with JUnit 4.
I'm looking for more real world usages, I've love help anyone write new tests and or migrate legacy tests to this framework. If you're interested please contact me - see https://github.com/jrbayliss for my contact details.