SlideShare ist ein Scribd-Unternehmen logo
1 von 69
Downloaden Sie, um offline zu lesen
Modelling by Example
Ciaran McNulty at PHPNW 2016
Modelling by Example
BDD + DDD
BDD fundamentals
Behaviour Driven Development
BDD is the art of using examples in
conversa6ons to illustrate behaviour
— Liz Keogh
➡ Input
⬅ Output
➡ Action
⬅ Reaction
➡➡ Actions
➡ Action
⬅ Reaction
Given ➡➡
When ➡
Then ⬅
Given I bought a microwave for £10
When I return the microwave
Then I should be refunded £10
Who writes examples?
Business expert
Tes(ng expert
Development expert
All discussing the feature together
When to write scenarios
• Before you start work on the feature
• Not too long before!
• Whenever you have access to the right people
Refining scenarios
When would this outcome not be true?
Given I bought a microwave for £10
When I return the microwave
Then I should be refunded £10
When would this outcome not be true?
Given I bought a microwave for £10
When I return the microwave with a valid receipt
Then I should be refunded £10
When would this outcome not be true?
Given I bought a microwave for £10
When I return the microwave with a valid receipt
Then I should be refunded £10
Given I bought a microwave for £10
When I try to return the microwave without a valid receipt
Then I should be refunded £10 store credit
What other outcomes are there?
Given I bought a microwave for £10
When I return the microwave with a valid receipt
Then I should be refunded £10
What other outcomes are there?
Given I bought a microwave for £10
When I return the microwave with a valid receipt
Then I should be refunded £10
And the microwave should be returned to stock
When would this outcome not be true?
Given I bought a microwave for £10
When I return the microwave with a valid receipt
Then I should be refunded £10
And the microwave should be returned to stock
When would this outcome not be true?
Given I bought a microwave for £10
When I return the microwave with a valid receipt
And the microwave is not damaged
Then I should be refunded £10
And the microwave should be returned to stock
When would this outcome not be true?
Given I bought a microwave for £10
When I return the microwave with a valid receipt
And the microwave is not damaged
Then I should be refunded £10
And the microwave should be returned to stock
Given I bought a microwave for £10
When I return the microwave with a valid receipt
And the microwave is damaged
Then I should not be refunded
And the microwave should not be returned to stock
Does this implementa)on detail ma+er?
When I go to '/returns'
And I fill in 'form#returns input.product' field with 'microwave'
And hit the 'refund' bu>on
Does this implementa)on detail ma+er?
When I fill in the returns form with the details of the microwave
Does this implementa)on detail ma+er?
When I return the microwave through the website
Does this implementa)on detail ma+er?
When I return the microwave
Examples and rules
• Rules are hard to express and ambiguous
• Examples are very easy to understand
• Examples help us understand the rules
• Examples work best as feedback
Example Mapping
Domain Driven Design
DDD tackles complexity by focusing
the team's a7en8on on knowledge
of the domain
— Eric Evans
Invest (me in
understanding
the business
Ubiquitous Language
• A shared way of speaking about domain concepts
• Reduces the cost of transla.on when business and development
communicate
• Try to establish and use terms the business will understand
Modelling by Example
By embedding Ubiquitous Language
in your scenarios, your scenarios
naturally become your domain
model
— Konstan)n Kudryashov (@everzet)
Principles
• The best way to understand the domain is by discussing
examples
• Write scenarios that capture ubiquitous language
• Write scenarios that illustrate real situa5ons
• Directly drive the code model from those examples
Given I bought a microwave for £10
When I return the microwave with a valid receipt
And the microwave is not damaged
Then I should be refunded £10
And the microwave should be returned to stock
Ask about iden.ty
Given I bought a microwave for £10
When I return the microwave with a valid receipt
And the microwave is not damaged
Then I should be refunded £10
And the microwave should be returned to stock
Ask about iden.ty
Given I bought a microwave with SKU "M100" for £10.00
And was given receipt numbered "ABC1234"
When I return the product with a the same receipt
And the product is not damaged
Then I should be refunded £10
And the producy should be returned to stock
Ask about verbs
Given I bought a microwave with SKU "M100" for £10.00
And was given receipt numbered "ABC1234"
When I return the product with a the same receipt
And the product is not damaged
Then I should be refunded £10
And the producy should be returned to stock
Ask about verbs
Given I purchased a microwave with SKU "M100" for £10.00
And was issued a receipt numbered "ABC1234"
When I return the product with a the same receipt
And the product is not damaged
Then I should be credited £10
And the producy should be returned to stock
Ask "how do we know this is true?"
Given I purchased a microwave with SKU "M100" for £10.00
And was issued a receipt numbered "ABC1234"
When I return the product with a the same receipt
And the product is not damaged
Then I should be credited £10
And the producy should be returned to stock
Ask "how do we know this is true?"
Given I purchased a microwave with SKU "M100" for £10.00
And was issued a receipt numbered "ABC1234"
When I return the product with a the same receipt
And the product passes a damage inspec,on
Then I should be credited £10
And the producy should be returned to stock
Exercise: Improving ubiquitous language
Scenario: Flyer takes a flight and earns points
Given I bought a ticket on a flight
And the flight earns 100 points
When I take the flight
Then I should get 100 points
Scenario: Flyer doesn’t take a flight and doesn’t earn points
Given I bought a ticket on a flight
And the flight earns 100 points
When I don't take the flight
Then I should get 0 points
Scenario: Flyer takes a flight and earns Cuke Miles
Given a ticket was bought on a flight
And it was linked to newly registered loyalty account 2352352
And the flight earns 100 Cuke Miles
When the ticket boards the flight
Then account 2352352 should have 100 Cuke Miles
Scenario: Flyer doesn’t take a flight and doesn’t earn Cuke Miles
Given ticket was bought on a flight
And it was linked to newly registered loyalty account 2352352
And the flight earns 100 Cuke Miles
When the ticket does not board the flight
Then account 2352352 should have 0 Cuke Miles
Background:
Given a ticket was bought on a flight "CK-112"
And it was linked to newly registered loyalty account 2352352
And the "LHR-JFK" route earns 100 Cuke Miles
And flight "CK-112" flies the "LHR-JFK" route
Scenario: Flyer takes a flight and earns Cuke Miles
Given the ticket boarded the flight
When the flight arrives at destination
Then account 2352352 should have 100 Cuke Miles
Scenario: Flyer doesn’t take a flight and doesn’t earn Cuke Miles
Given the ticket did not board the flight
When the flight arrives at destination
Then account 2352352 should have 0 Cuke Miles
Break
Modelling the core
Layered architecture
End-to-end tes*ng with Behat
Tes$ng the UI
• Slow to execute
• Bri/le
• Makes you design the domain and UI at the same <me
Test the domain API first
Tes$ng with real infrastructure
• Slow to execute
• Bri/le
• Makes you design the domain and infrastructure at the same
;me
Test with fake infrastructure first
Behat Fundamentals
Behat
• a tool to test business expecta-ons against an applica-on
• developed by Konstan-n Kudryashov
• based on Cucumber by Aslak Hellesøy
Gherkin
Machine-readable and business-readable format for capturing
scenarios
Features
• One per .feature file
• Describes a set of rules the system should exibit by giving
example scenarios
Feature: Returning a microwave
Scenarios
• Many per feature file
• Give an example to illustrate the expected behaviour
Feature: Returning a microwave
Scenario: Returning undamaged product with receipt
Scenario: …
Steps
• Many per feature file
• Give an example to illustrate the expected behaviour
Feature: Returning a microwave
Scenario: Returning undamaged product with receipt
Given I bought a microwave for £10
When I return the microwave with a valid receipt
And the microwave is not damaged
Then I should be refunded £10
And the microwave should be returned to stock
Step defini*ons
Behat's job is to take each step and map it to executable code
• Given steps -> Code that puts the system in the right state
• When steps -> Code that defines the ac:on we are describing
• Then steps -> Code that verifies the outcome we expect
Step defini*ons
/**
* @given I bought a :product for £:cost
*/
function returnAProduct(string $product, string $cost)
{
$this->productPurchaser->purchase(
new Product($product),
new Cost($cost)
);
}
Modelling the core - key principles
• Iden&fy and use Value Objects
• Iden&fy boundaries, define interfaces, and create fake
implementa&ons
• Match the language used in the steps
Demo
Exercise: Modelling a shopping basket
Feature: Applying VAT and delivery costs to basket
In order to know how much I'm paying
As a customer
I need VAT and cost of delivery to be calculated based on my basket price
Rules:
- VAT is 20%
- Delivery cost for basket greater than £10 is £2
- Delivery cost for basket less than £10 is £3
Scenario: Product costing less than £10 results in delivery cost of £3
Given there is a product with SKU "RS1"
And this product is listed at a cost of £5 in the catalogue
When I add this product to my basket from the catalogue
Then the total cost of my basket should be £9
Exercise: Modelling a shopping basket
Clone from github:
http://github.com/ciaranmcnulty/phpnw16-workshop
Work through the feature and model the core domain using Behat
and PhpSpec.
Key command:
bin/phpspec run && bin/behat
Modelling end-to-end
UI is a controller
UI is a controller
Demo: Modelling a shopping basket
Thank You
Ciaran McNulty
PhpSpec lead maintainer
Consultant at Inviqa
@ciaranmcnulty
ciaran@inviqa.com

