SlideShare a Scribd company logo
1 of 36
Hamcrest Matchers
assertThat(audience, is(payingAttention()));




     Writing and using them for
 assertions, mocking and behavioral
             verification
What is Hamcrest?
According to the project homepage,
  [Hamcrest] provides a library of matcher objects (also known
  as constraints or predicates) allowing 'match' rules to be
  defined declaratively, to be used in other frameworks. Typical
  scenarios include testing frameworks, mocking libraries and
  UI validation rules.

  Hamcrest is not a testing library: it just happens that
  matchers are very useful for testing.
Typical usage example
                             Actual value
assertThat(
     someString,
     is(equalTo(someOtherString))
);
                                      Expectation on the
                                     value, represented as
                                          a Matcher
Wait – but what’s wrong with
           assertEquals?
assertEquals(someString, someOtherString)
         This looks just as good, doesn’t it?

assertEquals(
     cat.getName(),
     otherCat.getName())

         Not so bad, either
However,
             What about collections?

assertEquals(someKitten,
     cat.getKittens().iterator().next())

 This works if our kitten is the first element in the
 collection, but what about asserting that the kitten
 exists anywhere in the collection?
Well, we can do this:
boolean found = false;

for (Kitten kitten : cat.getKittens()) {
      if (kitten.equals(someKitten)) found = true;
}

assertTrue(found);
But don’t you prefer this?
                            Iterable<Kitten>
assertThat(
     cat.getKittens(),
     hasItem(someKitten))

                                      Matcher on
                                 Iterable<Kitten> that
                              accepts a Matcher<Kitten>
OK, so how does this work?
Basic Matchers
A Matcher is initialized with the expected
values, which are compared against the
actual object we’re matching against when
invoking the matcher.
IsEqual Matcher
class IsEqual<T> extends BaseMatcher<T> {
   private final Object object; // c’tor omitted for readability

    public boolean matches(Object arg) {
      return object.equals(arg);
    }
}
StringEndsWith Matcher
class StringEndsWith <T> extends BaseMatcher<T> {
   private final String suffix; // c’tor omitted for readability

    public boolean matches(String s) {
      return s.endsWith(suffix);
    }
}
Using while stubbing mocks
Mockito in one slide
CatShop catShop = mock(CatShop.class);
when(catShop.purchase(somePurchaseRequest
).thenReturn(someCat)             Creating the mock



... do some work                      Stubbing the mock




verify(catShop)                Behavior verification


 .purchase(expectedPurchaseRequest)
Without Hamcrest
CatPurchase catPurchase = new CatPurchase();
catPurchase.setBreed(“Brittish”);

when(catShop.purchase(catPurchase))
).thenReturn(somePreviouslyStubbedCat)
However, this will force us to set all other fields of the
CatPurchase class, since Mockito will perform an exact match
comparison between our instance and the actual one
Of course, you could do this:
when(
      catShop.purchase(
           any(CatPurchaseDTO.class))
).thenReturn(somePreviouslyStubbedCat)

This works, but lacks the benefit of asserting that our
operation is only valid for the expected input
The solution: use argThat()
                               Mockito helper that creates
                               an argument matcher from
when(                             a Hamcrest matcher

      catShop.purchase(argThat(
           hasPropertyWithValue(
                “breed”,
                startsWith(“Brittish”))))
).thenReturn(somePreviouslyStubbedCat)
                                 Hamcrest matcher that
                                   accepts a Java Bean
                                  property name and a
                                 nested value matcher
Using for behavioral verification
CatDao catDao = mock(CatDao.class);
CatStore catStore = new CatStore (catDao);with a Catcall to
                                     Verify that there was a
                                CatDao.update()               instance,
catStore.saveOrUpdate(existingCat); the ‘name’ property is
                                   for which
                                “felix” and the ‘kittens’ property is an
verify(catDao).update(argThat( Iterable containing two kittens,
                                          kitten1 and kitten2
       allOf(
              hasPropertyWithValue(“name”, “felix”),
              hasPropertyWithValue(“kittens”,
                    hasItems(kitten1, kitten2)))));
Writing custom matchers
Writing your own matchers
In the previous examples, we used the
hasPropertyWithValue() matcher, which, while
allowing for fluent assertions or stubbing, has
the disadvantage of not being type-safe.

This is where writing custom matchers becomes
useful (or, as some would say, necessary).
The Matcher<T> hierarchy
abstract class TypeSafeMatcher<T> extends BaseMatcher<T> {
  boolean matchesSafely(T item);
}

interface Matcher<T> extends SelfDescribing {
   boolean matches(Object item);
}

interface SelfDescribing {
   void describeTo(Description description);
}
Dissecting some Wix matchers
class HostMatcher extends TypeSafeMatcher<WixUrl> {
   private final Matcher<String> host; // c’tor omitted for readability

  public boolean matchesSafely(WixUrl url) {
    return host.matches(url.host);                                Nested matcher that
  }                                                              will be replayed on the
                                                                 Actual value being
                                                                       actual value
                                                                  matched against
  public void describeTo(Description description) {
    description.appendText("Host that matches ").appendValue(host); we write a
                                                               Here
  }                                                         readable description of
                                                              our expected value

