SlideShare a Scribd company logo
1 of 32
Download to read offline
BEHAVIOURTESTING FOR SINGLE-PAGE
APPLICATIONS AND API’S
Andrew Kirkpatrick, ExploreTechTO August 2017
BEHAVIOURTESTING FOR
SINGLE-PAGE APPLICATIONS
AND API’S
WHO AM I?
• Long-time PHP developer
• Spent most of my career
in London, England
• Focus on BDD and DDD
• This talk is a combination
of various things I’ve
learnt or been taught
about testing
WHAT WE’LL COVER
• How testing the web has evolved
• Divide of front-end and back-end codebases
and how this affects end-to-end testing
• Why Behaviour Driven Development?
• How you can implement this on your codebases
TESTINGTHE WEB
(MID 2000S)
• Static HTML pages
• Test that certain
content appears in the
DOM where you’d
expect
• Functional testing is
relatively easy (call a
URI, check the HTML)
TESTINGTHE WEB
(LATE 2000S)
• Web 2.0, dynamic
changes to the DOM
• Tools such as Selenium
use real browsers to
test JS DOM
manipulation
• Front-end still rendered
by the back-end
SELENIUM
• Remote control web browsers, create
repeatable tests
• Tests often created separately from
development
• Often run manually, originally difficult to run
during build process
TESTINGTHE WEB
(EARLY 2010S)
• Single-page JavaScript
applications
• Front-end often becomes
separated from the back-
end
• Communication moves
from XHR calls to
dedicated REST API(s)
TESTINGTHE WEB
(PRESENT DAY)
• Multiple applications
running on multiple
servers/containers
• Popularity of (Micro)
Service-Oriented
Architecture
• Testing SOA easier in
isolation, but more
complex end-to-end
WHY DIDTHEY BREAK IT
AGAIN?
• Assumptions as to what
constitutes “backwards-
compatible”
• 100% code coverage does
not mean they will work
together
• Need an easy and
automated way to test
end-to-end
TEST SUITE COMPLEXITY
• Front-end and back-end test suites become very
specialised, focus on unit and integration testing
• Functional (end-to-end) testing still often run
manually, could testing the critical path be automated?
• How to write tests that business stakeholders can
understand?
TYPICAL UNITTESTS
Would any of your stakeholders understand what feature
this proves is working?
MORE UNITTESTS
Multiple languages often equals more tests that are difficult
to read for those not familiar
BEHAVIOUR DRIVEN
DEVELOPMENT
“I kept coming across the same confusion and
misunderstandings. Programmers wanted to know
where to start, what to test and what not to test,
how much to test in one go, what to call their tests,
and how to understand why a test fails.”
Dan North 2006
WHAT IS BEHAVIOUR DRIVEN
DEVELOPMENT?
“The use of BDD requires no
particular tools or
programming languages, and is
primarily a conceptual
approach; to make it a purely
technical practice or one that
hinges on specific tooling
would be to miss the point
altogether”
Agile Alliance
GHERKIN
Business Readable, Domain Specific Language that lets you describe
software’s behaviour without detailing how that behaviour is implemented.
WHY IS BDD IMPORTANT?
• Ubiquitous language to describe business concepts
(same terminology)
• Use BDD scenarios to control test automation
(e.g. Selenium)
• Feature and the automation to test it should be
abstracted
SAME SCENARIOS,
DIFFERENT CONTEXTS
• Features are not front-end
or back-end specific
• Different automation to test
each part that powers the
feature
• How to control both
HTML/JS and REST API
testing?
BEHAT FOR PHP
• “Behat is the official Cucumber implementation
for PHP”
• “Behat shares a lot with Cucumber and the
philosophies are one and the same”
• Test runner for Gherkin .feature files
DEMO
• Repository with 3 containers (front-end, back-end
and test runner)
• Run the BDD tests from one container against the
other 2
• What if the tests fail?
EXAMPLE CI PIPELINE
Trigger end-to-end behavioural tests after successful front-
end or back-end builds
BDD FRAMEWORKS
• Behat for PHP (behat.org)
• Cucumber-Rails for Ruby