Weitere ähnliche Inhalte

Ähnlich wie Modelling by Example Workshop - PHPNW 2016

Ähnlich wie Modelling by Example Workshop - PHPNW 2016 (20)

Behavior Driven Development
Behavior Driven DevelopmentBehavior Driven Development
Behavior Driven Development
 
Automated UI test on mobile - with Cucumber/Calabash
Automated UI test on mobile - with Cucumber/CalabashAutomated UI test on mobile - with Cucumber/Calabash
Automated UI test on mobile - with Cucumber/Calabash
 
Moving away from legacy code with BDD
Moving away from legacy code with BDDMoving away from legacy code with BDD
Moving away from legacy code with BDD
 
Enabling agile devliery through enabling BDD in PHP projects
Enabling agile devliery through enabling BDD in PHP projectsEnabling agile devliery through enabling BDD in PHP projects
Enabling agile devliery through enabling BDD in PHP projects
 
Driving Design through Examples - PhpCon PL 2015
Driving Design through Examples - PhpCon PL 2015Driving Design through Examples - PhpCon PL 2015
Driving Design through Examples - PhpCon PL 2015
 
Star Trek: BDD Enterprise
Star Trek: BDD EnterpriseStar Trek: BDD Enterprise
Star Trek: BDD Enterprise
 
