All Projects → Claudenw → junit-contracts

Claudenw / junit-contracts

Licence: Apache-2.0 license
Contract test suite runner

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to junit-contracts

karate-runner
VSCode Extension for Karate
Stars: ✭ 23 (+43.75%)
Mutual labels:  contract-testing
doc
QuickPerf documentation: https://github.com/quick-perf/doc/wiki/QuickPerf
Stars: ✭ 22 (+37.5%)
Mutual labels:  junit-test
scalatest-junit-runner
JUnit 5 runner for Scalatest
Stars: ✭ 30 (+87.5%)
Mutual labels:  junit-test
adhesion-rs
D-inspired contract programming in Rust using macros
Stars: ✭ 49 (+206.25%)
Mutual labels:  contract-testing
rules4android
A collection of JUnit 4 Rules for Android Developers 🔬
Stars: ✭ 23 (+43.75%)
Mutual labels:  junit-test
lein-junit
Leiningen plugin for running JUnit tests.
Stars: ✭ 27 (+68.75%)
Mutual labels:  junit-test
README
Developer Relations @ Pact - Your map to the Pact landscape for all-comers (maintainers, contributors, users, newbies)
Stars: ✭ 35 (+118.75%)
Mutual labels:  contract-testing
crystal-clear
Design by Contract for Crystal
Stars: ✭ 45 (+181.25%)
Mutual labels:  contract-testing
jasmine-junit-runner
A custom JUnit Java Runner annotation to run headless Javascript tests embedded in your IDE
Stars: ✭ 52 (+225%)
Mutual labels:  junit-test
timber-junit-rule
A highly configurable JUnit Rule that outputs Timber logs to standard output
Stars: ✭ 42 (+162.5%)
Mutual labels:  junit-test
Karate
Test Automation Made Simple
Stars: ✭ 5,497 (+34256.25%)
Mutual labels:  contract-testing
AndroidMVPArchitecture
Android MVP architecture sample project with or without RxJava and Dagger2 and Kotlin
Stars: ✭ 78 (+387.5%)
Mutual labels:  junit-test
portman
Port OpenAPI Specs to Postman Collections, inject test suite and run via Newman 👨🏽‍🚀
Stars: ✭ 530 (+3212.5%)
Mutual labels:  contract-testing
pactum
REST API Testing Tool for all levels in a Test Pyramid
Stars: ✭ 190 (+1087.5%)
Mutual labels:  contract-testing
karate
Test Automation Made Simple
Stars: ✭ 6,384 (+39800%)
Mutual labels:  contract-testing
notary
A contracts broker that provides a declarative way of sharing, validating & discovering contracts between multiple projects.
Stars: ✭ 16 (+0%)
Mutual labels:  contract-testing
pact-example
Example project to demonstrate Contract Testing via Pact.
Stars: ✭ 58 (+262.5%)
Mutual labels:  contract-testing
sample-testing-microservices
sample applications with implementation of unit, component, contract and integrarion tests using pact, gatling, spring boot test and hoverfly
Stars: ✭ 22 (+37.5%)
Mutual labels:  contract-testing
pact-consumer-swift
A Swift / ObjeciveC DSL for creating pacts.
Stars: ✭ 89 (+456.25%)
Mutual labels:  contract-testing
ContractTestingBoilerplate
Contract Testing Boilerplate for the microservices developed using Spring Boot and Kafka in a maven multi-module project.
Stars: ✭ 36 (+125%)
Mutual labels:  contract-testing

junit-contracts: A suite of tools to make contract testing easier

Overview

Contract tests allow developers to verify implementations of interfaces meet the requirements of the interface designer. In java this can be problematic due to its single inheritance nature. This package is a junit 4 based implementation of a contract testing framework. This means that it runs within junit without modification.

Multiple @Contracts can be defined for multiple interfaces, and for each @ContractImpl, junit-contract will run the suite of all the matching contract tests:

Screenshot of junit-contracts in Eclipse

Tutorials and Presentations

Junit-contracts: A Contract Testing Tool, presented at CloudStack Collaboration Conference Europe, October 8-9, 2015, Dublin, Ireland. Video available on YouTube.

Simplifying Contract Testing. Claude N. Warren, Jr., in Dr. Dobb's Journal, May 06, 2014.

Also see "How It Works" below.

Maven Repository Info

Release version

 Group Id: org.xenei 
 Artifact Id: contracts 

Snapshot versions are hosted at:

 https://oss.sonatype.org/content/repositories/snapshots/

Modules

The contracts project comprises three modules: junit-contracts, contract-test-maven-plugin and contract-cmdline.

junit-contracts

junit-contracts is the module that encompasses the annotations and junit test runners to execute the connection tests.

Release version

 Group Id: org.xenei 
 Artifact Id: junit-contracts 

contract-test-maven-plugin

