GithubHelp home page GithubHelp logo

tisonkun / failpoints Goto Github PK

View Code? Open in Web Editor NEW
8.0 2.0 0.0 104 KB

An implementation of failpoints for Java.

License: Apache License 2.0

Java 100.00%
failpoint failure-injection fault-injection java testing

failpoints's Introduction

Failpoints

Maven Central Version

An implementation of failpoints for Java. Fail points are used to add code points where errors may be injected in a user controlled fashion. Fail point is a code snippet that is only executed when the corresponding failpoint is active.

Quick Start

  1. Add failpoints library in dependencies.
<dependencies>
<dependency>
  <groupId>org.tisonkun.failpoints</groupId>
  <artifactId>failpoints-api</artifactId>
  <version>2.1.1</version>
</dependency>
<dependency>
    <groupId>org.tisonkun.failpoints</groupId>
    <artifactId>failpoints-simple</artifactId>
    <version>2.1.1</version>
    <scope>test</scope>
</dependency>
</dependencies>
  1. Inject failpoints to your program, eg:
import org.tisonkun.failpoints.Failpoints;

public class TestingObject {
    public void testInject(Runnable r) {
        Failpoints.inject(getClass(), "testing-object", v -> {
            if (v != null && (boolean) v) {
                r.run();
            }
        });
    }
}
  1. In testing code, enable the failpoint:
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.TimeUnit;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
import org.tisonkun.failpoints.FailpointGuard;
import org.tisonkun.failpoints.Failpoints;

public class SimpleFailpointDriverTest {
    public void testInjectFailpoint() throws Exception {
        try (final FailpointGuard ignored = Failpoints.enable(TestingObject, "testing-object", true)) {
            final CountDownLatch latch = new CountDownLatch(1);
            new TestingObject().testInject(latch::countDown);
            Assertions.assertTrue(latch.await(1000, TimeUnit.MILLISECONDS));
        }
        final CountDownLatch latch = new CountDownLatch(1);
        new TestingObject().testInject(latch::countDown);
        Assertions.assertFalse(latch.await(1000, TimeUnit.MILLISECONDS));
    }
}

failpoints's People

Contributors

tisonkun avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  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.