Being an Agile Engineer
Being an Agile EngineerBeing an Agile Engineer
Being an Agile Engineer
 
Behaviour Driven Development by Liz Keogh
Behaviour Driven Development by Liz KeoghBehaviour Driven Development by Liz Keogh
Behaviour Driven Development by Liz Keogh
 
Business driven development
Business driven developmentBusiness driven development
Business driven development
 
EIA 2015 Validating Revenue Model Assumptions
EIA 2015 Validating Revenue Model AssumptionsEIA 2015 Validating Revenue Model Assumptions
EIA 2015 Validating Revenue Model Assumptions
 
Cheapass.in — presented at JSFoo 2016
Cheapass.in — presented at JSFoo 2016Cheapass.in — presented at JSFoo 2016
Cheapass.in — presented at JSFoo 2016
 
Testing for Agility: Bringing Testing into Everything
Testing for Agility: Bringing Testing into EverythingTesting for Agility: Bringing Testing into Everything
Testing for Agility: Bringing Testing into Everything
 
Руслан Плахута - Внедрение BDD в распределенные команды
Руслан Плахута - Внедрение BDD в распределенные командыРуслан Плахута - Внедрение BDD в распределенные команды
Руслан Плахута - Внедрение BDD в распределенные команды
 
How Shutl Delivers Even Faster Using Neo4J
How Shutl Delivers Even Faster Using Neo4JHow Shutl Delivers Even Faster Using Neo4J
How Shutl Delivers Even Faster Using Neo4J
 
