SlideShare una empresa de Scribd logo
1 de 41
July 19, 2016
Dhaval P Shah
Anatomy of
Test Driven Development
June 23, 2016
Ground Rules !
June 23, 2016
Scope of Session
• What is Testing
• What is TDD
• Avatars of TDD
• Why TDD
• Hands on Exercise
• Test smells
• TDD Misconceptions
• TDD Left Overs !
4
Key Question?
Are we building the right product?
Are we building the product right?
Business Facing
Technology/Implementation Facing
5
Brian Marick’s Test Categorization
Business Facing
Technology/Implementation Facing
SupportsDevelopment
CritiqueProduct
Before / While Coding Post Coding
• Performance / Load Testing
• Security Testing
• *ilities Testing
• UI Testing
• Usability Testing
• UAT
• Acceptance Testing
• Prototypes
• Unit Testing
• Component Testing
• Integration Testing
Automated
& Manual
Automated Tools
Manual
UI
Services
Unit
Q1 Q4
Q3Q2
What ?
7
• Test Driven Development
• Test Oriented Development
• Test Driven Design
• Test Driven Development and Design
Perceptions of TDD
“People too often concentrate on the words Test and Development and
don't consider what the word Driven really implies. For tests to drive development
they must do more than just test that code performs its required functionality:
they must clearly express that required functionality to the reader. That is,
they must be clear specifications of the required functionality. Tests that are
not written with their role as specifications in mind can be very confusing to
read. The difficulty in understanding what they are testing can greatly
reduce the velocity at which a codebase can be changed.”
By Nat Pryce and Steve Freeman at ‘XP Day 2006’ conference
8
WHAT IS TDD?
June 23, 20169
TDD Cycle - Test, Code & Refactor
4 rules of simple design
- All tests passes
- No code smells
- Code communicates
- Minimalism
10
Avatars of TDD
Business Facing
Outside
In
Out
Inside
11
Outside – In TDD
Write a
failing
Acceptance
Test
Write a
failing
Unit Test
Make the
test pass
Refactor
12
Basket
?
Outside – In TDD (Contd.)
?
TEST
[Calculate total
price]
Mockery
Expectations
Loyalty Point
Calculator
Promotion
Target Object
/ CUT
13
Inside – Out TDD
Basket
Loyalty
Point
Calculator
Promotions
TEST
[Calculate total
price]
Target Object
/ CUT
14
Differences
Classicist Mockist
TDD From Inside Out i.e. Starts with
domain
TDD From Outside In i.e. Starts with
business/feature
Works with real object Works with fake objects
Verifies state Verifies behavior
Collaborators of CUT are hard coded Collaborators of CUT are mocked
Does not lead programmers to think
about implementation whilst writing test
Leads programmer to think about
implementation whilst writing test
Test are coarse grained –
• Large Test Fixtures
• Larger Test Setups
• Less Frequent Commits
Test are fine grained –
• Smaller Test Fixtures
• Smaller Test Setups
• More Frequent Commits
Encourages ‘Ask – Don’t Tell’ based
design
Encourages ‘Tell – Don’t Ask’ (Law of
Demeter) based design
Why practicing TDD is
so important?
16
Aids in deriving
Loosely Coupled &
Highly Cohesive Design
17
Caveat !
18
Helps creating live up to date
specifications
19
Promotes Refactoring
20
Manual (Monkey) checking by
Developers and Testers
21
Stay away from (time hungry)
debuggers
22
Helps developer to maintain
focus
23
Instills Confidence
24
Ease of code understanding
25
Acts as a Safety Net
Hands on Exercise
F
I
R
S
T27
Characteristics of Test
ast
ndependant
epeatable
elf Validating
imely
Types of Test Doubles
• Dummy
• Stub
• Spy
• Mock
• Fake
28
Test Doubles
Dummy Test
public class DummyAuthorizer implements Authorizer {
public Boolean authorize(String username, String
password) {
return null;
}
}
@Test
public void newlyCreatedSystem_hasNoLoggedInUsers() {
System system = new System(new
DummyAuthorizer());
assertThat(system.loginCount(), is(0));
}
Fake
public class AcceptingAuthorizerFake implements Authorizer {
public Boolean authorize(String username, String
password) {
return username.equals("Bob");
}
}
Stub
public class AcceptingAuthorizerStub implements Authorizer {
public Boolean authorize(String username, String
password) {
return true;
}
}
Spy
public class AcceptingAuthorizerSpy implements Authorizer {
public boolean authorizeWasCalled = false;
public Boolean authorize(String username, String
password) {
authorizeWasCalled = true;
return true;
}
}
Mock
public class AcceptingAuthorizerVerificationMock implements
Authorizer {
public boolean authorizeWasCalled = false;
public Boolean authorize(String username, String
password) {
authorizeWasCalled = true;
return true;
}
public boolean verify() {
return authorizedWasCalled;
}
}
Test Smells
June 23, 2016
Categories of Test Smell
Test
Smells
Behavior
Smell
Frequent
Debugging
Manual
Intervention
Erratic
Tests
Fragile
Test
Slow Test Assertion
Roullette
Code
Smell
Obscure
Test
Conditional
Test Logic
Hard to
Test Code
Duplication
Obscure Test
- General Fixtures
- Mystery Guest
- Indirect Testing
- Irrelevant Info.
- Eager Test
- Hard Coded Test
Test Code Smells
Conditional Test Logic
- Flexible Test
- Conditional Verification
Logic
- Multiple Test Condition
- Complex Teardown
Hard to Test Code
- Untestable Code
- Highly Coupled Code
- Asynchronous Code
Test Code
Duplication
- Re-inventing wheel
- Cut and Paste Code
Reuse
Assertion Roullette
- Missing Assertion
Method
Test Behavior Smells
Fragile Test
- Behavior Sensitivity
- Context Sensitivity
- Data Sensitivity
- Interface Sensitivity
Erratic Test
- Interacting Test
- Resource Leakage
- Lonely Test
- Interacting Test Suites
- Test run war
- Non deterministic test
- Resource Optimism
Slow Test
- Slow component
usage
- Too many test
- General fixture
- Asynchronous Test
Manual Intervention
- Manual event
injection
- Manual result
verification
- Manual fixture setup
Frequent
Debugging
TDD Misconceptions !
June 23, 201634
Test Driven Development
=
Elegant Architecture
&
Elegant Design
June 23, 201635
TDD = 2 X Development Effort
Without TDD With TDD
Implement – 7 Days Implement – 14 Days
Testing – 3 Days Testing – 3 Days
Fix Bugs – 3 Days
Testing – 3 Days
Fix Bugs – 2 Days
Testing – 1 Day
Release – 19 Days
Fix Bugs – 2 Days
Testing – 1 Day
Fix Bugs – 1 Days
Testing – 1 Day
Release – 22 Days
June 23, 201636
Without TDD With TDD
Implement – 7 Days Implement – 14 Days
Testing – 3 Days Testing – 3 Days
Fix Bugs – 3 Days
Testing – 3 Days
Fix Bugs – 2 Days
Testing – 1 Day
Release – 26 Days
Fix Bugs – 2 Days
Testing – 1 Day
Fix Bugs – 3 Days
Testing – 1 Day
Release – 24 Days
Integration – 7 Days Integration – 2 Days
CORRECT PICTURE !
Return on Investment
∞
1 / Time required to
follow TDD
June 23, 201637
TDD Leftovers !
• Unit Test Framework
– Junit 4
– Hamcrest Matchers
• Mocking framework
– Mockito / Jmock / PowerMock
• Acceptance Testing framework / tools
– SOAP UI
– Selenium Driver
– Jbehave
• Automated Build Tool
– Maven / Gradle
39
Tools of the trade ! – An example stack
• Should be on every software craftsman’s desk
– Clean Code (Uncle Bob)
– Refactoring (Fowler)
– Refactoring to Patterns (Joshua)
– Growing Object Oriented Software guided by Test (Pryce and Freeman)
• Nice to have
– Practical Unit testing with Junit and Mockito
40
Some resources related to TDD
41
Thank You !
shah_d_p@yahoo.com
@dhaval201279
https://in.linkedin.com/in/dhavalshah201279

