Code Monkey home page Code Monkey logo

imagecomparison's Introduction

Build Status

Usage

Add the following dependencies to your pom.xml:

  <dependency>
    <groupId>net.avh4.util</groupId>
    <artifactId>imagecomparison</artifactId>
    <version>0.3.1</version>
  </dependency>
  <!-- if you will be comparing AWT components, Swing JComponents or JFrames: -->
  <dependency>
    <groupId>net.avh4.util</groupId>
    <artifactId>imagecomparison-swing</artifactId>
    <version>0.3.1</version>
    <scope>runtime</scope>
  </dependency>
  <!-- if you will be comparing SWT components -->
  <dependency>
    <groupId>net.avh4.util</groupId>
    <artifactId>imagecomparison-swt</artifactId>
    <version>0.3.1</version>
    <scope>runtime</scope>
  </dependency>

isApproved() hamcrest matcher

import static net.avh4.util.imagecomparison.hamcrest.ImageComparisonMatchers.*;

public class MyJComponentTest {
  @Test public void testInitialState() throws Exception {
    MyJComponent subject = new MyJComponent();
    assertThat(subject, isApproved());
  }
}

This will assert that the rendering of subject matches MyJComponentTest.testInitialState.png (taken from the test class and method name), which will be loaded from the classpath in the same package as the test class.

You'll probably see something like this:

Failed tests: 
  testInitialState(MyJComponentTest): 
Expected: something that looks like MyJComponentTest.testInitialState.png (800x600)
     but: images don't match: First incorrect pixel was (0, 0): expected 0xffffff, but got 0x0

The actual rendering of the object will be written to ./MyJComponentTest.testInitialState.png for you to inspect.

looksLike() hamcrest matcher

You can also compare objects to specific image files.

assertThat(subject, looksLike("snazzy-dashboard.png"));

Comparison API

ImageComparisonResult result = ImageComparison.compare(new MyJComponent(), "./snazzy-dashboard.png");
boolean renderingMatches = result.isEqual();
if (!renderingMatches) {
  System.out.println(result.getFailureMessage());
  result.writeActualImageToFile("failed-rendering.png");
}

What you can test

The looks-like checker currently can check the following types of objects:

  • java.awt.image.BufferedImage
  • with imagecomparison-swing: java.awt.Component
  • with imagecomparison-swing: javax.swing.JComponent
  • with imagecomparison-swing: javax.swing.JFrame
  • with imagecomparison-swt: org.eclipse.swt.graphics.Image
  • with imagecomparison-swt: org.eclipse.swt.graphics.ImageData
  • with imagecomparison-swt: org.eclipse.swt.widgets.Control

Additional renderers can be added by implementing net.avh4.util.imagerender.Renderer and registering in META-INF/services (see ServiceLoader).

imagecomparison's People

Contributors

avh4 avatar

Watchers

James Cloos avatar Eugen Deutsch avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.