maven-contracts is the module that encompasses the maven plugin that will report results and errors from running the tests.

Release version

 Group Id: org.xenei 
 Artifact Id: contract-test-maven-plugin 

contracts-cmdline

contracts-cmdline is the model that encompasses the command line tools that will generate reports equivalent to the maven contracts plugin.

Release version

 Group Id: org.xenei 
 Artifact Id: contract-cmd-line 

Class Filters

The junit-contracts module uses the classpath-utils project to discover and filter classes on the classpath. Included in this package is the ClassFilter class which is patterned after the Java FileFilter class.

Class filters are constructed in the maven and command line modules via strings. Each string is the string representation of a filter. For example: Not( Wildcard( "Test" ) ) will match any class name that does not have the string "test". For more information see the Class Filters section of the classpath-utils documentation.

Contract Tests

Contract tests test the contract defined by a Java interface and the associated documentation. The interface defines the method signatures, but the documentation often expands upon that to define the behaviour that the interface is expected to perform. For example, the Map interface defines put(), get(), and remove(). But the human readable documentation tells the developer that if you put() an object you must be able to get() it unless the remove() has been called. That last statement defines two tests in the contract test.

The basic argument for the use of contract tests is that you can prove code correctness. That is, if every object interface is defined as an interface, every interface has a contract test that covers all methods and their expected operation, and all objects have tests that mock the objects they call as per the interface definition - then running the entire suite of tests demonstrates that the interconnection between each object works.

If we know that A calls B properly and B calls C properly then we can infer that A calls C properly. We can, with some work, prove that the code is correct.

Contract tests will not discover misconfiguration. For example, if class A uses a map and expects a map that can accept null keys but the configuration specifies a map implementation that does not accept null keys, the contract test will not detect the error. But then the error is a configuration error caused by a missing requirement for the configuration.

For more information on contract tests see

http://www.infoq.com/presentations/integration-tests-scam

http://www.jbrains.ca/permalink/interlude-basic-correctness

How it Works

     A
     |
  ---+---.  
  |      |
  A1     A2

Most JUnit tests work vertically. Originally they were all derived from a test class, and since version 4 they use annotations to identify a method as a test. However, they only work in the direct hierarchy of class inheritance. That is, if classes A1 and A2 are derived from class A and tests A1Test and A2Test are derived from ATest then all the ATest unit tests will be executed when A1Test and A2Test are run. However, with the use of interfaces there arises an orthogonal testing problem.

     A
     |
  ---+---.  
  |      |
  A1(I)  A2  B(I)

If we add interface I to our class structure and define A1 as implementing I and a new class B as implementing I, then both A1 and B require the I tests, but they have no classes in common in the hierarchy. Therefore the tests for A1 and B must implement them - this violates the Don't-Repeat-Yourself (DRY) principle and will lead to problems if I changes and the A1 and B tests are not modified as well.

The ContractSuite solves this problem by requiring the following additions:

  • an abstract test class ITest for the interface I, that is annotated with the @Contract( I.class ).
  • a contract test suite that is annotated with @RunWith( ContractSuite.class ) and implements method annotated with @Contract.Inject that creates a Producer.

Then when executing the suite:

  • discovers all of the @Contract mappings between tests and interfaces.
  • finds all the implemented interfaces of the object under test and adds their contract tests to the suite.
  • executes the completed suite.

The result is that every class that has a contract suite defined will verify that its implementation of the interface is correct as per the contract test. If the contract test changes, the class test will use the new contract test implementation.

Samples and Examples