Más contenido relacionado

La actualidad más candente

Getting Unstuck: Working with Legacy Code and Data
Getting Unstuck: Working with Legacy Code and DataGetting Unstuck: Working with Legacy Code and Data
Getting Unstuck: Working with Legacy Code and DataCory Foy
 
Open source tools - Test Management Summit - 2009
Open source tools - Test Management Summit - 2009Open source tools - Test Management Summit - 2009
Open source tools - Test Management Summit - 2009Alan Richardson
 
Working Effectively with Legacy Code: Lessons in Practice
Working Effectively with Legacy Code: Lessons in PracticeWorking Effectively with Legacy Code: Lessons in Practice
Working Effectively with Legacy Code: Lessons in PracticeAmar Shah
 
TDD - Test Driven Development
TDD - Test Driven DevelopmentTDD - Test Driven Development
TDD - Test Driven DevelopmentTung Nguyen Thanh
 
Clean code - Getting your R&D on board
Clean code - Getting your R&D on boardClean code - Getting your R&D on board
Clean code - Getting your R&D on boardRuth Sperer
 
iOS Test-Driven Development
iOS Test-Driven DevelopmentiOS Test-Driven Development
iOS Test-Driven DevelopmentPablo Villar
 
Agile Programming Systems # TDD intro
Agile Programming Systems # TDD introAgile Programming Systems # TDD intro
Agile Programming Systems # TDD introVitaliy Kulikov
 
