10 releases (breaking)

new 0.9.0 Mar 20, 2023
0.8.0 Oct 27, 2022
0.7.0 May 24, 2022
0.6.2 Nov 6, 2021
0.2.0 Oct 16, 2019

#9 in #honggfuzz

Download history 558/week @ 2022-11-28 866/week @ 2022-12-05 542/week @ 2022-12-12 451/week @ 2022-12-19 309/week @ 2022-12-26 277/week @ 2023-01-02 596/week @ 2023-01-09 458/week @ 2023-01-16 679/week @ 2023-01-23 757/week @ 2023-01-30 781/week @ 2023-02-06 503/week @ 2023-02-13 712/week @ 2023-02-20 922/week @ 2023-02-27 809/week @ 2023-03-06 679/week @ 2023-03-13

3,181 downloads per month
Used in 16 crates (2 directly)

MIT license

335KB
7K SLoC

C 6.5K SLoC // 0.2% comments Rust 458 SLoC // 0.0% comments Shell 32 SLoC // 0.1% comments

bolero

Build Status Latest version Documentation License

fuzz and property testing front-end for Rust

Book

A copy of the Bolero Book can be found here: http://camshaft.github.io/bolero

Quick Start

  1. Install subcommand and add a dependency

    $ cargo add --dev bolero
    $ cargo install -f cargo-bolero
    
  2. Write a test using bolero::check! macro:

    pub fn buggy_add(x: u32, y: u32) -> u32 {
        if x == 12976 && y == 14867 {
            return x.wrapping_sub(y);
        }
        return x.wrapping_add(y);
    }
    
    #[test]
    fn fuzz_add() {
        bolero::check!()
            .with_type()
            .cloned()
            .for_each(|(a, b)| buggy_add(a, b) == a.wrapping_add(b));
    }
    
  3. Run the test with cargo bolero

    $ cargo bolero test fuzz_add
    
    # ... some moments later ...
    
    ======================== Test Failure ========================
    
    Input:
    (
        12976,
        14867,
    )
    
    Error:
    test returned `false`
    
    ==============================================================
    

Linux Installation

cargo-bolero needs a couple of libraries installed to compile. If these libraries aren't available the requirement can be relaxed by executing cargo install cargo-bolero --no-default-features -f

Debian/Ubuntu

$ sudo apt install binutils-dev libunwind-dev

Dependencies

~0–1.2MB
~24K SLoC