7 releases (4 breaking)

0.11.2 Jun 10, 2024
0.11.1 Jun 8, 2024
0.10.0 Sep 28, 2023
0.9.0 Mar 21, 2023
0.7.0 May 24, 2022

#453 in Testing

Download history 6480/week @ 2024-07-02 6071/week @ 2024-07-09 8809/week @ 2024-07-16 2929/week @ 2024-07-23 4374/week @ 2024-07-30 2712/week @ 2024-08-06 3476/week @ 2024-08-13 5372/week @ 2024-08-20 3665/week @ 2024-08-27 4711/week @ 2024-09-03 4705/week @ 2024-09-10 4328/week @ 2024-09-17 2744/week @ 2024-09-24 3154/week @ 2024-10-01 2286/week @ 2024-10-08 2233/week @ 2024-10-15

11,421 downloads per month
Used in 25 crates (via bolero)

MIT license

21KB
469 lines

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–5.5MB
~22K SLoC