  public static HostMatcher hasHost(Matcher<String> host)A utility factory method for
                                                         {
    return new HostMatcher(host);                           fluently creating this
  }                                                       matcher. Not mandatory
}                                                           but very convenient.
Using our matcher
WixUrl url =
new WixUrl(“http://www.wix.com/some/path”);

assertThat(url, hasHost(is(“www.wix.com”)));   ✔
assertThat(url, hasHost(endsWith(“wix.com”))); ✔
assertThat(url, hasHost(is(“google.com”)));    ✗
                           java.lang.AssertionError:
                Expected: Host that matches <is ”google.com">
                    got: <http://www.wix.com/some/path>
Another URL matcher
class WixUrlParamMatcher extends TypeSafeMatcher<WixUrl> {
  private final Matcher<String> name; // c’tor omitted for readability
                                        url.params is a Map<String, String>, so
  private final Matcher<String> value;
                                         we create a matcher for a map entry
                                         around our name and value matchers
    public boolean matchesSafely(WixUrl url) { replay it against the actual value
                                         and
        return hasEntry(name, value).matches(url.params);
    }

    public void describeTo(Description description) {
      description
           .appendText("Param with name ").appendValue(name)
           .appendText(" and value ").appendValue(value);
    }
}
Using the two matchers together
String s = “www.wix.com?p=v1&p=v2&p3=v3”;
WixUrl url = new WixUrl(s);

assertThat(url, allOf(
     hasHost(is(“www.wix.com”)),
     hasParam(is(“p”), anyOf(is(“v1”), is(“v2”))),
     hasParam(is(“p3”), startsWith(“v”))));
But wait – my URL is a String!
Sometimes you’ll have matchers that accept a specific
type, such as WixUrl or XML Document. For this
purpose, use a wrapping matcher that performs the
conversion for you:
class StringAsUrlMatcher extends TypeSafeMatcher<String> {
  private final Matcher<WixUrl> urlMatcher;
  public boolean matchesSafely(String urlString) {
     return matcher.matches(new WixUrl(urlString));
  }
  public void describeTo(Description description) {
     description.appendText("Url that matches ")
          .appendDescriptionOf(urlMatcher);
  }
}
Ad-Hoc matchers for readable
           tests
Consider the following class

class Proxy {
   private final HttpClient httpClient;
   private String targetUrl;

    public String handle (String path) {
       httpClient.execute(// some HttpGet);
    }
}
The HttpClient interface
public HttpResponse execute(HttpGet get);

Our class under test is expected to replace the domain
in path with targetUrl, thus serving as an HTTP Proxy.

We would like to stub and verify the HttpGet parameter
to make sure it builds the proxy URL properly.
My test looks something like this
HttpClient client = mock(HttpClient.class);
String url = “http://www.example.com/”;
{…} handler = new Proxy(client, url);
when(client.execute({www.a.com/path}))
       .thenReturn(someResponse);

handler.handle(“www.a.com/path”);

verify(client).execute({www.example.com/path});
The solution
Matcher<HttpGet> HttpGet(final Matcher<String> urlMatcher) {
 return new TypeSafeMatcher<HttpGet>() {
   public boolean matchesSafely(HttpGet httpGet) {
     return urlMatcher.matches(httpGet.getURI().toString()));
   }

         public void describeTo(Description description) {
           description.appendText("HttpGet with url ")
             .appendDescriptionOf(urlMatcher);
         }
    };
}
Usage of the HttpGet matcher
when(handler.execute(argThat(
      is(HttpGet(startsWith(“http://www.a.com”))))))
  .thenReturn(response);

handler.handle(“http://www.a.com/some/path”);

verify(client).execute(argThat(is(HttpGet(
       is(“http://www.example.com/some/path”)))));
The plot thickens
Moments after triumphantly running the test I
realized that in addition to verifying that the
request went to the appropriate URL, I had to
verify that some – but not all – HTTP headers
were copied to the proxy request and some new
ones were added to it.
Ad-hoc matchers to the rescue
1) Add the following parameter to the HttpGet
   method:
 final Matcher<Header[]> headersMatcher


2) Change the matchesSafetly() method:
 public boolean matchesSafely(HttpGet httpGet) {
   return urlMatcher.matches(httpGet.getURI().toString())
     && headersMatcher.matches(httpGet.getAllHeaders());
 }
Ad-hoc matchers to the rescue
3) Write a matcher for the Header class:
Matcher<Header> Header(
  final Matcher<String> name, final Matcher<String> value) {
  return new TypeSafeMatcher<Header>() {
     public boolean matchesSafely(Header header) {
        return name.matches(header.getName())
               && value.matches(header.getValue());
     }
  }
}
Putting it all together
verify(client).execute(argThat(is(HttpGet( that the X-Wix-Base-Uri header
                                     Asserts
                                     contains the expected value (using the
  is({URL matcher omitted for readability}),
                                     WixUrl matchers we’ve seen before).
  allOf(
    hasItemInArray(
      Header(
       is("X-Wix-Base-Uri"),
                                      Asserts that there’s no header by
       isUrlThat(                     the name of X-Seen-By, no matter
                                      what value it has
          hasHost(“www.wix.com”), hasPath(myPath)))),
    not(hasItemInArray(
      Header(is("X-Seen-By"), any(String.class))))
)))));
Questions?




             shaiy@wix.com
http://il.linkedin.com/in/electricmonk
     http://twitter.com/shaiyallin

More Related Content

What's hot

Automação e virtualização de serviços
Automação e virtualização de serviçosAutomação e virtualização de serviços
Automação e virtualização de serviçosElias Nogueira
 
JUnit & Mockito, first steps
JUnit & Mockito, first stepsJUnit & Mockito, first steps
JUnit & Mockito, first stepsRenato Primavera
 
Asynchronous JavaScript Programming with Callbacks & Promises
Asynchronous JavaScript Programming with Callbacks & PromisesAsynchronous JavaScript Programming with Callbacks & Promises
Asynchronous JavaScript Programming with Callbacks & PromisesHùng Nguyễn Huy
 
Building Reusable SwiftUI Components
Building Reusable SwiftUI ComponentsBuilding Reusable SwiftUI Components
Building Reusable SwiftUI ComponentsPeter Friese
 
Android jetpack compose | Declarative UI
Android jetpack compose | Declarative UI Android jetpack compose | Declarative UI
Android jetpack compose | Declarative UI Ajinkya Saswade
 
API Testing. Streamline your testing process.
API Testing. Streamline your testing process.API Testing. Streamline your testing process.
API Testing. Streamline your testing process.Andrey Oleynik
 
De a máxima cobertura nos seus testes de API
De a máxima cobertura nos seus testes de APIDe a máxima cobertura nos seus testes de API
De a máxima cobertura nos seus testes de APIElias Nogueira
 
JavaScript Fetch API
JavaScript Fetch APIJavaScript Fetch API
JavaScript Fetch APIXcat Liu
 
REST APIs with Spring
REST APIs with SpringREST APIs with Spring
REST APIs with SpringJoshua Long
 
Spring Framework - Spring Security
Spring Framework - Spring SecuritySpring Framework - Spring Security
Spring Framework - Spring SecurityDzmitry Naskou
 
Building an Android app with Jetpack Compose and Firebase
Building an Android app with Jetpack Compose and FirebaseBuilding an Android app with Jetpack Compose and Firebase
Building an Android app with Jetpack Compose and FirebaseMarina Coelho
 
REST API testing with SpecFlow
REST API testing with SpecFlowREST API testing with SpecFlow
REST API testing with SpecFlowAiste Stikliute
 
Testing RESTful Webservices using the REST-assured framework
Testing RESTful Webservices using the REST-assured frameworkTesting RESTful Webservices using the REST-assured framework
Testing RESTful Webservices using the REST-assured frameworkMicha Kops
 
Declarative UIs with Jetpack Compose
Declarative UIs with Jetpack ComposeDeclarative UIs with Jetpack Compose
Declarative UIs with Jetpack ComposeRamon Ribeiro Rabello
 
Jetpack Compose a new way to implement UI on Android
Jetpack Compose a new way to implement UI on AndroidJetpack Compose a new way to implement UI on Android
Jetpack Compose a new way to implement UI on AndroidNelson Glauber Leal
 

What's hot (20)

Rest assured
Rest assuredRest assured
Rest assured
 
Belajar Postman test runner
Belajar Postman test runnerBelajar Postman test runner
Belajar Postman test runner
 
Cucumber BDD
Cucumber BDDCucumber BDD
Cucumber BDD
 
Automação e virtualização de serviços
Automação e virtualização de serviçosAutomação e virtualização de serviços
Automação e virtualização de serviços
 
JUnit & Mockito, first steps
JUnit & Mockito, first stepsJUnit & Mockito, first steps
JUnit & Mockito, first steps
 
Asynchronous JavaScript Programming with Callbacks & Promises
Asynchronous JavaScript Programming with Callbacks & PromisesAsynchronous JavaScript Programming with Callbacks & Promises
Asynchronous JavaScript Programming with Callbacks & Promises
 
Junit
JunitJunit
Junit
 
Building Reusable SwiftUI Components
Building Reusable SwiftUI ComponentsBuilding Reusable SwiftUI Components
Building Reusable SwiftUI Components
 
Spring Boot
Spring BootSpring Boot
Spring Boot
 
Android jetpack compose | Declarative UI
Android jetpack compose | Declarative UI Android jetpack compose | Declarative UI
Android jetpack compose | Declarative UI
 
API Testing. Streamline your testing process.
API Testing. Streamline your testing process.API Testing. Streamline your testing process.
API Testing. Streamline your testing process.
 
De a máxima cobertura nos seus testes de API
De a máxima cobertura nos seus testes de APIDe a máxima cobertura nos seus testes de API
De a máxima cobertura nos seus testes de API
 
JavaScript Fetch API
JavaScript Fetch APIJavaScript Fetch API
JavaScript Fetch API
 
REST APIs with Spring
REST APIs with SpringREST APIs with Spring
REST APIs with Spring
 
Spring Framework - Spring Security
Spring Framework - Spring SecuritySpring Framework - Spring Security
Spring Framework - Spring Security
 
Building an Android app with Jetpack Compose and Firebase
Building an Android app with Jetpack Compose and FirebaseBuilding an Android app with Jetpack Compose and Firebase
Building an Android app with Jetpack Compose and Firebase
 
REST API testing with SpecFlow
REST API testing with SpecFlowREST API testing with SpecFlow
REST API testing with SpecFlow
 
Testing RESTful Webservices using the REST-assured framework
Testing RESTful Webservices using the REST-assured frameworkTesting RESTful Webservices using the REST-assured framework
Testing RESTful Webservices using the REST-assured framework
 
Declarative UIs with Jetpack Compose
Declarative UIs with Jetpack ComposeDeclarative UIs with Jetpack Compose
Declarative UIs with Jetpack Compose
 
Jetpack Compose a new way to implement UI on Android
Jetpack Compose a new way to implement UI on AndroidJetpack Compose a new way to implement UI on Android
Jetpack Compose a new way to implement UI on Android
 

Viewers also liked

JUnit Kung Fu: Getting More Out of Your Unit Tests
JUnit Kung Fu: Getting More Out of Your Unit TestsJUnit Kung Fu: Getting More Out of Your Unit Tests
JUnit Kung Fu: Getting More Out of Your Unit TestsJohn Ferguson Smart Limited
 
Testing android apps with espresso
Testing android apps with espressoTesting android apps with espresso
Testing android apps with espressoÉdipo Souza
 
Ui testing with espresso
Ui testing with espressoUi testing with espresso
Ui testing with espressoDroidcon Spain
 
TDD - Cultivating a Beginner's Mind
TDD -  Cultivating a Beginner's MindTDD -  Cultivating a Beginner's Mind
TDD - Cultivating a Beginner's MindShai Yallin
 
Writing quick and beautiful automation code
Writing quick and beautiful automation codeWriting quick and beautiful automation code
Writing quick and beautiful automation codeCristian COȚOI
 
使用 Java 上的 future/promise API
使用 Java 上的 future/promise  API使用 Java 上的 future/promise  API
使用 Java 上的 future/promise APIkoji lin
 
Testing basics for developers
Testing basics for developersTesting basics for developers
Testing basics for developersAnton Udovychenko
 
Reliable tests with selenium web driver
Reliable tests with selenium web driverReliable tests with selenium web driver
Reliable tests with selenium web driverPawelPabich
 
Utilizando Espresso e UIAutomator no Teste de Apps Android
Utilizando Espresso e UIAutomator no Teste de Apps AndroidUtilizando Espresso e UIAutomator no Teste de Apps Android
Utilizando Espresso e UIAutomator no Teste de Apps AndroidEduardo Carrara de Araujo
 
"Design and Test First"-Workflow für REST APIs
"Design and Test First"-Workflow für REST APIs"Design and Test First"-Workflow für REST APIs
"Design and Test First"-Workflow für REST APIsMarkus Decke
 
Assertj-core
Assertj-coreAssertj-core
Assertj-corefbenault
 
Showdown of the Asserts by Philipp Krenn
Showdown of the Asserts by Philipp KrennShowdown of the Asserts by Philipp Krenn
Showdown of the Asserts by Philipp KrennJavaDayUA
 
Property based-testing
Property based-testingProperty based-testing
Property based-testingfbenault
 
Illia Seleznov - Integration tests for Spring Boot application
Illia Seleznov - Integration tests for Spring Boot applicationIllia Seleznov - Integration tests for Spring Boot application
Illia Seleznov - Integration tests for Spring Boot applicationAnna Shymchenko
 
Espresso testing
Espresso testingEspresso testing
Espresso testingvodqancr
 

Viewers also liked (20)

JUnit Kung Fu: Getting More Out of Your Unit Tests
JUnit Kung Fu: Getting More Out of Your Unit TestsJUnit Kung Fu: Getting More Out of Your Unit Tests
JUnit Kung Fu: Getting More Out of Your Unit Tests
 
Testing android apps with espresso
Testing android apps with espressoTesting android apps with espresso
Testing android apps with espresso
 
Ui testing with espresso
Ui testing with espressoUi testing with espresso
Ui testing with espresso
 
TDD - Cultivating a Beginner's Mind
TDD -  Cultivating a Beginner's MindTDD -  Cultivating a Beginner's Mind
TDD - Cultivating a Beginner's Mind
 
Mockito
MockitoMockito
Mockito
 
Writing quick and beautiful automation code
Writing quick and beautiful automation codeWriting quick and beautiful automation code
Writing quick and beautiful automation code
 
使用 Java 上的 future/promise API
使用 Java 上的 future/promise  API使用 Java 上的 future/promise  API
使用 Java 上的 future/promise API
 
Testing basics for developers
Testing basics for developersTesting basics for developers
Testing basics for developers
 
Android Espresso
Android EspressoAndroid Espresso
Android Espresso
 
Reliable tests with selenium web driver
Reliable tests with selenium web driverReliable tests with selenium web driver
Reliable tests with selenium web driver
 
Utilizando Espresso e UIAutomator no Teste de Apps Android
Utilizando Espresso e UIAutomator no Teste de Apps AndroidUtilizando Espresso e UIAutomator no Teste de Apps Android
Utilizando Espresso e UIAutomator no Teste de Apps Android
 
"Design and Test First"-Workflow für REST APIs
"Design and Test First"-Workflow für REST APIs"Design and Test First"-Workflow für REST APIs
"Design and Test First"-Workflow für REST APIs
 
Assertj-core
Assertj-coreAssertj-core
Assertj-core
 
Showdown of the Asserts by Philipp Krenn
Showdown of the Asserts by Philipp KrennShowdown of the Asserts by Philipp Krenn
Showdown of the Asserts by Philipp Krenn
 
JUnit & AssertJ
JUnit & AssertJJUnit & AssertJ
JUnit & AssertJ
 
Property based-testing
Property based-testingProperty based-testing
Property based-testing
 
Illia Seleznov - Integration tests for Spring Boot application
Illia Seleznov - Integration tests for Spring Boot applicationIllia Seleznov - Integration tests for Spring Boot application
Illia Seleznov - Integration tests for Spring Boot application
 
Espresso Barista
Espresso BaristaEspresso Barista
Espresso Barista
 
Как заработать денег в CPA
Как заработать денег в CPAКак заработать денег в CPA
Как заработать денег в CPA
 
Espresso testing
Espresso testingEspresso testing
Espresso testing
 

Similar to Writing and using Hamcrest Matchers

Pragmatic unittestingwithj unit
Pragmatic unittestingwithj unitPragmatic unittestingwithj unit
Pragmatic unittestingwithj unitliminescence
 
Client server part 12
Client server part 12Client server part 12
Client server part 12fadlihulopi
 
Property Wrappers or how Swift decided to become Java
Property Wrappers or how Swift decided to become JavaProperty Wrappers or how Swift decided to become Java
Property Wrappers or how Swift decided to become JavaVincent Pradeilles
 
Sustaining Test-Driven Development
Sustaining Test-Driven DevelopmentSustaining Test-Driven Development
Sustaining Test-Driven DevelopmentAgileOnTheBeach
 
Kamil Chmielewski, Jacek Juraszek - "Hadoop. W poszukiwaniu złotego młotka."
Kamil Chmielewski, Jacek Juraszek - "Hadoop. W poszukiwaniu złotego młotka."Kamil Chmielewski, Jacek Juraszek - "Hadoop. W poszukiwaniu złotego młotka."
Kamil Chmielewski, Jacek Juraszek - "Hadoop. W poszukiwaniu złotego młotka."sjabs
 
Java Boilerplate Busters
Java Boilerplate BustersJava Boilerplate Busters
Java Boilerplate BustersHamletDRC
 
Test-driven Development with AEM
Test-driven Development with AEMTest-driven Development with AEM
Test-driven Development with AEMJan Wloka
 
Spring data ii
Spring data iiSpring data ii
Spring data ii명철 강
 
Java Boilerplate Busters
Java Boilerplate BustersJava Boilerplate Busters
Java Boilerplate BustersHamletDRC
 
Introduction to Client-Side Javascript
Introduction to Client-Side JavascriptIntroduction to Client-Side Javascript
Introduction to Client-Side JavascriptJulie Iskander
 
Improving the java type system
Improving the java type systemImproving the java type system
Improving the java type systemJoão Loff
 
Hadoop Integration in Cassandra
Hadoop Integration in CassandraHadoop Integration in Cassandra
Hadoop Integration in CassandraJairam Chandar
 
Core2 Document - Java SCORE Overview.pptx.pdf
Core2 Document - Java SCORE Overview.pptx.pdfCore2 Document - Java SCORE Overview.pptx.pdf
Core2 Document - Java SCORE Overview.pptx.pdfThchTrngGia
 

Similar to Writing and using Hamcrest Matchers (20)

Developer Testing Tools Roundup
Developer Testing Tools RoundupDeveloper Testing Tools Roundup
Developer Testing Tools Roundup
 
Pragmatic unittestingwithj unit
Pragmatic unittestingwithj unitPragmatic unittestingwithj unit
Pragmatic unittestingwithj unit
 
Client server part 12
Client server part 12Client server part 12
Client server part 12
 
Kitura Todolist tutorial
Kitura Todolist tutorialKitura Todolist tutorial
Kitura Todolist tutorial
 
Property Wrappers or how Swift decided to become Java
Property Wrappers or how Swift decided to become JavaProperty Wrappers or how Swift decided to become Java
Property Wrappers or how Swift decided to become Java
 
Clean coding-practices
Clean coding-practicesClean coding-practices
Clean coding-practices
 
Rhino Mocks
Rhino MocksRhino Mocks
Rhino Mocks
 
Sustaining Test-Driven Development
Sustaining Test-Driven DevelopmentSustaining Test-Driven Development
Sustaining Test-Driven Development
 
WD programs descriptions.docx
WD programs descriptions.docxWD programs descriptions.docx
WD programs descriptions.docx
 
Kamil Chmielewski, Jacek Juraszek - "Hadoop. W poszukiwaniu złotego młotka."
Kamil Chmielewski, Jacek Juraszek - "Hadoop. W poszukiwaniu złotego młotka."Kamil Chmielewski, Jacek Juraszek - "Hadoop. W poszukiwaniu złotego młotka."
Kamil Chmielewski, Jacek Juraszek - "Hadoop. W poszukiwaniu złotego młotka."
 
Java Boilerplate Busters
Java Boilerplate BustersJava Boilerplate Busters
Java Boilerplate Busters
 
Test-driven Development with AEM
Test-driven Development with AEMTest-driven Development with AEM
Test-driven Development with AEM
 
Google guava
Google guavaGoogle guava
Google guava
 
Spring data ii
Spring data iiSpring data ii
Spring data ii
 
Java Boilerplate Busters
Java Boilerplate BustersJava Boilerplate Busters
Java Boilerplate Busters
 
08 Queries
08 Queries08 Queries
08 Queries
 
Introduction to Client-Side Javascript
Introduction to Client-Side JavascriptIntroduction to Client-Side Javascript
Introduction to Client-Side Javascript
 
Improving the java type system
Improving the java type systemImproving the java type system
Improving the java type system
 
Hadoop Integration in Cassandra
Hadoop Integration in CassandraHadoop Integration in Cassandra
Hadoop Integration in Cassandra
 
Core2 Document - Java SCORE Overview.pptx.pdf
Core2 Document - Java SCORE Overview.pptx.pdfCore2 Document - Java SCORE Overview.pptx.pdf
Core2 Document - Java SCORE Overview.pptx.pdf
 

Recently uploaded

GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
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
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfhans926745
 
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
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
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
 
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
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilV3cube
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
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
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 

Recently uploaded (20)

GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
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...
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
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
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
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
 
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
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of Brazil
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
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
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 

Writing and using Hamcrest Matchers

  • 1. Hamcrest Matchers assertThat(audience, is(payingAttention())); Writing and using them for assertions, mocking and behavioral verification
  • 2. What is Hamcrest? According to the project homepage, [Hamcrest] provides a library of matcher objects (also known as constraints or predicates) allowing 'match' rules to be defined declaratively, to be used in other frameworks. Typical scenarios include testing frameworks, mocking libraries and UI validation rules. Hamcrest is not a testing library: it just happens that matchers are very useful for testing.
  • 3. Typical usage example Actual value assertThat( someString, is(equalTo(someOtherString)) ); Expectation on the value, represented as a Matcher
  • 4. Wait – but what’s wrong with assertEquals? assertEquals(someString, someOtherString) This looks just as good, doesn’t it? assertEquals( cat.getName(), otherCat.getName()) Not so bad, either
  • 5. However, What about collections? assertEquals(someKitten, cat.getKittens().iterator().next()) This works if our kitten is the first element in the collection, but what about asserting that the kitten exists anywhere in the collection?
  • 6. Well, we can do this: boolean found = false; for (Kitten kitten : cat.getKittens()) { if (kitten.equals(someKitten)) found = true; } assertTrue(found);
  • 7. But don’t you prefer this? Iterable<Kitten> assertThat( cat.getKittens(), hasItem(someKitten)) Matcher on Iterable<Kitten> that accepts a Matcher<Kitten>
  • 8. OK, so how does this work?
  • 9. Basic Matchers A Matcher is initialized with the expected values, which are compared against the actual object we’re matching against when invoking the matcher.
  • 10. IsEqual Matcher class IsEqual<T> extends BaseMatcher<T> { private final Object object; // c’tor omitted for readability public boolean matches(Object arg) { return object.equals(arg); } }
  • 11. StringEndsWith Matcher class StringEndsWith <T> extends BaseMatcher<T> { private final String suffix; // c’tor omitted for readability public boolean matches(String s) { return s.endsWith(suffix); } }
  • 13. Mockito in one slide CatShop catShop = mock(CatShop.class); when(catShop.purchase(somePurchaseRequest ).thenReturn(someCat) Creating the mock ... do some work Stubbing the mock verify(catShop) Behavior verification .purchase(expectedPurchaseRequest)
  • 14. Without Hamcrest CatPurchase catPurchase = new CatPurchase(); catPurchase.setBreed(“Brittish”); when(catShop.purchase(catPurchase)) ).thenReturn(somePreviouslyStubbedCat) However, this will force us to set all other fields of the CatPurchase class, since Mockito will perform an exact match comparison between our instance and the actual one
  • 15. Of course, you could do this: when( catShop.purchase( any(CatPurchaseDTO.class)) ).thenReturn(somePreviouslyStubbedCat) This works, but lacks the benefit of asserting that our operation is only valid for the expected input
  • 16. The solution: use argThat() Mockito helper that creates an argument matcher from when( a Hamcrest matcher catShop.purchase(argThat( hasPropertyWithValue( “breed”, startsWith(“Brittish”)))) ).thenReturn(somePreviouslyStubbedCat) Hamcrest matcher that accepts a Java Bean property name and a nested value matcher
  • 17. Using for behavioral verification CatDao catDao = mock(CatDao.class); CatStore catStore = new CatStore (catDao);with a Catcall to Verify that there was a CatDao.update() instance, catStore.saveOrUpdate(existingCat); the ‘name’ property is for which “felix” and the ‘kittens’ property is an verify(catDao).update(argThat( Iterable containing two kittens, kitten1 and kitten2 allOf( hasPropertyWithValue(“name”, “felix”), hasPropertyWithValue(“kittens”, hasItems(kitten1, kitten2)))));
  • 19. Writing your own matchers In the previous examples, we used the hasPropertyWithValue() matcher, which, while allowing for fluent assertions or stubbing, has the disadvantage of not being type-safe. This is where writing custom matchers becomes useful (or, as some would say, necessary).
  • 20. The Matcher<T> hierarchy abstract class TypeSafeMatcher<T> extends BaseMatcher<T> { boolean matchesSafely(T item); } interface Matcher<T> extends SelfDescribing { boolean matches(Object item); } interface SelfDescribing { void describeTo(Description description); }
  • 21. Dissecting some Wix matchers class HostMatcher extends TypeSafeMatcher<WixUrl> { private final Matcher<String> host; // c’tor omitted for readability public boolean matchesSafely(WixUrl url) { return host.matches(url.host); Nested matcher that } will be replayed on the Actual value being actual value matched against public void describeTo(Description description) { description.appendText("Host that matches ").appendValue(host); we write a Here } readable description of our expected value public static HostMatcher hasHost(Matcher<String> host)A utility factory method for { return new HostMatcher(host); fluently creating this } matcher. Not mandatory } but very convenient.
  • 22. Using our matcher WixUrl url = new WixUrl(“http://www.wix.com/some/path”); assertThat(url, hasHost(is(“www.wix.com”))); ✔ assertThat(url, hasHost(endsWith(“wix.com”))); ✔ assertThat(url, hasHost(is(“google.com”))); ✗ java.lang.AssertionError: Expected: Host that matches <is ”google.com"> got: <http://www.wix.com/some/path>
  • 23. Another URL matcher class WixUrlParamMatcher extends TypeSafeMatcher<WixUrl> { private final Matcher<String> name; // c’tor omitted for readability url.params is a Map<String, String>, so private final Matcher<String> value; we create a matcher for a map entry around our name and value matchers public boolean matchesSafely(WixUrl url) { replay it against the actual value and return hasEntry(name, value).matches(url.params); } public void describeTo(Description description) { description .appendText("Param with name ").appendValue(name) .appendText(" and value ").appendValue(value); } }
  • 24. Using the two matchers together String s = “www.wix.com?p=v1&p=v2&p3=v3”; WixUrl url = new WixUrl(s); assertThat(url, allOf( hasHost(is(“www.wix.com”)), hasParam(is(“p”), anyOf(is(“v1”), is(“v2”))), hasParam(is(“p3”), startsWith(“v”))));
  • 25. But wait – my URL is a String! Sometimes you’ll have matchers that accept a specific type, such as WixUrl or XML Document. For this purpose, use a wrapping matcher that performs the conversion for you: class StringAsUrlMatcher extends TypeSafeMatcher<String> { private final Matcher<WixUrl> urlMatcher; public boolean matchesSafely(String urlString) { return matcher.matches(new WixUrl(urlString)); } public void describeTo(Description description) { description.appendText("Url that matches ") .appendDescriptionOf(urlMatcher); } }
  • 26. Ad-Hoc matchers for readable tests
  • 27. Consider the following class class Proxy { private final HttpClient httpClient; private String targetUrl; public String handle (String path) { httpClient.execute(// some HttpGet); } }
  • 28. The HttpClient interface public HttpResponse execute(HttpGet get); Our class under test is expected to replace the domain in path with targetUrl, thus serving as an HTTP Proxy. We would like to stub and verify the HttpGet parameter to make sure it builds the proxy URL properly.
  • 29. My test looks something like this HttpClient client = mock(HttpClient.class); String url = “http://www.example.com/”; {…} handler = new Proxy(client, url); when(client.execute({www.a.com/path})) .thenReturn(someResponse); handler.handle(“www.a.com/path”); verify(client).execute({www.example.com/path});
  • 30. The solution Matcher<HttpGet> HttpGet(final Matcher<String> urlMatcher) { return new TypeSafeMatcher<HttpGet>() { public boolean matchesSafely(HttpGet httpGet) { return urlMatcher.matches(httpGet.getURI().toString())); } public void describeTo(Description description) { description.appendText("HttpGet with url ") .appendDescriptionOf(urlMatcher); } }; }
  • 31. Usage of the HttpGet matcher when(handler.execute(argThat( is(HttpGet(startsWith(“http://www.a.com”)))))) .thenReturn(response); handler.handle(“http://www.a.com/some/path”); verify(client).execute(argThat(is(HttpGet( is(“http://www.example.com/some/path”)))));
  • 32. The plot thickens Moments after triumphantly running the test I realized that in addition to verifying that the request went to the appropriate URL, I had to verify that some – but not all – HTTP headers were copied to the proxy request and some new ones were added to it.
  • 33. Ad-hoc matchers to the rescue 1) Add the following parameter to the HttpGet method: final Matcher<Header[]> headersMatcher 2) Change the matchesSafetly() method: public boolean matchesSafely(HttpGet httpGet) { return urlMatcher.matches(httpGet.getURI().toString()) && headersMatcher.matches(httpGet.getAllHeaders()); }
  • 34. Ad-hoc matchers to the rescue 3) Write a matcher for the Header class: Matcher<Header> Header( final Matcher<String> name, final Matcher<String> value) { return new TypeSafeMatcher<Header>() { public boolean matchesSafely(Header header) { return name.matches(header.getName()) && value.matches(header.getValue()); } } }
  • 35. Putting it all together verify(client).execute(argThat(is(HttpGet( that the X-Wix-Base-Uri header Asserts contains the expected value (using the is({URL matcher omitted for readability}), WixUrl matchers we’ve seen before). allOf( hasItemInArray( Header( is("X-Wix-Base-Uri"), Asserts that there’s no header by isUrlThat( the name of X-Seen-By, no matter what value it has hasHost(“www.wix.com”), hasPath(myPath)))), not(hasItemInArray( Header(is("X-Seen-By"), any(String.class)))) )))));
  • 36. Questions? shaiy@wix.com http://il.linkedin.com/in/electricmonk http://twitter.com/shaiyallin

Editor's Notes

  1. This is a simplified version of the actual matcher from Hamcrest Core
  2. For those of you who’re not familiar with Mockito, here’s how you use it
  3. This has the disadvantage of being type-unsafe, but we’ll get back to this point later on.
  4. Like the previous example, this is type-unsafe because we’re not sure that the Cat class even has a field named “kittens”, let alone its type
  5. Matcher is the common ancestor for all Hamcrest matchers. Note that I removed a warning urging you not to implement Matcher&lt;T&gt;, extending BaseMatcher&lt;T&gt; instead.In most cases, you’ll want to extend TypeSafeMatcher&lt;T&gt;
  6. This matcher works on the WixUrl class, which is a type-safe URL builder class from the Wix infrastructure.It’s a good example for the simple, yet somewhat confusing, structure of a matcher. Note that this matcher has one member, which is another string matcher for specifying the expected value. We could’ve used a string here, but using a Matcher&lt;String&gt; allows us to be more flexible when using this matcher.This pattern of replaying a matcher against the actual value is a core principle of Matcher programming.Note that our matcher extends TypeSafeMatcher, which implements the Matcher.matches() method and delegates to the matchesSafely() method after performing a type assertion followed by a cast.
  7. Why do we need a Url matcher? Sometimes we don’t care about the query string, the host, the port, the protocol, etc. We could’ve used a string matcher such as contains() or endsWith() but this is more type safe, readable and illustrates the tested behavior more clearly.Note how the assertion error is much more readable than the one produced by assertEquals()
  8. This one takes two matchers, one for the parameter name and one for the parameter value.Note another principle introduced here, that of creating a new matcher wrapping our matchers and replaying it against the actual value. Thus, we abstract away from the test the fact the WixUrl.params is a map. In fact, we lately changed it from a Map&lt;String, String&gt; to a Multimap&lt;String, String&gt; without breaking any test – I just changed the field type and the appropriate matcher class.
  9. Note the use of the allOf() and anyOf() aggregate matchers that represent boolean AND and OR operations, respectively.
  10. Based on a true storyThis class accepts an instance of HttpClient (Apache HttpComponents 4.0). I wanted to give it a mock of HttpClient, then stub and verify it.
  11. I needed to be able to write matchers for the HttpGet class, for two reasons:1) It was much more readable than constructing an instance of it2) HttpGet takes on parameter, URI, and contains logic that deals with the HTTP protocol itself – not something that’s relevant for the test
  12. Note, again, how we replay the expected value matcher against the actual value. This prevents the need to construct our own instance on HttpGet and populate it with the expected value. Also note that this is a factory method, creating an anonymous class. The method starts with a capital letter and is named according to the name of the class we’re matching against. This is a convention we developed here at Wix, but we find it useful and clear.
  13. The use case here is that the proxy should send all traffic from www.wix.com/ to theproxied server, appending any nested path.Note that response can be either a real object constructed beforehand or a mock, but the mock must also be constructed before calling the when() method because of some Mockito limitation.Also note the reuse of our matcher both for stubbing the mock and verifying the desired behavior.
  14. The matcher is for a Header array because HttpGet.getAllHeaders() returns an array
  15. Note that without using Hamcrest, there’s no straightforward way to test for the inexistence of a value