SlideShare a Scribd company logo
1 of 35
copyright 2008 trainologic LTD
Unit testing in a real-life environment using
Mockito
Stubbing and Mocking
copyright 2008 trainologic LTD
Stubbing and Mocking
• Mediator Objects and Testing
• Stubs
• Mocking Objects
• Mockito
• PowerMockito
3
copyright 2008 trainologic LTD
• The JUnit testing framework, makes the testing of an
independent, non-void method, simple.
• But... how do we test an method with no return value?
• How do we test a method that interacts with other
domain objects?
Testing Mediator Objects
3
Mediator Objects & Testing
4
copyright 2008 trainologic LTD
Mediator Objects & Testing
• Dependencies – In order for a function to run it often
requires Files, DB, JNDI or generally – other units
• Side effects – As a function runs we are often interested
in data written to files, saved to db or generally –
passed to other units
How can we test a single unit, without being
affected by other units – their errors, set-up
complexities and performance issues?
In Real-Life Units are NOT Totally
Self Contained
4
5
copyright 2008 trainologic LTD
• Let’s say we want to test a method that gets an
Account and a Financial Transaction, checks whether
the Transaction is legitimate and only if it is, applies it
to the Account.
• How would you implement this test?
Testing Mediator Objects
5
Mediator Objects & Testing
6
copyright 2008 trainologic LTD
• What if the method receives an Account and prints
specific parts of it using a Logger?
Testing Mediator Objects
6
Mediator Objects & Testing
7
copyright 2008 trainologic LTD
• Many business objects that are really important to test
are mediators, i.e., they contain methods which interact
with other domain objects.
• Since in unit testing we want to test a unit without its
dependencies, we will have to eliminate them somehow.
• We do this by passing dummy objects to “fill in” for the
real dependencies.
Testing Mediator Objects
7
Mediator Objects & Testing
copyright 2008 trainologic LTD
Stubbing and Mocking
• Mediator Objects and Testing
• Stubs
• Mocking Objects
• Mockito
• PowerMockito
9
copyright 2008 trainologic LTD
• A Stub is a test-only object which:
• Implements the same interface as the production
object
• Gives the set of services used by the tested unit –
often using a naïve, hard-coded implementation
• More complex stubs may even contain test-supporting
logic, e.g. assert that they are used correctly
What is a Stub?
9
Stubs
copyright 2008 trainologic LTD
• BookInventory is a package for management of … book
inventories.
• It does inventory management, connection to book
catalogs (like library of congress), etc.
Exercise 1- BookInventory
Stubs
11
copyright 2008 trainologic LTD
• Main Classes
Exercise 1- BookInventory
11
Stubs
1111
BookInventory
Main entry point
BookCatalog
Get title data
Amazon
Get title data
LibraryOfCongress
Get title data
ChristianCatalog
Get title data
BookCopy
Main entry point
*
12
copyright 2008 trainologic LTD
• Write a unit test for BookInventory.registerCopy
• A “good” copy can be registered
• Several copies can be registered for both same and
different titles
• A copy can only be registered if the title details are
known
• Same copy cannot be registered twice
• Same copy id for two different titles gives specific
error message
Exercise 1- BookInventory
12
Stubs
13
copyright 2008 trainologic LTD
• Pros:
• We can write anything
• Cons:
• A lot of work
• Error prone
• Gets complicated as our demands increase:
• Was the catalog actually called?
• Was it called more than once?
• Was the isbn passed correctly to the catalog?
• What if two catalogs return different results?
Stubbing Pros and Cons
13
Stubs
copyright 2008 trainologic LTD
Stubbing and Mocking
• Mediator Objects and Testing
• Stubs
• Mocking Objects
• Mockito
• PowerMockito
15
copyright 2008 trainologic LTD
• A Mock object is an object that:
• Is created by the mock framework
• Implements the same interface as the original
dependent object. Otherwise, the compiler won’t let
us pass it to the tested object.
• Supplies the tested code with everything it expects
from the dependent object.
• Allows us to check that the tested code is using the
dependent object (the Mock) correctly.
Mock Objects
15
Mocks
16
copyright 2008 trainologic LTD
• To use a Mock object we should:
• Create instance of the Mock.
• Define bahavior during test.
• Invoke the tested code while passing the Mock as
parameter.
• Verify the Mock has been used correctly.
• Let’s see an example...
Introduction to Mock Objects
16
Mocks
17
copyright 2008 trainologic LTD
17
Mocks
Example: Testing book addition
with Mock Title Catalog
Construct
Set behavior
Verify behavior
18
copyright 2008 trainologic LTD
• Setup mocks for all dependencies required by our units
– Either as part of setUp (@Before) or at the beginning
of the test method
• Set mocks to correctly handle interaction – Usually at
the beginning of the test method
• Call business logic under testing
• Verify results & behavior (i.e. “side effects”)
The Typical Usage Pattern
18
Mocks
19
copyright 2008 trainologic LTD
• When we set expectations on unit behavior, we are also
setting restrictions on how it is implemented
• It is very easy to create tests that are implementation
specific, and will break even though the unit is OK
• Such tests are called “brittle” and they are nightmare to
maintain
The danger of testing behavior
through mocks
19
Mocks
20
copyright 2008 trainologic LTD
• Testing the SQL passed to the DB
• Verifying that the unit actually pulls data given by
mocks
• Testing for a specific order of calls to mocks
• Etc.
Some Examples of Brittle tests
20
Mocks
Over-Specified behavior == Brittle tests
copyright 2008 trainologic LTD
Stubbing and Mocking
• Mediator Objects and Testing
• Stubs
• Mocking Objects
• Mockito
• PowerMockito
22
copyright 2008 trainologic LTD
Mockito
22
• An open-source project providing an easy way to work
with Mock objects.
• Can be freely downloaded from Google Code
http://code.google.com/p/mockito.
• Released under the MIT License.
Mockito
23
copyright 2008 trainologic LTD
• No need to write Mock objects by hand.
• Simple “Set-Run-Verify” work model (as opposed to
(expect/record-run-verify)
• Refactoring-safe, no need to refactor Mock in case the
interface has changed.
• Supports return values and Exceptions.
• Flexible parameter handling in both set & verify
• Single jar, easy setup
• Easy to learn
Mockito - Benefits
23
Mockito
24
copyright 2008 trainologic LTD
• Import Mockito – preferably static:
import static org.mockito.Mockito.*;
•Option 1: “mock” instead of “new”
IAccount mockAct= mock(IAccount.class);// or even…
Account mockAct= mock(Account.class); //on a concrete class
•Option 2: @mock a member
@mock private Account mockAct;
(But then you need to use MockitoAnnotations.initMocks or
JUnitMockitoRunner)
Constructing Mocks
24
Mockito
25
copyright 2008 trainologic LTD
• Examples:
when(mockedList.get(0)).thenReturn("first");
when(mockedList.get(or(eq(1), eq(2)))). thenReturn(“more");
when(mockedList.get(gt(2)).thenThrow(new RuntimeException());
• Other Matchers:
• anyInt, anyString,…
• Custom matchers using hamcrest
Setting up Mock Behavior
25
Mockito
26
copyright 2008 trainologic LTD
• Verify a function was called:
verify(mockedList).clear();
•Verify parameters passed:
verify(mockedList).add("one");
verify(mockedList).add(anyString());
•Verify number of invocations:
verify(mockedList,atLeastOnce()).add("one");
verify(mockedList,times(3)).add(anyString());
similarly: never, atLeast, atMost
•CAUTION: This is the heart of brittle testing!
Verifying Behavior
26
Mockito
27
copyright 2008 trainologic LTD
• Using Mockito:
• Rewrite the tests from Exercise 1
• Also test that:
• BookInventory.registerCopy:
• Works well with several TitleCatalog objects
• Stops searching for book details once it has
them
• Extend BookInventory to support TitleCatalogs of
banned books. Test it.
(A copy of a banned book cannot be registered)
Exercise 2
27
Mockito
28
copyright 2008 trainologic LTD
• Spy allows us to wrap a real object, and perform partial
mocking
• This is dangerous,
but may be relevant
with some legacy
code.
Partial Mocking: Spy Objects
28
Mockito
29
copyright 2008 trainologic LTD
• Mockito allows you to verify the order in which methods
on mocks were called.
• This is yet another example of how you can create
extremely brittle tests. Use with caution.
Verifying call order
29
Mockito
30
copyright 2008 trainologic LTD
• You can make sure a mock was not used through
verifyZeroInteractions
•You can make sure a mock was not used following
a specific verify through
verifyNoMoreInteractions
•Both are often over specification…
Expecting Nothing is Expecting Something
30
Mockito
copyright 2008 trainologic LTD
Stubbing and Mocking
• Mediator Objects and Testing
• Stubs
• Mocking Objects
• Mockito
• PowerMockito
copyright 2009 Trainologic LTD
• PowerMock is a framework that extends
Mockito/EasyMock. For Mockito it is called
PowerMockito.
• PowerMock uses a custom classloader and bytecode
manipulation to enable mocking of static
methods, constructors, final classes and
methods, private methods, and more.
• This is a mixed blessing:
• We can avoid re-factoring legacy code in order to
test it
• We are less inclined to fix bad design
PowerMock
EasyMock
copyright 2009 Trainologic LTD
• Lets see an example:
• We have the following class:
PowerMockito Example
EasyMock
copyright 2009 Trainologic LTD
PowerMock Example
EasyMock
35
copyright 2008 trainologic LTD
EasyMock
• In order to unit-test isolated units we must use Mock
objects.
• Writing Mocks by hand is cumbersome.
• Mockito is a simple and easy to use library that helps us
create Mock implementations on the fly.
How do you know if a person really does unit testing?
Ask him what mocking framework he is using!
Summary
35

More Related Content

What's hot

Intro sur les tests unitaires
Intro sur les tests unitairesIntro sur les tests unitaires
Intro sur les tests unitaires
PHPPRO
 
Unit Testing And Mocking
Unit Testing And MockingUnit Testing And Mocking
Unit Testing And Mocking
Joe Wilson
 

What's hot (20)

Selenium TestNG
Selenium TestNGSelenium TestNG
Selenium TestNG
 
JUnit- A Unit Testing Framework
JUnit- A Unit Testing FrameworkJUnit- A Unit Testing Framework
JUnit- A Unit Testing Framework
 
Unit Testing
Unit TestingUnit Testing
Unit Testing
 
Workshop unit test
Workshop   unit testWorkshop   unit test
Workshop unit test
 
TestNG Annotations in Selenium | Edureka
TestNG Annotations in Selenium | EdurekaTestNG Annotations in Selenium | Edureka
TestNG Annotations in Selenium | Edureka
 
JUNit Presentation
JUNit PresentationJUNit Presentation
JUNit Presentation
 
Understanding Unit Testing
Understanding Unit TestingUnderstanding Unit Testing
Understanding Unit Testing
 
Testing with Spring: An Introduction
Testing with Spring: An IntroductionTesting with Spring: An Introduction
Testing with Spring: An Introduction
 
An Introduction to Unit Testing
An Introduction to Unit TestingAn Introduction to Unit Testing
An Introduction to Unit Testing
 
Core java Essentials
Core java EssentialsCore java Essentials
Core java Essentials
 
Intro sur les tests unitaires
Intro sur les tests unitairesIntro sur les tests unitaires
Intro sur les tests unitaires
 
testng
testngtestng
testng
 
Mock your way with Mockito
Mock your way with MockitoMock your way with Mockito
Mock your way with Mockito
 
Unit Testing And Mocking
Unit Testing And MockingUnit Testing And Mocking
Unit Testing And Mocking
 
Unit tests & TDD
Unit tests & TDDUnit tests & TDD
Unit tests & TDD
 
Junit
JunitJunit
Junit
 
Clean code
Clean codeClean code
Clean code
 
Unit Testing Concepts and Best Practices
Unit Testing Concepts and Best PracticesUnit Testing Concepts and Best Practices
Unit Testing Concepts and Best Practices
 
JMockit Framework Overview
JMockit Framework OverviewJMockit Framework Overview
JMockit Framework Overview
 
Py.test
Py.testPy.test
Py.test
 

Similar to Mockito

Similar to Mockito (20)

Unit testing and mocking in Python - PyCon 2018 - Kenya
Unit testing and mocking in Python - PyCon 2018 - KenyaUnit testing and mocking in Python - PyCon 2018 - Kenya
Unit testing and mocking in Python - PyCon 2018 - Kenya
 
Junit, mockito, etc
Junit, mockito, etcJunit, mockito, etc
Junit, mockito, etc
 
Devday2016 real unittestingwithmockframework-phatvu
Devday2016 real unittestingwithmockframework-phatvuDevday2016 real unittestingwithmockframework-phatvu
Devday2016 real unittestingwithmockframework-phatvu
 
How and what to unit test
How and what to unit testHow and what to unit test
How and what to unit test
 
[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...
 
Mock with Mockito
Mock with MockitoMock with Mockito
Mock with Mockito
 
EasyMock for Java
EasyMock for JavaEasyMock for Java
EasyMock for Java
 
Summit 16: Stop Writing Legacy Code!
Summit 16: Stop Writing Legacy Code!Summit 16: Stop Writing Legacy Code!
Summit 16: Stop Writing Legacy Code!
 
Easymock
EasymockEasymock
Easymock
 
Microsoft Fakes, Unit Testing the (almost) Untestable Code
Microsoft Fakes, Unit Testing the (almost) Untestable CodeMicrosoft Fakes, Unit Testing the (almost) Untestable Code
Microsoft Fakes, Unit Testing the (almost) Untestable Code
 
Unit Tests with Microsoft Fakes
Unit Tests with Microsoft FakesUnit Tests with Microsoft Fakes
Unit Tests with Microsoft Fakes
 
Mocking with Mockito
Mocking with MockitoMocking with Mockito
Mocking with Mockito
 
Easy mock
Easy mockEasy mock
Easy mock
 
Automated testing of ASP .Net Core applications
Automated testing of ASP .Net Core applications Automated testing of ASP .Net Core applications
Automated testing of ASP .Net Core applications
 
Ch11lect1 ud
Ch11lect1 udCh11lect1 ud
Ch11lect1 ud
 
Prototype design patterns
Prototype design patternsPrototype design patterns
Prototype design patterns
 
Unit Testing Android Applications
Unit Testing Android ApplicationsUnit Testing Android Applications
Unit Testing Android Applications
 
Top Testing Tips
Top Testing TipsTop Testing Tips
Top Testing Tips
 
CBDW2014 - MockBox, get ready to mock your socks off!
CBDW2014 - MockBox, get ready to mock your socks off!CBDW2014 - MockBox, get ready to mock your socks off!
CBDW2014 - MockBox, get ready to mock your socks off!
 
Unit testing basic
Unit testing basicUnit testing basic
Unit testing basic
 

Recently uploaded

Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
ciinovamais
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
negromaestrong
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
AnaAcapella
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
kauryashika82
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
heathfieldcps1
 

Recently uploaded (20)

This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
 
Dyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxDyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptx
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 

Mockito

  • 1. copyright 2008 trainologic LTD Unit testing in a real-life environment using Mockito Stubbing and Mocking
  • 2. copyright 2008 trainologic LTD Stubbing and Mocking • Mediator Objects and Testing • Stubs • Mocking Objects • Mockito • PowerMockito
  • 3. 3 copyright 2008 trainologic LTD • The JUnit testing framework, makes the testing of an independent, non-void method, simple. • But... how do we test an method with no return value? • How do we test a method that interacts with other domain objects? Testing Mediator Objects 3 Mediator Objects & Testing
  • 4. 4 copyright 2008 trainologic LTD Mediator Objects & Testing • Dependencies – In order for a function to run it often requires Files, DB, JNDI or generally – other units • Side effects – As a function runs we are often interested in data written to files, saved to db or generally – passed to other units How can we test a single unit, without being affected by other units – their errors, set-up complexities and performance issues? In Real-Life Units are NOT Totally Self Contained 4
  • 5. 5 copyright 2008 trainologic LTD • Let’s say we want to test a method that gets an Account and a Financial Transaction, checks whether the Transaction is legitimate and only if it is, applies it to the Account. • How would you implement this test? Testing Mediator Objects 5 Mediator Objects & Testing
  • 6. 6 copyright 2008 trainologic LTD • What if the method receives an Account and prints specific parts of it using a Logger? Testing Mediator Objects 6 Mediator Objects & Testing
  • 7. 7 copyright 2008 trainologic LTD • Many business objects that are really important to test are mediators, i.e., they contain methods which interact with other domain objects. • Since in unit testing we want to test a unit without its dependencies, we will have to eliminate them somehow. • We do this by passing dummy objects to “fill in” for the real dependencies. Testing Mediator Objects 7 Mediator Objects & Testing
  • 8. copyright 2008 trainologic LTD Stubbing and Mocking • Mediator Objects and Testing • Stubs • Mocking Objects • Mockito • PowerMockito
  • 9. 9 copyright 2008 trainologic LTD • A Stub is a test-only object which: • Implements the same interface as the production object • Gives the set of services used by the tested unit – often using a naïve, hard-coded implementation • More complex stubs may even contain test-supporting logic, e.g. assert that they are used correctly What is a Stub? 9 Stubs
  • 10. copyright 2008 trainologic LTD • BookInventory is a package for management of … book inventories. • It does inventory management, connection to book catalogs (like library of congress), etc. Exercise 1- BookInventory Stubs
  • 11. 11 copyright 2008 trainologic LTD • Main Classes Exercise 1- BookInventory 11 Stubs 1111 BookInventory Main entry point BookCatalog Get title data Amazon Get title data LibraryOfCongress Get title data ChristianCatalog Get title data BookCopy Main entry point *
  • 12. 12 copyright 2008 trainologic LTD • Write a unit test for BookInventory.registerCopy • A “good” copy can be registered • Several copies can be registered for both same and different titles • A copy can only be registered if the title details are known • Same copy cannot be registered twice • Same copy id for two different titles gives specific error message Exercise 1- BookInventory 12 Stubs
  • 13. 13 copyright 2008 trainologic LTD • Pros: • We can write anything • Cons: • A lot of work • Error prone • Gets complicated as our demands increase: • Was the catalog actually called? • Was it called more than once? • Was the isbn passed correctly to the catalog? • What if two catalogs return different results? Stubbing Pros and Cons 13 Stubs
  • 14. copyright 2008 trainologic LTD Stubbing and Mocking • Mediator Objects and Testing • Stubs • Mocking Objects • Mockito • PowerMockito
  • 15. 15 copyright 2008 trainologic LTD • A Mock object is an object that: • Is created by the mock framework • Implements the same interface as the original dependent object. Otherwise, the compiler won’t let us pass it to the tested object. • Supplies the tested code with everything it expects from the dependent object. • Allows us to check that the tested code is using the dependent object (the Mock) correctly. Mock Objects 15 Mocks
  • 16. 16 copyright 2008 trainologic LTD • To use a Mock object we should: • Create instance of the Mock. • Define bahavior during test. • Invoke the tested code while passing the Mock as parameter. • Verify the Mock has been used correctly. • Let’s see an example... Introduction to Mock Objects 16 Mocks
  • 17. 17 copyright 2008 trainologic LTD 17 Mocks Example: Testing book addition with Mock Title Catalog Construct Set behavior Verify behavior
  • 18. 18 copyright 2008 trainologic LTD • Setup mocks for all dependencies required by our units – Either as part of setUp (@Before) or at the beginning of the test method • Set mocks to correctly handle interaction – Usually at the beginning of the test method • Call business logic under testing • Verify results & behavior (i.e. “side effects”) The Typical Usage Pattern 18 Mocks
  • 19. 19 copyright 2008 trainologic LTD • When we set expectations on unit behavior, we are also setting restrictions on how it is implemented • It is very easy to create tests that are implementation specific, and will break even though the unit is OK • Such tests are called “brittle” and they are nightmare to maintain The danger of testing behavior through mocks 19 Mocks
  • 20. 20 copyright 2008 trainologic LTD • Testing the SQL passed to the DB • Verifying that the unit actually pulls data given by mocks • Testing for a specific order of calls to mocks • Etc. Some Examples of Brittle tests 20 Mocks Over-Specified behavior == Brittle tests
  • 21. copyright 2008 trainologic LTD Stubbing and Mocking • Mediator Objects and Testing • Stubs • Mocking Objects • Mockito • PowerMockito
  • 22. 22 copyright 2008 trainologic LTD Mockito 22 • An open-source project providing an easy way to work with Mock objects. • Can be freely downloaded from Google Code http://code.google.com/p/mockito. • Released under the MIT License. Mockito
  • 23. 23 copyright 2008 trainologic LTD • No need to write Mock objects by hand. • Simple “Set-Run-Verify” work model (as opposed to (expect/record-run-verify) • Refactoring-safe, no need to refactor Mock in case the interface has changed. • Supports return values and Exceptions. • Flexible parameter handling in both set & verify • Single jar, easy setup • Easy to learn Mockito - Benefits 23 Mockito
  • 24. 24 copyright 2008 trainologic LTD • Import Mockito – preferably static: import static org.mockito.Mockito.*; •Option 1: “mock” instead of “new” IAccount mockAct= mock(IAccount.class);// or even… Account mockAct= mock(Account.class); //on a concrete class •Option 2: @mock a member @mock private Account mockAct; (But then you need to use MockitoAnnotations.initMocks or JUnitMockitoRunner) Constructing Mocks 24 Mockito
  • 25. 25 copyright 2008 trainologic LTD • Examples: when(mockedList.get(0)).thenReturn("first"); when(mockedList.get(or(eq(1), eq(2)))). thenReturn(“more"); when(mockedList.get(gt(2)).thenThrow(new RuntimeException()); • Other Matchers: • anyInt, anyString,… • Custom matchers using hamcrest Setting up Mock Behavior 25 Mockito
  • 26. 26 copyright 2008 trainologic LTD • Verify a function was called: verify(mockedList).clear(); •Verify parameters passed: verify(mockedList).add("one"); verify(mockedList).add(anyString()); •Verify number of invocations: verify(mockedList,atLeastOnce()).add("one"); verify(mockedList,times(3)).add(anyString()); similarly: never, atLeast, atMost •CAUTION: This is the heart of brittle testing! Verifying Behavior 26 Mockito
  • 27. 27 copyright 2008 trainologic LTD • Using Mockito: • Rewrite the tests from Exercise 1 • Also test that: • BookInventory.registerCopy: • Works well with several TitleCatalog objects • Stops searching for book details once it has them • Extend BookInventory to support TitleCatalogs of banned books. Test it. (A copy of a banned book cannot be registered) Exercise 2 27 Mockito
  • 28. 28 copyright 2008 trainologic LTD • Spy allows us to wrap a real object, and perform partial mocking • This is dangerous, but may be relevant with some legacy code. Partial Mocking: Spy Objects 28 Mockito
  • 29. 29 copyright 2008 trainologic LTD • Mockito allows you to verify the order in which methods on mocks were called. • This is yet another example of how you can create extremely brittle tests. Use with caution. Verifying call order 29 Mockito
  • 30. 30 copyright 2008 trainologic LTD • You can make sure a mock was not used through verifyZeroInteractions •You can make sure a mock was not used following a specific verify through verifyNoMoreInteractions •Both are often over specification… Expecting Nothing is Expecting Something 30 Mockito
  • 31. copyright 2008 trainologic LTD Stubbing and Mocking • Mediator Objects and Testing • Stubs • Mocking Objects • Mockito • PowerMockito
  • 32. copyright 2009 Trainologic LTD • PowerMock is a framework that extends Mockito/EasyMock. For Mockito it is called PowerMockito. • PowerMock uses a custom classloader and bytecode manipulation to enable mocking of static methods, constructors, final classes and methods, private methods, and more. • This is a mixed blessing: • We can avoid re-factoring legacy code in order to test it • We are less inclined to fix bad design PowerMock EasyMock
  • 33. copyright 2009 Trainologic LTD • Lets see an example: • We have the following class: PowerMockito Example EasyMock
  • 34. copyright 2009 Trainologic LTD PowerMock Example EasyMock
  • 35. 35 copyright 2008 trainologic LTD EasyMock • In order to unit-test isolated units we must use Mock objects. • Writing Mocks by hand is cumbersome. • Mockito is a simple and easy to use library that helps us create Mock implementations on the fly. How do you know if a person really does unit testing? Ask him what mocking framework he is using! Summary 35