Giter Site home page Giter Site logo

wd-40's Introduction

WD-40

Data Driven Test Framework for Rust

This crate is currently in active developement.

Data Driven Tests allow for a single parametric test to generate large numbers of test cases based on data being fed to it. This allows a single logical test case to efficiently test and expose edge cases in application logic.

Usage

See example.rs for detailed usage info. This file attempts to excercise all valid code paths.

#[derive(PartialEq, Debug)]
struct TestCase {
    a: i32,
    b: String,
    c: i32,
    d: bool,
    should_fail: bool // should_fail is not required, but recommended.
}

// Any panics in here will cause a test failure.  Unwrap it all!
fn run_contrived_test(input: TestCase) {
    // We construct a case here, but IRL you may want a helper function to return your data type.
    let actual = TestCase {
        a: 23,
        b: String::from("asdf"),
        c: 5,
        d: true,
        should_fail: false,
    };

    if !input.should_fail {
        assert_eq!(input, actual)
    } else {
        assert_ne!(input, actual)
    }
}

generate_suite!(
    run_contrived_test,
    TestCase {
        a: 3,
        b: String::from("asdf"),
        c: 5,
        d: false,
        should_fail: true
    },
    TestCase {
        a: 23,
        b: String::from("asdf"),
        c: 5,
        d: true,
        should_fail: false
    }
);

Future Work

  • Improved error propagation
  • trybuild tests
  • Combinatric Test Case Construction
  • Fluid Syntax

wd-40's People

Contributors

zachchilders avatar

Watchers

 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.