TDD And Refactoring
TDD And RefactoringTDD And Refactoring
TDD And RefactoringNaresh Jain
 
Mockist vs. Classicists TDD
Mockist vs. Classicists TDDMockist vs. Classicists TDD
Mockist vs. Classicists TDDDavid Völkel
 
Behavior Driven Development with SpecFlow
Behavior Driven Development with SpecFlowBehavior Driven Development with SpecFlow
Behavior Driven Development with SpecFlowRachid Kherrazi
 
Test driven-development
Test driven-developmentTest driven-development
Test driven-developmentDavid Paluy
 
Unit Testing and TDD 2017
Unit Testing and TDD 2017Unit Testing and TDD 2017
Unit Testing and TDD 2017Xavi Hidalgo
 
Automating Strategically or Tactically when Testing
Automating Strategically or Tactically when TestingAutomating Strategically or Tactically when Testing
Automating Strategically or Tactically when TestingAlan Richardson
 
Google test training
Google test trainingGoogle test training
Google test trainingThierry Gayet
 
Test Driven Development Powered by LEGO
Test Driven Development Powered by LEGOTest Driven Development Powered by LEGO
Test Driven Development Powered by LEGOAgile Montréal
 
@LinkingNote annotation in YATSPEC
@LinkingNote annotation in YATSPEC@LinkingNote annotation in YATSPEC
@LinkingNote annotation in YATSPECWojciech Bulaty
 
Test Driven Development
Test Driven DevelopmentTest Driven Development
Test Driven DevelopmentMireia Sangalo
 
Software testing with examples in Angular (and AngularJS)
Software testing with examples in Angular (and AngularJS)Software testing with examples in Angular (and AngularJS)
Software testing with examples in Angular (and AngularJS)Paweł Żurowski
 
Scrum and Test-driven development
Scrum and Test-driven developmentScrum and Test-driven development
Scrum and Test-driven developmenttoteb5
 

La actualidad más candente (20)

Getting Unstuck: Working with Legacy Code and Data
Getting Unstuck: Working with Legacy Code and DataGetting Unstuck: Working with Legacy Code and Data
Getting Unstuck: Working with Legacy Code and Data
 
Open source tools - Test Management Summit - 2009
Open source tools - Test Management Summit - 2009Open source tools - Test Management Summit - 2009
Open source tools - Test Management Summit - 2009
 
Working Effectively with Legacy Code: Lessons in Practice
Working Effectively with Legacy Code: Lessons in PracticeWorking Effectively with Legacy Code: Lessons in Practice
Working Effectively with Legacy Code: Lessons in Practice
 
TDD - Test Driven Development
TDD - Test Driven DevelopmentTDD - Test Driven Development
TDD - Test Driven Development
 
Clean code - Getting your R&D on board
Clean code - Getting your R&D on boardClean code - Getting your R&D on board
Clean code - Getting your R&D on board
 
iOS Test-Driven Development
iOS Test-Driven DevelopmentiOS Test-Driven Development
iOS Test-Driven Development
 
Agile Programming Systems # TDD intro
Agile Programming Systems # TDD introAgile Programming Systems # TDD intro
Agile Programming Systems # TDD intro
 
TDD And Refactoring
TDD And RefactoringTDD And Refactoring
TDD And Refactoring
 
Mockist vs. Classicists TDD
Mockist vs. Classicists TDDMockist vs. Classicists TDD
Mockist vs. Classicists TDD
 
