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

An Introduction to JUnit 5 and how to use it with Spring boot tests and Mockito
An Introduction to JUnit 5 and how to use it with Spring boot tests and MockitoAn Introduction to JUnit 5 and how to use it with Spring boot tests and Mockito
An Introduction to JUnit 5 and how to use it with Spring boot tests and Mockitoshaunthomas999
 
Declarative UIs with Jetpack Compose
Declarative UIs with Jetpack ComposeDeclarative UIs with Jetpack Compose
Declarative UIs with Jetpack ComposeRamon Ribeiro Rabello
 
Kotlin presentation
Kotlin presentation Kotlin presentation
Kotlin presentation MobileAcademy
 
Android Navigation Component
Android Navigation ComponentAndroid Navigation Component
Android Navigation ComponentŁukasz Ciupa
 
簡化 JVM 上雲 - 透過 Azure Spring Cloud 提升開發、發佈及服務監控效率
簡化 JVM 上雲 - 透過 Azure Spring Cloud 提升開發、發佈及服務監控效率簡化 JVM 上雲 - 透過 Azure Spring Cloud 提升開發、發佈及服務監控效率
簡化 JVM 上雲 - 透過 Azure Spring Cloud 提升開發、發佈及服務監控效率Shengyou Fan
 
What is flutter and why should i care?
What is flutter and why should i care?What is flutter and why should i care?
What is flutter and why should i care?Sergi Martínez
 
introduction to Vue.js 3
introduction to Vue.js 3 introduction to Vue.js 3
introduction to Vue.js 3 ArezooKmn
 
Kotlin for Android Development
Kotlin for Android DevelopmentKotlin for Android Development
Kotlin for Android DevelopmentSpeck&Tech
 
Intro to vue.js
Intro to vue.jsIntro to vue.js
Intro to vue.jsTechMagic
 
Reactive state management with Jetpack Components
Reactive state management with Jetpack ComponentsReactive state management with Jetpack Components
Reactive state management with Jetpack ComponentsGabor Varadi
 

What's hot (20)

An Introduction to JUnit 5 and how to use it with Spring boot tests and Mockito
An Introduction to JUnit 5 and how to use it with Spring boot tests and MockitoAn Introduction to JUnit 5 and how to use it with Spring boot tests and Mockito
An Introduction to JUnit 5 and how to use it with Spring boot tests and Mockito
 
Declarative UIs with Jetpack Compose
Declarative UIs with Jetpack ComposeDeclarative UIs with Jetpack Compose
Declarative UIs with Jetpack Compose
 
Kotlin presentation
Kotlin presentation Kotlin presentation
Kotlin presentation
 
Android Navigation Component
Android Navigation ComponentAndroid Navigation Component
Android Navigation Component
 
簡化 JVM 上雲 - 透過 Azure Spring Cloud 提升開發、發佈及服務監控效率
簡化 JVM 上雲 - 透過 Azure Spring Cloud 提升開發、發佈及服務監控效率簡化 JVM 上雲 - 透過 Azure Spring Cloud 提升開發、發佈及服務監控效率
簡化 JVM 上雲 - 透過 Azure Spring Cloud 提升開發、發佈及服務監控效率
 
Android presentation
Android presentationAndroid presentation
Android presentation
 
Spring Boot
Spring BootSpring Boot
Spring Boot
 
What is flutter and why should i care?
What is flutter and why should i care?What is flutter and why should i care?
What is flutter and why should i care?
 
Flutter
FlutterFlutter
Flutter
 
Spring Boot
Spring BootSpring Boot
Spring Boot
 
Android Training
Android TrainingAndroid Training
Android Training
 
Wpf Introduction
Wpf IntroductionWpf Introduction
Wpf Introduction
 
introduction to Vue.js 3
introduction to Vue.js 3 introduction to Vue.js 3
introduction to Vue.js 3
 
Java Unit Testing
Java Unit TestingJava Unit Testing
Java Unit Testing
 
BDD with Cucumber
BDD with CucumberBDD with Cucumber
BDD with Cucumber
 
Git & GitHub for Beginners
Git & GitHub for BeginnersGit & GitHub for Beginners
Git & GitHub for Beginners
 
testng
testngtestng
testng
 
Kotlin for Android Development
Kotlin for Android DevelopmentKotlin for Android Development
Kotlin for Android Development
 
Intro to vue.js
Intro to vue.jsIntro to vue.js
Intro to vue.js
 
Reactive state management with Jetpack Components
Reactive state management with Jetpack ComponentsReactive state management with Jetpack Components
Reactive state management with Jetpack Components
 

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
 
JUnit & Mockito, first steps
JUnit & Mockito, first stepsJUnit & Mockito, first steps
JUnit & Mockito, first stepsRenato Primavera
 
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
 

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
 
JUnit & Mockito, first steps
JUnit & Mockito, first stepsJUnit & Mockito, first steps
JUnit & Mockito, first steps
 
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
 

Recently uploaded

Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Manik S Magar
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfRankYa
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostZilliz
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...Fwdays
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embeddingZilliz
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 

Recently uploaded (20)

Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdf
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embedding
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 

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