The test code contains a number of examples and is well [documented] (https://github.com/Claudenw/junit-contracts/tree/master/junit/src/test/java/org/xenei/junit/contract/exampleTests) for use as such.

The sample code includes the concrete tests in the Motivation section below.

Motivation

Here's an example of how using junit-contracts one could organize tests for interfaces like java.util.Set and friends. Normally you would write the @Contracts for your own interfaces, but we'll use the JDK provided interfaces as an example as they are fairly well known.

With junit-contract we can write tests for each interface separately, providing a @Contract.Inject setter for the implementation to be tested:

import static org.junit.Assert.*;
import java.util.Collection;
import java.util.NoSuchElementException;

import org.junit.After;
import org.junit.Before;
import org.xenei.junit.contract.Contract;
import org.xenei.junit.contract.ContractTest;
import org.xenei.junit.contract.IProducer;

@Contract(Iterable.class)
public class IterableTest {
	private IProducer<Iterable<Object>> producer;
	private Iterable<Object> it;

	@Contract.Inject
	public void setIterable(IProducer<Iterable<Object>> producer) {
		this.producer = producer;
	}

	@Before
	public void populate() {
		it = producer.newInstance();
	}

	@After
	public void cleanup() {
		producer.cleanUp();
	}

	@ContractTest
	public void hasNext() throws Exception {
		assertFalse(it.iterator().hasNext());
	}

	@ContractTest
	public void doubleIterator() throws Exception {
		it.iterator();
		it.iterator();
	}

	@ContractTest
	public void nextFails() throws Exception {
		try {
			it.iterator().next();
			fail("Didn't throw NoSuchElementException");
		} catch (NoSuchElementException ex) {
			// expected
		}
	}
}
package contracts;

import static org.junit.Assert.*;
import java.util.Collection;

import org.junit.After;
import org.junit.Before;
import org.xenei.junit.contract.Contract;
import org.xenei.junit.contract.ContractTest;
import org.xenei.junit.contract.IProducer;

@Contract(Collection.class)
public class CollectionTest {

	private IProducer<Collection<Object>> producer;
	private Collection<Object> c;

	@Contract.Inject
	public void setCollection(IProducer<Collection<Object>> producer) {
		this.producer = producer;
	}

	@Before
	public void populate() {
		c = producer.newInstance();
	}

	@After
	public void cleanup() {
		producer.cleanUp();
	}

	@ContractTest
	public void empty() throws Exception {
		assertTrue(c.isEmpty());
	}

	@ContractTest
	public void size() throws Exception {
		assertEquals(0, c.size());
	}
}

This means we can keep separation of concern - we are not requiring CollectionTest to subclass IterableTest. Let's see why this is useful:

package contracts;

import static org.junit.Assert.*;
import java.util.Set;

import org.junit.After;
import org.junit.Before;
import org.xenei.junit.contract.Contract;
import org.xenei.junit.contract.ContractTest;
import org.xenei.junit.contract.IProducer;

@Contract(Set.class)
public class SetTest {

    private IProducer<Set<Object>> producer;
    private Set<Object> c;

    @Contract.Inject
    public void setSet(IProducer<Set<Object>> producer) {
        this.producer = producer;

    }

    @Before
    public void populate() {
        c = producer.newInstance();
        c.add("Hello");
    }

    @After
    public void cleanup() {
    	producer.cleanUp();
    }
     
    @ContractTest
    public void contains() throws Exception {
        assertTrue(c.contains(("Hello")));
        assertFalse(c.contains("World"));
    }

    @ContractTest
    public void add() throws Exception {
        c.add("World");
        assertTrue(c.contains("World"));
    }
}

The above SetTest can't subclass CollectionTest because it has a @Before method that populates the set - this would break CollectionTest.empty() which expects an empty collection. With junit-contracts each @Contract is executed in isolation and don't share state with the other tests.

So let's test it with HashSet:

package contracttests;

import java.util.HashSet;
import org.junit.runner.RunWith;
import org.xenei.junit.contract.Contract;
import org.xenei.junit.contract.ContractImpl;
import org.xenei.junit.contract.ContractSuite;
import org.xenei.junit.contract.IProducer;

@RunWith(ContractSuite.class)
@ContractImpl(HashSet.class)
public class HashSetTest {

	IProducer<HashSet<Object>> producer = new IProducer<HashSet<Object>>() {
		public HashSet<Object> newInstance() {
			return new HashSet<Object>();
		}

		public void cleanUp() {
			// no cleanup required.
		}
	};

	@Contract.Inject
	public IProducer<HashSet<Object>> makedashSet() {
		return producer;
	}
}

and with LinkedHashSet:

package contracttests;

import java.util.LinkedHashSet;
import org.junit.runner.RunWith;
import org.xenei.junit.contract.Contract;
import org.xenei.junit.contract.ContractImpl;
import org.xenei.junit.contract.ContractSuite;
import org.xenei.junit.contract.IProducer;

@RunWith(ContractSuite.class)
@ContractImpl(LinkedHashSet.class)
public class LinkedHashSetTest {

	IProducer<LinkedHashSet<Object>> producer = new IProducer<LinkedHashSet<Object>>() {
		public LinkedHashSet<Object> newInstance() {
			return new LinkedHashSet<Object>();
		}

		public void cleanUp() {
			// no cleanup required.
		}
	};

	@Contract.Inject
	public IProducer<LinkedHashSet<Object>> makedashSet() {
		return producer;
	}
}

Running the above two Tests will execute all the matching @Contract tests. This means we can have "optional" tests by interface:

package contracts;

import static org.junit.Assert.*;
import java.util.SortedSet;

import org.junit.After;
import org.junit.Before;
import org.xenei.junit.contract.Contract;
import org.xenei.junit.contract.ContractTest;
import org.xenei.junit.contract.IProducer;

@Contract(SortedSet.class)
public class SortedSetTest {

	private IProducer<SortedSet<Object>> producer;
	private SortedSet<Object> c;

	@Contract.Inject
	public void setSet(IProducer<SortedSet<Object>> producer) {
		this.producer = producer;
	}

	@Before
	public void populate() {
		c = producer.newInstance();
		// Deliberately not added in order
		c.add("c");
		c.add("a");
		c.add("b");
	}

	@After
	public void cleanup() {
		producer.cleanUp();
	}

	@ContractTest
	public void first() throws Exception {
		assertEquals("a", c.first());
	     assertEquals("c", c.last());
    }
}

This has a separate, incompatible @Before method that is otherwise hard to align with SetTest. We'll test it with TreeSet:

package contracttests;
import java.util.HashSet;
import java.util.TreeSet;
import org.junit.runner.RunWith;
import org.xenei.junit.contract.Contract;
import org.xenei.junit.contract.ContractImpl;
import org.xenei.junit.contract.ContractSuite;
import org.xenei.junit.contract.IProducer;

@RunWith(ContractSuite.class)
@ContractImpl(TreeSet.class)
public class TreeSetTest {
 
    IProducer<TreeSet<Object>> producer = new IProducer<TreeSet<Object>>() {
    	public TreeSet<Object> newInstance() {
    		return new TreeSet<Object>();
    	}
    	
    	public void cleanUp() {
    		// no cleanup required.
    	}
    };
    
    @Contract.Inject
    public IProducer<TreeSet<Object>> makedashSet() {
        return producer;        
    }
}

With junit-contracts we can now run all the combinations of tests that are possible for each of the @ContractImpl, which would run in isolation:

Screenshot of junit-contracts in Eclipse

Why The IProducer

In the examples above the IProducer construct seems unnecessary, and in fact the tests can be written to inject an instance of the object under test. However, the IProducer interface provides a mechanism for the contract test to ensure that any resources allocated when the object was created is released. It also provides a mechanism whereby a test may use 2 or more instances of the object during the test. In our simple examples above this is not evident. If we were to have a database backed Set implementation then the cleanup could reset the database tables to a known state as is illustrated below.

DBSet definition:

package contracttests;
import java.sql.Connection;
import java.sql.Statement;

public class DBSet<T> implements Set<T> {
 

	Statement stmt;
	
	public DBSet( Connection conn )
	{
		this.stmt = conn.createStatement();
	}
	
	public void close() {
		this.stmt.close();
		this.stmt = null;
	}
	
	// implementation left to the reader	
}

Contract Test for DBSet

package contracttests;
import java.sql.Connection;
import org.junit.runner.RunWith;
import org.xenei.junit.contract.Contract;
import org.xenei.junit.contract.ContractImpl;
import org.xenei.junit.contract.ContractSuite;

@RunWith(ContractSuite.class)
@ContractImpl(DBSet.class)
public class DBSetTest {
 
 	String URL = "jdbc:oracle:thin:@amrood:1521:EMP";
    String USER = "username";
	String PASS = "password"
	Connection conn = DriverManager.getConnection(URL, USER, PASS);
	List<DBSet<Object>> openedDbSets;

    IProducer<DBSet<Object>> producer = new IProducer<DBSet<Object>>() {
    	public DBSet<Object> newInstance() {
    		DBSet<Object> dbSet = DBSet<Object>(connection);
    		openedDbSets.add( dbSet );
    		return dbSet;
    	}
    	
    	public void cleanUp() {
    		for (DBSet<Object> : openedDbsets )
    		{
    			// empty the database table
    			dbSet.clear();
    			// close the connection
    			dbSet.close();
    		}
    	}
    }
    
    @Contract.Inject
    public Producer<TreeSet<Object>> makedashSet() {
        return producer;        
    }
}

Annotations

Contract

Indicates that the class is a contract test. The argument is the class that is being tested.

Contract.Inject

Indicates that the method is a getter that provides the IProducer to inject or a setter that accepts the IProducer.

ContractImpl

Identifies the implementation class that is being tested.

ContractImpl has two attributes that can remove tests.

  • skip is an array of interface classes that should not be tested. All contract tests for the interfaces will be skipped.

  • ignore list any @Contract annotated tests that should be ignored. This allows removal of broken tests that are outside the control of the developer of the @ContractImpl test.

ContractExclude

ContractExclude was added in version 0.2.0 and is intended to be used with @ContractImpl. The annotation has 2 arguments

  1. value is the name of the class that contains the test to exclude.
  2. methods is a list of method names in the test class to exclude.

This annotation will remove the tests only for the ContractImpl it is associated with.

ContractTest

Like a JUnit Test annotation but requires that the test be run within the ContractSuite runner. Contract tests may be annotated with the standard JUnit @Ignore annotation to disable the test for all contract suites.

Dynamic.Inject

Used with Dynamic implementation to specify the class to inject. The Dyanamic suite is used to create a test suite from the return values of a class. This provides a mechanism to test Factory and similar class types.

NoContractTest

Indicates that an interface should not have a contract test. This is used to remove interfaces from the reporting when a test is not expected or possible.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].