Behavior Driven Development with SpecFlow
Behavior Driven Development with SpecFlowBehavior Driven Development with SpecFlow
Behavior Driven Development with SpecFlow
 
Test driven-development
Test driven-developmentTest driven-development
Test driven-development
 
Unit Testing and TDD 2017
Unit Testing and TDD 2017Unit Testing and TDD 2017
Unit Testing and TDD 2017
 
Automating Strategically or Tactically when Testing
Automating Strategically or Tactically when TestingAutomating Strategically or Tactically when Testing
Automating Strategically or Tactically when Testing
 
Unit Testing Your Application
Unit Testing Your ApplicationUnit Testing Your Application
Unit Testing Your Application
 
Google test training
Google test trainingGoogle test training
Google test training
 
Test Driven Development Powered by LEGO
Test Driven Development Powered by LEGOTest Driven Development Powered by LEGO
Test Driven Development Powered by LEGO
 
@LinkingNote annotation in YATSPEC
@LinkingNote annotation in YATSPEC@LinkingNote annotation in YATSPEC
@LinkingNote annotation in YATSPEC
 
Test Driven Development
Test Driven DevelopmentTest Driven Development
Test Driven Development
 
Software testing with examples in Angular (and AngularJS)
Software testing with examples in Angular (and AngularJS)Software testing with examples in Angular (and AngularJS)
Software testing with examples in Angular (and AngularJS)
 
Scrum and Test-driven development
Scrum and Test-driven developmentScrum and Test-driven development
Scrum and Test-driven development
 

Destacado

Basic concepts in urogynaecology
Basic concepts in urogynaecologyBasic concepts in urogynaecology
Basic concepts in urogynaecologyNeha Jain
 
Prostate anatomy
Prostate anatomyProstate anatomy
Prostate anatomyPAIRS WEB
 
Abdomen, clinical anatomy
Abdomen, clinical anatomy  Abdomen, clinical anatomy
Abdomen, clinical anatomy Deepak Khedekar
 
Powerpoint gallbladder
Powerpoint gallbladderPowerpoint gallbladder
Powerpoint gallbladdermcrlopez
 
Gall bladder & biliary tract anomalies and variants
Gall bladder & biliary tract  anomalies and variantsGall bladder & biliary tract  anomalies and variants
Gall bladder & biliary tract anomalies and variantsSanal Kumar
 
Anatomy and physiology of urinary system
Anatomy and physiology of urinary systemAnatomy and physiology of urinary system
Anatomy and physiology of urinary systemMichael John Pendon
 
Anatomy and Physilogy of Urinary System (Renal System)
Anatomy and Physilogy of Urinary System (Renal System)Anatomy and Physilogy of Urinary System (Renal System)
Anatomy and Physilogy of Urinary System (Renal System)Yana Paculanan
 

Destacado (12)

Agile vs ??
Agile vs ??Agile vs ??
Agile vs ??
 
Basic concepts in urogynaecology
Basic concepts in urogynaecologyBasic concepts in urogynaecology
Basic concepts in urogynaecology
 
Prostate
ProstateProstate
Prostate
 
Testes pathology
Testes pathologyTestes pathology
Testes pathology
 
Anatomy of gall bladder and excretory bile ducts
Anatomy of gall bladder and excretory bile ductsAnatomy of gall bladder and excretory bile ducts
Anatomy of gall bladder and excretory bile ducts
 
Prostate anatomy
Prostate anatomyProstate anatomy
Prostate anatomy
 
Abdomen, clinical anatomy
Abdomen, clinical anatomy  Abdomen, clinical anatomy
Abdomen, clinical anatomy
 
Powerpoint gallbladder
Powerpoint gallbladderPowerpoint gallbladder
Powerpoint gallbladder
 
Anatomy of gall bladder
Anatomy of gall bladderAnatomy of gall bladder
Anatomy of gall bladder
 
Gall bladder & biliary tract anomalies and variants
Gall bladder & biliary tract  anomalies and variantsGall bladder & biliary tract  anomalies and variants
Gall bladder & biliary tract anomalies and variants
 
Anatomy and physiology of urinary system
Anatomy and physiology of urinary systemAnatomy and physiology of urinary system
Anatomy and physiology of urinary system
 