(cucumber.io/docs/reference/rails)
• Behave for Python (behave.readthedocs.io)
• JBehave for Java (jbehave.org)
• SpecFlow for .NET (specflow.org)
CAVEATS
• This is only one of many, many ways to solve the
problems of complex multi-application testing
• This is not a replacement for thorough unit
testing nor integration testing
• End-to-end testing is expensive (time) so only
test the critical path
LINKS
• Test automation pyramid (www.mountaingoatsoftware.com/blog/the-
forgotten-layer-of-the-test-automation-pyramid)
• Gherkin language (github.com/cucumber/cucumber/wiki/Gherkin)
• Where you should use BDD (cucumber.io/blog/2016/07/20/
where_should_you_use_bdd)
• Configuring suites with different contexts (behat.org/en/latest/user_guide/
configuration/suites.html)
• Using BDD to test API’s (speakerdeck.com/caseysoftware/is-your-api-
misbehaving-workshop)
SUMMARY
• Business-Readable scenarios of the features you
want to test
• Testing via different contexts including end-to-end
• Can be created and maintained by any team
SLIDES AND CODE
• github.com/magickatt/
MultiContextBDDTalk
• hub.docker.com/r/magickatt/
behat-mink
• www.slideshare.net/magickatt/
behaviour-testing-for-
singlepage-applications-and-apis
• twitter.com/magickatt
• Any questions?

More Related Content

What's hot

Testing Your Code as Part of an Industrial Grade Workflow
Testing Your Code as Part of an Industrial Grade WorkflowTesting Your Code as Part of an Industrial Grade Workflow
Testing Your Code as Part of an Industrial Grade Workflow
Pantheon
 
Build software like a bag of marbles, not a castle of LEGO®
Build software like a bag of marbles, not a castle of LEGO®Build software like a bag of marbles, not a castle of LEGO®
Build software like a bag of marbles, not a castle of LEGO®
Hannes Lowette
 

What's hot (20)

Organizing Your PHP Projects (2010 ConFoo)
Organizing Your PHP Projects (2010 ConFoo)Organizing Your PHP Projects (2010 ConFoo)
Organizing Your PHP Projects (2010 ConFoo)
 
CLA Summit 2013: Connecting LabVIEW to Everything Else
CLA Summit 2013: Connecting LabVIEW to Everything ElseCLA Summit 2013: Connecting LabVIEW to Everything Else
CLA Summit 2013: Connecting LabVIEW to Everything Else
 
Trunk-Based Development and Toggling
Trunk-Based Development and TogglingTrunk-Based Development and Toggling
Trunk-Based Development and Toggling
 
ColdBox Hierarchical MVC - Transform Your Monolith
ColdBox Hierarchical MVC - Transform Your MonolithColdBox Hierarchical MVC - Transform Your Monolith
ColdBox Hierarchical MVC - Transform Your Monolith
 
Developing PHP Applications Faster
Developing PHP Applications FasterDeveloping PHP Applications Faster
Developing PHP Applications Faster
 
Jenkins Pipeline Tutorial | Continuous Delivery Pipeline Using Jenkins | DevO...
Jenkins Pipeline Tutorial | Continuous Delivery Pipeline Using Jenkins | DevO...Jenkins Pipeline Tutorial | Continuous Delivery Pipeline Using Jenkins | DevO...
Jenkins Pipeline Tutorial | Continuous Delivery Pipeline Using Jenkins | DevO...
 
The Continuous PHP Pipeline
The Continuous PHP PipelineThe Continuous PHP Pipeline
The Continuous PHP Pipeline
 
DevQA: make your testers happier with Groovy, Spock and Geb (Greach 2014)
DevQA: make your testers happier with Groovy, Spock and Geb (Greach 2014)DevQA: make your testers happier with Groovy, Spock and Geb (Greach 2014)
DevQA: make your testers happier with Groovy, Spock and Geb (Greach 2014)
 