Living with Acceptance Tests: Beyond Write-Once
Living with Acceptance Tests: Beyond Write-OnceLiving with Acceptance Tests: Beyond Write-Once
Living with Acceptance Tests: Beyond Write-Once
 
Engage! Bringing teams together to deliver software that makes a difference
Engage! Bringing teams together to deliver software that makes a differenceEngage! Bringing teams together to deliver software that makes a difference
Engage! Bringing teams together to deliver software that makes a difference
 
Building a Pyramid: Symfony Testing Strategies
Building a Pyramid: Symfony Testing StrategiesBuilding a Pyramid: Symfony Testing Strategies
Building a Pyramid: Symfony Testing Strategies
 
Math unit9 consumer arithmetic
Math unit9 consumer arithmeticMath unit9 consumer arithmetic
Math unit9 consumer arithmetic
 
Panning for User Story Gold - by Damon Poole, Agile Coach
Panning for User Story Gold - by Damon Poole, Agile CoachPanning for User Story Gold - by Damon Poole, Agile Coach
Panning for User Story Gold - by Damon Poole, Agile Coach
 
Building the "right" regression suite using Behavior Driven Testing (BDT)
Building the "right" regression suite using Behavior Driven Testing (BDT)Building the "right" regression suite using Behavior Driven Testing (BDT)
Building the "right" regression suite using Behavior Driven Testing (BDT)
 

Mehr von CiaranMcNulty

Mehr von CiaranMcNulty (14)

Greener web development at PHP London
Greener web development at PHP LondonGreener web development at PHP London
Greener web development at PHP London
 
Doodle Driven Development
Doodle Driven DevelopmentDoodle Driven Development
Doodle Driven Development
 
Behat Best Practices with Symfony
Behat Best Practices with SymfonyBehat Best Practices with Symfony
Behat Best Practices with Symfony
 
Behat Best Practices
Behat Best PracticesBehat Best Practices
Behat Best Practices
 
Behat Best Practices with Symfony
Behat Best Practices with SymfonyBehat Best Practices with Symfony
Behat Best Practices with Symfony
 
Finding the Right Testing Tool for the Job
Finding the Right Testing Tool for the JobFinding the Right Testing Tool for the Job
Finding the Right Testing Tool for the Job
 
Conscious Decoupling - Lone Star PHP
Conscious Decoupling - Lone Star PHPConscious Decoupling - Lone Star PHP
Conscious Decoupling - Lone Star PHP
 
TDD with PhpSpec - Lone Star PHP 2016
TDD with PhpSpec - Lone Star PHP 2016TDD with PhpSpec - Lone Star PHP 2016
TDD with PhpSpec - Lone Star PHP 2016
 
Fly In Style (without splashing out)
Fly In Style (without splashing out)Fly In Style (without splashing out)
Fly In Style (without splashing out)
 
Why Your Test Suite Sucks - PHPCon PL 2015
Why Your Test Suite Sucks - PHPCon PL 2015Why Your Test Suite Sucks - PHPCon PL 2015
Why Your Test Suite Sucks - PHPCon PL 2015
 
TDD with PhpSpec
TDD with PhpSpecTDD with PhpSpec
TDD with PhpSpec
 
Why Your Test Suite Sucks
Why Your Test Suite SucksWhy Your Test Suite Sucks
Why Your Test Suite Sucks
 
Driving Design with PhpSpec
Driving Design with PhpSpecDriving Design with PhpSpec
Driving Design with PhpSpec
 
Using HttpKernelInterface for Painless Integration
Using HttpKernelInterface for Painless IntegrationUsing HttpKernelInterface for Painless Integration
Using HttpKernelInterface for Painless Integration
 

Kürzlich hochgeladen

75539-Cyber Security Challenges PPT.pptx
75539-Cyber Security Challenges PPT.pptx75539-Cyber Security Challenges PPT.pptx
75539-Cyber Security Challenges PPT.pptx
Asmae Rabhi
 
哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查
哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查
哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查
ydyuyu
 
Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...
Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...
Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...
gajnagarg
 
Russian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girls
Russian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girlsRussian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girls
Russian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girls
Monica Sydney
 