Anatomy and Physilogy of Urinary System (Renal System)
Anatomy and Physilogy of Urinary System (Renal System)Anatomy and Physilogy of Urinary System (Renal System)
Anatomy and Physilogy of Urinary System (Renal System)
 

Similar a Anatomy of Test Driven Development

Agile testing - Principles and best practices
Agile testing  - Principles and best practicesAgile testing  - Principles and best practices
Agile testing - Principles and best practicesDr Ganesh Iyer
 
Software testing ... who’s responsible is it?
Software testing ... who’s responsible is it?Software testing ... who’s responsible is it?
Software testing ... who’s responsible is it?Manjula03809891
 
Software testing ... who is responsible for it?
Software testing ... who is responsible for it?Software testing ... who is responsible for it?
Software testing ... who is responsible for it?Manjula Piyumal
 
Continuous delivery is more than dev ops
Continuous delivery is more than dev opsContinuous delivery is more than dev ops
Continuous delivery is more than dev opsAgile Montréal
 
A confused tester in agile world finalversion
A confused tester in agile world finalversionA confused tester in agile world finalversion
A confused tester in agile world finalversionAshish Kumar
 
[DevDay 2016] Real Unit Testing with mocking framework - Speaker: Phat Vu – S...
[DevDay 2016] Real Unit Testing with mocking framework - Speaker: Phat Vu – S...[DevDay 2016] Real Unit Testing with mocking framework - Speaker: Phat Vu – S...
[DevDay 2016] Real Unit Testing with mocking framework - Speaker: Phat Vu – S...DevDay.org
 
Devday2016 real unittestingwithmockframework-phatvu
Devday2016 real unittestingwithmockframework-phatvuDevday2016 real unittestingwithmockframework-phatvu
Devday2016 real unittestingwithmockframework-phatvuPhat VU
 
QA Best Practices
QA  Best PracticesQA  Best Practices
QA Best PracticesJames York
 
Agile testingandautomation
Agile testingandautomationAgile testingandautomation
Agile testingandautomationjeisner
 
6 Traits of a Successful Test Automation Architecture
6 Traits of a Successful Test Automation Architecture6 Traits of a Successful Test Automation Architecture
6 Traits of a Successful Test Automation ArchitectureErdem YILDIRIM
 
[Rakuten TechConf2014] [G-4] Beyond Agile Testing to Lean Development
[Rakuten TechConf2014] [G-4] Beyond Agile Testing to Lean Development[Rakuten TechConf2014] [G-4] Beyond Agile Testing to Lean Development
[Rakuten TechConf2014] [G-4] Beyond Agile Testing to Lean DevelopmentRakuten Group, Inc.
 
Effective Testing Practices in an Agile Environment
Effective Testing Practices in an Agile EnvironmentEffective Testing Practices in an Agile Environment
Effective Testing Practices in an Agile EnvironmentRaj Indugula
 
Achieve Intelligent Test Execution: Strategies for Streamlining Regression Te...
Achieve Intelligent Test Execution: Strategies for Streamlining Regression Te...Achieve Intelligent Test Execution: Strategies for Streamlining Regression Te...
Achieve Intelligent Test Execution: Strategies for Streamlining Regression Te...DevOps.com
 
North Virginia Coldfusion User Group Meetup - Testbox - July 19th 2017
North Virginia Coldfusion User Group Meetup - Testbox - July 19th 2017North Virginia Coldfusion User Group Meetup - Testbox - July 19th 2017
North Virginia Coldfusion User Group Meetup - Testbox - July 19th 2017Ortus Solutions, Corp
 
A New Model For Testing
A New Model For TestingA New Model For Testing
A New Model For TestingTEST Huddle
 
Spec flow – functional testing made easy
Spec flow – functional testing made easySpec flow – functional testing made easy
Spec flow – functional testing made easyPaul Stack
 
Not Your Grandfather's Requirements-Based Testing Webinar – Robin Goldsmith, ...
Not Your Grandfather's Requirements-Based Testing Webinar – Robin Goldsmith, ...Not Your Grandfather's Requirements-Based Testing Webinar – Robin Goldsmith, ...
Not Your Grandfather's Requirements-Based Testing Webinar – Robin Goldsmith, ...XBOSoft
 

Similar a Anatomy of Test Driven Development (20)

Agile testing - Principles and best practices
Agile testing  - Principles and best practicesAgile testing  - Principles and best practices
Agile testing - Principles and best practices
 