Trunk Based Development in the Enterprise - Its Relevance and Economics
Trunk Based Development in the Enterprise - Its Relevance and EconomicsTrunk Based Development in the Enterprise - Its Relevance and Economics
Trunk Based Development in the Enterprise - Its Relevance and Economics
 
How To Use Selenium Successfully (Java Edition)
How To Use Selenium Successfully (Java Edition)How To Use Selenium Successfully (Java Edition)
How To Use Selenium Successfully (Java Edition)
 
Advanced Appium
Advanced AppiumAdvanced Appium
Advanced Appium
 
A Personal Journey
A Personal JourneyA Personal Journey
A Personal Journey
 
Visual Regression Testing: In search of an Ember solution
Visual Regression Testing: In search of an Ember solutionVisual Regression Testing: In search of an Ember solution
Visual Regression Testing: In search of an Ember solution
 
Testing Your Code as Part of an Industrial Grade Workflow
Testing Your Code as Part of an Industrial Grade WorkflowTesting Your Code as Part of an Industrial Grade Workflow
Testing Your Code as Part of an Industrial Grade Workflow
 
Trunk based development
Trunk based developmentTrunk based development
Trunk based development
 
Cucumber jvm best practices v3
Cucumber jvm best practices v3Cucumber jvm best practices v3
Cucumber jvm best practices v3
 
Build software like a bag of marbles, not a castle of LEGO®
Build software like a bag of marbles, not a castle of LEGO®Build software like a bag of marbles, not a castle of LEGO®
Build software like a bag of marbles, not a castle of LEGO®
 
vodQA Pune (2019) - Jenkins pipeline As code
vodQA Pune (2019) - Jenkins pipeline As codevodQA Pune (2019) - Jenkins pipeline As code
vodQA Pune (2019) - Jenkins pipeline As code
 
Migration tales from java ee 5 to 7
Migration tales from java ee 5 to 7Migration tales from java ee 5 to 7
Migration tales from java ee 5 to 7
 
Java Restart with WebFX
Java Restart with WebFX Java Restart with WebFX
Java Restart with WebFX
 

Similar to Behaviour testing for single-page applications and API’s

Continuous Integration In A PHP World
Continuous Integration In A PHP WorldContinuous Integration In A PHP World
Continuous Integration In A PHP World
Idaf_1er
 

Similar to Behaviour testing for single-page applications and API’s (20)

Tools for Software Testing
Tools for Software TestingTools for Software Testing
Tools for Software Testing
 
Using BladeRunnerJS to Build Front-End Apps that Scale - Fluent 2014
Using BladeRunnerJS to Build Front-End Apps that Scale - Fluent 2014Using BladeRunnerJS to Build Front-End Apps that Scale - Fluent 2014
Using BladeRunnerJS to Build Front-End Apps that Scale - Fluent 2014
 
Unit Testing in JavaScript
Unit Testing in JavaScriptUnit Testing in JavaScript
Unit Testing in JavaScript
 
Introduction to Unit Tests and TDD
Introduction to Unit Tests and TDDIntroduction to Unit Tests and TDD
Introduction to Unit Tests and TDD
 
10 Useful Testing Tools for Open Source Projects @ TuxCon 2015
10 Useful Testing Tools for Open Source Projects @ TuxCon 201510 Useful Testing Tools for Open Source Projects @ TuxCon 2015
10 Useful Testing Tools for Open Source Projects @ TuxCon 2015
 
Codeception: introduction to php testing
Codeception: introduction to php testingCodeception: introduction to php testing
Codeception: introduction to php testing
 
Continuous Integration In A PHP World
Continuous Integration In A PHP WorldContinuous Integration In A PHP World
Continuous Integration In A PHP World
 
4&5.pptx SOFTWARE TESTING UNIT-4 AND UNIT-5
4&5.pptx SOFTWARE TESTING UNIT-4 AND UNIT-54&5.pptx SOFTWARE TESTING UNIT-4 AND UNIT-5
4&5.pptx SOFTWARE TESTING UNIT-4 AND UNIT-5
 