PowerDirector Explination Process...pptx
PowerDirector Explination Process...pptxPowerDirector Explination Process...pptx
PowerDirector Explination Process...pptx
galaxypingy
 
Russian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
Russian Escort Abu Dhabi 0503464457 Abu DHabi EscortsRussian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
Russian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
Monica Sydney
 
Indian Escort in Abu DHabi 0508644382 Abu Dhabi Escorts
Indian Escort in Abu DHabi 0508644382 Abu Dhabi EscortsIndian Escort in Abu DHabi 0508644382 Abu Dhabi Escorts
Indian Escort in Abu DHabi 0508644382 Abu Dhabi Escorts
Monica Sydney
 

Kürzlich hochgeladen (20)

20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
 
Best SEO Services Company in Dallas | Best SEO Agency Dallas
Best SEO Services Company in Dallas | Best SEO Agency DallasBest SEO Services Company in Dallas | Best SEO Agency Dallas
Best SEO Services Company in Dallas | Best SEO Agency Dallas
 
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
 
75539-Cyber Security Challenges PPT.pptx
75539-Cyber Security Challenges PPT.pptx75539-Cyber Security Challenges PPT.pptx
75539-Cyber Security Challenges PPT.pptx
 
Meaning of On page SEO & its process in detail.
Meaning of On page SEO & its process in detail.Meaning of On page SEO & its process in detail.
Meaning of On page SEO & its process in detail.
 
Nagercoil Escorts Service Girl ^ 9332606886, WhatsApp Anytime Nagercoil
Nagercoil Escorts Service Girl ^ 9332606886, WhatsApp Anytime NagercoilNagercoil Escorts Service Girl ^ 9332606886, WhatsApp Anytime Nagercoil
Nagercoil Escorts Service Girl ^ 9332606886, WhatsApp Anytime Nagercoil
 
哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查
哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查
哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查
 
Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...
Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...
Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...
 
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
 
Russian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girls
Russian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girlsRussian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girls
Russian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girls
 
PowerDirector Explination Process...pptx
PowerDirector Explination Process...pptxPowerDirector Explination Process...pptx
PowerDirector Explination Process...pptx
 
Vip Firozabad Phone 8250092165 Escorts Service At 6k To 30k Along With Ac Room
Vip Firozabad Phone 8250092165 Escorts Service At 6k To 30k Along With Ac RoomVip Firozabad Phone 8250092165 Escorts Service At 6k To 30k Along With Ac Room
Vip Firozabad Phone 8250092165 Escorts Service At 6k To 30k Along With Ac Room
 
Russian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
Russian Escort Abu Dhabi 0503464457 Abu DHabi EscortsRussian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
Russian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
 
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
 
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
 
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
 
Indian Escort in Abu DHabi 0508644382 Abu Dhabi Escorts
Indian Escort in Abu DHabi 0508644382 Abu Dhabi EscortsIndian Escort in Abu DHabi 0508644382 Abu Dhabi Escorts
Indian Escort in Abu DHabi 0508644382 Abu Dhabi Escorts
 
Story Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr
Story Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrStory Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr
Story Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr
 
Real Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirtReal Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirt
 
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
 