Software testing ... who’s responsible is it?
Software testing ... who’s responsible is it?Software testing ... who’s responsible is it?
Software testing ... who’s responsible is it?
 
Software testing ... who is responsible for it?
Software testing ... who is responsible for it?Software testing ... who is responsible for it?
Software testing ... who is responsible for it?
 
Continuous delivery is more than dev ops
Continuous delivery is more than dev opsContinuous delivery is more than dev ops
Continuous delivery is more than dev ops
 
Agile testing
Agile testingAgile testing
Agile testing
 
A confused tester in agile world finalversion
A confused tester in agile world finalversionA confused tester in agile world finalversion
A confused tester in agile world finalversion
 
[DevDay 2016] Real Unit Testing with mocking framework - Speaker: Phat Vu – S...
[DevDay 2016] Real Unit Testing with mocking framework - Speaker: Phat Vu – S...[DevDay 2016] Real Unit Testing with mocking framework - Speaker: Phat Vu – S...
[DevDay 2016] Real Unit Testing with mocking framework - Speaker: Phat Vu – S...
 
Devday2016 real unittestingwithmockframework-phatvu
Devday2016 real unittestingwithmockframework-phatvuDevday2016 real unittestingwithmockframework-phatvu
Devday2016 real unittestingwithmockframework-phatvu
 
QA Best Practices
QA  Best PracticesQA  Best Practices
QA Best Practices
 
Agile testingandautomation
Agile testingandautomationAgile testingandautomation
Agile testingandautomation
 
6 Traits of a Successful Test Automation Architecture
6 Traits of a Successful Test Automation Architecture6 Traits of a Successful Test Automation Architecture
6 Traits of a Successful Test Automation Architecture
 
[Rakuten TechConf2014] [G-4] Beyond Agile Testing to Lean Development
[Rakuten TechConf2014] [G-4] Beyond Agile Testing to Lean Development[Rakuten TechConf2014] [G-4] Beyond Agile Testing to Lean Development
[Rakuten TechConf2014] [G-4] Beyond Agile Testing to Lean Development
 
TDD talk
TDD talkTDD talk
TDD talk
 
Effective Testing Practices in an Agile Environment
Effective Testing Practices in an Agile EnvironmentEffective Testing Practices in an Agile Environment
Effective Testing Practices in an Agile Environment
 
Achieve Intelligent Test Execution: Strategies for Streamlining Regression Te...
Achieve Intelligent Test Execution: Strategies for Streamlining Regression Te...Achieve Intelligent Test Execution: Strategies for Streamlining Regression Te...
Achieve Intelligent Test Execution: Strategies for Streamlining Regression Te...
 
North Virginia Coldfusion User Group Meetup - Testbox - July 19th 2017
North Virginia Coldfusion User Group Meetup - Testbox - July 19th 2017North Virginia Coldfusion User Group Meetup - Testbox - July 19th 2017
North Virginia Coldfusion User Group Meetup - Testbox - July 19th 2017
 
New model
New modelNew model
New model
 
A New Model For Testing
A New Model For TestingA New Model For Testing
A New Model For Testing
 
Spec flow – functional testing made easy
Spec flow – functional testing made easySpec flow – functional testing made easy
Spec flow – functional testing made easy
 
Not Your Grandfather's Requirements-Based Testing Webinar – Robin Goldsmith, ...
Not Your Grandfather's Requirements-Based Testing Webinar – Robin Goldsmith, ...Not Your Grandfather's Requirements-Based Testing Webinar – Robin Goldsmith, ...
Not Your Grandfather's Requirements-Based Testing Webinar – Robin Goldsmith, ...
 

Más de Dhaval Shah

JVM memory management & Diagnostics
JVM memory management & DiagnosticsJVM memory management & Diagnostics
JVM memory management & DiagnosticsDhaval Shah
 
Transaction boundaries in Microservice Architecture
Transaction boundaries in Microservice ArchitectureTransaction boundaries in Microservice Architecture
Transaction boundaries in Microservice ArchitectureDhaval Shah
 
Microservice Architecture
Microservice ArchitectureMicroservice Architecture
Microservice ArchitectureDhaval Shah
 
OO design principles & heuristics
OO design principles & heuristicsOO design principles & heuristics
OO design principles & heuristicsDhaval Shah
 