Software Engineering - Trends & Industry Practices
Software Engineering - Trends & Industry PracticesSoftware Engineering - Trends & Industry Practices
Software Engineering - Trends & Industry Practices
 
Lean-Agile Development with SharePoint - Bill Ayers
Lean-Agile Development with SharePoint - Bill AyersLean-Agile Development with SharePoint - Bill Ayers
Lean-Agile Development with SharePoint - Bill Ayers
 
How To Use Selenium Successfully
How To Use Selenium SuccessfullyHow To Use Selenium Successfully
How To Use Selenium Successfully
 
Autoframework design
Autoframework designAutoframework design
Autoframework design
 
Writing Well Abstracted Automation on Foundations of Jello
Writing Well Abstracted Automation on Foundations of JelloWriting Well Abstracted Automation on Foundations of Jello
Writing Well Abstracted Automation on Foundations of Jello
 
#ESPC18 How to do #devops with the #SharePoint Framework and why it matters?
#ESPC18 How to do #devops with the #SharePoint Framework and why it matters?#ESPC18 How to do #devops with the #SharePoint Framework and why it matters?
#ESPC18 How to do #devops with the #SharePoint Framework and why it matters?
 
Codeception: introduction to php testing (v2 - Aberdeen php)
Codeception: introduction to php testing (v2 - Aberdeen php)Codeception: introduction to php testing (v2 - Aberdeen php)
Codeception: introduction to php testing (v2 - Aberdeen php)
 
Wilko Nienhaus - continuous delivery release the right thing, done right, at ...
Wilko Nienhaus - continuous delivery release the right thing, done right, at ...Wilko Nienhaus - continuous delivery release the right thing, done right, at ...
Wilko Nienhaus - continuous delivery release the right thing, done right, at ...
 
Microsoft power point automation-opensourcetestingtools_matrix-1
Microsoft power point   automation-opensourcetestingtools_matrix-1Microsoft power point   automation-opensourcetestingtools_matrix-1
Microsoft power point automation-opensourcetestingtools_matrix-1
 
Microsoft power point automation-opensourcetestingtools_matrix-1
Microsoft power point   automation-opensourcetestingtools_matrix-1Microsoft power point   automation-opensourcetestingtools_matrix-1
Microsoft power point automation-opensourcetestingtools_matrix-1
 
TDD and BDD in Sky Deutschland
TDD and BDD in Sky DeutschlandTDD and BDD in Sky Deutschland
TDD and BDD in Sky Deutschland
 
Dev/Test scenarios in DevOps world
Dev/Test scenarios in DevOps worldDev/Test scenarios in DevOps world
Dev/Test scenarios in DevOps world
 

Recently uploaded

在线制作约克大学毕业证(yu毕业证)在读证明认证可查
在线制作约克大学毕业证(yu毕业证)在读证明认证可查在线制作约克大学毕业证(yu毕业证)在读证明认证可查
在线制作约克大学毕业证(yu毕业证)在读证明认证可查
ydyuyu
 
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
nilamkumrai
 
💚😋 Bilaspur Escort Service Call Girls, 9352852248 ₹5000 To 25K With AC💚😋
💚😋 Bilaspur Escort Service Call Girls, 9352852248 ₹5000 To 25K With AC💚😋💚😋 Bilaspur Escort Service Call Girls, 9352852248 ₹5000 To 25K With AC💚😋
💚😋 Bilaspur Escort Service Call Girls, 9352852248 ₹5000 To 25K With AC💚😋
nirzagarg
 
valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
Call Girls In Delhi Whatsup 9873940964 Enjoy Unlimited Pleasure
 
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
@Chandigarh #call #Girls 9053900678 @Call #Girls in @Punjab 9053900678
 

Recently uploaded (20)

Pune Airport ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready...
Pune Airport ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready...Pune Airport ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready...
Pune Airport ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready...
 
APNIC Updates presented by Paul Wilson at ARIN 53
APNIC Updates presented by Paul Wilson at ARIN 53APNIC Updates presented by Paul Wilson at ARIN 53
APNIC Updates presented by Paul Wilson at ARIN 53
 