Modelling by Example Workshop - PHPNW 2016

  • 1. Modelling by Example Ciaran McNulty at PHPNW 2016
  • 5. BDD is the art of using examples in conversa6ons to illustrate behaviour — Liz Keogh
  • 10. Given I bought a microwave for £10 When I return the microwave Then I should be refunded £10
  • 11. Who writes examples? Business expert Tes(ng expert Development expert All discussing the feature together
  • 12. When to write scenarios • Before you start work on the feature • Not too long before! • Whenever you have access to the right people
  • 14. When would this outcome not be true? Given I bought a microwave for £10 When I return the microwave Then I should be refunded £10
  • 15. When would this outcome not be true? Given I bought a microwave for £10 When I return the microwave with a valid receipt Then I should be refunded £10
  • 16. When would this outcome not be true? Given I bought a microwave for £10 When I return the microwave with a valid receipt Then I should be refunded £10 Given I bought a microwave for £10 When I try to return the microwave without a valid receipt Then I should be refunded £10 store credit
  • 17. What other outcomes are there? Given I bought a microwave for £10 When I return the microwave with a valid receipt Then I should be refunded £10
  • 18. What other outcomes are there? Given I bought a microwave for £10 When I return the microwave with a valid receipt Then I should be refunded £10 And the microwave should be returned to stock
  • 19. When would this outcome not be true? Given I bought a microwave for £10 When I return the microwave with a valid receipt Then I should be refunded £10 And the microwave should be returned to stock
  • 20. When would this outcome not be true? Given I bought a microwave for £10 When I return the microwave with a valid receipt And the microwave is not damaged Then I should be refunded £10 And the microwave should be returned to stock
  • 21. When would this outcome not be true? Given I bought a microwave for £10 When I return the microwave with a valid receipt And the microwave is not damaged Then I should be refunded £10 And the microwave should be returned to stock Given I bought a microwave for £10 When I return the microwave with a valid receipt And the microwave is damaged Then I should not be refunded And the microwave should not be returned to stock
  • 22. Does this implementa)on detail ma+er? When I go to '/returns' And I fill in 'form#returns input.product' field with 'microwave' And hit the 'refund' bu>on
  • 23. Does this implementa)on detail ma+er? When I fill in the returns form with the details of the microwave
  • 24. Does this implementa)on detail ma+er? When I return the microwave through the website
  • 25. Does this implementa)on detail ma+er? When I return the microwave
  • 26. Examples and rules • Rules are hard to express and ambiguous • Examples are very easy to understand • Examples help us understand the rules • Examples work best as feedback
  • 29. DDD tackles complexity by focusing the team's a7en8on on knowledge of the domain — Eric Evans
  • 31. Ubiquitous Language • A shared way of speaking about domain concepts • Reduces the cost of transla.on when business and development communicate • Try to establish and use terms the business will understand
  • 33. By embedding Ubiquitous Language in your scenarios, your scenarios naturally become your domain model — Konstan)n Kudryashov (@everzet)
  • 34. Principles • The best way to understand the domain is by discussing examples • Write scenarios that capture ubiquitous language • Write scenarios that illustrate real situa5ons • Directly drive the code model from those examples
  • 35. Given I bought a microwave for £10 When I return the microwave with a valid receipt And the microwave is not damaged Then I should be refunded £10 And the microwave should be returned to stock
  • 36. Ask about iden.ty Given I bought a microwave for £10 When I return the microwave with a valid receipt And the microwave is not damaged Then I should be refunded £10 And the microwave should be returned to stock
  • 37. Ask about iden.ty Given I bought a microwave with SKU "M100" for £10.00 And was given receipt numbered "ABC1234" When I return the product with a the same receipt And the product is not damaged Then I should be refunded £10 And the producy should be returned to stock
  • 38. Ask about verbs Given I bought a microwave with SKU "M100" for £10.00 And was given receipt numbered "ABC1234" When I return the product with a the same receipt And the product is not damaged Then I should be refunded £10 And the producy should be returned to stock
  • 39. Ask about verbs Given I purchased a microwave with SKU "M100" for £10.00 And was issued a receipt numbered "ABC1234" When I return the product with a the same receipt And the product is not damaged Then I should be credited £10 And the producy should be returned to stock
  • 40. Ask "how do we know this is true?" Given I purchased a microwave with SKU "M100" for £10.00 And was issued a receipt numbered "ABC1234" When I return the product with a the same receipt And the product is not damaged Then I should be credited £10 And the producy should be returned to stock
  • 41. Ask "how do we know this is true?" Given I purchased a microwave with SKU "M100" for £10.00 And was issued a receipt numbered "ABC1234" When I return the product with a the same receipt And the product passes a damage inspec,on Then I should be credited £10 And the producy should be returned to stock
  • 42. Exercise: Improving ubiquitous language Scenario: Flyer takes a flight and earns points Given I bought a ticket on a flight And the flight earns 100 points When I take the flight Then I should get 100 points Scenario: Flyer doesn’t take a flight and doesn’t earn points Given I bought a ticket on a flight And the flight earns 100 points When I don't take the flight Then I should get 0 points
  • 43. Scenario: Flyer takes a flight and earns Cuke Miles Given a ticket was bought on a flight And it was linked to newly registered loyalty account 2352352 And the flight earns 100 Cuke Miles When the ticket boards the flight Then account 2352352 should have 100 Cuke Miles Scenario: Flyer doesn’t take a flight and doesn’t earn Cuke Miles Given ticket was bought on a flight And it was linked to newly registered loyalty account 2352352 And the flight earns 100 Cuke Miles When the ticket does not board the flight Then account 2352352 should have 0 Cuke Miles
  • 44. Background: Given a ticket was bought on a flight "CK-112" And it was linked to newly registered loyalty account 2352352 And the "LHR-JFK" route earns 100 Cuke Miles And flight "CK-112" flies the "LHR-JFK" route Scenario: Flyer takes a flight and earns Cuke Miles Given the ticket boarded the flight When the flight arrives at destination Then account 2352352 should have 100 Cuke Miles Scenario: Flyer doesn’t take a flight and doesn’t earn Cuke Miles Given the ticket did not board the flight When the flight arrives at destination Then account 2352352 should have 0 Cuke Miles
  • 45. Break
  • 49. Tes$ng the UI • Slow to execute • Bri/le • Makes you design the domain and UI at the same <me
  • 50. Test the domain API first
  • 51. Tes$ng with real infrastructure • Slow to execute • Bri/le • Makes you design the domain and infrastructure at the same ;me
  • 52. Test with fake infrastructure first
  • 54. Behat • a tool to test business expecta-ons against an applica-on • developed by Konstan-n Kudryashov • based on Cucumber by Aslak Hellesøy
  • 55. Gherkin Machine-readable and business-readable format for capturing scenarios
  • 56. Features • One per .feature file • Describes a set of rules the system should exibit by giving example scenarios Feature: Returning a microwave
  • 57. Scenarios • Many per feature file • Give an example to illustrate the expected behaviour Feature: Returning a microwave Scenario: Returning undamaged product with receipt Scenario: …
  • 58. Steps • Many per feature file • Give an example to illustrate the expected behaviour Feature: Returning a microwave Scenario: Returning undamaged product with receipt Given I bought a microwave for £10 When I return the microwave with a valid receipt And the microwave is not damaged Then I should be refunded £10 And the microwave should be returned to stock
  • 59. Step defini*ons Behat's job is to take each step and map it to executable code • Given steps -> Code that puts the system in the right state • When steps -> Code that defines the ac:on we are describing • Then steps -> Code that verifies the outcome we expect
  • 60. Step defini*ons /** * @given I bought a :product for £:cost */ function returnAProduct(string $product, string $cost) { $this->productPurchaser->purchase( new Product($product), new Cost($cost) ); }
  • 61. Modelling the core - key principles • Iden&fy and use Value Objects • Iden&fy boundaries, define interfaces, and create fake implementa&ons • Match the language used in the steps
  • 62. Demo
  • 63. Exercise: Modelling a shopping basket Feature: Applying VAT and delivery costs to basket In order to know how much I'm paying As a customer I need VAT and cost of delivery to be calculated based on my basket price Rules: - VAT is 20% - Delivery cost for basket greater than £10 is £2 - Delivery cost for basket less than £10 is £3 Scenario: Product costing less than £10 results in delivery cost of £3 Given there is a product with SKU "RS1" And this product is listed at a cost of £5 in the catalogue When I add this product to my basket from the catalogue Then the total cost of my basket should be £9
  • 64. Exercise: Modelling a shopping basket Clone from github: http://github.com/ciaranmcnulty/phpnw16-workshop Work through the feature and model the core domain using Behat and PhpSpec. Key command: bin/phpspec run && bin/behat
  • 66. UI is a controller
  • 67. UI is a controller
  • 68. Demo: Modelling a shopping basket
  • 69. Thank You Ciaran McNulty PhpSpec lead maintainer Consultant at Inviqa @ciaranmcnulty ciaran@inviqa.com