Enterprise application performance - Understanding & Learnings
Enterprise application performance - Understanding & LearningsEnterprise application performance - Understanding & Learnings
Enterprise application performance - Understanding & LearningsDhaval Shah
 

Más de Dhaval Shah (7)

JVM memory management & Diagnostics
JVM memory management & DiagnosticsJVM memory management & Diagnostics
JVM memory management & Diagnostics
 
Transaction boundaries in Microservice Architecture
Transaction boundaries in Microservice ArchitectureTransaction boundaries in Microservice Architecture
Transaction boundaries in Microservice Architecture
 
Microservice Architecture
Microservice ArchitectureMicroservice Architecture
Microservice Architecture
 
OO design principles & heuristics
OO design principles & heuristicsOO design principles & heuristics
OO design principles & heuristics
 
Enterprise application performance - Understanding & Learnings
Enterprise application performance - Understanding & LearningsEnterprise application performance - Understanding & Learnings
Enterprise application performance - Understanding & Learnings
 
Spring Basics
Spring BasicsSpring Basics
Spring Basics
 
Spring overview
Spring overviewSpring overview
Spring overview
 

Último

Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingEdi Saputra
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodJuan lago vázquez
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...apidays
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWERMadyBayot
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdflior mazor
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu SubbuApidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbuapidays
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...Zilliz
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 

Último (20)

Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu SubbuApidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 