在线制作约克大学毕业证(yu毕业证)在读证明认证可查
在线制作约克大学毕业证(yu毕业证)在读证明认证可查在线制作约克大学毕业证(yu毕业证)在读证明认证可查
在线制作约克大学毕业证(yu毕业证)在读证明认证可查
 
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
 
Al Barsha Night Partner +0567686026 Call Girls Dubai
Al Barsha Night Partner +0567686026 Call Girls  DubaiAl Barsha Night Partner +0567686026 Call Girls  Dubai
Al Barsha Night Partner +0567686026 Call Girls Dubai
 
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort Service
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort ServiceBusty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort Service
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort Service
 
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
 
Nanded City ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready ...
Nanded City ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready ...Nanded City ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready ...
Nanded City ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready ...
 
Trump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts SweatshirtTrump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts Sweatshirt
 
💚😋 Bilaspur Escort Service Call Girls, 9352852248 ₹5000 To 25K With AC💚😋
💚😋 Bilaspur Escort Service Call Girls, 9352852248 ₹5000 To 25K With AC💚😋💚😋 Bilaspur Escort Service Call Girls, 9352852248 ₹5000 To 25K With AC💚😋
💚😋 Bilaspur Escort Service Call Girls, 9352852248 ₹5000 To 25K With AC💚😋
 
20240508 QFM014 Elixir Reading List April 2024.pdf
20240508 QFM014 Elixir Reading List April 2024.pdf20240508 QFM014 Elixir Reading List April 2024.pdf
20240508 QFM014 Elixir Reading List April 2024.pdf
 
(+971568250507 ))# Young Call Girls in Ajman By Pakistani Call Girls in ...
(+971568250507  ))#  Young Call Girls  in Ajman  By Pakistani Call Girls  in ...(+971568250507  ))#  Young Call Girls  in Ajman  By Pakistani Call Girls  in ...
(+971568250507 ))# Young Call Girls in Ajman By Pakistani Call Girls in ...
 
valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
 
Real Escorts in Al Nahda +971524965298 Dubai Escorts Service
Real Escorts in Al Nahda +971524965298 Dubai Escorts ServiceReal Escorts in Al Nahda +971524965298 Dubai Escorts Service
Real Escorts in Al Nahda +971524965298 Dubai Escorts Service
 
Microsoft Azure Arc Customer Deck Microsoft
Microsoft Azure Arc Customer Deck MicrosoftMicrosoft Azure Arc Customer Deck Microsoft
Microsoft Azure Arc Customer Deck Microsoft
 
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service AvailableCall Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
 
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
 
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
 
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
 

Behaviour testing for single-page applications and API’s

  • 1. BEHAVIOURTESTING FOR SINGLE-PAGE APPLICATIONS AND API’S Andrew Kirkpatrick, ExploreTechTO August 2017
  • 3. WHO AM I? • Long-time PHP developer • Spent most of my career in London, England • Focus on BDD and DDD • This talk is a combination of various things I’ve learnt or been taught about testing
  • 4. WHAT WE’LL COVER • How testing the web has evolved • Divide of front-end and back-end codebases and how this affects end-to-end testing • Why Behaviour Driven Development? • How you can implement this on your codebases
  • 5. TESTINGTHE WEB (MID 2000S) • Static HTML pages • Test that certain content appears in the DOM where you’d expect • Functional testing is relatively easy (call a URI, check the HTML)
  • 6. TESTINGTHE WEB (LATE 2000S) • Web 2.0, dynamic changes to the DOM • Tools such as Selenium use real browsers to test JS DOM manipulation • Front-end still rendered by the back-end
  • 7. SELENIUM • Remote control web browsers, create repeatable tests • Tests often created separately from development • Often run manually, originally difficult to run during build process
  • 8. TESTINGTHE WEB (EARLY 2010S) • Single-page JavaScript applications • Front-end often becomes separated from the back- end • Communication moves from XHR calls to dedicated REST API(s)
  • 9. TESTINGTHE WEB (PRESENT DAY) • Multiple applications running on multiple servers/containers • Popularity of (Micro) Service-Oriented Architecture • Testing SOA easier in isolation, but more complex end-to-end
  • 10. WHY DIDTHEY BREAK IT AGAIN? • Assumptions as to what constitutes “backwards- compatible” • 100% code coverage does not mean they will work together • Need an easy and automated way to test end-to-end
  • 11. TEST SUITE COMPLEXITY • Front-end and back-end test suites become very specialised, focus on unit and integration testing • Functional (end-to-end) testing still often run manually, could testing the critical path be automated? • How to write tests that business stakeholders can understand?
  • 12. TYPICAL UNITTESTS Would any of your stakeholders understand what feature this proves is working?
  • 13. MORE UNITTESTS Multiple languages often equals more tests that are difficult to read for those not familiar
  • 14. BEHAVIOUR DRIVEN DEVELOPMENT “I kept coming across the same confusion and misunderstandings. Programmers wanted to know where to start, what to test and what not to test, how much to test in one go, what to call their tests, and how to understand why a test fails.” Dan North 2006
  • 15. WHAT IS BEHAVIOUR DRIVEN DEVELOPMENT? “The use of BDD requires no particular tools or programming languages, and is primarily a conceptual approach; to make it a purely technical practice or one that hinges on specific tooling would be to miss the point altogether” Agile Alliance
  • 16. GHERKIN Business Readable, Domain Specific Language that lets you describe software’s behaviour without detailing how that behaviour is implemented.
  • 17. WHY IS BDD IMPORTANT? • Ubiquitous language to describe business concepts (same terminology) • Use BDD scenarios to control test automation (e.g. Selenium) • Feature and the automation to test it should be abstracted
  • 18. SAME SCENARIOS, DIFFERENT CONTEXTS • Features are not front-end or back-end specific • Different automation to test each part that powers the feature • How to control both HTML/JS and REST API testing?
  • 19. BEHAT FOR PHP • “Behat is the official Cucumber implementation for PHP” • “Behat shares a lot with Cucumber and the philosophies are one and the same” • Test runner for Gherkin .feature files
  • 20. DEMO • Repository with 3 containers (front-end, back-end and test runner) • Run the BDD tests from one container against the other 2 • What if the tests fail?
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26.
  • 27. EXAMPLE CI PIPELINE Trigger end-to-end behavioural tests after successful front- end or back-end builds
  • 28. BDD FRAMEWORKS • Behat for PHP (behat.org) • Cucumber-Rails for Ruby
 (cucumber.io/docs/reference/rails) • Behave for Python (behave.readthedocs.io) • JBehave for Java (jbehave.org) • SpecFlow for .NET (specflow.org)
  • 29. CAVEATS • This is only one of many, many ways to solve the problems of complex multi-application testing • This is not a replacement for thorough unit testing nor integration testing • End-to-end testing is expensive (time) so only test the critical path
  • 30. LINKS • Test automation pyramid (www.mountaingoatsoftware.com/blog/the- forgotten-layer-of-the-test-automation-pyramid) • Gherkin language (github.com/cucumber/cucumber/wiki/Gherkin) • Where you should use BDD (cucumber.io/blog/2016/07/20/ where_should_you_use_bdd) • Configuring suites with different contexts (behat.org/en/latest/user_guide/ configuration/suites.html) • Using BDD to test API’s (speakerdeck.com/caseysoftware/is-your-api- misbehaving-workshop)
  • 31. SUMMARY • Business-Readable scenarios of the features you want to test • Testing via different contexts including end-to-end • Can be created and maintained by any team
  • 32. SLIDES AND CODE • github.com/magickatt/ MultiContextBDDTalk • hub.docker.com/r/magickatt/ behat-mink • www.slideshare.net/magickatt/ behaviour-testing-for- singlepage-applications-and-apis • twitter.com/magickatt • Any questions?