Anatomy of Test Driven Development

  • 1. July 19, 2016 Dhaval P Shah Anatomy of Test Driven Development
  • 3. June 23, 2016 Scope of Session • What is Testing • What is TDD • Avatars of TDD • Why TDD • Hands on Exercise • Test smells • TDD Misconceptions • TDD Left Overs !
  • 4. 4 Key Question? Are we building the right product? Are we building the product right? Business Facing Technology/Implementation Facing
  • 5. 5 Brian Marick’s Test Categorization Business Facing Technology/Implementation Facing SupportsDevelopment CritiqueProduct Before / While Coding Post Coding • Performance / Load Testing • Security Testing • *ilities Testing • UI Testing • Usability Testing • UAT • Acceptance Testing • Prototypes • Unit Testing • Component Testing • Integration Testing Automated & Manual Automated Tools Manual UI Services Unit Q1 Q4 Q3Q2
  • 7. 7 • Test Driven Development • Test Oriented Development • Test Driven Design • Test Driven Development and Design Perceptions of TDD
  • 8. “People too often concentrate on the words Test and Development and don't consider what the word Driven really implies. For tests to drive development they must do more than just test that code performs its required functionality: they must clearly express that required functionality to the reader. That is, they must be clear specifications of the required functionality. Tests that are not written with their role as specifications in mind can be very confusing to read. The difficulty in understanding what they are testing can greatly reduce the velocity at which a codebase can be changed.” By Nat Pryce and Steve Freeman at ‘XP Day 2006’ conference 8 WHAT IS TDD?
  • 9. June 23, 20169 TDD Cycle - Test, Code & Refactor 4 rules of simple design - All tests passes - No code smells - Code communicates - Minimalism
  • 10. 10 Avatars of TDD Business Facing Outside In Out Inside
  • 11. 11 Outside – In TDD Write a failing Acceptance Test Write a failing Unit Test Make the test pass Refactor
  • 12. 12 Basket ? Outside – In TDD (Contd.) ? TEST [Calculate total price] Mockery Expectations Loyalty Point Calculator Promotion Target Object / CUT
  • 13. 13 Inside – Out TDD Basket Loyalty Point Calculator Promotions TEST [Calculate total price] Target Object / CUT
  • 14. 14 Differences Classicist Mockist TDD From Inside Out i.e. Starts with domain TDD From Outside In i.e. Starts with business/feature Works with real object Works with fake objects Verifies state Verifies behavior Collaborators of CUT are hard coded Collaborators of CUT are mocked Does not lead programmers to think about implementation whilst writing test Leads programmer to think about implementation whilst writing test Test are coarse grained – • Large Test Fixtures • Larger Test Setups • Less Frequent Commits Test are fine grained – • Smaller Test Fixtures • Smaller Test Setups • More Frequent Commits Encourages ‘Ask – Don’t Tell’ based design Encourages ‘Tell – Don’t Ask’ (Law of Demeter) based design
  • 15. Why practicing TDD is so important?
  • 16. 16 Aids in deriving Loosely Coupled & Highly Cohesive Design
  • 18. 18 Helps creating live up to date specifications
  • 20. 20 Manual (Monkey) checking by Developers and Testers
  • 21. 21 Stay away from (time hungry) debuggers
  • 22. 22 Helps developer to maintain focus
  • 24. 24 Ease of code understanding
  • 25. 25 Acts as a Safety Net
  • 28. Types of Test Doubles • Dummy • Stub • Spy • Mock • Fake 28 Test Doubles Dummy Test public class DummyAuthorizer implements Authorizer { public Boolean authorize(String username, String password) { return null; } } @Test public void newlyCreatedSystem_hasNoLoggedInUsers() { System system = new System(new DummyAuthorizer()); assertThat(system.loginCount(), is(0)); } Fake public class AcceptingAuthorizerFake implements Authorizer { public Boolean authorize(String username, String password) { return username.equals("Bob"); } } Stub public class AcceptingAuthorizerStub implements Authorizer { public Boolean authorize(String username, String password) { return true; } } Spy public class AcceptingAuthorizerSpy implements Authorizer { public boolean authorizeWasCalled = false; public Boolean authorize(String username, String password) { authorizeWasCalled = true; return true; } } Mock public class AcceptingAuthorizerVerificationMock implements Authorizer { public boolean authorizeWasCalled = false; public Boolean authorize(String username, String password) { authorizeWasCalled = true; return true; } public boolean verify() { return authorizedWasCalled; } }
  • 30. June 23, 2016 Categories of Test Smell Test Smells Behavior Smell Frequent Debugging Manual Intervention Erratic Tests Fragile Test Slow Test Assertion Roullette Code Smell Obscure Test Conditional Test Logic Hard to Test Code Duplication
  • 31. Obscure Test - General Fixtures - Mystery Guest - Indirect Testing - Irrelevant Info. - Eager Test - Hard Coded Test Test Code Smells Conditional Test Logic - Flexible Test - Conditional Verification Logic - Multiple Test Condition - Complex Teardown Hard to Test Code - Untestable Code - Highly Coupled Code - Asynchronous Code Test Code Duplication - Re-inventing wheel - Cut and Paste Code Reuse
  • 32. Assertion Roullette - Missing Assertion Method Test Behavior Smells Fragile Test - Behavior Sensitivity - Context Sensitivity - Data Sensitivity - Interface Sensitivity Erratic Test - Interacting Test - Resource Leakage - Lonely Test - Interacting Test Suites - Test run war - Non deterministic test - Resource Optimism Slow Test - Slow component usage - Too many test - General fixture - Asynchronous Test Manual Intervention - Manual event injection - Manual result verification - Manual fixture setup Frequent Debugging
  • 34. June 23, 201634 Test Driven Development = Elegant Architecture & Elegant Design
  • 35. June 23, 201635 TDD = 2 X Development Effort Without TDD With TDD Implement – 7 Days Implement – 14 Days Testing – 3 Days Testing – 3 Days Fix Bugs – 3 Days Testing – 3 Days Fix Bugs – 2 Days Testing – 1 Day Release – 19 Days Fix Bugs – 2 Days Testing – 1 Day Fix Bugs – 1 Days Testing – 1 Day Release – 22 Days
  • 36. June 23, 201636 Without TDD With TDD Implement – 7 Days Implement – 14 Days Testing – 3 Days Testing – 3 Days Fix Bugs – 3 Days Testing – 3 Days Fix Bugs – 2 Days Testing – 1 Day Release – 26 Days Fix Bugs – 2 Days Testing – 1 Day Fix Bugs – 3 Days Testing – 1 Day Release – 24 Days Integration – 7 Days Integration – 2 Days CORRECT PICTURE !
  • 37. Return on Investment ∞ 1 / Time required to follow TDD June 23, 201637
  • 39. • Unit Test Framework – Junit 4 – Hamcrest Matchers • Mocking framework – Mockito / Jmock / PowerMock • Acceptance Testing framework / tools – SOAP UI – Selenium Driver – Jbehave • Automated Build Tool – Maven / Gradle 39 Tools of the trade ! – An example stack
  • 40. • Should be on every software craftsman’s desk – Clean Code (Uncle Bob) – Refactoring (Fowler) – Refactoring to Patterns (Joshua) – Growing Object Oriented Software guided by Test (Pryce and Freeman) • Nice to have – Practical Unit testing with Junit and Mockito 40 Some resources related to TDD